Sha256: 3451d866997f321eb14fb08e39dfe7c5d2f7f50927616c2da64c0440ec3e27a2

Contents?: true

Size: 961 Bytes

Versions: 193

Compression:

Stored size: 961 Bytes

Contents

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

      def replace(record)
        create_through_record(record)
        self.target = record
      end

      private

        def create_through_record(record)
          ensure_not_nested

          through_proxy  = owner.association(through_reflection.name)
          through_record = through_proxy.send(:load_target)

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

            if through_record
              through_record.update_attributes(attributes)
            elsif owner.new_record?
              through_proxy.build(attributes)
            else
              through_proxy.create(attributes)
            end
          end
        end
    end
  end
end

Version data entries

193 entries across 162 versions & 15 rubygems

Version Path
activerecord-3.1.1 lib/active_record/associations/has_one_through_association.rb
activerecord-3.1.1.rc3 lib/active_record/associations/has_one_through_association.rb
activerecord-3.1.1.rc2 lib/active_record/associations/has_one_through_association.rb
activerecord-3.1.1.rc1 lib/active_record/associations/has_one_through_association.rb
activerecord-3.1.0 lib/active_record/associations/has_one_through_association.rb
activerecord-3.1.0.rc8 lib/active_record/associations/has_one_through_association.rb
activerecord-3.1.0.rc6 lib/active_record/associations/has_one_through_association.rb
activerecord-3.1.0.rc5 lib/active_record/associations/has_one_through_association.rb
activerecord-3.1.0.rc4 lib/active_record/associations/has_one_through_association.rb
activerecord-3.1.0.rc3 lib/active_record/associations/has_one_through_association.rb
activerecord-3.1.0.rc2 lib/active_record/associations/has_one_through_association.rb
activerecord-3.1.0.rc1 lib/active_record/associations/has_one_through_association.rb
activerecord-3.1.0.beta1 lib/active_record/associations/has_one_through_association.rb