summaryrefslogtreecommitdiff
path: root/app/services/ci/process_build_service.rb
blob: afaf18a4de2b2c3ef76b10fe916dc928211a95c4 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# frozen_string_literal: true

module Ci
  class ProcessBuildService < BaseService
    def execute(processable, current_status)
      if valid_statuses_for_processable(processable).include?(current_status)
        process(processable)
        true
      else
        processable.skip
        false
      end
    end

    private

    def process(processable)
      return enqueue(processable) if processable.enqueue_immediately?

      if processable.schedulable?
        processable.schedule
      elsif processable.action?
        processable.actionize
      else
        enqueue(processable)
      end
    end

    def enqueue(processable)
      return processable.drop!(:failed_outdated_deployment_job) if processable.outdated_deployment?

      processable.enqueue
    end

    def valid_statuses_for_processable(processable)
      case processable.when
      when 'on_success', 'manual', 'delayed'
        processable.scheduling_type_dag? ? %w[success] : %w[success skipped]
      when 'on_failure'
        %w[failed]
      when 'always'
        %w[success failed skipped]
      else
        []
      end
    end
  end
end

Ci::ProcessBuildService.prepend_mod_with('Ci::ProcessBuildService')