Welcome to mirror list, hosted at ThFree Co, Russian Federation.

groups_finder.rb « finders « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 91cb0f228f0a85abab9817c1c7dc8016568230bd (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
32
33
34
35
36
37
38
39
40
41
42
43
44
class GroupsFinder
  # Finds the groups available to the given user.
  #
  # current_user - The user to find the groups for.
  #
  # Returns an ActiveRecord::Relation.
  def execute(current_user = nil)
    if current_user
      relation = groups_visible_to_user(current_user)
    else
      relation = public_groups
    end

    relation.order_id_desc
  end

  private

  # This method returns the groups "current_user" can see.
  def groups_visible_to_user(current_user)
    base = groups_for_projects(public_and_internal_projects)

    union = Gitlab::SQL::Union.
      new([base.select(:id), current_user.authorized_groups.select(:id)])

    Group.where("namespaces.id IN (#{union.to_sql})")
  end

  def public_groups
    groups_for_projects(public_projects)
  end

  def groups_for_projects(projects)
    Group.public_and_given_groups(projects.select(:namespace_id))
  end

  def public_projects
    Project.unscoped.public_only
  end

  def public_and_internal_projects
    Project.unscoped.public_and_internal_only
  end
end