Class: Apipie::Validator::NestedValidator

Inherits:
BaseValidator show all
Defined in:
lib/apipie/validator.rb

Instance Attribute Summary

Attributes inherited from BaseValidator

#param_description

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseValidator

#==, #error, find, inherited, #inspect, #inspected_fields, #merge_with, #param_name, #to_json, #to_s, #valid?

Constructor Details

#initialize(param_description, argument, param_group) ⇒ NestedValidator

Returns a new instance of NestedValidator.



442
443
444
445
446
# File 'lib/apipie/validator.rb', line 442

def initialize(param_description, argument, param_group)
  super(param_description)
  @validator = Apipie::Validator:: HashValidator.new(param_description, argument, param_group)
  @type = argument
end

Class Method Details

.build(param_description, argument, options, block) ⇒ Object



466
467
468
469
470
# File 'lib/apipie/validator.rb', line 466

def self.build(param_description, argument, options, block)
  # in Ruby 1.8.x the arity on block without args is -1
  # while in Ruby 1.9+ it is 0
  self.new(param_description, block, options[:param_group]) if block.is_a?(Proc) && block.arity <= 0 && argument == Array
end

Instance Method Details

#descriptionObject



476
477
478
# File 'lib/apipie/validator.rb', line 476

def description
  "Must be an Array of nested elements"
end

#expected_typeObject



472
473
474
# File 'lib/apipie/validator.rb', line 472

def expected_type
  'array'
end

#params_orderedObject



480
481
482
# File 'lib/apipie/validator.rb', line 480

def params_ordered
  @validator.params_ordered
end

#process_value(value) ⇒ Object



457
458
459
460
461
462
463
464
# File 'lib/apipie/validator.rb', line 457

def process_value(value)
  value ||= [] # Rails convert empty array to nil
  @values = []
  value.each do |child|
    @values << @validator.process_value(child)
  end
  @values
end

#validate(value) ⇒ Object



448
449
450
451
452
453
454
455
# File 'lib/apipie/validator.rb', line 448

def validate(value)
  value ||= [] # Rails convert empty array to nil
  return false if value.class != Array
  value.each do |child|
    return false unless @validator.validate(child)
  end
  true
end