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

36 lines
649 B
Ruby

module Ci
class StopEnvironmentService < BaseService
attr_reader :ref
def execute(branch_name)
@ref = branch_name
return unless has_ref_commit_pair?
return unless has_environments?
environments.each do |environment|
next unless environment.stoppable?
environment.stop!(current_user)
end
end
private
def has_ref_commit_pair?
ref && commit
end
def commit
@commit ||= project.commit(ref)
end
def has_environments?
environments.any?
end
def environments
@environments ||= project.environments_for(ref, commit)
end
end
end