Class: Apipie::Validator::HashValidator

Inherits:
BaseValidator show all
Includes:
DSL::Base, DSL::Param
Defined in:
lib/apipie/validator.rb

Instance Attribute Summary

Attributes included from DSL::Base

#api_params, #apipie_resource_descriptions

Attributes inherited from BaseValidator

#param_description

Class Method Summary collapse

Instance Method Summary collapse

Methods included from DSL::Param

#param, #param_group

Methods included from DSL::Base

#_apipie_eval_dsl

Methods inherited from BaseValidator

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

Constructor Details

#initialize(param_description, argument, param_group) ⇒ HashValidator

Returns a new instance of HashValidator.



301
302
303
304
305
306
307
308
309
310
311
312
313
# File 'lib/apipie/validator.rb', line 301

def initialize(param_description, argument, param_group)
  super(param_description)
  @proc = argument
  @param_group = param_group
  self.instance_exec(&@proc)
  # specifying action_aware on Hash influences the child params,
  # not the hash param itself: assuming it's required when
  # updating as well
  if param_description.options[:action_aware] && param_description.options[:required]
    param_description.required = true
  end
  prepare_hash_params
end

Class Method Details

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



297
298
299
# File 'lib/apipie/validator.rb', line 297

def self.build(param_description, argument, options, block)
  self.new(param_description, block, options[:param_group]) if block.is_a?(Proc) && block.arity <= 0 && argument == Hash
end

Instance Method Details

#_default_param_group_scopeObject

where the group definition should be looked up when no scope given. This is expected to return a controller.



358
359
360
# File 'lib/apipie/validator.rb', line 358

def _default_param_group_scope
  @param_group && @param_group[:scope]
end

#descriptionObject



348
349
350
# File 'lib/apipie/validator.rb', line 348

def description
  "Must be a Hash"
end

#expected_typeObject



352
353
354
# File 'lib/apipie/validator.rb', line 352

def expected_type
  'hash'
end

#merge_with(other_validator) ⇒ Object



362
363
364
365
366
367
368
369
# File 'lib/apipie/validator.rb', line 362

def merge_with(other_validator)
  if other_validator.is_a? HashValidator
    @params_ordered = ParamDescription.unify(self.params_ordered + other_validator.params_ordered)
    prepare_hash_params
  else
    super
  end
end

#params_orderedObject



315
316
317
318
319
320
321
# File 'lib/apipie/validator.rb', line 315

def params_ordered
  @params_ordered ||= _apipie_dsl_data[:params].map do |args|
    options = args.find { |arg| arg.is_a? Hash }
    options[:parent] = self.param_description
    Apipie::ParamDescription.from_dsl_data(param_description.method_description, args)
  end
end

#prepare_hash_paramsObject



371
372
373
374
375
# File 'lib/apipie/validator.rb', line 371

def prepare_hash_params
  @hash_params = params_ordered.reduce({}) do |h, param|
    h.update(param.name.to_sym => param)
  end
end

#process_value(value) ⇒ Object



338
339
340
341
342
343
344
345
346
# File 'lib/apipie/validator.rb', line 338

def process_value(value)
  if @hash_params && value
    return @hash_params.each_with_object({}) do |(key, param), api_params|
      if value.has_key?(key)
        api_params[param.as] = param.process_value(value[key])
      end
    end
  end
end

#validate(value) ⇒ Object



323
324
325
326
327
328
329
330
331
332
333
334
335
336
# File 'lib/apipie/validator.rb', line 323

def validate(value)
  return false if !value.is_a? Hash
  if @hash_params
    @hash_params.each do |k, p|
      if Apipie.configuration.validate_presence?
        raise ParamMissing.new(p) if p.required && !value.has_key?(k)
      end
      if Apipie.configuration.validate_value?
        p.validate(value[k]) if value.has_key?(k)
      end
    end
  end
  return true
end