2016-03-20 16:03:53 -04:00
|
|
|
class GroupsFinder < UnionFinder
|
2017-05-03 19:51:25 -04:00
|
|
|
def initialize(current_user = nil, params = {})
|
|
|
|
@current_user = current_user
|
|
|
|
@params = params
|
|
|
|
end
|
2016-03-01 10:22:29 -05:00
|
|
|
|
2017-05-03 19:51:25 -04:00
|
|
|
def execute
|
2017-06-14 15:37:29 -04:00
|
|
|
items = all_groups.map do |item|
|
|
|
|
by_parent(item)
|
|
|
|
end
|
|
|
|
find_union(items, Group).with_route.order_id_desc
|
2016-03-01 10:22:29 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-05-03 19:51:25 -04:00
|
|
|
attr_reader :current_user, :params
|
|
|
|
|
|
|
|
def all_groups
|
2016-03-20 16:03:53 -04:00
|
|
|
groups = []
|
|
|
|
|
2017-06-13 03:11:33 -04:00
|
|
|
if current_user
|
|
|
|
groups << Gitlab::GroupHierarchy.new(groups_for_ancestors, groups_for_descendants).all_groups
|
|
|
|
end
|
2016-03-20 16:03:53 -04:00
|
|
|
groups << Group.unscoped.public_to_user(current_user)
|
2016-03-17 18:42:46 -04:00
|
|
|
|
2016-03-20 16:03:53 -04:00
|
|
|
groups
|
2016-03-17 18:42:46 -04:00
|
|
|
end
|
2017-05-03 19:51:25 -04:00
|
|
|
|
2017-06-14 15:37:29 -04:00
|
|
|
def groups_for_ancestors
|
|
|
|
current_user.authorized_groups
|
|
|
|
end
|
|
|
|
|
|
|
|
def groups_for_descendants
|
|
|
|
current_user.groups
|
|
|
|
end
|
|
|
|
|
2017-05-03 19:51:25 -04:00
|
|
|
def by_parent(groups)
|
|
|
|
return groups unless params[:parent]
|
|
|
|
|
|
|
|
groups.where(parent: params[:parent])
|
|
|
|
end
|
2016-03-01 10:22:29 -05:00
|
|
|
end
|