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

29 lines
563 B
Ruby
Raw Normal View History

2016-11-08 08:20:58 -05:00
module Ci
class StopEnvironmentsService < BaseService
attr_reader :ref
2016-11-08 08:20:58 -05:00
def execute(branch_name)
@ref = branch_name
return unless has_ref?
2016-11-08 08:20:58 -05:00
environments.each do |environment|
next unless can?(current_user, :create_deployment, project)
2016-11-08 08:20:58 -05:00
2017-02-06 10:50:03 -05:00
environment.stop_with_action!(current_user)
2016-11-08 08:20:58 -05:00
end
end
private
def has_ref?
@ref.present?
2016-11-08 08:20:58 -05:00
end
def environments
2017-02-06 19:06:46 -05:00
@environments ||=
EnvironmentsFinder.new(project, current_user, ref: @ref, recently_updated: true).execute
2016-11-08 08:20:58 -05:00
end
end
end