101 lines
3.3 KiB
Ruby
101 lines
3.3 KiB
Ruby
module VisibilityLevelHelper
|
|
def visibility_level_color(level)
|
|
case level
|
|
when Gitlab::VisibilityLevel::PRIVATE
|
|
'vs-private'
|
|
when Gitlab::VisibilityLevel::INTERNAL
|
|
'vs-internal'
|
|
when Gitlab::VisibilityLevel::PUBLIC
|
|
'vs-public'
|
|
end
|
|
end
|
|
|
|
# Return the description for the +level+ argument.
|
|
#
|
|
# +level+ One of the Gitlab::VisibilityLevel constants
|
|
# +form_model+ Either a model object (Project, Snippet, etc.) or the name of
|
|
# a Project or Snippet class.
|
|
def visibility_level_description(level, form_model)
|
|
case form_model
|
|
when Project
|
|
project_visibility_level_description(level)
|
|
when Group
|
|
group_visibility_level_description(level)
|
|
when Snippet
|
|
snippet_visibility_level_description(level, form_model)
|
|
end
|
|
end
|
|
|
|
def project_visibility_level_description(level)
|
|
case level
|
|
when Gitlab::VisibilityLevel::PRIVATE
|
|
_("Project access must be granted explicitly to each user.")
|
|
when Gitlab::VisibilityLevel::INTERNAL
|
|
_("The project can be accessed by any logged in user.")
|
|
when Gitlab::VisibilityLevel::PUBLIC
|
|
_("The project can be accessed without any authentication.")
|
|
end
|
|
end
|
|
|
|
def group_visibility_level_description(level)
|
|
case level
|
|
when Gitlab::VisibilityLevel::PRIVATE
|
|
"The group and its projects can only be viewed by members."
|
|
when Gitlab::VisibilityLevel::INTERNAL
|
|
"The group and any internal projects can be viewed by any logged in user."
|
|
when Gitlab::VisibilityLevel::PUBLIC
|
|
"The group and any public projects can be viewed without any authentication."
|
|
end
|
|
end
|
|
|
|
def snippet_visibility_level_description(level, snippet = nil)
|
|
case level
|
|
when Gitlab::VisibilityLevel::PRIVATE
|
|
if snippet.is_a? ProjectSnippet
|
|
"The snippet is visible only to project members."
|
|
else
|
|
"The snippet is visible only to me."
|
|
end
|
|
when Gitlab::VisibilityLevel::INTERNAL
|
|
"The snippet is visible to any logged in user."
|
|
when Gitlab::VisibilityLevel::PUBLIC
|
|
"The snippet can be accessed without any authentication."
|
|
end
|
|
end
|
|
|
|
def visibility_icon_description(form_model)
|
|
case form_model
|
|
when Project
|
|
project_visibility_icon_description(form_model.visibility_level)
|
|
when Group
|
|
group_visibility_icon_description(form_model.visibility_level)
|
|
end
|
|
end
|
|
|
|
def group_visibility_icon_description(level)
|
|
"#{visibility_level_label(level)} - #{group_visibility_level_description(level)}"
|
|
end
|
|
|
|
def project_visibility_icon_description(level)
|
|
"#{visibility_level_label(level)} - #{project_visibility_level_description(level)}"
|
|
end
|
|
|
|
def visibility_level_label(level)
|
|
# The visibility level can be:
|
|
# 'VisibilityLevel|Private', 'VisibilityLevel|Internal', 'VisibilityLevel|Public'
|
|
s_(Project.visibility_levels.key(level))
|
|
end
|
|
|
|
def restricted_visibility_levels(show_all = false)
|
|
return [] if current_user.admin? && !show_all
|
|
current_application_settings.restricted_visibility_levels || []
|
|
end
|
|
|
|
delegate :default_project_visibility,
|
|
:default_group_visibility,
|
|
to: :current_application_settings
|
|
|
|
def skip_level?(form_model, level)
|
|
form_model.is_a?(Project) && !form_model.visibility_level_allowed?(level)
|
|
end
|
|
end
|