class ActiveModel::Validations::LengthValidator

Constants

CHECKS
MESSAGES
RESERVED_OPTIONS

Public Class Methods

new(options) click to toggle source
Calls superclass method
# File lib/active_model/validations/length.rb, line 12
def initialize(options)
  if range = (options.delete(:in) || options.delete(:within))
    raise ArgumentError, ":in and :within must be a Range" unless range.is_a?(Range)
    options[:minimum], options[:maximum] = range.begin, range.end
    options[:maximum] -= 1 if range.exclude_end?
  end

  super
end

Public Instance Methods

check_validity!() click to toggle source
# File lib/active_model/validations/length.rb, line 22
def check_validity!
  keys = CHECKS.keys & options.keys

  if keys.empty?
    raise ArgumentError, 'Range unspecified. Specify the :in, :within, :maximum, :minimum, or :is option.'
  end

  keys.each do |key|
    value = options[key]

    unless value.is_a?(Integer) && value >= 0
      raise ArgumentError, ":#{key} must be a nonnegative Integer"
    end
  end
end
validate_each(record, attribute, value) click to toggle source
# File lib/active_model/validations/length.rb, line 38
def validate_each(record, attribute, value)
  value = tokenize(value)
  value_length = value.respond_to?(:length) ? value.length : value.to_s.length

  CHECKS.each do |key, validity_check|
    next unless check_value = options[key]
    next if value_length.send(validity_check, check_value)

    errors_options = options.except(*RESERVED_OPTIONS)
    errors_options[:count] = check_value

    default_message = options[MESSAGES[key]]
    errors_options[:message] ||= default_message if default_message

    record.errors.add(attribute, MESSAGES[key], errors_options)
  end
end

Private Instance Methods

tokenize(value) click to toggle source
# File lib/active_model/validations/length.rb, line 58
def tokenize(value)
  if value.kind_of?(String)
    if options[:tokenizer]
      options[:tokenizer].call(value)
    elsif !value.encoding_aware?
      value.mb_chars
    end
  end || value
end