Class: Hoodoo::Presenters::Integer

Inherits:
Field
  • Object
show all
Defined in:
lib/hoodoo/presenters/types/integer.rb

Overview

A JSON Integer schema member.

Instance Attribute Summary

Attributes inherited from Field

#default, #name, #required

Instance Method Summary collapse

Methods inherited from Field

#full_path, #has_default?, #initialize, #render, #walk

Constructor Details

This class inherits a constructor from Hoodoo::Presenters::Field

Instance Method Details

#validate(data, path = '') ⇒ Object

Check if data is a valid Integer and return a Hoodoo::Errors instance.



10
11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/hoodoo/presenters/types/integer.rb', line 10

def validate( data, path = '' )
  errors = super( data, path )
  return errors if errors.has_errors? || ( ! @required && data.nil? )

  unless data.is_a?( ::Integer )
    errors.add_error(
      'generic.invalid_integer',
      :message   => "Field `#{ full_path( path ) }` is an invalid integer",
      :reference => { :field_name => full_path( path ) }
    )
  end

  errors
end