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

49 lines
1.5 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)
2014-09-02 18:07:02 +05:30
groups = current_user.owned_groups + current_user.masters_groups
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
users = [current_user.namespace]
2016-06-02 11:05:42 +05:30
data_attr_group = { 'data-options-parent' => 'groups' }
data_attr_users = { 'data-options-parent' => 'users' }
group_opts = [
2017-08-17 22:00:37 +05:30
"Groups", groups.sort_by(&:human_name).map { |g| [display_path ? g.full_path : g.human_name, g.id, data_attr_group] }
2016-06-02 11:05:42 +05:30
]
users_opts = [
"Users", users.sort_by(&:human_name).map { |u| [display_path ? u.path : u.human_name, u.id, data_attr_users] }
]
2014-09-02 18:07:02 +05:30
options = []
options << group_opts
options << users_opts
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)
2015-04-26 12:48:37 +05:30
group_icon(namespace)
else
avatar_icon(namespace.owner.email, size)
end
end
2014-09-02 18:07:02 +05:30
end