summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/status/factory.rb
blob: b2f896f2211fc8a597d9edc470c793e806cdd3e8 (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
module Gitlab
  module Ci
    module Status
      class Factory
        attr_reader :subject

        def initialize(subject)
          @subject = subject
        end

        def fabricate!
          if extended_status
            extended_status.new(core_status)
          else
            core_status
          end
        end

        private

        def subject_status
          @subject_status ||= subject.status
        end

        def core_status
          Gitlab::Ci::Status
            .const_get(subject_status.capitalize)
            .new(subject)
        end

        def extended_status
          @extended ||= extended_statuses.find do |status|
            status.matches?(subject)
          end
        end

        def extended_statuses
          []
        end
      end
    end
  end
end