Welcome to mirror list, hosted at ThFree Co, Russian Federation.

stop_environments_service.rb « ci « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 439746e82bdb196287e9667e01e5476ba18e0b3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
module Ci
  class StopEnvironmentsService < BaseService
    attr_reader :ref

    def execute(branch_name)
      @ref = branch_name

      return unless @ref.present?

      environments.each do |environment|
        next unless environment.stop_action_available?
        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