Sha256: 4342c04b21626ac5e42d83066eaa23539a8f81defaaa37740f6aeb1f2b66ef12

Contents?: true

Size: 1.25 KB

Versions: 76

Compression:

Stored size: 1.25 KB

Contents

# frozen_string_literal: true

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

      private
        def replace(record, save = true)
          create_through_record(record, save)
          self.target = record
        end

        def create_through_record(record, save)
          ensure_not_nested

          through_proxy  = through_association
          through_record = through_proxy.load_target

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

            if through_record && through_record.destroyed?
              through_record = through_proxy.tap(&:reload).target
            end

            if through_record
              if through_record.new_record?
                through_record.assign_attributes(attributes)
              else
                through_record.update(attributes)
              end
            elsif owner.new_record? || !save
              through_proxy.build(attributes)
            else
              through_proxy.create(attributes)
            end
          end
        end
    end
  end
end

Version data entries

76 entries across 76 versions & 7 rubygems

Version Path
activerecord-6.1.7.10 lib/active_record/associations/has_one_through_association.rb
activerecord-6.1.7.9 lib/active_record/associations/has_one_through_association.rb
activerecord-6.1.7.8 lib/active_record/associations/has_one_through_association.rb
activerecord-6.1.7.7 lib/active_record/associations/has_one_through_association.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activerecord-6.1.6.1/lib/active_record/associations/has_one_through_association.rb
activerecord-6.1.7.6 lib/active_record/associations/has_one_through_association.rb
activerecord-6.1.7.5 lib/active_record/associations/has_one_through_association.rb
activerecord-6.1.7.4 lib/active_record/associations/has_one_through_association.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/activerecord-6.1.6.1/lib/active_record/associations/has_one_through_association.rb
activerecord-6.1.7.3 lib/active_record/associations/has_one_through_association.rb
activerecord-6.1.7.2 lib/active_record/associations/has_one_through_association.rb
activerecord-6.1.7.1 lib/active_record/associations/has_one_through_association.rb
activerecord-6.0.6.1 lib/active_record/associations/has_one_through_association.rb
activerecord-6.1.7 lib/active_record/associations/has_one_through_association.rb
activerecord-6.0.6 lib/active_record/associations/has_one_through_association.rb
activerecord-6.1.6.1 lib/active_record/associations/has_one_through_association.rb
activerecord-6.0.5.1 lib/active_record/associations/has_one_through_association.rb
activerecord-6.0.5 lib/active_record/associations/has_one_through_association.rb
activerecord-6.1.6 lib/active_record/associations/has_one_through_association.rb
activerecord-6.1.5.1 lib/active_record/associations/has_one_through_association.rb