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
mdg-1.0.1 vendor/bundle/ruby/2.3.0/gems/activerecord-3.2.22.5/lib/active_record/associations/has_one_through_association.rb
activerecord-3.2.22.5 lib/active_record/associations/has_one_through_association.rb
activerecord-3.2.22.4 lib/active_record/associations/has_one_through_association.rb
activerecord-3.2.22.3 lib/active_record/associations/has_one_through_association.rb
activerecord-3.2.22.2 lib/active_record/associations/has_one_through_association.rb
activerecord-3.2.22.1 lib/active_record/associations/has_one_through_association.rb
active_mailer-0.0.10 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/activerecord-3.2.12/lib/active_record/associations/has_one_through_association.rb
activerecord-3.2.22 lib/active_record/associations/has_one_through_association.rb
judge-2.0.5 vendor/bundle/ruby/2.1.0/gems/activerecord-3.2.12/lib/active_record/associations/has_one_through_association.rb
activerecord-3.2.21 lib/active_record/associations/has_one_through_association.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/activerecord-3.2.18/lib/active_record/associations/has_one_through_association.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/2.1.0/gems/activerecord-3.2.18/lib/active_record/associations/has_one_through_association.rb
apl-library-0.0.90 vendor/bundle/ruby/1.8/gems/activerecord-3.2.18/lib/active_record/associations/has_one_through_association.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/1.8/gems/activerecord-3.2.18/lib/active_record/associations/has_one_through_association.rb
apl-library-0.0.90 vendor/bundle/ruby/1.9.1/gems/activerecord-3.2.18/lib/active_record/associations/has_one_through_association.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/1.9.1/gems/activerecord-3.2.18/lib/active_record/associations/has_one_through_association.rb
activerecord-3.2.20 lib/active_record/associations/has_one_through_association.rb
activerecord-3.2.19 lib/active_record/associations/has_one_through_association.rb
activerecord-3.2.18 lib/active_record/associations/has_one_through_association.rb
activerecord-3.2.17 lib/active_record/associations/has_one_through_association.rb