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

25 lines
881 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
2022-03-02 08:16:31 +05:30
# The pipeline, the builds, job and pipeline artifacts all get destroyed here.
# Ci::Pipeline#destroy triggers fast destroy on job_artifacts and
# build_trace_chunks to remove the records and data stored in object storage.
# ci_builds records are deleted using ON DELETE CASCADE from ci_pipelines
#
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