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: d3597ef090192ee01f5380c84344df1303ed7b79 (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
class GroupsFinder
  def execute(current_user, options = {})
    all_groups(current_user)
  end

  private

  def all_groups(current_user)
    if current_user
      if current_user.authorized_groups.any?
        # User has access to groups
        #
        # Return only:
        #   groups with public projects
        #   groups with internal projects
        #   groups with joined projects
        #
        group_ids = Project.public_and_internal_only.pluck(:namespace_id) +
          current_user.authorized_groups.pluck(:id)
        Group.where(id: group_ids)
      else
        # User has no group membership
        #
        # Return only:
        #   groups with public projects
        #   groups with internal projects
        #
        Group.where(id: Project.public_and_internal_only.pluck(:namespace_id))
      end
    else
      # Not authenticated
      #
      # Return only:
      #   groups with public projects
      Group.where(id: Project.public_only.pluck(:namespace_id))
    end
  end
end