has_many_through_association.rb 3.7 KB
Newer Older
1
require "active_record/associations/through_association_scope"
2
require 'active_support/core_ext/object/blank'
3

4 5
module ActiveRecord
  module Associations
6
    class HasManyThroughAssociation < HasManyAssociation #:nodoc:
7 8
      include ThroughAssociationScope

9
      alias_method :new, :build
10 11

      def create!(attrs = nil)
12
        create_record(attrs, true)
13 14
      end

15
      def create(attrs = nil)
16
        create_record(attrs, false)
17 18
      end

19 20 21 22 23 24 25
      def destroy(*records)
        transaction do
          delete_records(flatten_deeper(records))
          super
        end
      end

26
      # Returns the size of the collection by executing a SELECT COUNT(*) query if the collection hasn't been loaded and
27 28
      # calling collection.size if it has. If it's more likely than not that the collection does have a size larger than zero,
      # and you need to fetch that collection afterwards, it'll take one fewer SELECT query if you use #length.
29
      def size
30 31 32
        return @owner.send(:read_attribute, cached_counter_attribute_name) if has_cached_counter?
        return @target.size if loaded?
        return count
33
      end
34

35
      protected
36 37 38 39
        def create_record(attrs, force = true)
          ensure_owner_is_not_new

          transaction do
40
            object = @reflection.klass.new(attrs)
41 42 43 44 45
            add_record_to_target_with_callbacks(object) {|r| insert_record(object, force) }
            object
          end
        end

46 47 48 49 50 51 52 53
        def target_reflection_has_associated_record?
          if @reflection.through_reflection.macro == :belongs_to && @owner[@reflection.through_reflection.primary_key_name].blank?
            false
          else
            true
          end
        end

54 55
        def construct_find_options!(options)
          options[:joins]   = construct_joins(options[:joins])
56
          options[:include] = @reflection.source_reflection.options[:include] if options[:include].nil? && @reflection.source_reflection.options[:include]
57
        end
58

59
        def insert_record(record, force = true, validate = true)
60 61 62 63
          if record.new_record?
            if force
              record.save!
            else
64
              return false unless record.save(:validate => validate)
65 66
            end
          end
67 68 69 70

          through_association = @owner.send(@reflection.through_reflection.name)
          through_record = through_association.create!(construct_join_attributes(record))
          through_association.proxy_target << through_record
71 72 73 74 75 76 77 78 79 80
        end

        # TODO - add dependent option support
        def delete_records(records)
          klass = @reflection.through_reflection.klass
          records.each do |associate|
            klass.delete_all(construct_join_attributes(associate))
          end
        end

81
        def find_target
82
          return [] unless target_reflection_has_associated_record?
83
          with_scope(construct_scope) { @reflection.klass.find(:all) }
84
        end
85

86 87 88 89 90
        def construct_sql
          case
            when @reflection.options[:finder_sql]
              @finder_sql = interpolate_sql(@reflection.options[:finder_sql])

91
              @finder_sql = "#{@reflection.quoted_table_name}.#{@reflection.primary_key_name} = #{owner_quoted_id}"
92
              @finder_sql << " AND (#{conditions})" if conditions
93 94
            else
              @finder_sql = construct_conditions
95 96
          end

97
          construct_counter_sql
98
        end
99

100 101 102 103 104 105 106
        def has_cached_counter?
          @owner.attribute_present?(cached_counter_attribute_name)
        end

        def cached_counter_attribute_name
          "#{@reflection.name}_count"
        end
107 108 109 110 111

        # NOTE - not sure that we can actually cope with inverses here
        def we_can_set_the_inverse_on_this?(record)
          false
        end
112 113 114
    end
  end
end