mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
72 lines
2.4 KiB
Ruby
72 lines
2.4 KiB
Ruby
require 'active_support/callbacks'
|
|
|
|
module ActiveModel
|
|
module Validations
|
|
module Callbacks
|
|
# == Active Model Validation callbacks
|
|
#
|
|
# Provides an interface for any class to have <tt>before_validation</tt> and
|
|
# <tt>after_validation</tt> callbacks.
|
|
#
|
|
# First, extend ActiveModel::Callbacks from the class you are creating:
|
|
#
|
|
# class MyModel
|
|
# include ActiveModel::Validations::Callbacks
|
|
#
|
|
# before_validation :do_stuff_before_validation
|
|
# after_validation :do_stuff_after_validation
|
|
# end
|
|
#
|
|
# Like other before_* callbacks if <tt>before_validation</tt> returns false
|
|
# then <tt>valid?</tt> will not be called.
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
include ActiveSupport::Callbacks
|
|
define_callbacks :validation, :terminator => "result == false", :scope => [:kind, :name]
|
|
end
|
|
|
|
module ClassMethods
|
|
def before_validation(*args, &block)
|
|
options = args.extract_options!
|
|
if options.is_a?(Hash) && options[:on]
|
|
options[:if] = Array.wrap(options[:if])
|
|
options[:if] << "self.validation_context == :#{options[:on]}"
|
|
end
|
|
set_callback(:validation, :before, *(args << options), &block)
|
|
end
|
|
|
|
def after_validation(*args, &block)
|
|
options = args.extract_options!
|
|
options[:prepend] = true
|
|
options[:if] = Array.wrap(options[:if])
|
|
options[:if] << "!halted"
|
|
options[:if] << "self.validation_context == :#{options[:on]}" if options[:on]
|
|
set_callback(:validation, :after, *(args << options), &block)
|
|
end
|
|
|
|
[:before, :after].each do |type|
|
|
[:create, :update].each do |on|
|
|
class_eval <<-RUBY
|
|
def #{type}_validation_on_#{on}(*args, &block)
|
|
msg = "#{type}_validation_on_#{on} is deprecated. Please use #{type}_validation(arguments, :on => :#{on}"
|
|
ActiveSupport::Deprecation.warn(msg, caller)
|
|
options = args.extract_options!
|
|
options[:on] = :#{on}
|
|
before_validation(*args.push(options), &block)
|
|
end
|
|
RUBY
|
|
end
|
|
end
|
|
end
|
|
|
|
protected
|
|
|
|
# Overwrite run validations to include callbacks.
|
|
def run_validations!
|
|
_run_validation_callbacks { super }
|
|
end
|
|
end
|
|
end
|
|
end
|