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, #format_description_value, 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.



482
483
484
485
486
# File 'lib/apipie/validator.rb', line 482

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



506
507
508
509
510
# File 'lib/apipie/validator.rb', line 506

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



516
517
518
# File 'lib/apipie/validator.rb', line 516

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

#expected_typeObject



512
513
514
# File 'lib/apipie/validator.rb', line 512

def expected_type
  'array'
end

#params_orderedObject



520
521
522
# File 'lib/apipie/validator.rb', line 520

def params_ordered
  @validator.params_ordered
end

#process_value(value) ⇒ Object



497
498
499
500
501
502
503
504
# File 'lib/apipie/validator.rb', line 497

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



488
489
490
491
492
493
494
495
# File 'lib/apipie/validator.rb', line 488

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