2018-08-18 07:19:57 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
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
|
|
|
|
|
2018-08-06 11:00:51 -04:00
|
|
|
def namespaces_options(selected = :current_user, display_path: false, groups: nil, extra_group: nil, groups_only: false)
|
2018-11-07 11:44:21 -05:00
|
|
|
groups ||= current_user.manageable_groups_with_routes
|
2017-11-14 07:11:43 -05:00
|
|
|
users = [current_user.namespace]
|
2018-08-01 16:13:14 -04:00
|
|
|
selected_id = selected
|
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
|
|
|
|
|
2018-07-31 15:31:15 -04:00
|
|
|
if extra_group && extra_group.is_a?(Group)
|
2018-08-01 16:19:20 -04:00
|
|
|
extra_group = dedup_extra_group(extra_group)
|
2018-07-31 15:50:12 -04:00
|
|
|
|
|
|
|
if Ability.allowed?(current_user, :read_group, extra_group)
|
2018-08-01 15:05:46 -04:00
|
|
|
# Assign the value to an invalid primary ID so that the select box works
|
2018-08-01 16:13:14 -04:00
|
|
|
extra_group.id = -1 unless extra_group.persisted?
|
2018-08-01 15:05:46 -04:00
|
|
|
selected_id = extra_group.id if selected == :extra_group
|
2018-07-31 15:50:12 -04:00
|
|
|
groups |= [extra_group]
|
2018-08-01 16:19:20 -04:00
|
|
|
else
|
|
|
|
selected_id = current_user.namespace.id
|
2018-07-31 15:50:12 -04:00
|
|
|
end
|
2017-03-24 14:19:50 -04:00
|
|
|
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')
|
2012-11-27 10:48:25 -05:00
|
|
|
|
2018-07-05 07:34:57 -04:00
|
|
|
unless groups_only
|
|
|
|
options << options_for_group(users, display_path: display_path, type: 'user')
|
|
|
|
|
2018-08-01 00:31:59 -04:00
|
|
|
if selected == :current_user && current_user.namespace
|
2018-08-01 15:05:46 -04:00
|
|
|
selected_id = current_user.namespace.id
|
2018-07-05 07:34:57 -04:00
|
|
|
end
|
2012-11-27 10:48:25 -05:00
|
|
|
end
|
|
|
|
|
2018-08-01 15:05:46 -04:00
|
|
|
grouped_options_for_select(options, selected_id)
|
2012-11-27 10:48:25 -05:00
|
|
|
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)
|
2018-03-28 09:09:07 -04:00
|
|
|
group_icon_url(namespace)
|
2014-11-14 09:06:39 -05:00
|
|
|
else
|
2018-02-09 06:30:35 -05:00
|
|
|
avatar_icon_for_user(namespace.owner, size)
|
2014-11-14 09:06:39 -05:00
|
|
|
end
|
|
|
|
end
|
2019-04-05 14:49:46 -04:00
|
|
|
|
|
|
|
def namespaces_options_with_developer_maintainer_access(options = {})
|
|
|
|
selected = options.delete(:selected) || :current_user
|
|
|
|
options[:groups] = current_user.manageable_groups_with_routes(include_groups_with_developer_maintainer_access: true)
|
|
|
|
|
|
|
|
namespaces_options(selected, options)
|
|
|
|
end
|
2017-08-15 13:03:54 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
|
2018-08-01 16:19:20 -04:00
|
|
|
# Many importers create a temporary Group, so use the real
|
|
|
|
# group if one exists by that name to prevent duplicates.
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2018-08-01 16:19:20 -04:00
|
|
|
def dedup_extra_group(extra_group)
|
|
|
|
unless extra_group.persisted?
|
2018-08-31 17:57:37 -04:00
|
|
|
existing_group = Group.find_by(path: extra_group.path)
|
2018-08-01 16:19:20 -04:00
|
|
|
extra_group = existing_group if existing_group&.persisted?
|
|
|
|
end
|
|
|
|
|
|
|
|
extra_group
|
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2018-08-01 16:19:20 -04:00
|
|
|
|
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,
|
2017-08-30 13:24:49 -04:00
|
|
|
show_path: (type == 'group') ? group_path(n) : user_path(n),
|
|
|
|
edit_path: (type == 'group') ? edit_group_path(n) : nil
|
2017-08-26 03:43:45 -04:00
|
|
|
}]
|
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
|