Sha256: ee74f06e018f3af1b76522c3f8dd0c75dd8b2376edd000e30e9c21dc1c970d3c
Contents?: true
Size: 1.44 KB
Versions: 26
Compression:
Stored size: 1.44 KB
Contents
module Foobara module BuiltinTypes module Attributes module SupportedValidators class Required < TypeDeclarations::Validator class MissingRequiredAttributeError < Foobara::Value::DataError class << self def context_type_declaration { attribute_name: :symbol } end def fatal? true end end end def applicable?(value) value.is_a?(::Hash) end def required_attribute_names required end def validation_errors(attributes_hash) required_attribute_names.map do |required_attribute_name| unless attributes_hash.key?(required_attribute_name) build_error( message: "Missing required attribute #{required_attribute_name}", context: { attribute_name: required_attribute_name }, path: [required_attribute_name] ) end end.compact end def possible_errors required_attribute_names.map do |required_attribute_name| possible_error = PossibleError.new(error_class, processor: self) possible_error.prepend_path!(required_attribute_name) possible_error end end end end end end end
Version data entries
26 entries across 26 versions & 1 rubygems