2009-10-20 20:20:01 -04:00
|
|
|
module ActiveModel #:nodoc:
|
2009-08-09 03:29:34 -04:00
|
|
|
|
2009-10-20 20:20:01 -04:00
|
|
|
# A simple base class that can be used along with ActiveModel::Base.validates_with
|
2009-08-09 03:29:34 -04:00
|
|
|
#
|
2009-10-20 20:20:01 -04:00
|
|
|
# class Person < ActiveModel::Base
|
2009-08-09 03:29:34 -04:00
|
|
|
# validates_with MyValidator
|
|
|
|
# end
|
|
|
|
#
|
2009-10-20 20:20:01 -04:00
|
|
|
# class MyValidator < ActiveModel::Validator
|
2009-08-09 03:29:34 -04:00
|
|
|
# def validate
|
|
|
|
# if some_complex_logic
|
|
|
|
# record.errors[:base] = "This record is invalid"
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# private
|
|
|
|
# def some_complex_logic
|
|
|
|
# # ...
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
#
|
2009-10-20 20:20:01 -04:00
|
|
|
# Any class that inherits from ActiveModel::Validator will have access to <tt>record</tt>,
|
2009-08-09 03:29:34 -04:00
|
|
|
# which is an instance of the record being validated, and must implement a method called <tt>validate</tt>.
|
|
|
|
#
|
2009-10-20 20:20:01 -04:00
|
|
|
# class Person < ActiveModel::Base
|
2009-08-09 03:29:34 -04:00
|
|
|
# validates_with MyValidator
|
|
|
|
# end
|
|
|
|
#
|
2009-10-20 20:20:01 -04:00
|
|
|
# class MyValidator < ActiveModel::Validator
|
2009-08-09 03:29:34 -04:00
|
|
|
# def validate
|
|
|
|
# record # => The person instance being validated
|
|
|
|
# options # => Any non-standard options passed to validates_with
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# To cause a validation error, you must add to the <tt>record<tt>'s errors directly
|
|
|
|
# from within the validators message
|
|
|
|
#
|
2009-10-20 20:20:01 -04:00
|
|
|
# class MyValidator < ActiveModel::Validator
|
2009-08-09 03:29:34 -04:00
|
|
|
# def validate
|
|
|
|
# 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-20 20:20:01 -04:00
|
|
|
# class MyValidator < ActiveModel::Validator
|
2009-08-09 03:29:34 -04:00
|
|
|
# def initialize(record, options)
|
|
|
|
# super
|
|
|
|
# @my_custom_field = options[:field_name] || :first_name
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
class Validator
|
|
|
|
attr_reader :record, :options
|
|
|
|
|
|
|
|
def initialize(record, options)
|
|
|
|
@record = record
|
|
|
|
@options = options
|
|
|
|
end
|
|
|
|
|
|
|
|
def validate
|
|
|
|
raise "You must override this method"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|