Class: Grape::Validations::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/grape/validations/validators/base.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attrs, options, required, scope) ⇒ Base

Creates a new Validator from options specified by a requires or optional directive during parameter definition.

Parameters:

  • attrs (Array)

    names of attributes to which the Validator applies

  • options (Object)

    implementation-dependent Validator options

  • required (Boolean)

    attribute(s) are required or optional

  • scope (ParamsScope)

    parent scope for this Validator



13
14
15
16
17
18
# File 'lib/grape/validations/validators/base.rb', line 13

def initialize(attrs, options, required, scope)
  @attrs = Array(attrs)
  @option = options
  @required = required
  @scope = scope
end

Instance Attribute Details

#attrsObject (readonly)

Returns the value of attribute attrs.



4
5
6
# File 'lib/grape/validations/validators/base.rb', line 4

def attrs
  @attrs
end

Class Method Details

.convert_to_short_name(klass) ⇒ Object



29
30
31
32
33
34
35
36
# File 'lib/grape/validations/validators/base.rb', line 29

def self.convert_to_short_name(klass)
  ret = klass.name.gsub(/::/, '/')
        .gsub(/([A-Z]+)([A-Z][a-z])/, '\1_\2')
        .gsub(/([a-z\d])([A-Z])/, '\1_\2')
        .tr('-', '_')
        .downcase
  File.basename(ret, '_validator')
end

.inherited(klass) ⇒ Object



38
39
40
41
# File 'lib/grape/validations/validators/base.rb', line 38

def self.inherited(klass)
  short_name = convert_to_short_name(klass)
  Validations.register_validator(short_name, klass)
end

Instance Method Details

#validate!(params) ⇒ Object



20
21
22
23
24
25
26
27
# File 'lib/grape/validations/validators/base.rb', line 20

def validate!(params)
  attributes = AttributesIterator.new(self, @scope, params)
  attributes.each do |resource_params, attr_name|
    if @required || (resource_params.respond_to?(:key?) && resource_params.key?(attr_name))
      validate_param!(attr_name, resource_params)
    end
  end
end