18 lines
626 B
Ruby
18 lines
626 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Ci
|
|
class CancelUserPipelinesService
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
|
# This is a bug with CodeReuse/ActiveRecord cop
|
|
# https://gitlab.com/gitlab-org/gitlab/issues/32332
|
|
def execute(user)
|
|
# TODO: fix N+1 queries https://gitlab.com/gitlab-org/gitlab/-/issues/300685
|
|
user.pipelines.cancelable.find_each(&:cancel_running)
|
|
|
|
ServiceResponse.success(message: 'Pipeline canceled')
|
|
rescue ActiveRecord::StaleObjectError
|
|
ServiceResponse.error(message: 'Error canceling pipeline')
|
|
end
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
|
end
|
|
end
|