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
|
|
|
|
|
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-07-16 23:28:13 +05:30
|
|
|
def pipeline_usage_app_data(namespace)
|
2022-06-21 17:19:12 +05:30
|
|
|
{
|
|
|
|
namespace_actual_plan_name: namespace.actual_plan_name,
|
|
|
|
namespace_path: namespace.full_path,
|
|
|
|
namespace_id: namespace.id,
|
2022-07-16 23:28:13 +05:30
|
|
|
user_namespace: namespace.user_namespace?.to_s,
|
2022-06-21 17:19:12 +05:30
|
|
|
page_size: page_size
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2023-04-23 21:23:45 +05:30
|
|
|
def storage_usage_app_data(namespace)
|
|
|
|
{
|
|
|
|
namespace_id: namespace.id,
|
|
|
|
namespace_path: namespace.full_path,
|
|
|
|
user_namespace: namespace.user_namespace?.to_s,
|
|
|
|
default_per_page: page_size
|
|
|
|
}
|
2018-03-17 18:26:18 +05:30
|
|
|
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')
|