debian-mirror-gitlab/app/helpers/namespaces_helper.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

145 lines
4.5 KiB
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2014-09-02 18:07:02 +05:30
module NamespacesHelper
2017-08-17 22:00:37 +05:30
def namespace_id_from(params)
params.dig(:project, :namespace_id) || params[:namespace_id]
end
2018-11-18 11:00:15 +05:30
def namespaces_options(selected = :current_user, display_path: false, groups: nil, extra_group: nil, groups_only: false)
2019-07-07 11:18:12 +05:30
groups ||= current_user.manageable_groups_with_routes
2018-03-17 18:26:18 +05:30
users = [current_user.namespace]
2018-11-18 11:00:15 +05:30
selected_id = selected
2016-09-29 09:46:39 +05:30
2017-08-17 22:00:37 +05:30
unless extra_group.nil? || extra_group.is_a?(Group)
extra_group = Group.find(extra_group) if Namespace.find(extra_group).kind == 'group'
end
2018-11-18 11:00:15 +05:30
if extra_group && extra_group.is_a?(Group)
extra_group = dedup_extra_group(extra_group)
if Ability.allowed?(current_user, :read_group, extra_group)
# Assign the value to an invalid primary ID so that the select box works
extra_group.id = -1 unless extra_group.persisted?
selected_id = extra_group.id if selected == :extra_group
groups |= [extra_group]
else
selected_id = current_user.namespace.id
end
2017-08-17 22:00:37 +05:30
end
2016-09-29 09:46:39 +05:30
2014-09-02 18:07:02 +05:30
options = []
2018-03-17 18:26:18 +05:30
options << options_for_group(groups, display_path: display_path, type: 'group')
2014-09-02 18:07:02 +05:30
2018-11-18 11:00:15 +05:30
unless groups_only
options << options_for_group(users, display_path: display_path, type: 'user')
if selected == :current_user && current_user.namespace
selected_id = current_user.namespace.id
end
2014-09-02 18:07:02 +05:30
end
2018-11-18 11:00:15 +05:30
grouped_options_for_select(options, selected_id)
2014-09-02 18:07:02 +05:30
end
2015-04-26 12:48:37 +05:30
def namespace_icon(namespace, size = 40)
2017-08-17 22:00:37 +05:30
if namespace.is_a?(Group)
2018-05-09 12:01:36 +05:30
group_icon_url(namespace)
2015-04-26 12:48:37 +05:30
else
2018-03-27 19:54:05 +05:30
avatar_icon_for_user(namespace.owner, size)
2015-04-26 12:48:37 +05:30
end
end
2019-07-07 11:18:12 +05:30
2021-04-29 21:17:54 +05:30
def cascading_namespace_settings_popover_data(attribute, group, settings_path_helper)
locked_by_ancestor = group.namespace_settings.public_send("#{attribute}_locked_by_ancestor?") # rubocop:disable GitlabSecurity/PublicSend
popover_data = {
locked_by_application_setting: group.namespace_settings.public_send("#{attribute}_locked_by_application_setting?"), # rubocop:disable GitlabSecurity/PublicSend
locked_by_ancestor: locked_by_ancestor
}
if locked_by_ancestor
ancestor_namespace = group.namespace_settings.public_send("#{attribute}_locked_ancestor").namespace # rubocop:disable GitlabSecurity/PublicSend
popover_data[:ancestor_namespace] = {
full_name: ancestor_namespace.full_name,
path: settings_path_helper.call(ancestor_namespace)
}
end
{
popover_data: popover_data.to_json,
testid: 'cascading-settings-lock-icon'
}
end
2021-06-08 01:23:25 +05:30
def cascading_namespace_setting_locked?(attribute, group, **args)
return false if group.nil?
method_name = "#{attribute}_locked?"
return false unless group.namespace_settings.respond_to?(method_name)
group.namespace_settings.public_send(method_name, **args) # rubocop:disable GitlabSecurity/PublicSend
end
2022-01-26 12:08:38 +05:30
def namespaces_as_json(selected = :current_user)
{
group: formatted_namespaces(current_user.manageable_groups_with_routes),
user: formatted_namespaces([current_user.namespace])
}.to_json
end
2022-06-21 17:19:12 +05:30
def pipeline_usage_quota_app_data(namespace)
{
namespace_actual_plan_name: namespace.actual_plan_name,
namespace_path: namespace.full_path,
namespace_id: namespace.id,
page_size: page_size
}
end
2018-03-17 18:26:18 +05:30
private
2018-11-18 11:00:15 +05:30
# Many importers create a temporary Group, so use the real
# group if one exists by that name to prevent duplicates.
2018-12-05 23:21:45 +05:30
# rubocop: disable CodeReuse/ActiveRecord
2018-11-18 11:00:15 +05:30
def dedup_extra_group(extra_group)
unless extra_group.persisted?
2018-11-20 20:47:30 +05:30
existing_group = Group.find_by(path: extra_group.path)
2018-11-18 11:00:15 +05:30
extra_group = existing_group if existing_group&.persisted?
end
extra_group
end
2018-12-05 23:21:45 +05:30
# rubocop: enable CodeReuse/ActiveRecord
2018-11-18 11:00:15 +05:30
2018-03-17 18:26:18 +05:30
def options_for_group(namespaces, display_path:, type:)
group_label = type.pluralize
elements = namespaces.sort_by(&:human_name).map! do |n|
[display_path ? n.full_path : n.human_name, n.id,
data: {
options_parent: group_label,
visibility_level: n.visibility_level_value,
visibility: n.visibility,
name: n.name,
2020-05-24 23:13:21 +05:30
show_path: type == 'group' ? group_path(n) : user_path(n),
edit_path: type == 'group' ? edit_group_path(n) : nil
2018-03-17 18:26:18 +05:30
}]
end
[group_label.camelize, elements]
end
2022-01-26 12:08:38 +05:30
def formatted_namespaces(namespaces)
namespaces.sort_by(&:human_name).map! do |n|
{
id: n.id,
display_path: n.full_path,
human_name: n.human_name,
name: n.name
}
end
end
2014-09-02 18:07:02 +05:30
end
2019-12-04 20:38:33 +05:30
2021-06-08 01:23:25 +05:30
NamespacesHelper.prepend_mod_with('NamespacesHelper')