2018-07-24 06:00:56 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-02-20 09:56:36 -05:00
|
|
|
class ProjectPresenter < Gitlab::View::Presenter::Delegated
|
|
|
|
include ActionView::Helpers::NumberHelper
|
|
|
|
include ActionView::Helpers::UrlHelper
|
|
|
|
include GitlabRoutingHelper
|
|
|
|
include StorageHelper
|
|
|
|
include TreeHelper
|
2018-04-18 06:44:12 -04:00
|
|
|
include ChecksCollaboration
|
2018-02-20 17:04:10 -05:00
|
|
|
include Gitlab::Utils::StrongMemoize
|
2018-02-20 09:56:36 -05:00
|
|
|
|
|
|
|
presents :project
|
|
|
|
|
2018-09-06 03:27:39 -04:00
|
|
|
AnchorData = Struct.new(:enabled, :label, :link, :class_modifier)
|
|
|
|
MAX_TAGS_TO_SHOW = 3
|
|
|
|
|
2018-02-20 13:51:52 -05:00
|
|
|
def statistics_anchors(show_auto_devops_callout:)
|
2018-02-20 09:56:36 -05:00
|
|
|
[
|
2018-09-06 03:27:39 -04:00
|
|
|
readme_anchor_data,
|
|
|
|
changelog_anchor_data,
|
|
|
|
contribution_guide_anchor_data,
|
2018-02-20 09:56:36 -05:00
|
|
|
files_anchor_data,
|
|
|
|
commits_anchor_data,
|
|
|
|
branches_anchor_data,
|
|
|
|
tags_anchor_data,
|
|
|
|
gitlab_ci_anchor_data,
|
|
|
|
autodevops_anchor_data(show_auto_devops_callout: show_auto_devops_callout),
|
|
|
|
kubernetes_cluster_anchor_data
|
2018-02-22 11:57:11 -05:00
|
|
|
].compact.select { |item| item.enabled }
|
2018-02-20 09:56:36 -05:00
|
|
|
end
|
|
|
|
|
2018-02-20 13:51:52 -05:00
|
|
|
def statistics_buttons(show_auto_devops_callout:)
|
2018-02-20 09:56:36 -05:00
|
|
|
[
|
2018-07-03 07:58:03 -04:00
|
|
|
readme_anchor_data,
|
2018-02-20 09:56:36 -05:00
|
|
|
changelog_anchor_data,
|
|
|
|
contribution_guide_anchor_data,
|
|
|
|
autodevops_anchor_data(show_auto_devops_callout: show_auto_devops_callout),
|
|
|
|
kubernetes_cluster_anchor_data,
|
2018-10-12 20:54:08 -04:00
|
|
|
gitlab_ci_anchor_data
|
2018-02-21 11:57:41 -05:00
|
|
|
].compact.reject { |item| item.enabled }
|
2018-02-20 09:56:36 -05:00
|
|
|
end
|
|
|
|
|
2018-02-20 13:51:52 -05:00
|
|
|
def empty_repo_statistics_anchors
|
2018-02-20 09:56:36 -05:00
|
|
|
[
|
2018-09-06 03:27:39 -04:00
|
|
|
files_anchor_data,
|
|
|
|
commits_anchor_data,
|
|
|
|
branches_anchor_data,
|
|
|
|
tags_anchor_data,
|
2018-02-20 09:56:36 -05:00
|
|
|
autodevops_anchor_data,
|
|
|
|
kubernetes_cluster_anchor_data
|
2018-02-22 11:57:11 -05:00
|
|
|
].compact.select { |item| item.enabled }
|
2018-02-20 09:56:36 -05:00
|
|
|
end
|
|
|
|
|
2018-02-20 13:51:52 -05:00
|
|
|
def empty_repo_statistics_buttons
|
2018-02-20 09:56:36 -05:00
|
|
|
[
|
|
|
|
new_file_anchor_data,
|
|
|
|
readme_anchor_data,
|
|
|
|
autodevops_anchor_data,
|
|
|
|
kubernetes_cluster_anchor_data
|
2018-02-21 11:57:41 -05:00
|
|
|
].compact.reject { |item| item.enabled }
|
2018-02-20 09:56:36 -05:00
|
|
|
end
|
|
|
|
|
2018-02-20 11:30:49 -05:00
|
|
|
def default_view
|
2018-02-20 09:56:36 -05:00
|
|
|
return anonymous_project_view unless current_user
|
|
|
|
|
|
|
|
user_view = current_user.project_view
|
|
|
|
|
|
|
|
if can?(current_user, :download_code, project)
|
|
|
|
user_view
|
|
|
|
elsif user_view == "activity"
|
|
|
|
"activity"
|
|
|
|
elsif can?(current_user, :read_wiki, project)
|
|
|
|
"wiki"
|
|
|
|
elsif feature_available?(:issues, current_user)
|
|
|
|
"projects/issues/issues"
|
|
|
|
else
|
|
|
|
"customize_workflow"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def readme_path
|
|
|
|
filename_path(:readme)
|
|
|
|
end
|
|
|
|
|
|
|
|
def changelog_path
|
|
|
|
filename_path(:changelog)
|
|
|
|
end
|
|
|
|
|
|
|
|
def license_path
|
|
|
|
filename_path(:license_blob)
|
|
|
|
end
|
|
|
|
|
|
|
|
def ci_configuration_path
|
|
|
|
filename_path(:gitlab_ci_yml)
|
|
|
|
end
|
|
|
|
|
|
|
|
def contribution_guide_path
|
|
|
|
if project && contribution_guide = repository.contribution_guide
|
|
|
|
project_blob_path(
|
|
|
|
project,
|
|
|
|
tree_join(project.default_branch,
|
|
|
|
contribution_guide.name)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def add_license_path
|
|
|
|
add_special_file_path(file_name: 'LICENSE')
|
|
|
|
end
|
|
|
|
|
2018-02-20 16:59:19 -05:00
|
|
|
def add_changelog_path
|
|
|
|
add_special_file_path(file_name: 'CHANGELOG')
|
|
|
|
end
|
|
|
|
|
|
|
|
def add_contribution_guide_path
|
|
|
|
add_special_file_path(file_name: 'CONTRIBUTING.md', commit_message: 'Add contribution guide')
|
|
|
|
end
|
|
|
|
|
2018-02-20 09:56:36 -05:00
|
|
|
def add_ci_yml_path
|
|
|
|
add_special_file_path(file_name: '.gitlab-ci.yml')
|
|
|
|
end
|
|
|
|
|
|
|
|
def add_readme_path
|
|
|
|
add_special_file_path(file_name: 'README.md')
|
|
|
|
end
|
|
|
|
|
|
|
|
def license_short_name
|
|
|
|
license = repository.license
|
|
|
|
license&.nickname || license&.name || 'LICENSE'
|
|
|
|
end
|
|
|
|
|
|
|
|
def can_current_user_push_code?
|
2018-02-20 17:04:10 -05:00
|
|
|
strong_memoize(:can_current_user_push_code) do
|
|
|
|
if empty_repo?
|
|
|
|
can?(current_user, :push_code, project)
|
|
|
|
else
|
2018-02-22 11:56:38 -05:00
|
|
|
can_current_user_push_to_branch?(default_branch)
|
2018-02-20 17:04:10 -05:00
|
|
|
end
|
2018-02-20 09:56:36 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-22 11:56:38 -05:00
|
|
|
def can_current_user_push_to_branch?(branch)
|
2018-04-18 06:44:12 -04:00
|
|
|
user_access(project).can_push_to_branch?(branch)
|
|
|
|
end
|
2018-02-22 11:56:38 -05:00
|
|
|
|
2018-04-18 06:44:12 -04:00
|
|
|
def can_current_user_push_to_default_branch?
|
|
|
|
can_current_user_push_to_branch?(default_branch)
|
2018-02-22 11:56:38 -05:00
|
|
|
end
|
|
|
|
|
2018-02-20 09:56:36 -05:00
|
|
|
def files_anchor_data
|
2018-09-06 03:27:39 -04:00
|
|
|
AnchorData.new(true,
|
|
|
|
_('Files (%{human_size})') % { human_size: storage_counter(statistics.total_repository_size) },
|
|
|
|
empty_repo? ? nil : project_tree_path(project))
|
2018-02-20 09:56:36 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def commits_anchor_data
|
2018-09-06 03:27:39 -04:00
|
|
|
AnchorData.new(true,
|
|
|
|
n_('Commit (%{commit_count})', 'Commits (%{commit_count})', statistics.commit_count) % { commit_count: number_with_delimiter(statistics.commit_count) },
|
|
|
|
empty_repo? ? nil : project_commits_path(project, repository.root_ref))
|
2018-02-20 09:56:36 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def branches_anchor_data
|
2018-09-06 03:27:39 -04:00
|
|
|
AnchorData.new(true,
|
|
|
|
n_('Branch (%{branch_count})', 'Branches (%{branch_count})', repository.branch_count) % { branch_count: number_with_delimiter(repository.branch_count) },
|
|
|
|
empty_repo? ? nil : project_branches_path(project))
|
2018-02-20 09:56:36 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def tags_anchor_data
|
2018-09-06 03:27:39 -04:00
|
|
|
AnchorData.new(true,
|
|
|
|
n_('Tag (%{tag_count})', 'Tags (%{tag_count})', repository.tag_count) % { tag_count: number_with_delimiter(repository.tag_count) },
|
|
|
|
empty_repo? ? nil : project_tags_path(project))
|
2018-02-20 09:56:36 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def new_file_anchor_data
|
2018-04-18 06:44:12 -04:00
|
|
|
if current_user && can_current_user_push_to_default_branch?
|
2018-09-06 03:27:39 -04:00
|
|
|
AnchorData.new(false,
|
|
|
|
_('New file'),
|
|
|
|
project_new_blob_path(project, default_branch || 'master'),
|
2018-10-29 07:27:47 -04:00
|
|
|
'success')
|
2018-02-20 09:56:36 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def readme_anchor_data
|
2018-07-03 07:58:03 -04:00
|
|
|
if current_user && can_current_user_push_to_default_branch? && repository.readme.nil?
|
2018-09-06 03:27:39 -04:00
|
|
|
AnchorData.new(false,
|
|
|
|
_('Add Readme'),
|
|
|
|
add_readme_path)
|
2018-07-03 07:58:03 -04:00
|
|
|
elsif repository.readme
|
2018-09-06 03:27:39 -04:00
|
|
|
AnchorData.new(true,
|
|
|
|
_('Readme'),
|
|
|
|
default_view != 'readme' ? readme_path : '#readme')
|
2018-02-20 09:56:36 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def changelog_anchor_data
|
2018-04-18 06:44:12 -04:00
|
|
|
if current_user && can_current_user_push_to_default_branch? && repository.changelog.blank?
|
2018-09-06 03:27:39 -04:00
|
|
|
AnchorData.new(false,
|
|
|
|
_('Add Changelog'),
|
|
|
|
add_changelog_path)
|
2018-02-20 09:56:36 -05:00
|
|
|
elsif repository.changelog.present?
|
2018-09-06 03:27:39 -04:00
|
|
|
AnchorData.new(true,
|
|
|
|
_('Changelog'),
|
|
|
|
changelog_path)
|
2018-02-20 09:56:36 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def license_anchor_data
|
2018-09-06 03:27:39 -04:00
|
|
|
if repository.license_blob.present?
|
|
|
|
AnchorData.new(true,
|
|
|
|
license_short_name,
|
|
|
|
license_path)
|
|
|
|
else
|
|
|
|
if current_user && can_current_user_push_to_default_branch?
|
|
|
|
AnchorData.new(false,
|
|
|
|
_('Add license'),
|
|
|
|
add_license_path)
|
|
|
|
else
|
|
|
|
AnchorData.new(false,
|
|
|
|
_('No license. All rights reserved'),
|
|
|
|
nil)
|
|
|
|
end
|
2018-02-20 09:56:36 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def contribution_guide_anchor_data
|
2018-04-18 06:44:12 -04:00
|
|
|
if current_user && can_current_user_push_to_default_branch? && repository.contribution_guide.blank?
|
2018-09-06 03:27:39 -04:00
|
|
|
AnchorData.new(false,
|
|
|
|
_('Add Contribution guide'),
|
|
|
|
add_contribution_guide_path)
|
2018-02-20 09:56:36 -05:00
|
|
|
elsif repository.contribution_guide.present?
|
2018-09-06 03:27:39 -04:00
|
|
|
AnchorData.new(true,
|
|
|
|
_('Contribution guide'),
|
|
|
|
contribution_guide_path)
|
2018-02-20 09:56:36 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def autodevops_anchor_data(show_auto_devops_callout: false)
|
|
|
|
if current_user && can?(current_user, :admin_pipeline, project) && repository.gitlab_ci_yml.blank? && !show_auto_devops_callout
|
2018-09-06 03:27:39 -04:00
|
|
|
AnchorData.new(auto_devops_enabled?,
|
|
|
|
auto_devops_enabled? ? _('Auto DevOps enabled') : _('Enable Auto DevOps'),
|
|
|
|
project_settings_ci_cd_path(project, anchor: 'autodevops-settings'))
|
2018-02-20 09:56:36 -05:00
|
|
|
elsif auto_devops_enabled?
|
2018-09-06 03:27:39 -04:00
|
|
|
AnchorData.new(true,
|
|
|
|
_('Auto DevOps enabled'),
|
|
|
|
nil)
|
2018-02-20 09:56:36 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def kubernetes_cluster_anchor_data
|
|
|
|
if current_user && can?(current_user, :create_cluster, project)
|
2018-02-20 16:59:19 -05:00
|
|
|
cluster_link = clusters.count == 1 ? project_cluster_path(project, clusters.first) : project_clusters_path(project)
|
2018-02-20 09:56:36 -05:00
|
|
|
|
|
|
|
if clusters.empty?
|
|
|
|
cluster_link = new_project_cluster_path(project)
|
|
|
|
end
|
|
|
|
|
2018-09-06 03:27:39 -04:00
|
|
|
AnchorData.new(!clusters.empty?,
|
|
|
|
clusters.empty? ? _('Add Kubernetes cluster') : _('Kubernetes configured'),
|
|
|
|
cluster_link)
|
2018-02-20 09:56:36 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def gitlab_ci_anchor_data
|
|
|
|
if current_user && can_current_user_push_code? && repository.gitlab_ci_yml.blank? && !auto_devops_enabled?
|
2018-09-06 03:27:39 -04:00
|
|
|
AnchorData.new(false,
|
|
|
|
_('Set up CI/CD'),
|
|
|
|
add_ci_yml_path)
|
2018-02-20 09:56:36 -05:00
|
|
|
elsif repository.gitlab_ci_yml.present?
|
2018-09-06 03:27:39 -04:00
|
|
|
AnchorData.new(true,
|
|
|
|
_('CI/CD configuration'),
|
|
|
|
ci_configuration_path)
|
2018-02-20 09:56:36 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-09-06 03:27:39 -04:00
|
|
|
def tags_to_show
|
2018-08-27 11:31:01 -04:00
|
|
|
project.tag_list.take(MAX_TAGS_TO_SHOW) # rubocop: disable CodeReuse/ActiveRecord
|
2018-09-06 03:27:39 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def count_of_extra_tags_not_shown
|
|
|
|
if project.tag_list.count > MAX_TAGS_TO_SHOW
|
|
|
|
project.tag_list.count - MAX_TAGS_TO_SHOW
|
|
|
|
else
|
|
|
|
0
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def has_extra_tags?
|
|
|
|
count_of_extra_tags_not_shown > 0
|
|
|
|
end
|
|
|
|
|
2018-02-20 16:59:19 -05:00
|
|
|
private
|
|
|
|
|
|
|
|
def filename_path(filename)
|
|
|
|
if blob = repository.public_send(filename) # rubocop:disable GitlabSecurity/PublicSend
|
|
|
|
project_blob_path(
|
|
|
|
project,
|
|
|
|
tree_join(default_branch, blob.name)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def anonymous_project_view
|
|
|
|
if !project.empty_repo? && can?(current_user, :download_code, project)
|
|
|
|
'files'
|
|
|
|
else
|
|
|
|
'activity'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def add_special_file_path(file_name:, commit_message: nil, branch_name: nil)
|
|
|
|
commit_message ||= s_("CommitMessage|Add %{file_name}") % { file_name: file_name }
|
|
|
|
project_new_blob_path(
|
|
|
|
project,
|
|
|
|
project.default_branch || 'master',
|
|
|
|
file_name: file_name,
|
|
|
|
commit_message: commit_message,
|
|
|
|
branch_name: branch_name
|
|
|
|
)
|
|
|
|
end
|
2018-02-20 09:56:36 -05:00
|
|
|
end
|