aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/lib/active_record/associations/belongs_to_association.rb
blob: 391471849c008a3a78b5f8c19a9e7b0712b59ba6 (plain) (tree)
1
2
3
4
5
6
7
8
9
                   
                                           

                                                          
                                 
                                                           


                                
                                                          

         
                         

                                                             
 

                               
                                    
 


                                 

              
         
 


                  
 
             




                                                                                 
                                                                           

               
                                   






                                                                                      

                                                           


                                
                                                                                                 

           
                       
                                                                    
           
 
                                
                                               
           


                                                                                         


                                                  
           
 



                                                  
                                           
             
           



                                              


       
module ActiveRecord
  # = Active Record Belongs To Associations
  module Associations
    class BelongsToAssociation < AssociationProxy #:nodoc:
      def create(attributes = {})
        replace(@reflection.create_association(attributes))
      end

      def build(attributes = {})
        replace(@reflection.build_association(attributes))
      end

      def replace(record)
        record = record.target if AssociationProxy === record
        raise_on_type_mismatch(record) unless record.nil?

        update_counters(record)
        replace_keys(record)
        set_inverse_instance(record)

        @target  = record
        @updated = true if record

        loaded
        record
      end

      def updated?
        @updated
      end

      private
        def update_counters(record)
          counter_cache_name = @reflection.counter_cache_column

          if counter_cache_name && @owner.persisted? && different_target?(record)
            if record
              record.class.increment_counter(counter_cache_name, record.id)
            end

            if foreign_key_present?
              target_klass.decrement_counter(counter_cache_name, target_id)
            end
          end
        end

        # Checks whether record is different to the current target, without loading it
        def different_target?(record)
          record.nil? && @owner[@reflection.foreign_key] ||
          record.id   != @owner[@reflection.foreign_key]
        end

        def replace_keys(record)
          @owner[@reflection.foreign_key] = record && record[@reflection.association_primary_key]
        end

        def find_target
          scoped.first.tap { |record| set_inverse_instance(record) }
        end

        def foreign_key_present?
          !@owner[@reflection.foreign_key].nil?
        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.macro == :has_one
        end

        def target_id
          if @reflection.options[:primary_key]
            @owner.send(@reflection.name).try(:id)
          else
            @owner[@reflection.foreign_key]
          end
        end

        def stale_state
          @owner[@reflection.foreign_key].to_s
        end
    end
  end
end