2010-02-18 10:28:48 -05:00
|
|
|
require "active_support/core_ext/module/anonymous"
|
|
|
|
|
2012-07-29 14:35:33 -04:00
|
|
|
module ActiveModel
|
2010-06-14 05:26:51 -04:00
|
|
|
|
2012-10-21 02:26:01 -04:00
|
|
|
# == Active \Model \Validator
|
2010-08-14 01:13:00 -04:00
|
|
|
#
|
|
|
|
# A simple base class that can be used along with
|
2010-09-16 09:10:36 -04:00
|
|
|
# ActiveModel::Validations::ClassMethods.validates_with
|
2009-08-09 03:29:34 -04:00
|
|
|
#
|
2010-01-07 12:44:35 -05:00
|
|
|
# class Person
|
|
|
|
# include ActiveModel::Validations
|
2009-08-09 03:29:34 -04:00
|
|
|
# validates_with MyValidator
|
|
|
|
# end
|
|
|
|
#
|
2009-10-20 20:20:01 -04:00
|
|
|
# class MyValidator < ActiveModel::Validator
|
2010-01-07 12:44:35 -05:00
|
|
|
# def validate(record)
|
2009-08-09 03:29:34 -04:00
|
|
|
# if some_complex_logic
|
2015-02-20 17:57:56 -05:00
|
|
|
# record.errors.add(:base, "This record is invalid")
|
2009-08-09 03:29:34 -04:00
|
|
|
# end
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# private
|
|
|
|
# def some_complex_logic
|
|
|
|
# # ...
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
#
|
2010-01-07 12:44:35 -05:00
|
|
|
# Any class that inherits from ActiveModel::Validator must implement a method
|
2012-07-29 14:35:33 -04:00
|
|
|
# called +validate+ which accepts a +record+.
|
2009-08-09 03:29:34 -04:00
|
|
|
#
|
2010-01-07 12:44:35 -05:00
|
|
|
# class Person
|
|
|
|
# include ActiveModel::Validations
|
2009-08-09 03:29:34 -04:00
|
|
|
# validates_with MyValidator
|
|
|
|
# end
|
|
|
|
#
|
2009-10-20 20:20:01 -04:00
|
|
|
# class MyValidator < ActiveModel::Validator
|
2010-01-31 18:08:20 -05:00
|
|
|
# def validate(record)
|
2009-08-09 03:29:34 -04:00
|
|
|
# record # => The person instance being validated
|
|
|
|
# options # => Any non-standard options passed to validates_with
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
#
|
2012-07-29 14:35:33 -04:00
|
|
|
# To cause a validation error, you must add to the +record+'s errors directly
|
|
|
|
# from within the validators message.
|
2009-08-09 03:29:34 -04:00
|
|
|
#
|
2009-10-20 20:20:01 -04:00
|
|
|
# class MyValidator < ActiveModel::Validator
|
2010-01-07 12:44:35 -05:00
|
|
|
# def validate(record)
|
2011-10-11 09:13:08 -04:00
|
|
|
# record.errors.add :base, "This is some custom error message"
|
|
|
|
# record.errors.add :first_name, "This is some complex validation"
|
2009-08-09 03:29:34 -04:00
|
|
|
# # etc...
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# To add behavior to the initialize method, use the following signature:
|
|
|
|
#
|
2009-10-20 20:20:01 -04:00
|
|
|
# class MyValidator < ActiveModel::Validator
|
2011-10-26 09:31:37 -04:00
|
|
|
# def initialize(options)
|
2009-08-09 03:29:34 -04:00
|
|
|
# super
|
|
|
|
# @my_custom_field = options[:field_name] || :first_name
|
|
|
|
# end
|
|
|
|
# end
|
2010-08-14 01:13:00 -04:00
|
|
|
#
|
2013-02-09 09:54:14 -05:00
|
|
|
# Note that the validator is initialized only once for the whole application
|
2013-12-12 02:25:35 -05:00
|
|
|
# life cycle, and not on each validation run.
|
2013-02-09 09:54:14 -05:00
|
|
|
#
|
2010-01-07 12:44:35 -05:00
|
|
|
# The easiest way to add custom validators for validating individual attributes
|
2012-07-29 14:35:33 -04:00
|
|
|
# is with the convenient <tt>ActiveModel::EachValidator</tt>.
|
2010-08-14 01:13:00 -04:00
|
|
|
#
|
2010-01-07 12:44:35 -05:00
|
|
|
# class TitleValidator < ActiveModel::EachValidator
|
|
|
|
# def validate_each(record, attribute, value)
|
2012-08-05 18:27:56 -04:00
|
|
|
# record.errors.add attribute, 'must be Mr., Mrs., or Dr.' unless %w(Mr. Mrs. Dr.).include?(value)
|
2010-01-07 12:44:35 -05:00
|
|
|
# end
|
|
|
|
# end
|
2010-08-14 01:13:00 -04:00
|
|
|
#
|
2010-01-07 12:44:35 -05:00
|
|
|
# This can now be used in combination with the +validates+ method
|
2012-07-29 14:35:33 -04:00
|
|
|
# (see <tt>ActiveModel::Validations::ClassMethods.validates</tt> for more on this).
|
2010-08-14 01:13:00 -04:00
|
|
|
#
|
2010-01-07 12:44:35 -05:00
|
|
|
# class Person
|
|
|
|
# include ActiveModel::Validations
|
|
|
|
# attr_accessor :title
|
2010-08-14 01:13:00 -04:00
|
|
|
#
|
2014-07-28 06:21:33 -04:00
|
|
|
# validates :title, presence: true, title: true
|
2010-01-07 12:44:35 -05:00
|
|
|
# end
|
2010-08-14 01:13:00 -04:00
|
|
|
#
|
2013-05-12 23:59:28 -04:00
|
|
|
# It can be useful to access the class that is using that validator when there are prerequisites such
|
2013-12-13 15:33:30 -05:00
|
|
|
# as an +attr_accessor+ being present. This class is accessible via +options[:class]+ in the constructor.
|
2013-05-12 23:59:28 -04:00
|
|
|
# To setup your validator override the constructor.
|
2010-08-14 01:13:00 -04:00
|
|
|
#
|
2010-01-07 12:44:35 -05:00
|
|
|
# class MyValidator < ActiveModel::Validator
|
2013-05-12 23:59:28 -04:00
|
|
|
# def initialize(options={})
|
|
|
|
# super
|
|
|
|
# options[:class].send :attr_accessor, :custom_attribute
|
2010-01-07 12:44:35 -05:00
|
|
|
# end
|
|
|
|
# end
|
2009-08-09 03:29:34 -04:00
|
|
|
class Validator
|
2009-12-22 17:12:21 -05:00
|
|
|
attr_reader :options
|
2009-08-09 03:29:34 -04:00
|
|
|
|
2012-07-29 20:52:25 -04:00
|
|
|
# Returns the kind of the validator.
|
2010-02-18 10:28:48 -05:00
|
|
|
#
|
2010-07-29 20:30:04 -04:00
|
|
|
# PresenceValidator.kind # => :presence
|
|
|
|
# UniquenessValidator.kind # => :uniqueness
|
2010-02-18 10:28:48 -05:00
|
|
|
def self.kind
|
|
|
|
@kind ||= name.split('::').last.underscore.sub(/_validator$/, '').to_sym unless anonymous?
|
|
|
|
end
|
|
|
|
|
2010-06-11 06:15:34 -04:00
|
|
|
# Accepts options that will be made available through the +options+ reader.
|
2013-01-09 10:50:27 -05:00
|
|
|
def initialize(options = {})
|
2013-05-12 23:59:28 -04:00
|
|
|
@options = options.except(:class).freeze
|
2009-08-09 03:29:34 -04:00
|
|
|
end
|
|
|
|
|
2013-12-03 09:04:25 -05:00
|
|
|
# Returns the kind for this validator.
|
2012-07-29 14:35:33 -04:00
|
|
|
#
|
2012-12-05 01:11:54 -05:00
|
|
|
# PresenceValidator.new.kind # => :presence
|
2012-12-21 15:04:37 -05:00
|
|
|
# UniquenessValidator.new.kind # => :uniqueness
|
2010-02-18 10:28:48 -05:00
|
|
|
def kind
|
|
|
|
self.class.kind
|
|
|
|
end
|
|
|
|
|
2010-01-07 12:44:35 -05:00
|
|
|
# Override this method in subclasses with validation logic, adding errors
|
|
|
|
# to the records +errors+ array where necessary.
|
2009-12-22 17:12:21 -05:00
|
|
|
def validate(record)
|
2011-02-09 08:32:40 -05:00
|
|
|
raise NotImplementedError, "Subclasses must implement a validate(record) method."
|
2009-12-22 18:36:51 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-03-07 13:26:16 -05:00
|
|
|
# +EachValidator+ is a validator which iterates through the attributes given
|
|
|
|
# in the options hash invoking the <tt>validate_each</tt> method passing in the
|
2009-12-22 19:37:19 -05:00
|
|
|
# record, attribute and value.
|
|
|
|
#
|
2015-01-02 17:19:21 -05:00
|
|
|
# All \Active \Model validations are built on top of this validator.
|
2012-07-06 01:17:13 -04:00
|
|
|
class EachValidator < Validator #:nodoc:
|
2009-12-22 18:36:51 -05:00
|
|
|
attr_reader :attributes
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2010-01-07 12:44:35 -05: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 18:36:51 -05:00
|
|
|
def initialize(options)
|
2012-01-05 17:52:31 -05:00
|
|
|
@attributes = Array(options.delete(:attributes))
|
2012-11-04 08:41:05 -05:00
|
|
|
raise ArgumentError, ":attributes cannot be blank" if @attributes.empty?
|
2009-12-22 18:36:51 -05:00
|
|
|
super
|
2009-12-22 19:08:27 -05:00
|
|
|
check_validity!
|
2009-12-22 18:36:51 -05:00
|
|
|
end
|
|
|
|
|
2010-01-07 12:44:35 -05: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 18:36:51 -05:00
|
|
|
def validate(record)
|
|
|
|
attributes.each do |attribute|
|
2010-01-07 12:44:35 -05:00
|
|
|
value = record.read_attribute_for_validation(attribute)
|
2009-12-22 18:36:51 -05:00
|
|
|
next if (value.nil? && options[:allow_nil]) || (value.blank? && options[:allow_blank])
|
|
|
|
validate_each(record, attribute, value)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-06-11 06:15:34 -04:00
|
|
|
# Override this method in subclasses with the validation logic, adding
|
2010-01-07 12:44:35 -05:00
|
|
|
# errors to the records +errors+ array where necessary.
|
2009-12-22 19:37:19 -05:00
|
|
|
def validate_each(record, attribute, value)
|
2011-02-09 08:32:40 -05:00
|
|
|
raise NotImplementedError, "Subclasses must implement a validate_each(record, attribute, value) method"
|
2009-08-09 03:29:34 -04:00
|
|
|
end
|
2009-12-22 19:08:27 -05:00
|
|
|
|
2010-01-07 12:44:35 -05:00
|
|
|
# Hook method that gets called by the initializer allowing verification
|
|
|
|
# that the arguments supplied are valid. You could for example raise an
|
2011-03-07 13:26:16 -05:00
|
|
|
# +ArgumentError+ when invalid options are supplied.
|
2009-12-22 19:08:27 -05:00
|
|
|
def check_validity!
|
|
|
|
end
|
2015-01-10 16:46:57 -05:00
|
|
|
|
|
|
|
def should_validate?(record) # :nodoc:
|
|
|
|
!record.persisted? || record.changed? || record.marked_for_destruction?
|
|
|
|
end
|
2009-08-09 03:29:34 -04:00
|
|
|
end
|
2009-12-22 19:37:19 -05:00
|
|
|
|
2011-03-07 13:26:16 -05: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.
|
2012-07-06 01:17:13 -04:00
|
|
|
class BlockValidator < EachValidator #:nodoc:
|
2009-12-22 19:37:19 -05:00
|
|
|
def initialize(options, &block)
|
|
|
|
@block = block
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2010-01-07 12:44:35 -05:00
|
|
|
private
|
|
|
|
|
2009-12-22 19:37:19 -05:00
|
|
|
def validate_each(record, attribute, value)
|
|
|
|
@block.call(record, attribute, value)
|
|
|
|
end
|
|
|
|
end
|
2009-08-09 03:29:34 -04:00
|
|
|
end
|