2010-02-18 15:28:48 +00:00
|
|
|
require "active_support/core_ext/module/anonymous"
|
|
|
|
|
2012-07-29 18:35:33 +00:00
|
|
|
module ActiveModel
|
2012-10-21 06:26:01 +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
|
2015-02-20 22:57:56 +00:00
|
|
|
# record.errors.add(:base, "This record is invalid")
|
2009-08-09 07:29:34 +00:00
|
|
|
# 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
|
2012-07-29 18:35:33 +00:00
|
|
|
# called +validate+ which accepts a +record+.
|
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
|
|
|
|
#
|
2012-07-29 18:35:33 +00:00
|
|
|
# To cause a validation error, you must add to the +record+'s errors directly
|
|
|
|
# from within the validators message.
|
2009-08-09 07:29:34 +00:00
|
|
|
#
|
2009-10-21 00:20:01 +00:00
|
|
|
# class MyValidator < ActiveModel::Validator
|
2010-01-07 17:44:35 +00:00
|
|
|
# def validate(record)
|
2011-10-11 13:13:08 +00:00
|
|
|
# record.errors.add :base, "This is some custom error message"
|
|
|
|
# record.errors.add :first_name, "This is some complex validation"
|
2009-08-09 07:29:34 +00:00
|
|
|
# # 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
|
2011-10-26 13:31:37 +00:00
|
|
|
# def initialize(options)
|
2009-08-09 07:29:34 +00:00
|
|
|
# super
|
|
|
|
# @my_custom_field = options[:field_name] || :first_name
|
|
|
|
# end
|
|
|
|
# end
|
2010-08-14 05:13:00 +00:00
|
|
|
#
|
2013-02-09 14:54:14 +00:00
|
|
|
# Note that the validator is initialized only once for the whole application
|
2013-12-12 07:25:35 +00:00
|
|
|
# life cycle, and not on each validation run.
|
2013-02-09 14:54:14 +00:00
|
|
|
#
|
2010-01-07 17:44:35 +00:00
|
|
|
# The easiest way to add custom validators for validating individual attributes
|
2012-07-29 18:35:33 +00:00
|
|
|
# is with the convenient <tt>ActiveModel::EachValidator</tt>.
|
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)
|
2012-08-05 22:27:56 +00:00
|
|
|
# record.errors.add attribute, 'must be Mr., Mrs., or Dr.' unless %w(Mr. Mrs. Dr.).include?(value)
|
2010-01-07 17:44:35 +00:00
|
|
|
# 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
|
2012-07-29 18:35:33 +00:00
|
|
|
# (see <tt>ActiveModel::Validations::ClassMethods.validates</tt> 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
|
|
|
#
|
2014-07-28 10:21:33 +00:00
|
|
|
# validates :title, presence: true, title: true
|
2010-01-07 17:44:35 +00:00
|
|
|
# end
|
2010-08-14 05:13:00 +00:00
|
|
|
#
|
2013-05-13 03:59:28 +00:00
|
|
|
# It can be useful to access the class that is using that validator when there are prerequisites such
|
2013-12-13 20:33:30 +00:00
|
|
|
# as an +attr_accessor+ being present. This class is accessible via +options[:class]+ in the constructor.
|
2013-05-13 03:59:28 +00:00
|
|
|
# To setup your validator override the constructor.
|
2010-08-14 05:13:00 +00:00
|
|
|
#
|
2010-01-07 17:44:35 +00:00
|
|
|
# class MyValidator < ActiveModel::Validator
|
2013-05-13 03:59:28 +00:00
|
|
|
# def initialize(options={})
|
|
|
|
# super
|
|
|
|
# options[:class].send :attr_accessor, :custom_attribute
|
2010-01-07 17:44:35 +00:00
|
|
|
# end
|
|
|
|
# end
|
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
|
|
|
|
2012-07-30 00:52:25 +00:00
|
|
|
# Returns the kind of the validator.
|
2010-02-18 15:28:48 +00:00
|
|
|
#
|
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
|
2016-08-06 16:38:02 +00:00
|
|
|
@kind ||= name.split("::").last.underscore.chomp("_validator").to_sym unless anonymous?
|
2010-02-18 15:28:48 +00:00
|
|
|
end
|
|
|
|
|
2010-06-11 10:15:34 +00:00
|
|
|
# Accepts options that will be made available through the +options+ reader.
|
2013-01-09 15:50:27 +00:00
|
|
|
def initialize(options = {})
|
2016-10-29 03:05:58 +00:00
|
|
|
@options = options.except(:class).freeze
|
2009-08-09 07:29:34 +00:00
|
|
|
end
|
|
|
|
|
2013-12-03 14:04:25 +00:00
|
|
|
# Returns the kind for this validator.
|
2012-07-29 18:35:33 +00:00
|
|
|
#
|
2012-12-05 06:11:54 +00:00
|
|
|
# PresenceValidator.new.kind # => :presence
|
2012-12-21 20:04:37 +00:00
|
|
|
# UniquenessValidator.new.kind # => :uniqueness
|
2010-02-18 15:28:48 +00:00
|
|
|
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)
|
2011-02-09 13:32:40 +00:00
|
|
|
raise NotImplementedError, "Subclasses must implement a validate(record) method."
|
2009-12-22 23:36:51 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-03-07 18:26:16 +00: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-23 00:37:19 +00:00
|
|
|
# record, attribute and value.
|
|
|
|
#
|
2015-01-02 22:19:21 +00:00
|
|
|
# All \Active \Model validations are built on top of this validator.
|
2012-07-06 05:17:13 +00:00
|
|
|
class EachValidator < Validator #:nodoc:
|
2009-12-22 23:36:51 +00:00
|
|
|
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)
|
2012-01-05 22:52:31 +00:00
|
|
|
@attributes = Array(options.delete(:attributes))
|
2012-11-04 13:41:05 +00:00
|
|
|
raise ArgumentError, ":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)
|
2011-02-09 13:32:40 +00:00
|
|
|
raise NotImplementedError, "Subclasses must implement a validate_each(record, attribute, value) method"
|
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
|
2011-03-07 18:26:16 +00:00
|
|
|
# +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
|
|
|
|
2011-03-07 18:26:16 +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.
|
2012-07-06 05:17:13 +00:00
|
|
|
class BlockValidator < EachValidator #:nodoc:
|
2009-12-23 00:37:19 +00:00
|
|
|
def initialize(options, &block)
|
|
|
|
@block = block
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2010-01-07 17:44:35 +00:00
|
|
|
private
|
|
|
|
|
2016-08-06 17:55:02 +00:00
|
|
|
def validate_each(record, attribute, value)
|
|
|
|
@block.call(record, attribute, value)
|
|
|
|
end
|
2009-12-23 00:37:19 +00:00
|
|
|
end
|
2009-08-09 07:29:34 +00:00
|
|
|
end
|