2020-10-07 14:08:34 -04:00
|
|
|
# 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
|
|
|
|
|
2020-10-12 11:08:32 -04:00
|
|
|
# TODO: Refactor `Validatable` code so that validations can apply to a child class
|
2020-10-07 14:08:34 -04:00
|
|
|
# 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
|