Sha256: c19e54d0ca6a9605d3371e007f34a9c026471ab6464b7f84697f46276bbd0f68

Contents?: true

Size: 1.2 KB

Versions: 4

Compression:

Stored size: 1.2 KB

Contents

require "active_record/associations/through_association_scope"

module ActiveRecord
  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) #nodoc:
        klass = @reflection.through_reflection.klass

        current_object = @owner.send(@reflection.through_reflection.name)

        if current_object
           new_value ? current_object.update_attributes(construct_join_attributes(new_value)) : current_object.destroy
        elsif new_value
          if @owner.new_record?
            self.target = new_value
            through_association = @owner.send(:association_instance_get, @reflection.through_reflection.name)
            through_association.build(construct_join_attributes(new_value))
          else
            @owner.send(@reflection.through_reflection.name, klass.create(construct_join_attributes(new_value)))
          end
        end
      end

    private
      def find_target
        with_scope(construct_scope) { @reflection.klass.find(:first) }
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
activerecord-3.0.0.beta4 lib/active_record/associations/has_one_through_association.rb
activerecord-3.0.0.beta3 lib/active_record/associations/has_one_through_association.rb
activerecord-3.0.0.beta2 lib/active_record/associations/has_one_through_association.rb
activerecord-3.0.0.beta lib/active_record/associations/has_one_through_association.rb