json.content @project.content json.website @project.website json.lesson_url @project.lesson_url json.identifier render_identifier(@project) json.invite_code @project.invite_code json.name @project.name json.description @project.description json.project_id @project.id json.repo_id @repository.id json.issues_count @project.issues.issue_issue.size - @project.issues.issue_issue.closed.size json.pull_requests_count @project.pull_requests.opening.size json.project_identifier render_identifier(@project) json.praises_count @project.praises_count.to_i json.forked_count @project_forked_count.to_i json.watchers_count @project.watchers_count.to_i json.versions_count @project.versions.opening.size #里程碑数量 json.version_releases_count @project.releases_size(@user.try(:id), "all") json.version_releasesed_count @project.releases_size(@user.try(:id), "released") #已发行的版本 json.permission render_permission(@user, @project) json.mirror_url @project&.repository.remote_mirror_url json.mirror @project&.repository.mirror_url.present? json.has_actions @project.try(:has_actions) json.web_site @project.page.try(:identifier) json.type @project.numerical_for_project_type json.open_devops @project.open_devops? json.topics @project.project_topics.each do |topic| json.(topic, :id, :name) end unless @project.common? json.mirror_status @repository.mirror_status json.mirror_num @repository.mirror_num json.first_sync @repository.first_sync? end json.watched @project.watched_by? @user json.praised @project.praised_by? @user json.status @project.status json.forked_from_project_id @project_fork_id json.fork_info do if @fork_project.present? json.fork_form_name @fork_project.try(:name) json.fork_project_user_login @fork_project_user.try(:login) json.fork_project_identifier @fork_project.identifier json.fork_project_user_name @fork_project_user.try(:show_real_name) json.fork_project_user_type @fork_project_user.try(:type) end end if @result[:repo] json.empty @result[:repo]["empty"] json.size replace_bytes_to_b(number_to_human_size(@result[:repo]['size'].to_i*1024)) json.ssh_url @result[:repo]['ssh_url'] json.clone_url @project.educoder? ? "#{Rails.application.config_for(:configuration)['educoder']['git_site']}/#{@project&.project_educoder&.repo_name}.git" : @result[:repo]['clone_url'] json.default_branch @project.educoder? ? "master" : @result[:repo]['default_branch'] json.empty @result[:repo]['empty'] json.full_name @result[:repo]['full_name'] json.private @result[:repo]['private'] else json.empty true json.size 0 json.ssh_url nil json.clone_url nil json.default_branch 'master' json.empty nil json.full_name nil json.private !@project.is_public end json.license_name @project.license_name json.license_id @project.license_id json.branches_count @result[:branch_tag_total_count].present? ? (@result[:branch_tag_total_count]['branch_count'] || 0) : 0 json.tags_count @result[:branch_tag_total_count].present? ? (@result[:branch_tag_total_count]['tag_count'] || 0) : 0 # json.contributors do # total_count = @result[:contributor].size # json.list @result[:contributor].each do |contributor| # json.partial! 'contributor', locals: { contributor: contributor } # end # json.total_count total_count # end # json.languages @result[:language].blank? ? nil : @result[:language] json.partial! 'author', locals: { user: @project.owner }