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

context.rb « interpolation « config « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 19ea619f7da3758558c79f1015b1e22dfec9f85b (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
74
75
76
77
78
79
80
81
# frozen_string_literal: true

module Gitlab
  module Ci
    class Config
      module Interpolation
        ##
        # Interpolation::Context is a class that represents the data that can be used
        # when performing string interpolation on a CI configuration.
        #
        class Context
          ContextTooComplexError = Class.new(StandardError)
          NotSymbolizedContextError = Class.new(StandardError)

          MAX_DEPTH = 3

          attr_reader :variables

          def initialize(data, variables: [])
            @data = data
            @variables = Ci::Variables::Collection.fabricate(variables)

            raise ContextTooComplexError if depth > MAX_DEPTH
          end

          def valid?
            errors.none?
          end

          ##
          # This method is here because `Context` will be responsible for validating specs, inputs and defaults.
          #
          def errors
            []
          end

          def depth
            deep_depth(@data)
          end

          def fetch(field)
            @data.fetch(field)
          end

          def key?(name)
            @data.key?(name)
          end

          def to_h
            @data.to_h
          end

          private

          def deep_depth(data, depth = 0)
            values = data.values.map do |value|
              if value.is_a?(Hash)
                deep_depth(value, depth + 1)
              else
                depth + 1
              end
            end

            values.max.to_i
          end

          def self.fabricate(context, variables: [])
            case context
            when Hash
              new(context, variables: variables)
            when Interpolation::Context
              context
            else
              raise ArgumentError, 'unknown interpolation context'
            end
          end
        end
      end
    end
  end
end