# frozen_string_literal: true module ActiveRecord module Associations # = Active Record Belongs To Association class BelongsToAssociation < SingularAssociation #:nodoc: def handle_dependency return unless load_target case options[:dependent] when :destroy target.destroy raise ActiveRecord::Rollback unless target.destroyed? else target.send(options[:dependent]) end end def inversed_from(record) replace_keys(record) super end def default(&block) writer(owner.instance_exec(&block)) if reader.nil? end def reset super @updated = false end def updated? @updated end def decrement_counters # :nodoc: update_counters(-1) end def increment_counters # :nodoc: update_counters(1) end def target_changed? owner.saved_change_to_attribute?(reflection.foreign_key) end private def replace(record) if record raise_on_type_mismatch!(record) update_counters_on_replace(record) set_inverse_instance(record) @updated = true else decrement_counters end replace_keys(record) self.target = record end def update_counters(by) if require_counter_update? && foreign_key_present? if target && !stale_target? target.increment!(reflection.counter_cache_column, by, touch: reflection.options[:touch]) else counter_cache_target.update_counters(reflection.counter_cache_column => by, touch: reflection.options[:touch]) end end end def find_target? !loaded? && foreign_key_present? && klass end def require_counter_update? reflection.counter_cache_column && owner.persisted? end def update_counters_on_replace(record) if require_counter_update? && different_target?(record) owner.instance_variable_set :@_after_replace_counter_called, true record.increment!(reflection.counter_cache_column, touch: reflection.options[:touch]) decrement_counters end end # Checks whether record is different to the current target, without loading it def different_target?(record) record._read_attribute(primary_key(record)) != owner._read_attribute(reflection.foreign_key) end def replace_keys(record) owner[reflection.foreign_key] = record ? record._read_attribute(primary_key(record)) : nil end def primary_key(record) reflection.association_primary_key(record.class) end def foreign_key_present? owner._read_attribute(reflection.foreign_key) end # NOTE - for now, we're only supporting inverse setting from belongs_to back onto # has_one associations. def invertible_for?(record) inverse = inverse_reflection_for(record) inverse && inverse.has_one? end def counter_cache_target primary_key = reflection.association_primary_key(klass) klass.unscoped.where!(primary_key => owner._read_attribute(reflection.foreign_key)) end def stale_state result = owner._read_attribute(reflection.foreign_key) { |n| owner.send(:missing_attribute, n, caller) } result && result.to_s end end end end