2018-12-05 23:21:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
class MergeRequestTargetProjectFinder
|
2018-03-27 19:54:05 +05:30
|
|
|
include FinderMethods
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
attr_reader :current_user, :source_project
|
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
def initialize(current_user: nil, source_project:, project_feature: :merge_requests)
|
2018-03-17 18:26:18 +05:30
|
|
|
@current_user = current_user
|
|
|
|
@source_project = source_project
|
2021-04-17 20:07:23 +05:30
|
|
|
@project_feature = project_feature
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
def execute(include_routes: false)
|
|
|
|
if source_project.fork_network
|
|
|
|
include_routes ? projects.inc_routes : projects
|
2018-03-17 18:26:18 +05:30
|
|
|
else
|
2021-04-17 20:07:23 +05:30
|
|
|
Project.id_in(source_project.id)
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
end
|
2020-01-01 13:55:28 +05:30
|
|
|
|
|
|
|
private
|
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
attr_reader :project_feature
|
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
def projects
|
|
|
|
source_project
|
|
|
|
.fork_network
|
|
|
|
.projects
|
|
|
|
.public_or_visible_to_user(current_user)
|
|
|
|
.non_archived
|
2021-04-17 20:07:23 +05:30
|
|
|
.with_feature_available_for_user(project_feature, current_user)
|
2020-01-01 13:55:28 +05:30
|
|
|
end
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|