2012-11-27 10:48:25 -05:00
|
|
|
module NamespacesHelper
|
2017-02-20 12:01:37 -05:00
|
|
|
def namespace_id_from(params)
|
|
|
|
params.dig(:project, :namespace_id) || params[:namespace_id]
|
|
|
|
end
|
|
|
|
|
2016-09-19 06:29:49 -04:00
|
|
|
def namespaces_options(selected = :current_user, display_path: false, extra_group: nil)
|
2017-08-15 13:03:54 -04:00
|
|
|
groups = current_user.owned_groups + current_user.masters_groups
|
|
|
|
users = [current_user.namespace]
|
2016-08-08 09:05:58 -04:00
|
|
|
|
2017-03-24 14:19:50 -04:00
|
|
|
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-08-08 09:05:58 -04:00
|
|
|
|
2017-08-29 01:49:01 -04:00
|
|
|
options = []
|
|
|
|
options << options_for_group(groups, display_path: display_path, type: 'group')
|
|
|
|
options << options_for_group(users, display_path: display_path, type: 'user')
|
2012-11-27 10:48:25 -05:00
|
|
|
|
|
|
|
if selected == :current_user && current_user.namespace
|
|
|
|
selected = current_user.namespace.id
|
|
|
|
end
|
|
|
|
|
|
|
|
grouped_options_for_select(options, selected)
|
|
|
|
end
|
2013-11-15 08:25:09 -05:00
|
|
|
|
2014-11-14 09:06:39 -05:00
|
|
|
def namespace_icon(namespace, size = 40)
|
2017-02-22 12:25:50 -05:00
|
|
|
if namespace.is_a?(Group)
|
2015-03-12 16:56:53 -04:00
|
|
|
group_icon(namespace)
|
2014-11-14 09:06:39 -05:00
|
|
|
else
|
|
|
|
avatar_icon(namespace.owner.email, size)
|
|
|
|
end
|
|
|
|
end
|
2017-08-15 13:03:54 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-08-29 01:49:01 -04:00
|
|
|
def options_for_group(namespaces, display_path:, type:)
|
|
|
|
group_label = type.pluralize
|
2017-08-15 13:03:54 -04:00
|
|
|
elements = namespaces.sort_by(&:human_name).map! do |n|
|
|
|
|
[display_path ? n.full_path : n.human_name, n.id,
|
2017-08-26 03:43:45 -04:00
|
|
|
data: {
|
2017-08-29 01:49:01 -04:00
|
|
|
options_parent: group_label,
|
2017-08-26 03:43:45 -04:00
|
|
|
visibility_level: n.visibility_level_value,
|
|
|
|
visibility: n.visibility,
|
|
|
|
name: n.name,
|
|
|
|
show_path: n.is_a?(Group) ? group_path(n) : user_path(n),
|
|
|
|
edit_path: n.is_a?(Group) ? edit_group_path(n) : nil
|
|
|
|
}]
|
2017-08-15 13:03:54 -04:00
|
|
|
end
|
|
|
|
|
2017-08-29 01:49:01 -04:00
|
|
|
[group_label.camelize, elements]
|
2017-08-15 13:03:54 -04:00
|
|
|
end
|
2012-11-27 10:48:25 -05:00
|
|
|
end
|