summaryrefslogtreecommitdiff
path: root/app/services/ci/stop_environment_service.rb
blob: 2ac0b3d885a228df0b3d3bd932b92ac5c530798e (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
27
28
29
30
31
32
33
34
35
36
module Ci
  class StopEnvironmentService < BaseService
    attr_reader :ref

    def execute(branch_name)
      @ref = branch_name

      return unless has_ref_commit_pair?
      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)
    end

    def has_environments?
      environments.any?
    end

    def environments
      @environments ||= project.environments_for(ref, commit)
    end
  end
end