aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel
diff options
context:
space:
mode:
authorJosh Kalderimis <josh.kalderimis@gmail.com>2010-05-08 23:21:44 +0300
committerCarl Lerche <carllerche@mac.com>2010-05-08 23:51:28 +0300
commit82485068f8b64a49cbb6529d17dd5de27c28e951 (patch)
treef221b62b01e5f1201032aec69e3e46b635823edf /activemodel
parent0b4211c88b97fcac7f98170d73c4e264ce253700 (diff)
downloadrails-82485068f8b64a49cbb6529d17dd5de27c28e951.tar.gz
rails-82485068f8b64a49cbb6529d17dd5de27c28e951.tar.bz2
rails-82485068f8b64a49cbb6529d17dd5de27c28e951.zip
updated AMo validations to use a context for valid? and invalid?, removing the dependency on AR
Diffstat (limited to 'activemodel')
-rw-r--r--activemodel/lib/active_model/validations.rb17
1 files changed, 12 insertions, 5 deletions
diff --git a/activemodel/lib/active_model/validations.rb b/activemodel/lib/active_model/validations.rb
index c69cabc888..7c705b8899 100644
--- a/activemodel/lib/active_model/validations.rb
+++ b/activemodel/lib/active_model/validations.rb
@@ -29,7 +29,7 @@ module ActiveModel
# person.invalid?
# #=> false
# person.first_name = 'zoolander'
- # person.valid?
+ # person.valid?
# #=> false
# person.invalid?
# #=> true
@@ -48,6 +48,8 @@ module ActiveModel
extend ActiveModel::Translation
define_callbacks :validate, :scope => :name
+ attr_accessor :validation_context
+
class_attribute :_validators
self._validators = Hash.new { |h,k| h[k] = [] }
end
@@ -117,7 +119,7 @@ module ActiveModel
options = args.last
if options.is_a?(Hash) && options.key?(:on)
options[:if] = Array.wrap(options[:if])
- options[:if] << "@_on_validate == :#{options[:on]}"
+ options[:if] << "validation_context == :#{options[:on]}"
end
set_callback(:validate, *args, &block)
end
@@ -150,15 +152,20 @@ module ActiveModel
end
# Runs all the specified validations and returns true if no errors were added otherwise false.
- def valid?
+ # Context can optionally be supplied to define which callbacks to test against (the context is
+ # defined on the validations using :on).
+ def valid?(context = nil)
+ current_context, self.validation_context = validation_context, context
errors.clear
_run_validate_callbacks
errors.empty?
+ ensure
+ self.validation_context = current_context
end
# Performs the opposite of <tt>valid?</tt>. Returns true if errors were added, false otherwise.
- def invalid?
- !valid?
+ def invalid?(context = nil)
+ !valid?(context)
end
# Hook method defining how an attribute value should be retieved. By default this is assumed