summaryrefslogtreecommitdiff
path: root/app/services/ci/job_artifacts/delete_service.rb
blob: c9d590eccc43c7e7e3cd46646618e68d9f212ce0 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
# frozen_string_literal: true

module Ci
  module JobArtifacts
    class DeleteService
      include BaseServiceUtility

      def initialize(build)
        @build = build
      end

      def execute
        if build.project.refreshing_build_artifacts_size?
          Gitlab::ProjectStatsRefreshConflictsLogger.warn_artifact_deletion_during_stats_refresh(
            method: 'Ci::JobArtifacts::DeleteService#execute',
            project_id: build.project_id
          )
          return ServiceResponse.error(
            message: 'Action temporarily disabled. The project this job belongs to is undergoing stats refresh.',
            reason: :project_stats_refresh
          )
        end

        result = Ci::JobArtifacts::DestroyBatchService.new(build.job_artifacts.erasable).execute

        if result.fetch(:status) == :success
          ServiceResponse.success(payload:
          {
            destroyed_artifacts_count: result.fetch(:destroyed_artifacts_count),
            statistics_updates: result.fetch(:statistics_updates)
          })
        else
          ServiceResponse.error(message: result.fetch(:message))
        end
      end

      private

      attr_reader :build
    end
  end
end