summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/config/node/factory.rb
blob: 707b052e6a8f15f8b15cbd63e0c18235ad9b7428 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
module Gitlab
  module Ci
    class Config
      module Node
        ##
        # Factory class responsible for fabricating node entry objects.
        #
        class Factory
          class InvalidFactory < StandardError; end

          def initialize(node)
            @node = node
            @metadata = {}
            @attributes = {}
          end

          def value(value)
            @value = value
            self
          end

          def metadata(metadata)
            @metadata.merge!(metadata)
            self
          end

          def with(attributes)
            @attributes.merge!(attributes)
            self
          end

          def create!
            raise InvalidFactory unless defined?(@value)

            ##
            # We assume that unspecified entry is undefined.
            # See issue #18775.
            #
            if @value.nil?
              Node::Undefined.new(
                fabricate_undefined
              )
            else
              fabricate(@node, @value)
            end
          end

          private

          def fabricate_undefined
            ##
            # If node has a default value we fabricate concrete node
            # with default value.
            #
            if @node.default.nil?
              fabricate(Node::Null)
            else
              fabricate(@node, @node.default)
            end
          end

          def fabricate(node, value = nil)
            node.new(value, @metadata).tap do |entry|
              entry.key = @attributes[:key]
              entry.parent = @attributes[:parent]
              entry.description = @attributes[:description]
            end
          end
        end
      end
    end
  end
end