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

59 lines
1.8 KiB
Ruby
Raw Normal View History

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
2016-09-29 09:46:39 +05:30
def namespaces_options(selected = :current_user, display_path: false, extra_group: nil)
2018-03-17 18:26:18 +05:30
groups = current_user.manageable_groups
.joins(:route)
.includes(:route)
.order('routes.path')
users = [current_user.namespace]
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
if extra_group && extra_group.is_a?(Group) && (!Group.exists?(name: extra_group.name) || Ability.allowed?(current_user, :read_group, extra_group))
groups |= [extra_group]
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')
options << options_for_group(users, display_path: display_path, type: 'user')
2014-09-02 18:07:02 +05:30
if selected == :current_user && current_user.namespace
selected = current_user.namespace.id
end
grouped_options_for_select(options, selected)
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
2018-03-17 18:26:18 +05:30
private
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,
show_path: (type == 'group') ? group_path(n) : user_path(n),
edit_path: (type == 'group') ? edit_group_path(n) : nil
}]
end
[group_label.camelize, elements]
end
2014-09-02 18:07:02 +05:30
end