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



                                        
              


             
 
                                          

                                                                                     
 

                               
                       





                                                           
              
                                    
             
           
         
       

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

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

      private

      def create_through_record(new_value)
        proxy  = @owner.send(:association_proxy, @reflection.through_reflection.name)
        record = proxy.send(:load_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
    end
  end
end