2019-07-07 11:18:12 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
module Ci
|
|
|
|
class Config
|
|
|
|
module Entry
|
|
|
|
##
|
|
|
|
# Entry that represents a list of include.
|
|
|
|
#
|
|
|
|
class Includes < ::Gitlab::Config::Entry::Node
|
|
|
|
include ::Gitlab::Config::Entry::Validatable
|
|
|
|
|
|
|
|
validations do
|
|
|
|
validates :config, array_or_string: true
|
2020-03-13 15:44:24 +05:30
|
|
|
|
|
|
|
validate do
|
|
|
|
next unless opt(:max_size)
|
|
|
|
next unless config.is_a?(Array)
|
|
|
|
|
|
|
|
if config.size > opt(:max_size)
|
|
|
|
errors.add(:config, "is too long (maximum is #{opt(:max_size)})")
|
|
|
|
end
|
|
|
|
end
|
2019-07-07 11:18:12 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def self.aspects
|
|
|
|
super.append -> do
|
|
|
|
@config = Array.wrap(@config)
|
|
|
|
|
|
|
|
@config.each_with_index do |config, i|
|
|
|
|
@entries[i] = ::Gitlab::Config::Entry::Factory.new(Entry::Include)
|
|
|
|
.value(config || {})
|
|
|
|
.create!
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|