32b96bfd81
Enable frozen string in app/graphql + app/finders See merge request gitlab-org/gitlab-ce!21681
50 lines
1.4 KiB
Ruby
50 lines
1.4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class PersonalProjectsFinder < UnionFinder
|
|
include Gitlab::Allowable
|
|
|
|
def initialize(user, params = {})
|
|
@user = user
|
|
@params = params
|
|
end
|
|
|
|
# Finds the projects belonging to the user in "@user", limited to either
|
|
# public projects or projects visible to the given user.
|
|
#
|
|
# current_user - When given the list of projects is limited to those only
|
|
# visible by this user.
|
|
# params - Optional query parameters
|
|
# min_access_level: integer
|
|
#
|
|
# Returns an ActiveRecord::Relation.
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
|
def execute(current_user = nil)
|
|
return Project.none unless can?(current_user, :read_user_profile, @user)
|
|
|
|
segments = all_projects(current_user)
|
|
|
|
find_union(segments, Project).includes(:namespace).order_updated_desc
|
|
end
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
|
|
|
private
|
|
|
|
def all_projects(current_user)
|
|
return [projects_with_min_access_level(current_user)] if current_user && min_access_level?
|
|
|
|
projects = []
|
|
projects << @user.personal_projects.visible_to_user(current_user) if current_user
|
|
projects << @user.personal_projects.public_to_user(current_user)
|
|
projects
|
|
end
|
|
|
|
def projects_with_min_access_level(current_user)
|
|
@user
|
|
.personal_projects
|
|
.visible_to_user_and_access_level(current_user, @params[:min_access_level])
|
|
end
|
|
|
|
def min_access_level?
|
|
@params[:min_access_level].present?
|
|
end
|
|
end
|