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
|
|
|
|
|
|
|
environments.each do |environment|
|
2017-04-12 07:48:43 -04:00
|
|
|
next unless environment.stop_action?
|
2017-05-01 07:38:57 -04:00
|
|
|
next unless can?(current_user, :stop_environment, environment)
|
2016-11-08 08:20:58 -05:00
|
|
|
|
2017-02-06 10:50:03 -05:00
|
|
|
environment.stop_with_action!(current_user)
|
2016-11-08 08:20:58 -05:00
|
|
|
end
|
|
|
|
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
|
|
|
|
end
|
|
|
|
end
|