2018-07-16 12:31:01 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-11-08 08:20:58 -05:00
|
|
|
module Ci
|
2016-11-14 07:57:09 -05:00
|
|
|
class StopEnvironmentsService < BaseService
|
2016-11-09 03:42:09 -05:00
|
|
|
attr_reader :ref
|
2016-11-08 08:20:58 -05:00
|
|
|
|
2016-11-09 03:42:09 -05:00
|
|
|
def execute(branch_name)
|
|
|
|
@ref = branch_name
|
|
|
|
|
2017-05-01 07:38:57 -04:00
|
|
|
return unless @ref.present?
|
2016-11-08 08:20:58 -05:00
|
|
|
|
2019-04-24 07:37:29 -04:00
|
|
|
environments.each { |environment| stop(environment) }
|
|
|
|
end
|
2016-11-08 08:20:58 -05:00
|
|
|
|
2019-04-24 07:37:29 -04:00
|
|
|
def execute_for_merge_request(merge_request)
|
|
|
|
merge_request.environments.each { |environment| stop(environment) }
|
2016-11-08 08:20:58 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def environments
|
2017-04-06 09:19:52 -04:00
|
|
|
@environments ||= EnvironmentsFinder
|
|
|
|
.new(project, current_user, ref: @ref, recently_updated: true)
|
|
|
|
.execute
|
2016-11-08 08:20:58 -05:00
|
|
|
end
|
2019-04-24 07:37:29 -04:00
|
|
|
|
|
|
|
def stop(environment)
|
|
|
|
return unless environment.stop_action_available?
|
|
|
|
return unless can?(current_user, :stop_environment, environment)
|
|
|
|
|
|
|
|
environment.stop_with_action!(current_user)
|
|
|
|
end
|
2016-11-08 08:20:58 -05:00
|
|
|
end
|
|
|
|
end
|