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

51 lines
1.4 KiB
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
module Ci
class StopEnvironmentsService < BaseService
attr_reader :ref
def execute(branch_name)
@ref = branch_name
return unless @ref.present?
2019-07-07 11:18:12 +05:30
environments.each { |environment| stop(environment) }
end
2017-08-17 22:00:37 +05:30
2019-07-07 11:18:12 +05:30
def execute_for_merge_request(merge_request)
merge_request.environments.each { |environment| stop(environment) }
2017-08-17 22:00:37 +05:30
end
2020-03-13 15:44:24 +05:30
##
# This method is for stopping multiple environments in a batch style.
# The maximum acceptable count of environments is roughly 5000. Please
# apply acceptable `LIMIT` clause to the `environments` relation.
def self.execute_in_batch(environments)
stop_actions = environments.stop_actions.load
environments.update_all(auto_stop_at: nil, state: 'stopped')
stop_actions.each do |stop_action|
stop_action.play(stop_action.user)
rescue => e
2020-06-11 16:45:22 +05:30
Gitlab::ErrorTracking.track_exception(e, deployable_id: stop_action.id)
2020-03-13 15:44:24 +05:30
end
end
2017-08-17 22:00:37 +05:30
private
def environments
@environments ||= EnvironmentsFinder
.new(project, current_user, ref: @ref, recently_updated: true)
.execute
end
2019-07-07 11:18:12 +05:30
def stop(environment)
return unless environment.stop_action_available?
return unless can?(current_user, :stop_environment, environment)
environment.stop_with_action!(current_user)
end
2017-08-17 22:00:37 +05:30
end
end