summaryrefslogtreecommitdiff
path: root/app/finders/groups_finder.rb
blob: a3a8cd541de6ee9b710010da30a5b3ae86b82b22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
class GroupsFinder
  def execute(current_user = nil)

    segments = all_groups(current_user)

    if segments.length > 1
      union = Gitlab::SQL::Union.new(segments.map { |s| s.select(:id) })
      Group.where("namespaces.id IN (#{union.to_sql})").order_id_desc
    else
      segments.first
    end
  end

  private

  def all_groups(current_user)
    if current_user
      [current_user.authorized_groups, public_and_internal_groups]
    else
      [Group.public_only]
    end
  end

  def public_groups
    Group.unscoped.public_only
  end

  def public_and_internal_groups
    Group.unscoped.public_and_internal_only
  end
end