summaryrefslogtreecommitdiff
path: root/lib/gitlab/group_search_results.rb
blob: 0cc3de297ba1c478c1dedbbc2a672038bc369eb3 (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
# frozen_string_literal: true

module Gitlab
  class GroupSearchResults < SearchResults
    attr_reader :group

    def initialize(current_user, query, limit_projects = nil, group:, default_project_filter: false, filters: {})
      @group = group

      super(current_user, query, limit_projects, default_project_filter: default_project_filter, filters: filters)
    end

    # rubocop:disable CodeReuse/ActiveRecord
    def users
      # get all groups the current user has access to
      # ignore order inherited from GroupsFinder to improve performance
      current_user_groups = GroupsFinder.new(current_user).execute.unscope(:order)

      # the hierarchy of the current group
      group_groups = @group.self_and_hierarchy.unscope(:order)

      # the groups where the above hierarchies intersect
      intersect_groups = group_groups.where(id: current_user_groups)

      # members of @group hierarchy where the user has access to the groups
      members = GroupMember.where(group: intersect_groups).non_invite

      # get all users the current user has access to (-> `SearchResults#users`), which also applies the query
      users = super

      #  filter users that belong to the previously selected groups
      users.where(id: members.select(:user_id))
    end
    # rubocop:enable CodeReuse/ActiveRecord

    def issuable_params
      super.merge(group_id: group.id, include_subgroups: true)
    end
  end
end