summaryrefslogtreecommitdiff
path: root/app/services/ci/destroy_pipeline_service.rb
blob: 6fbde5d291c744e4f79e6fef1be34e61510d72e0 (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
# frozen_string_literal: true

module Ci
  class DestroyPipelineService < BaseService
    def execute(pipeline)
      raise Gitlab::Access::AccessDeniedError unless can?(current_user, :destroy_pipeline, pipeline)

      Ci::ExpirePipelineCacheService.new.execute(pipeline, delete: true)

      pipeline.cancel_running if pipeline.cancelable?

      # Ci::Pipeline#destroy triggers `use_fast_destroy :job_artifacts` and
      # ci_builds has ON DELETE CASCADE to ci_pipelines. The pipeline, the builds,
      # job and pipeline artifacts all get destroyed here.
      ::Gitlab::Database::QueryAnalyzers::PreventCrossDatabaseModification.allow_cross_database_modification_within_transaction(url: 'https://gitlab.com/gitlab-org/gitlab/-/issues/345664') do
        pipeline.reset.destroy!
      end

      ServiceResponse.success(message: 'Pipeline not found')
    rescue ActiveRecord::RecordNotFound
      ServiceResponse.error(message: 'Pipeline not found')
    end
  end
end