2018-11-18 11:00:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
module Ci
|
|
|
|
class StopEnvironmentsService < BaseService
|
|
|
|
attr_reader :ref
|
|
|
|
|
|
|
|
def execute(branch_name)
|
|
|
|
@ref = branch_name
|
|
|
|
|
|
|
|
return unless @ref.present?
|
|
|
|
|
|
|
|
environments.each do |environment|
|
2018-11-18 11:00:15 +05:30
|
|
|
next unless environment.stop_action_available?
|
2017-08-17 22:00:37 +05:30
|
|
|
next unless can?(current_user, :stop_environment, environment)
|
|
|
|
|
|
|
|
environment.stop_with_action!(current_user)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def environments
|
|
|
|
@environments ||= EnvironmentsFinder
|
|
|
|
.new(project, current_user, ref: @ref, recently_updated: true)
|
|
|
|
.execute
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|