2013-11-06 10:13:21 -05:00
|
|
|
module VisibilityLevelHelper
|
|
|
|
def visibility_level_color(level)
|
|
|
|
case level
|
|
|
|
when Gitlab::VisibilityLevel::PRIVATE
|
2014-06-03 07:49:50 -04:00
|
|
|
'vs-private'
|
2013-11-06 10:13:21 -05:00
|
|
|
when Gitlab::VisibilityLevel::INTERNAL
|
2014-06-03 07:49:50 -04:00
|
|
|
'vs-internal'
|
2013-11-06 10:13:21 -05:00
|
|
|
when Gitlab::VisibilityLevel::PUBLIC
|
2014-06-03 07:49:50 -04:00
|
|
|
'vs-public'
|
2013-11-06 10:13:21 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-04-26 01:01:52 -04:00
|
|
|
# Return the description for the +level+ argument.
|
|
|
|
#
|
2015-12-07 07:37:01 -05:00
|
|
|
# +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.
|
2015-04-26 01:01:52 -04:00
|
|
|
def visibility_level_description(level, form_model)
|
2015-12-07 07:37:01 -05:00
|
|
|
case form_model
|
|
|
|
when Project
|
2015-04-26 01:01:52 -04:00
|
|
|
project_visibility_level_description(level)
|
2016-03-01 10:22:29 -05:00
|
|
|
when Group
|
|
|
|
group_visibility_level_description(level)
|
2015-12-07 07:37:01 -05:00
|
|
|
when Snippet
|
|
|
|
snippet_visibility_level_description(level, form_model)
|
2015-04-26 01:01:52 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def project_visibility_level_description(level)
|
2015-12-02 08:08:59 -05:00
|
|
|
case level
|
|
|
|
when Gitlab::VisibilityLevel::PRIVATE
|
2017-06-07 16:13:44 -04:00
|
|
|
_("Project access must be granted explicitly to each user.")
|
2015-12-02 08:08:59 -05:00
|
|
|
when Gitlab::VisibilityLevel::INTERNAL
|
2017-06-07 16:13:44 -04:00
|
|
|
_("The project can be accessed by any logged in user.")
|
2015-12-02 08:08:59 -05:00
|
|
|
when Gitlab::VisibilityLevel::PUBLIC
|
2017-06-07 16:13:44 -04:00
|
|
|
_("The project can be accessed without any authentication.")
|
2014-10-08 09:44:25 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-03-01 10:22:29 -05:00
|
|
|
def group_visibility_level_description(level)
|
|
|
|
case level
|
|
|
|
when Gitlab::VisibilityLevel::PRIVATE
|
2016-03-21 19:09:20 -04:00
|
|
|
"The group and its projects can only be viewed by members."
|
2016-03-01 10:22:29 -05:00
|
|
|
when Gitlab::VisibilityLevel::INTERNAL
|
2016-03-21 19:09:20 -04:00
|
|
|
"The group and any internal projects can be viewed by any logged in user."
|
2016-03-01 10:22:29 -05:00
|
|
|
when Gitlab::VisibilityLevel::PUBLIC
|
2016-03-21 19:09:20 -04:00
|
|
|
"The group and any public projects can be viewed without any authentication."
|
2016-03-01 10:22:29 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-12-07 07:37:01 -05:00
|
|
|
def snippet_visibility_level_description(level, snippet = nil)
|
2013-11-06 10:13:21 -05:00
|
|
|
case level
|
|
|
|
when Gitlab::VisibilityLevel::PRIVATE
|
2015-12-07 07:37:01 -05:00
|
|
|
if snippet.is_a? ProjectSnippet
|
|
|
|
"The snippet is visible only to project members."
|
|
|
|
else
|
|
|
|
"The snippet is visible only to me."
|
|
|
|
end
|
2013-11-06 10:13:21 -05:00
|
|
|
when Gitlab::VisibilityLevel::INTERNAL
|
2015-12-07 07:37:01 -05:00
|
|
|
"The snippet is visible to any logged in user."
|
2013-11-06 10:13:21 -05:00
|
|
|
when Gitlab::VisibilityLevel::PUBLIC
|
2015-12-02 08:08:59 -05:00
|
|
|
"The snippet can be accessed without any authentication."
|
2013-11-06 10:13:21 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-25 16:01:56 -04:00
|
|
|
def restricted_visibility_level_description(level)
|
|
|
|
level_name = Gitlab::VisibilityLevel.level_name(level)
|
2017-08-29 01:49:01 -04:00
|
|
|
"#{level_name.capitalize} visibility has been restricted by the administrator."
|
2017-08-25 16:01:56 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def disallowed_visibility_level_description(level, form_model)
|
|
|
|
case form_model
|
|
|
|
when Project
|
|
|
|
disallowed_project_visibility_level_description(level, form_model)
|
|
|
|
when Group
|
|
|
|
disallowed_group_visibility_level_description(level, form_model)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-30 15:40:09 -04:00
|
|
|
# Note: these messages closely mirror the form validation strings found in the project
|
|
|
|
# model and any changes or additons to these may also need to be made there.
|
2017-08-25 16:01:56 -04:00
|
|
|
def disallowed_project_visibility_level_description(level, project)
|
|
|
|
level_name = Gitlab::VisibilityLevel.level_name(level).downcase
|
|
|
|
reasons = []
|
2017-08-30 16:08:30 -04:00
|
|
|
instructions = ''
|
2017-08-25 16:01:56 -04:00
|
|
|
|
|
|
|
unless project.visibility_level_allowed_as_fork?(level)
|
2017-08-30 15:37:08 -04:00
|
|
|
reasons << "the fork source project has lower visibility"
|
2017-08-25 16:01:56 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
unless project.visibility_level_allowed_by_group?(level)
|
2017-08-30 19:38:06 -04:00
|
|
|
errors = visibility_level_errors_for_group(project.group, level_name)
|
2017-08-30 16:08:30 -04:00
|
|
|
|
2017-08-30 19:38:06 -04:00
|
|
|
reasons << errors[:reason]
|
|
|
|
instructions << errors[:instruction]
|
2017-08-25 16:01:56 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
reasons = reasons.any? ? ' because ' + reasons.to_sentence : ''
|
2017-08-30 16:08:30 -04:00
|
|
|
"This project cannot be #{level_name}#{reasons}.#{instructions}".html_safe
|
2017-08-25 16:01:56 -04:00
|
|
|
end
|
|
|
|
|
2017-08-30 15:40:09 -04:00
|
|
|
# Note: these messages closely mirror the form validation strings found in the group
|
|
|
|
# model and any changes or additons to these may also need to be made there.
|
2017-08-25 16:01:56 -04:00
|
|
|
def disallowed_group_visibility_level_description(level, group)
|
|
|
|
level_name = Gitlab::VisibilityLevel.level_name(level).downcase
|
|
|
|
reasons = []
|
2017-08-30 17:01:57 -04:00
|
|
|
instructions = ''
|
2017-08-25 16:01:56 -04:00
|
|
|
|
|
|
|
unless group.visibility_level_allowed_by_projects?(level)
|
2017-08-30 15:37:08 -04:00
|
|
|
reasons << "it contains projects with higher visibility"
|
2017-08-25 16:01:56 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
unless group.visibility_level_allowed_by_sub_groups?(level)
|
2017-08-30 15:37:08 -04:00
|
|
|
reasons << "it contains sub-groups with higher visibility"
|
2017-08-25 16:01:56 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
unless group.visibility_level_allowed_by_parent?(level)
|
2017-08-30 19:38:06 -04:00
|
|
|
errors = visibility_level_errors_for_group(group.parent, level_name)
|
2017-08-30 17:01:57 -04:00
|
|
|
|
2017-08-30 19:38:06 -04:00
|
|
|
reasons << errors[:reason]
|
|
|
|
instructions << errors[:instruction]
|
2017-08-25 16:01:56 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
reasons = reasons.any? ? ' because ' + reasons.to_sentence : ''
|
2017-08-30 17:01:57 -04:00
|
|
|
"This group cannot be #{level_name}#{reasons}.#{instructions}".html_safe
|
2017-08-25 16:01:56 -04:00
|
|
|
end
|
|
|
|
|
2016-03-21 19:09:20 -04:00
|
|
|
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)}"
|
2016-03-20 16:03:53 -04:00
|
|
|
end
|
|
|
|
|
2016-03-21 19:09:20 -04:00
|
|
|
def project_visibility_icon_description(level)
|
|
|
|
"#{visibility_level_label(level)} - #{project_visibility_level_description(level)}"
|
2016-03-20 16:03:53 -04:00
|
|
|
end
|
|
|
|
|
2013-11-06 10:13:21 -05:00
|
|
|
def visibility_level_label(level)
|
2017-06-07 16:13:44 -04:00
|
|
|
# The visibility level can be:
|
|
|
|
# 'VisibilityLevel|Private', 'VisibilityLevel|Internal', 'VisibilityLevel|Public'
|
|
|
|
s_(Project.visibility_levels.key(level))
|
2013-11-06 10:13:21 -05:00
|
|
|
end
|
2013-11-27 06:13:33 -05:00
|
|
|
|
2015-03-01 10:06:46 -05:00
|
|
|
def restricted_visibility_levels(show_all = false)
|
2017-04-08 22:20:57 -04:00
|
|
|
return [] if current_user.admin? && !show_all
|
2017-11-14 04:02:39 -05:00
|
|
|
|
2018-02-02 13:39:55 -05:00
|
|
|
Gitlab::CurrentSettings.restricted_visibility_levels || []
|
2013-11-06 10:13:21 -05:00
|
|
|
end
|
2015-04-26 01:01:52 -04:00
|
|
|
|
2017-02-22 12:51:46 -05:00
|
|
|
delegate :default_project_visibility,
|
|
|
|
:default_group_visibility,
|
2018-02-02 13:39:55 -05:00
|
|
|
to: :'Gitlab::CurrentSettings.current_application_settings'
|
2016-03-08 19:01:33 -05:00
|
|
|
|
2017-08-24 18:24:29 -04:00
|
|
|
def disallowed_visibility_level?(form_model, level)
|
2017-08-24 18:19:49 -04:00
|
|
|
return false unless form_model.respond_to?(:visibility_level_allowed?)
|
2017-11-14 04:02:39 -05:00
|
|
|
|
2017-08-24 18:19:49 -04:00
|
|
|
!form_model.visibility_level_allowed?(level)
|
2015-07-06 08:38:43 -04:00
|
|
|
end
|
2017-08-30 19:38:06 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def visibility_level_errors_for_group(group, level_name)
|
2017-08-30 20:33:24 -04:00
|
|
|
group_name = link_to group.name, group_path(group)
|
2017-08-30 19:38:06 -04:00
|
|
|
change_visiblity = link_to 'change the visibility', edit_group_path(group)
|
|
|
|
|
2017-08-30 20:33:24 -04:00
|
|
|
{ reason: "the visibility of #{group_name} is #{group.visibility}",
|
2017-08-30 19:38:06 -04:00
|
|
|
instruction: " To make this group #{level_name}, you must first #{change_visiblity} of the parent group." }
|
|
|
|
end
|
2013-11-27 06:13:33 -05:00
|
|
|
end
|