aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/lib/active_record/associations/has_one_through_association.rb
blob: 8c8c9fbe5d9a6d404acd7b01fb5d1957d52eea8c (plain) (tree)
1
2
3
4
5

                                                              
                   
                                               
                     








                                                      
 



                                                                                            
 

                               
                       





                                                           
              
                                    
             
           
         
 
                     
                          
                    

         

     
require "active_record/associations/through_association_scope"

module ActiveRecord
  # = Active Record Has One Through Association
  module Associations
    class HasOneThroughAssociation < HasOneAssociation
      include ThroughAssociationScope

      def replace(new_value)
        create_through_record(new_value)
        @target = new_value
      end

      private

      def create_through_record(new_value)
        proxy  = @owner.send(@reflection.through_reflection.name) ||
                 @owner.send(:association_instance_get, @reflection.through_reflection.name)
        record = proxy.target

        if record && !new_value
          record.destroy
        elsif new_value
          attributes = construct_join_attributes(new_value)

          if record
            record.update_attributes(attributes)
          elsif @owner.new_record?
            proxy.build(attributes)
          else
            proxy.create(attributes)
          end
        end
      end

      def find_target
        update_stale_state
        scoped.first
      end
    end
  end
end