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

composable_hash.rb « entry « config « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9531b7e56fd7146ccda22a8f5b43a68cb1c7d13d (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
# frozen_string_literal: true

module Gitlab
  module Config
    module Entry
      ##
      # Entry that represents a composable hash definition
      # Where each hash key can be any value written by the user
      #
      class ComposableHash < ::Gitlab::Config::Entry::Node
        include ::Gitlab::Config::Entry::Validatable

        # TODO: Refactor `Validatable` code so that validations can apply to a child class
        # See: https://gitlab.com/gitlab-org/gitlab/-/issues/263231
        validations do
          validates :config, type: Hash
        end

        def compose!(deps = nil)
          super do
            @config.each do |name, config|
              entry_class = composable_class(name, config)
              raise ArgumentError, 'Missing Composable class' unless entry_class

              entry_class_name = entry_class.name.demodulize.underscore

              factory = ::Gitlab::Config::Entry::Factory.new(entry_class)
                .value(config || {})
                .with(key: name, parent: self, description: "#{name} #{entry_class_name} definition") # rubocop:disable CodeReuse/ActiveRecord
                .metadata(name: name)

              @entries[name] = factory.create!
            end

            @entries.each_value do |entry|
              entry.compose!(deps)
            end
          end
        end

        def composable_class(name, config)
          opt(:composable_class)
        end
      end
    end
  end
end