60 lines
1.9 KiB
Ruby
60 lines
1.9 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module JiraConnectSubscriptions
|
|
class CreateService < ::JiraConnectSubscriptions::BaseService
|
|
include Gitlab::Utils::StrongMemoize
|
|
MERGE_REQUEST_SYNC_BATCH_SIZE = 20
|
|
MERGE_REQUEST_SYNC_BATCH_DELAY = 1.minute.freeze
|
|
|
|
def execute
|
|
if !params[:jira_user]
|
|
return error(s_('JiraConnect|Could not fetch user information from Jira. ' \
|
|
'Check the permissions in Jira and try again.'), 403)
|
|
elsif !can_administer_jira?
|
|
return error(s_('JiraConnect|The Jira user is not a site administrator. ' \
|
|
'Check the permissions in Jira and try again.'), 403)
|
|
end
|
|
|
|
unless namespace && can?(current_user, :create_jira_connect_subscription, namespace)
|
|
return error(s_('JiraConnect|Cannot find namespace. Make sure you have sufficient permissions.'), 401)
|
|
end
|
|
|
|
create_subscription
|
|
end
|
|
|
|
private
|
|
|
|
def can_administer_jira?
|
|
params[:jira_user]&.site_admin?
|
|
end
|
|
|
|
def create_subscription
|
|
subscription = JiraConnectSubscription.new(installation: jira_connect_installation, namespace: namespace)
|
|
|
|
if subscription.save
|
|
schedule_sync_project_jobs
|
|
|
|
success
|
|
else
|
|
error(subscription.errors.full_messages.join(', '), 422)
|
|
end
|
|
end
|
|
|
|
def namespace
|
|
strong_memoize(:namespace) do
|
|
Namespace.find_by_full_path(params[:namespace_path])
|
|
end
|
|
end
|
|
|
|
def schedule_sync_project_jobs
|
|
namespace.all_projects.each_batch(of: MERGE_REQUEST_SYNC_BATCH_SIZE) do |projects, index|
|
|
JiraConnect::SyncProjectWorker.bulk_perform_in_with_contexts(
|
|
index * MERGE_REQUEST_SYNC_BATCH_DELAY,
|
|
projects,
|
|
arguments_proc: -> (project) { [project.id, Atlassian::JiraConnect::Client.generate_update_sequence_id] },
|
|
context_proc: -> (project) { { project: project } }
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|