gitlab-org--gitlab-foss/app/services/ci/stop_environment_service.rb
2016-11-09 14:46:36 +01:00

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