debian-mirror-gitlab/app/services/ci/destroy_pipeline_service.rb

23 lines
770 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
# frozen_string_literal: true
module Ci
class DestroyPipelineService < BaseService
def execute(pipeline)
raise Gitlab::Access::AccessDeniedError unless can?(current_user, :destroy_pipeline, pipeline)
2019-07-31 22:56:46 +05:30
Ci::ExpirePipelineCacheService.new.execute(pipeline, delete: true)
2019-07-07 11:18:12 +05:30
2021-10-27 15:23:28 +05:30
pipeline.cancel_running if pipeline.cancelable?
2021-09-30 23:02:18 +05:30
2021-11-18 22:05:49 +05:30
# 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.
2021-09-30 23:02:18 +05:30
pipeline.reset.destroy!
2020-11-24 15:15:51 +05:30
ServiceResponse.success(message: 'Pipeline not found')
rescue ActiveRecord::RecordNotFound
ServiceResponse.error(message: 'Pipeline not found')
2019-02-15 15:39:39 +05:30
end
end
end