module ActiveModel::Validations::Callbacks::ClassMethods

Public Instance Methods

after_validation(*args, &block) click to toggle source

Defines a callback that will get called right after validation.

class Person
  include ActiveModel::Validations
  include ActiveModel::Validations::Callbacks

  attr_accessor :name, :status

  validates_presence_of :name

  after_validation :set_status

  private

  def set_status
    self.status = errors.empty?
  end
end

person = Person.new
person.name = ''
person.valid? # => false
person.status # => false
person.name = 'bob'
person.valid? # => true
person.status # => true
# File lib/active_model/validations/callbacks.rb, line 90
def after_validation(*args, &block)
  options = args.extract_options!
  options = options.dup
  options[:prepend] = true

  set_options_for_callback(options)

  set_callback(:validation, :after, *args, options, &block)
end
before_validation(*args, &block) click to toggle source

Defines a callback that will get called right before validation.

class Person
  include ActiveModel::Validations
  include ActiveModel::Validations::Callbacks

  attr_accessor :name

  validates_length_of :name, maximum: 6

  before_validation :remove_whitespaces

  private

  def remove_whitespaces
    name.strip!
  end
end

person = Person.new
person.name = '  bob  '
person.valid? # => true
person.name   # => "bob"
# File lib/active_model/validations/callbacks.rb, line 56
def before_validation(*args, &block)
  options = args.extract_options!

  set_options_for_callback(options)

  set_callback(:validation, :before, *args, options, &block)
end

Private Instance Methods

set_options_for_callback(options) click to toggle source
# File lib/active_model/validations/callbacks.rb, line 101
def set_options_for_callback(options)
  if options.key?(:on)
    options[:on] = Array(options[:on])
    options[:if] = [
      ->(o) {
        !(options[:on] & Array(o.validation_context)).empty?
      },
      *options[:if]
    ]
  end
end