Class: Ci::DestroyPipelineService

Inherits:
BaseService show all
Defined in:
app/services/ci/destroy_pipeline_service.rb

Instance Attribute Summary

Attributes inherited from BaseService

#current_user, #params, #project

Instance Method Summary collapse

Methods inherited from BaseService

#initialize

Methods included from BaseServiceUtility

#deny_visibility_level, #event_service, #log_error, #log_info, #notification_service, #system_hook_service, #todo_service, #visibility_level

Methods included from Gitlab::Allowable

#can?

Constructor Details

This class inherits a constructor from BaseService

Instance Method Details

#execute(pipeline) ⇒ Object



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'app/services/ci/destroy_pipeline_service.rb', line 5

def execute(pipeline)
  raise Gitlab::Access::AccessDeniedError unless can?(current_user, :destroy_pipeline, pipeline)

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

  # ensure cancellation happens sync so we accumulate compute minutes successfully
  # before deleting the pipeline.
  ::Ci::CancelPipelineService.new(
    pipeline: pipeline,
    current_user: current_user,
    cascade_to_children: true,
    execute_async: false).force_execute

  # 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!

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