32 lines
556 B
Ruby
32 lines
556 B
Ruby
module Ci
|
|
class StopEnvironmentService < BaseService
|
|
attr_reader :ref
|
|
|
|
def execute(branch_name)
|
|
@ref = branch_name
|
|
|
|
return unless has_ref?
|
|
return unless has_environments?
|
|
|
|
environments.each do |environment|
|
|
next unless environment.stoppable?
|
|
|
|
environment.stop!(current_user)
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def has_ref?
|
|
@ref.present?
|
|
end
|
|
|
|
def has_environments?
|
|
environments.any?
|
|
end
|
|
|
|
def environments
|
|
@environments ||= project.environments_for(@ref)
|
|
end
|
|
end
|
|
end
|