gitlab-org--gitlab-foss/app/services/environments/stop_service.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
849 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Environments
class StopService < BaseService
attr_reader :ref
2016-11-08 08:20:58 -05:00
def execute(environment)
return unless can?(current_user, :stop_environment, environment)
environment.stop_with_actions!(current_user)
end
def execute_for_branch(branch_name)
@ref = branch_name
return unless @ref.present?
2016-11-08 08:20:58 -05:00
environments.each { |environment| execute(environment) }
end
2016-11-08 08:20:58 -05:00
def execute_for_merge_request(merge_request)
merge_request.environments_in_head_pipeline(deployment_status: :success).each do |environment|
execute(environment)
end
2016-11-08 08:20:58 -05:00
end
private
def environments
@environments ||= Environments::EnvironmentsByDeploymentsFinder
.new(project, current_user, ref: @ref, recently_updated: true)
.execute
2016-11-08 08:20:58 -05:00
end
end
end