2018-11-18 11:00:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
module Ci
|
|
|
|
class PlayBuildService < ::BaseService
|
2019-10-12 21:52:04 +05:30
|
|
|
def execute(build, job_variables_attributes = nil)
|
2021-09-04 01:27:46 +05:30
|
|
|
check_access!(build, job_variables_attributes)
|
2021-03-08 18:12:59 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
# Try to enqueue the build, otherwise create a duplicate.
|
|
|
|
#
|
|
|
|
if build.enqueue
|
2021-04-29 21:17:54 +05:30
|
|
|
build.tap do |build|
|
2022-01-26 12:08:38 +05:30
|
|
|
build.update!(user: current_user, job_variables_attributes: job_variables_attributes || [])
|
2021-04-29 21:17:54 +05:30
|
|
|
|
|
|
|
AfterRequeueJobService.new(project, current_user).execute(build)
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
else
|
2022-03-02 08:16:31 +05:30
|
|
|
# Retrying in Ci::PlayBuildService is a legacy process that should be removed.
|
|
|
|
# Instead, callers should explicitly execute Ci::RetryBuildService.
|
|
|
|
# See https://gitlab.com/gitlab-org/gitlab/-/issues/347493.
|
|
|
|
build.retryable? ? Ci::Build.retry(build, current_user) : build
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
end
|
2021-09-04 01:27:46 +05:30
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def check_access!(build, job_variables_attributes)
|
|
|
|
raise Gitlab::Access::AccessDeniedError unless can?(current_user, :play_job, build)
|
|
|
|
|
|
|
|
if job_variables_attributes.present? && !can?(current_user, :set_pipeline_variables, project)
|
|
|
|
raise Gitlab::Access::AccessDeniedError
|
|
|
|
end
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
end
|
2021-09-04 01:27:46 +05:30
|
|
|
|
|
|
|
Ci::PlayBuildService.prepend_mod_with('Ci::PlayBuildService')
|