debian-mirror-gitlab/app/finders/projects_finder.rb

181 lines
4.4 KiB
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
# ProjectsFinder
#
# Used to filter Projects by set of params
#
# Arguments:
# current_user - which user use
# project_ids_relation: int[] - project ids to use
# params:
# trending: boolean
2017-09-10 17:25:29 +05:30
# owned: boolean
2017-08-17 22:00:37 +05:30
# non_public: boolean
# starred: boolean
# sort: string
# visibility_level: int
# tags: string[]
# personal: boolean
# search: string
# non_archived: boolean
2018-11-18 11:00:15 +05:30
# archived: 'only' or boolean
# min_access_level: integer
2017-08-17 22:00:37 +05:30
#
2016-06-02 11:05:42 +05:30
class ProjectsFinder < UnionFinder
2018-03-17 18:26:18 +05:30
include CustomAttributesFilter
2019-12-04 20:38:33 +05:30
prepend_if_ee('::EE::ProjectsFinder') # rubocop: disable Cop/InjectEnterpriseEditionModule
2017-08-17 22:00:37 +05:30
attr_accessor :params
attr_reader :current_user, :project_ids_relation
2014-09-02 18:07:02 +05:30
2017-08-17 22:00:37 +05:30
def initialize(params: {}, current_user: nil, project_ids_relation: nil)
@params = params
@current_user = current_user
@project_ids_relation = project_ids_relation
end
def execute
2017-09-10 17:25:29 +05:30
user = params.delete(:user)
collection =
if user
2018-12-05 23:21:45 +05:30
PersonalProjectsFinder.new(user, finder_params).execute(current_user) # rubocop: disable CodeReuse/Finder
2017-09-10 17:25:29 +05:30
else
init_collection
end
2018-12-13 13:39:08 +05:30
collection = filter_projects(collection)
2017-09-10 17:25:29 +05:30
sort(collection)
2014-09-02 18:07:02 +05:30
end
private
2017-08-17 22:00:37 +05:30
def init_collection
2017-09-10 17:25:29 +05:30
if current_user
collection_with_user
else
collection_without_user
end
end
2018-12-13 13:39:08 +05:30
# EE would override this to add more filters
def filter_projects(collection)
collection = by_ids(collection)
collection = by_personal(collection)
collection = by_starred(collection)
collection = by_trending(collection)
2019-07-07 11:18:12 +05:30
collection = by_visibility_level(collection)
2018-12-13 13:39:08 +05:30
collection = by_tags(collection)
collection = by_search(collection)
collection = by_archived(collection)
collection = by_custom_attributes(collection)
collection = by_deleted_status(collection)
collection
end
2017-09-10 17:25:29 +05:30
def collection_with_user
if owned_projects?
current_user.owned_projects
2018-11-18 11:00:15 +05:30
elsif min_access_level?
2019-07-07 11:18:12 +05:30
current_user.authorized_projects(params[:min_access_level])
2017-09-10 17:25:29 +05:30
else
if private_only?
current_user.authorized_projects
else
Project.public_or_visible_to_user(current_user)
end
end
end
2015-11-26 14:37:03 +05:30
2017-09-10 17:25:29 +05:30
# Builds a collection for an anonymous user.
def collection_without_user
2018-11-18 11:00:15 +05:30
if private_only? || owned_projects? || min_access_level?
2017-09-10 17:25:29 +05:30
Project.none
2017-08-17 22:00:37 +05:30
else
2017-09-10 17:25:29 +05:30
Project.public_to_user
2017-08-17 22:00:37 +05:30
end
2017-09-10 17:25:29 +05:30
end
def owned_projects?
params[:owned].present?
end
2015-11-26 14:37:03 +05:30
2017-09-10 17:25:29 +05:30
def private_only?
params[:non_public].present?
2015-11-26 14:37:03 +05:30
end
2017-08-17 22:00:37 +05:30
2018-11-18 11:00:15 +05:30
def min_access_level?
params[:min_access_level].present?
end
2018-12-05 23:21:45 +05:30
# rubocop: disable CodeReuse/ActiveRecord
2017-08-17 22:00:37 +05:30
def by_ids(items)
2019-12-26 22:10:19 +05:30
items = items.where(id: project_ids_relation) if project_ids_relation
items = items.where('id > ?', params[:id_after]) if params[:id_after]
items = items.where('id < ?', params[:id_before]) if params[:id_before]
items
2017-08-17 22:00:37 +05:30
end
2018-12-05 23:21:45 +05:30
# rubocop: enable CodeReuse/ActiveRecord
2017-08-17 22:00:37 +05:30
def union(items)
find_union(items, Project).with_route
end
def by_personal(items)
(params[:personal].present? && current_user) ? items.personal(current_user) : items
end
2017-09-10 17:25:29 +05:30
def by_starred(items)
(params[:starred].present? && current_user) ? items.starred_by(current_user) : items
end
def by_trending(items)
params[:trending].present? ? items.trending : items
end
2018-12-05 23:21:45 +05:30
# rubocop: disable CodeReuse/ActiveRecord
2019-07-07 11:18:12 +05:30
def by_visibility_level(items)
2017-08-17 22:00:37 +05:30
params[:visibility_level].present? ? items.where(visibility_level: params[:visibility_level]) : items
end
2018-12-05 23:21:45 +05:30
# rubocop: enable CodeReuse/ActiveRecord
2017-08-17 22:00:37 +05:30
def by_tags(items)
params[:tag].present? ? items.tagged_with(params[:tag]) : items
end
def by_search(items)
params[:search] ||= params[:name]
params[:search].present? ? items.search(params[:search]) : items
end
2018-12-05 23:21:45 +05:30
def by_deleted_status(items)
params[:without_deleted].present? ? items.without_deleted : items
end
2017-08-17 22:00:37 +05:30
def sort(items)
2018-05-09 12:01:36 +05:30
params[:sort].present? ? items.sort_by_attribute(params[:sort]) : items.order_id_desc
2017-08-17 22:00:37 +05:30
end
def by_archived(projects)
2018-03-17 18:26:18 +05:30
if params[:non_archived]
projects.non_archived
2018-11-18 11:00:15 +05:30
elsif params.key?(:archived)
2018-03-17 18:26:18 +05:30
if params[:archived] == 'only'
projects.archived
elsif Gitlab::Utils.to_boolean(params[:archived])
projects
else
projects.non_archived
end
else
projects
end
2017-08-17 22:00:37 +05:30
end
2018-11-18 11:00:15 +05:30
def finder_params
return {} unless min_access_level?
{ min_access_level: params[:min_access_level] }
end
2014-09-02 18:07:02 +05:30
end