method
add_touch_callbacks
v7.1.3.2 -
Show latest stable
-
0 notes -
Class: BelongsTo
- 1.0.0
- 1.1.6
- 1.2.6
- 2.0.3
- 2.1.0
- 2.2.1
- 2.3.8
- 3.0.0
- 3.0.9
- 3.1.0
- 3.2.1
- 3.2.8
- 3.2.13
- 4.0.2
- 4.1.8 (0)
- 4.2.1 (0)
- 4.2.7 (0)
- 4.2.9 (0)
- 5.0.0.1 (0)
- 5.1.7 (0)
- 5.2.3 (0)
- 6.0.0 (0)
- 6.1.3.1 (0)
- 6.1.7.7 (0)
- 7.0.0 (0)
- 7.1.3.2 (0)
- 7.1.3.4 (0)
- What's this?
add_touch_callbacks(model, reflection)
public
Hide source
# File activerecord/lib/active_record/associations/builder/belongs_to.rb, line 78 def self.add_touch_callbacks(model, reflection) foreign_key = reflection.foreign_key name = reflection.name touch = reflection.options[:touch] callback = lambda { |changes_method| lambda { |record| BelongsTo.touch_record(record, record.send(changes_method), foreign_key, name, touch) }} if reflection.counter_cache_column touch_callback = callback.(:saved_changes) update_callback = lambda { |record| instance_exec(record, &touch_callback) unless association(reflection.name).saved_change_to_target? } model.after_update update_callback, if: :saved_changes? else model.after_create callback.(:saved_changes), if: :saved_changes? model.after_update callback.(:saved_changes), if: :saved_changes? model.after_destroy callback.(:changes_to_save) end model.after_touch callback.(:changes_to_save) end def self.add_default_callbacks(model, reflection) model.before_validation lambda { |o| o.association(reflection.name).default(&reflection.options[:default]) } end def self.add_destroy_callbacks(model, reflection) model.after_destroy lambda { |o| o.association(reflection.name).handle_dependency } end def self.define_validations(model, reflection) if reflection.options.key?(:required) reflection.options[:optional] = !reflection.options.delete(:required) end if reflection.options[:optional].nil? required = model.belongs_to_required_by_default else required = !reflection.options[:optional] end super if required if ActiveRecord.belongs_to_required_validates_foreign_key model.validates_presence_of reflection.name, message: :required else condition = lambda { |record| foreign_key = reflection.foreign_key foreign_type = reflection.foreign_type record.read_attribute(foreign_key).nil? || record.attribute_changed?(foreign_key) || (reflection.polymorphic? && (record.read_attribute(foreign_type).nil? || record.attribute_changed?(foreign_type))) } model.validates_presence_of reflection.name, message: :required, if: condition end end end def self.define_change_tracking_methods(model, reflection) model.generated_association_methods.class_eval def #{reflection.name}_changed? association(:#{reflection.name}).target_changed? end def #{reflection.name}_previously_changed? association(:#{reflection.name}).target_previously_changed? end, __FILE__, __LINE__ + 1 end private_class_method :macro, :valid_options, :valid_dependent_options, :define_callbacks, :define_validations, :define_change_tracking_methods, :add_counter_cache_callbacks, :add_touch_callbacks, :add_default_callbacks, :add_destroy_callbacks end end