1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
# frozen_string_literal: true
module Ci
class RefDeleteUnlockArtifactsWorker
include ApplicationWorker
data_consistency :always
sidekiq_options retry: 3
include PipelineBackgroundQueue
idempotent!
def perform(project_id, user_id, ref_path)
::Project.find_by_id(project_id).try do |project|
::User.find_by_id(user_id).try do |_|
project.ci_refs.find_by_ref_path(ref_path).try do |ci_ref|
enqueue_pipelines_to_unlock(ci_ref)
end
end
end
end
private
def enqueue_pipelines_to_unlock(ci_ref)
result = ::Ci::Refs::EnqueuePipelinesToUnlockService.new.execute(ci_ref)
log_extra_metadata_on_done(:total_pending_entries, result[:total_pending_entries])
log_extra_metadata_on_done(:total_new_entries, result[:total_new_entries])
end
end
end
|