2016-11-08 08:20:58 -05:00
|
|
|
module Ci
|
|
|
|
class StopEnvironmentService < 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
|
|
|
|
|
2016-11-09 08:46:36 -05:00
|
|
|
return unless has_ref?
|
2016-11-08 08:20:58 -05:00
|
|
|
return unless has_environments?
|
|
|
|
|
|
|
|
environments.each do |environment|
|
|
|
|
next unless environment.stoppable?
|
|
|
|
|
|
|
|
environment.stop!(current_user)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2016-11-09 08:46:36 -05:00
|
|
|
def has_ref?
|
|
|
|
@ref.present?
|
2016-11-08 08:20:58 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def has_environments?
|
|
|
|
environments.any?
|
|
|
|
end
|
|
|
|
|
|
|
|
def environments
|
2016-11-09 08:46:36 -05:00
|
|
|
@environments ||= project.environments_for(@ref)
|
2016-11-08 08:20:58 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|