summaryrefslogtreecommitdiff
path: root/app/services/ci/play_build_service.rb
blob: ebc980a90534c029e07e21cd8a24ecf973a2d356 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

module Ci
  class PlayBuildService < ::BaseService
    def execute(build, job_variables_attributes = nil)
      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

      # Try to enqueue the build, otherwise create a duplicate.
      #
      if build.enqueue
        build.tap { |action| action.update(user: current_user, job_variables_attributes: job_variables_attributes || []) }
      else
        Ci::Build.retry(build, current_user)
      end
    end
  end
end