2010-03-27 18:50:11 +00:00
|
|
|
require 'active_support/core_ext/array/wrap'
|
2010-02-18 15:28:48 +00:00
|
|
|
require "active_support/core_ext/module/anonymous"
|
2010-03-28 12:15:02 +00:00
|
|
|
require 'active_support/core_ext/object/blank'
|
2010-02-18 15:28:48 +00:00
|
|
|
|
2009-10-21 00:20:01 +00:00
|
|
|
module ActiveModel #:nodoc:
|
2010-06-14 09:26:51 +00:00
|
|
|
|
|
|
|
# == Active Model Validator
|
2010-08-14 05:13:00 +00:00
|
|
|
#
|
|
|
|
# A simple base class that can be used along with
|
2010-09-16 13:10:36 +00:00
|
|
|
# ActiveModel::Validations::ClassMethods.validates_with
|
2009-08-09 07:29:34 +00:00
|
|
|
#
|
2010-01-07 17:44:35 +00:00
|
|
|
# class Person
|
|
|
|
# include ActiveModel::Validations
|
2009-08-09 07:29:34 +00:00
|
|
|
# validates_with MyValidator
|
|
|
|
# end
|
|
|
|
#
|
2009-10-21 00:20:01 +00:00
|
|
|
# class MyValidator < ActiveModel::Validator
|
2010-01-07 17:44:35 +00:00
|
|
|
# def validate(record)
|
2009-08-09 07:29:34 +00:00
|
|
|
# if some_complex_logic
|
|
|
|
# record.errors[:base] = "This record is invalid"
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# private
|
|
|
|
# def some_complex_logic
|
|
|
|
# # ...
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
#
|
2010-01-07 17:44:35 +00:00
|
|
|
# Any class that inherits from ActiveModel::Validator must implement a method
|
|
|
|
# called <tt>validate</tt> which accepts a <tt>record</tt>.
|
2009-08-09 07:29:34 +00:00
|
|
|
#
|
2010-01-07 17:44:35 +00:00
|
|
|
# class Person
|
|
|
|
# include ActiveModel::Validations
|
2009-08-09 07:29:34 +00:00
|
|
|
# validates_with MyValidator
|
|
|
|
# end
|
|
|
|
#
|
2009-10-21 00:20:01 +00:00
|
|
|
# class MyValidator < ActiveModel::Validator
|
2010-01-31 23:08:20 +00:00
|
|
|
# def validate(record)
|
2009-08-09 07:29:34 +00:00
|
|
|
# record # => The person instance being validated
|
|
|
|
# options # => Any non-standard options passed to validates_with
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
#
|
2010-09-16 13:10:36 +00:00
|
|
|
# To cause a validation error, you must add to the <tt>record</tt>'s errors directly
|
2009-08-09 07:29:34 +00:00
|
|
|
# from within the validators message
|
|
|
|
#
|
2009-10-21 00:20:01 +00:00
|
|
|
# class MyValidator < ActiveModel::Validator
|
2010-01-07 17:44:35 +00:00
|
|
|
# def validate(record)
|
2009-08-09 07:29:34 +00:00
|
|
|
# record.errors[:base] << "This is some custom error message"
|
|
|
|
# record.errors[:first_name] << "This is some complex validation"
|
|
|
|
# # etc...
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# To add behavior to the initialize method, use the following signature:
|
|
|
|
#
|
2009-10-21 00:20:01 +00:00
|
|
|
# class MyValidator < ActiveModel::Validator
|
2009-08-09 07:29:34 +00:00
|
|
|
# def initialize(record, options)
|
|
|
|
# super
|
|
|
|
# @my_custom_field = options[:field_name] || :first_name
|
|
|
|
# end
|
|
|
|
# end
|
2010-08-14 05:13:00 +00:00
|
|
|
#
|
2010-01-07 17:44:35 +00:00
|
|
|
# The easiest way to add custom validators for validating individual attributes
|
|
|
|
# is with the convenient ActiveModel::EachValidator for example:
|
2010-08-14 05:13:00 +00:00
|
|
|
#
|
2010-01-07 17:44:35 +00:00
|
|
|
# class TitleValidator < ActiveModel::EachValidator
|
|
|
|
# def validate_each(record, attribute, value)
|
|
|
|
# record.errors[attribute] << 'must be Mr. Mrs. or Dr.' unless ['Mr.', 'Mrs.', 'Dr.'].include?(value)
|
|
|
|
# end
|
|
|
|
# end
|
2010-08-14 05:13:00 +00:00
|
|
|
#
|
2010-01-07 17:44:35 +00:00
|
|
|
# This can now be used in combination with the +validates+ method
|
|
|
|
# (see ActiveModel::Validations::ClassMethods.validates for more on this)
|
2010-08-14 05:13:00 +00:00
|
|
|
#
|
2010-01-07 17:44:35 +00:00
|
|
|
# class Person
|
|
|
|
# include ActiveModel::Validations
|
|
|
|
# attr_accessor :title
|
2010-08-14 05:13:00 +00:00
|
|
|
#
|
2010-01-07 17:44:35 +00:00
|
|
|
# validates :title, :presence => true, :title => true
|
|
|
|
# end
|
2010-08-14 05:13:00 +00:00
|
|
|
#
|
2010-01-07 17:44:35 +00:00
|
|
|
# Validator may also define a +setup+ instance method which will get called
|
|
|
|
# with the class that using that validator as it's argument. This can be
|
|
|
|
# useful when there are prerequisites such as an attr_accessor being present
|
|
|
|
# for example:
|
2010-08-14 05:13:00 +00:00
|
|
|
#
|
2010-01-07 17:44:35 +00:00
|
|
|
# class MyValidator < ActiveModel::Validator
|
|
|
|
# def setup(klass)
|
|
|
|
# klass.send :attr_accessor, :custom_attribute
|
|
|
|
# end
|
|
|
|
# end
|
2010-05-11 13:36:09 +00:00
|
|
|
#
|
|
|
|
# This setup method is only called when used with validation macros or the
|
|
|
|
# class level <tt>validates_with</tt> method.
|
2010-08-14 05:13:00 +00:00
|
|
|
#
|
2009-08-09 07:29:34 +00:00
|
|
|
class Validator
|
2009-12-22 22:12:21 +00:00
|
|
|
attr_reader :options
|
2009-08-09 07:29:34 +00:00
|
|
|
|
2010-02-18 15:28:48 +00:00
|
|
|
# Returns the kind of the validator.
|
|
|
|
#
|
|
|
|
# == Examples
|
|
|
|
#
|
2010-07-30 00:30:04 +00:00
|
|
|
# PresenceValidator.kind # => :presence
|
|
|
|
# UniquenessValidator.kind # => :uniqueness
|
2010-02-18 15:28:48 +00:00
|
|
|
#
|
|
|
|
def self.kind
|
|
|
|
@kind ||= name.split('::').last.underscore.sub(/_validator$/, '').to_sym unless anonymous?
|
|
|
|
end
|
|
|
|
|
2010-06-11 10:15:34 +00:00
|
|
|
# Accepts options that will be made available through the +options+ reader.
|
2009-12-22 22:12:21 +00:00
|
|
|
def initialize(options)
|
2010-08-03 13:34:31 +00:00
|
|
|
@options = options.freeze
|
2009-08-09 07:29:34 +00:00
|
|
|
end
|
|
|
|
|
2010-02-18 15:28:48 +00:00
|
|
|
# Return the kind for this validator.
|
|
|
|
def kind
|
|
|
|
self.class.kind
|
|
|
|
end
|
|
|
|
|
2010-01-07 17:44:35 +00:00
|
|
|
# Override this method in subclasses with validation logic, adding errors
|
|
|
|
# to the records +errors+ array where necessary.
|
2009-12-22 22:12:21 +00:00
|
|
|
def validate(record)
|
2009-12-22 23:36:51 +00:00
|
|
|
raise NotImplementedError
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-12-23 00:37:19 +00:00
|
|
|
# EachValidator is a validator which iterates through the attributes given
|
|
|
|
# in the options hash invoking the validate_each method passing in the
|
|
|
|
# record, attribute and value.
|
|
|
|
#
|
2010-06-14 21:21:53 +00:00
|
|
|
# All Active Model validations are built on top of this Validator.
|
2009-12-22 23:36:51 +00:00
|
|
|
class EachValidator < Validator
|
|
|
|
attr_reader :attributes
|
2010-08-14 05:13:00 +00:00
|
|
|
|
2010-01-07 17:44:35 +00:00
|
|
|
# Returns a new validator instance. All options will be available via the
|
|
|
|
# +options+ reader, however the <tt>:attributes</tt> option will be removed
|
|
|
|
# and instead be made available through the +attributes+ reader.
|
2009-12-22 23:36:51 +00:00
|
|
|
def initialize(options)
|
2010-03-27 18:50:11 +00:00
|
|
|
@attributes = Array.wrap(options.delete(:attributes))
|
2010-01-03 15:58:33 +00:00
|
|
|
raise ":attributes cannot be blank" if @attributes.empty?
|
2009-12-22 23:36:51 +00:00
|
|
|
super
|
2009-12-23 00:08:27 +00:00
|
|
|
check_validity!
|
2009-12-22 23:36:51 +00:00
|
|
|
end
|
|
|
|
|
2010-01-07 17:44:35 +00:00
|
|
|
# Performs validation on the supplied record. By default this will call
|
|
|
|
# +validates_each+ to determine validity therefore subclasses should
|
|
|
|
# override +validates_each+ with validation logic.
|
2009-12-22 23:36:51 +00:00
|
|
|
def validate(record)
|
|
|
|
attributes.each do |attribute|
|
2010-01-07 17:44:35 +00:00
|
|
|
value = record.read_attribute_for_validation(attribute)
|
2009-12-22 23:36:51 +00:00
|
|
|
next if (value.nil? && options[:allow_nil]) || (value.blank? && options[:allow_blank])
|
|
|
|
validate_each(record, attribute, value)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-06-11 10:15:34 +00:00
|
|
|
# Override this method in subclasses with the validation logic, adding
|
2010-01-07 17:44:35 +00:00
|
|
|
# errors to the records +errors+ array where necessary.
|
2009-12-23 00:37:19 +00:00
|
|
|
def validate_each(record, attribute, value)
|
2009-12-22 23:36:51 +00:00
|
|
|
raise NotImplementedError
|
2009-08-09 07:29:34 +00:00
|
|
|
end
|
2009-12-23 00:08:27 +00:00
|
|
|
|
2010-01-07 17:44:35 +00:00
|
|
|
# Hook method that gets called by the initializer allowing verification
|
|
|
|
# that the arguments supplied are valid. You could for example raise an
|
|
|
|
# ArgumentError when invalid options are supplied.
|
2009-12-23 00:08:27 +00:00
|
|
|
def check_validity!
|
|
|
|
end
|
2009-08-09 07:29:34 +00:00
|
|
|
end
|
2009-12-23 00:37:19 +00:00
|
|
|
|
|
|
|
# BlockValidator is a special EachValidator which receives a block on initialization
|
|
|
|
# and call this block for each attribute being validated. +validates_each+ uses this
|
|
|
|
# Validator.
|
|
|
|
class BlockValidator < EachValidator
|
|
|
|
def initialize(options, &block)
|
|
|
|
@block = block
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2010-01-07 17:44:35 +00:00
|
|
|
private
|
|
|
|
|
2009-12-23 00:37:19 +00:00
|
|
|
def validate_each(record, attribute, value)
|
|
|
|
@block.call(record, attribute, value)
|
|
|
|
end
|
|
|
|
end
|
2009-08-09 07:29:34 +00:00
|
|
|
end
|