Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ref_delete_unlock_artifacts_worker.rb « ci « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aeadf111bfb5396bf20cd978212576dd4aa55d44 (plain)
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
# 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 |user|
          project.ci_refs.find_by_ref_path(ref_path).try do |ci_ref|
            results = ::Ci::UnlockArtifactsService
              .new(project, user)
              .execute(ci_ref)

            log_extra_metadata_on_done(:unlocked_pipelines, results[:unlocked_pipelines])
            log_extra_metadata_on_done(:unlocked_job_artifacts, results[:unlocked_job_artifacts])
          end
        end
      end
    end
  end
end