Module: Mongoid::Validations
- Extended by:
- ActiveSupport::Concern
- Includes:
- ActiveModel::Validations
- Included in:
- Components
- Defined in:
- lib/mongoid/validations.rb,
lib/mongoid/validations/associated.rb,
lib/mongoid/validations/uniqueness.rb
Overview
:nodoc:
Defined Under Namespace
Modules: ClassMethods Classes: AssociatedValidator, UniquenessValidator
Instance Method Summary collapse
-
#begin_validate ⇒ Object
Begin the associated validation.
-
#exit_validate ⇒ Object
Exit the associated validation.
-
#read_attribute_for_validation(attr) ⇒ Object
Overrides the default ActiveModel behaviour since we need to handle validations of relations slightly different than just calling the getter.
-
#valid?(context = nil) ⇒ true, false
Determine if the document is valid.
-
#validated? ⇒ true, false
Used to prevent infinite loops in associated validations.
Instance Method Details
#begin_validate ⇒ Object
Begin the associated validation.
19 20 21 |
# File 'lib/mongoid/validations.rb', line 19 def begin_validate Threaded.begin_validate(self) end |
#exit_validate ⇒ Object
Exit the associated validation.
29 30 31 |
# File 'lib/mongoid/validations.rb', line 29 def exit_validate Threaded.exit_validate(self) end |
#read_attribute_for_validation(attr) ⇒ Object
Overrides the default ActiveModel behaviour since we need to handle validations of relations slightly different than just calling the getter.
45 46 47 48 49 50 51 52 53 54 |
# File 'lib/mongoid/validations.rb', line 45 def read_attribute_for_validation(attr) if relations[attr.to_s] begin_validate relation = send(attr) exit_validate relation.do_or_do_not(:in_memory) || relation else send(attr) end end |
#valid?(context = nil) ⇒ true, false
Determine if the document is valid.
69 70 71 |
# File 'lib/mongoid/validations.rb', line 69 def valid?(context = nil) super context ? context : (new? ? :create : :update) end |
#validated? ⇒ true, false
Used to prevent infinite loops in associated validations.
81 82 83 |
# File 'lib/mongoid/validations.rb', line 81 def validated? Threaded.validated?(self) end |