debian-mirror-gitlab/lib/gitlab/group_search_results.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
1.5 KiB
Ruby
Raw Normal View History

2019-07-07 11:18:12 +05:30
# frozen_string_literal: true
module Gitlab
class GroupSearchResults < SearchResults
attr_reader :group
2021-01-29 00:20:46 +05:30
def initialize(current_user, query, limit_projects = nil, group:, default_project_filter: false, order_by: nil, sort: nil, filters: {})
2019-07-07 11:18:12 +05:30
@group = group
2020-11-24 15:15:51 +05:30
2021-01-29 00:20:46 +05:30
super(current_user, query, limit_projects, default_project_filter: default_project_filter, order_by: order_by, sort: sort, filters: filters)
2019-07-07 11:18:12 +05:30
end
# rubocop:disable CodeReuse/ActiveRecord
def users
2020-11-24 15:15:51 +05:30
# 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)
2019-07-07 11:18:12 +05:30
2020-11-24 15:15:51 +05:30
# members of @group hierarchy where the user has access to the groups
members = GroupMember.where(group: intersect_groups).non_invite
2019-07-07 11:18:12 +05:30
2020-11-24 15:15:51 +05:30
# get all users the current user has access to (-> `SearchResults#users`), which also applies the query
2019-07-07 11:18:12 +05:30
users = super
2020-11-24 15:15:51 +05:30
# filter users that belong to the previously selected groups
users.where(id: members.select(:user_id))
2019-07-07 11:18:12 +05:30
end
# rubocop:enable CodeReuse/ActiveRecord
def issuable_params
2020-03-13 15:44:24 +05:30
super.merge(group_id: group.id, include_subgroups: true)
2019-07-07 11:18:12 +05:30
end
end
end
2021-01-03 14:25:43 +05:30
2021-06-08 01:23:25 +05:30
Gitlab::GroupSearchResults.prepend_mod_with('Gitlab::GroupSearchResults')