41 lines
899 B
Ruby
41 lines
899 B
Ruby
module Gitlab
|
|
module Ci
|
|
class Config
|
|
module Node
|
|
class Validator < SimpleDelegator
|
|
include ActiveModel::Validations
|
|
include Node::Validators
|
|
|
|
def initialize(node)
|
|
super(node)
|
|
@node = node
|
|
end
|
|
|
|
def messages
|
|
errors.full_messages.map do |error|
|
|
"#{location} #{error}".downcase
|
|
end
|
|
end
|
|
|
|
def self.name
|
|
'Validator'
|
|
end
|
|
|
|
def unknown_keys
|
|
return [] unless config.is_a?(Hash)
|
|
|
|
config.keys - @node.class.nodes.keys
|
|
end
|
|
|
|
private
|
|
|
|
def location
|
|
predecessors = ancestors.map(&:key).compact
|
|
current = key || @node.class.name.demodulize.underscore
|
|
predecessors.append(current).join(':')
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|