instance method
add_autosave_association_callbacks
Ruby on Rails 2.3.18
Since v2.3.18 Last seen in v4.2.9 PrivateSignature
add_autosave_association_callbacks(reflection)
Adds a validate and save callback for the association as specified by the reflection.
For performance reasons, we don’t check whether to validate at runtime, but instead only define the method and callback when needed. However, this can change, for instance, when using nested attributes, which is called after the association has been defined. Since we don’t want the callbacks to get defined multiple times, there are guards that check if the save or validation methods have already been defined before actually defining them.
Parameters
-
reflectionreq
Source
# File activerecord/lib/active_record/autosave_association.rb, line 167
def add_autosave_association_callbacks(reflection)
save_method = :"autosave_associated_records_for_#{reflection.name}"
validation_method = :"validate_associated_records_for_#{reflection.name}"
collection = reflection.collection?
unless method_defined?(save_method)
if collection
before_save :before_save_collection_association
define_method(save_method) { save_collection_association(reflection) }
# Doesn't use after_save as that would save associations added in after_create/after_update twice
after_create save_method
after_update save_method
else
if reflection.macro == :has_one
define_method(save_method) { save_has_one_association(reflection) }
after_save save_method
else
define_method(save_method) { save_belongs_to_association(reflection) }
before_save save_method
end
end
end
if reflection.validate? && !method_defined?(validation_method)
method = (collection ? :validate_collection_association : :validate_single_association)
define_method(validation_method) { send(method, reflection) }
validate validation_method
end
end
Defined in activerecord/lib/active_record/autosave_association.rb line 167
· View on GitHub
· Improve this page
· Find usages on GitHub