gitlab-org--gitlab-foss/app/services/ci/stop_environment_service.rb

37 lines
649 B
Ruby
Raw Normal View History

2016-11-08 13:20:58 +00:00
module Ci
class StopEnvironmentService < BaseService
attr_reader :ref
2016-11-08 13:20:58 +00:00
def execute(branch_name)
@ref = branch_name
return unless has_ref_commit_pair?
2016-11-08 13:20:58 +00:00
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)
2016-11-08 13:20:58 +00:00
end
def has_environments?
environments.any?
end
def environments
@environments ||= project.environments_for(ref, commit)
2016-11-08 13:20:58 +00:00
end
end
end