has_many_through_association.rb 12.9 KB
Newer Older
1 2 3
module ActiveRecord
  module Associations
    class HasManyThroughAssociation < AssociationProxy #:nodoc:
4 5
      def initialize(owner, reflection)
        super
6
        reflection.check_validity!
7 8 9 10
        @finder_sql = construct_conditions
        construct_sql
      end

11
      def find(*args)
12
        options = args.extract_options!
13 14 15 16 17 18 19 20 21 22 23 24

        conditions = "#{@finder_sql}"
        if sanitized_conditions = sanitize_sql(options[:conditions])
          conditions << " AND (#{sanitized_conditions})"
        end
        options[:conditions] = conditions

        if options[:order] && @reflection.options[:order]
          options[:order] = "#{options[:order]}, #{@reflection.options[:order]}"
        elsif @reflection.options[:order]
          options[:order] = @reflection.options[:order]
        end
25

26 27 28 29
        options[:select]  = construct_select(options[:select])
        options[:from]  ||= construct_from
        options[:joins]   = construct_joins(options[:joins])
        options[:include] = @reflection.source_reflection.options[:include] if options[:include].nil?
30

31 32
        merge_options_from_reflection!(options)

33 34 35 36 37 38 39 40 41 42
        # Pass through args exactly as we received them.
        args << options
        @reflection.klass.find(*args)
      end

      def reset
        @target = []
        @loaded = false
      end

43 44 45 46
      # Adds records to the association. The source record and its associates
      # must have ids in order to create records associating them, so this
      # will raise ActiveRecord::HasManyThroughCantAssociateNewRecords if
      # either is a new record.  Calls create! so you can rescue errors.
47 48 49 50
      #
      # The :before_add and :after_add callbacks are not yet supported.
      def <<(*records)
        return if records.empty?
51
        through = @reflection.through_reflection
52
        raise ActiveRecord::HasManyThroughCantAssociateNewRecords.new(@owner, through) if @owner.new_record?
53 54 55

        klass = through.klass
        klass.transaction do
56 57
          flatten_deeper(records).each do |associate|
            raise_on_type_mismatch(associate)
58
            raise ActiveRecord::HasManyThroughCantAssociateNewRecords.new(@owner, through) unless associate.respond_to?(:new_record?) && !associate.new_record?
59

60
            @owner.send(@reflection.through_reflection.name).proxy_target << klass.send(:with_scope, :create => construct_join_attributes(associate)) { klass.create! }
61
            @target << associate if loaded?
62 63
          end
        end
64 65

        self
66 67
      end

68 69
      [:push, :concat].each { |method| alias_method method, :<< }

70
      # Removes +records+ from this association.  Does not destroy +records+.
71 72 73
      def delete(*records)
        records = flatten_deeper(records)
        records.each { |associate| raise_on_type_mismatch(associate) }
74

75
        through = @reflection.through_reflection
76 77 78 79 80 81 82 83 84 85
        raise ActiveRecord::HasManyThroughCantDissociateNewRecords.new(@owner, through) if @owner.new_record?

        load_target

        klass = through.klass
        klass.transaction do
          flatten_deeper(records).each do |associate|
            raise_on_type_mismatch(associate)
            raise ActiveRecord::HasManyThroughCantDissociateNewRecords.new(@owner, through) unless associate.respond_to?(:new_record?) && !associate.new_record?

86
            klass.delete_all(construct_join_attributes(associate))
87 88 89
            @target.delete(associate)
          end
        end
90 91

        self
92 93
      end

94 95
      def build(attrs = nil)
        raise ActiveRecord::HasManyThroughCantAssociateNewRecords.new(@owner, @reflection.through_reflection)
96
      end
97
      alias_method :new, :build
98 99 100

      def create!(attrs = nil)
        @reflection.klass.transaction do
101 102
          self << (object = @reflection.klass.send(:with_scope, :create => attrs) { @reflection.klass.create! })
          object
103 104 105
        end
      end

106 107 108 109
      # Returns the size of the collection by executing a SELECT COUNT(*) query if the collection hasn't been loaded and
      # 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 less SELECT query if you use length.
      def size
110 111 112
        return @owner.send(:read_attribute, cached_counter_attribute_name) if has_cached_counter?
        return @target.size if loaded?
        return count
113 114
      end

115
      # Calculate sum using SQL, not Enumerable
116 117 118 119 120 121
      def sum(*args)
        if block_given?
          calculate(:sum, *args) { |*block_args| yield(*block_args) }
        else
          calculate(:sum, *args)
        end
122
      end
123 124 125 126
      
      def count(*args)
        column_name, options = @reflection.klass.send(:construct_count_options_from_args, *args)
        if @reflection.options[:uniq]
127
          # This is needed because 'SELECT count(DISTINCT *)..' is not valid sql statement.
128
          column_name = "#{@reflection.quoted_table_name}.#{@reflection.klass.primary_key}" if column_name == :all
129 130 131 132
          options.merge!(:distinct => true) 
        end
        @reflection.klass.send(:with_scope, construct_scope) { @reflection.klass.count(column_name, options) } 
      end
133

134
      protected
135
        def method_missing(method, *args)
136
          if @target.respond_to?(method) || (!@reflection.klass.respond_to?(method) && Class.respond_to?(method))
137 138 139 140 141
            if block_given?
              super { |*block_args| yield(*block_args) }
            else
              super
            end
142 143
          elsif @reflection.klass.scopes.include?(method)
            @reflection.klass.scopes[method].call(self, *args)
144
          else
145
            with_scope construct_scope do
146 147 148 149 150 151
              if block_given?
                @reflection.klass.send(method, *args) { |*block_args| yield(*block_args) }
              else
                @reflection.klass.send(method, *args)
              end
            end
152 153
          end
        end
154

155
        def find_target
156
          records = @reflection.klass.find(:all,
157
            :select     => construct_select,
158 159
            :conditions => construct_conditions,
            :from       => construct_from,
160
            :joins      => construct_joins,
161
            :order      => @reflection.options[:order],
162
            :limit      => @reflection.options[:limit],
163
            :group      => @reflection.options[:group],
164
            :readonly   => @reflection.options[:readonly],
165
            :include    => @reflection.options[:include] || @reflection.source_reflection.options[:include]
166
          )
167

168 169
          records.uniq! if @reflection.options[:uniq]
          records
170 171
        end

172 173
        # Construct attributes for associate pointing to owner.
        def construct_owner_attributes(reflection)
174 175 176 177 178 179 180 181
          if as = reflection.options[:as]
            { "#{as}_id" => @owner.id,
              "#{as}_type" => @owner.class.base_class.name.to_s }
          else
            { reflection.primary_key_name => @owner.id }
          end
        end

182 183
        # Construct attributes for :through pointing to owner and associate.
        def construct_join_attributes(associate)
184 185 186
          join_attributes = construct_owner_attributes(@reflection.through_reflection).merge(@reflection.source_reflection.primary_key_name => associate.id)
          if @reflection.options[:source_type]
            join_attributes.merge!(@reflection.source_reflection.options[:foreign_type] => associate.class.base_class.name.to_s)
187
          end
188
          join_attributes
189 190 191 192
        end

        # Associate attributes pointing to owner, quoted.
        def construct_quoted_owner_attributes(reflection)
193 194
          if as = reflection.options[:as]
            { "#{as}_id" => @owner.quoted_id,
195
              "#{as}_type" => reflection.klass.quote_value(
196 197
                @owner.class.base_class.name.to_s,
                reflection.klass.columns_hash["#{as}_type"]) }
198
          else
199 200 201 202
            { reflection.primary_key_name => @owner.quoted_id }
          end
        end

203
        # Build SQL conditions from attributes, qualified by table name.
204
        def construct_conditions
205
          table_name = @reflection.through_reflection.quoted_table_name
206
          conditions = construct_quoted_owner_attributes(@reflection.through_reflection).map do |attr, value|
207
            "#{table_name}.#{attr} = #{value}"
208
          end
209 210
          conditions << sql_conditions if sql_conditions
          "(" + conditions.join(') AND (') + ")"
211 212 213
        end

        def construct_from
214
          @reflection.quoted_table_name
215
        end
216

217
        def construct_select(custom_select = nil)
218
          selected = custom_select || @reflection.options[:select] || "#{@reflection.quoted_table_name}.*"
219
        end
220 221

        def construct_joins(custom_joins = nil)
222
          polymorphic_join = nil
223
          if @reflection.source_reflection.macro == :belongs_to
224 225
            reflection_primary_key = @reflection.klass.primary_key
            source_primary_key     = @reflection.source_reflection.primary_key_name
226 227
            if @reflection.options[:source_type]
              polymorphic_join = "AND %s.%s = %s" % [
228
                @reflection.through_reflection.quoted_table_name, "#{@reflection.source_reflection.options[:foreign_type]}",
229 230 231
                @owner.class.quote_value(@reflection.options[:source_type])
              ]
            end
232 233 234
          else
            reflection_primary_key = @reflection.source_reflection.primary_key_name
            source_primary_key     = @reflection.klass.primary_key
235 236
            if @reflection.source_reflection.options[:as]
              polymorphic_join = "AND %s.%s = %s" % [
237
                @reflection.quoted_table_name, "#{@reflection.source_reflection.options[:as]}_type",
238
                @owner.class.quote_value(@reflection.through_reflection.klass.name)
239 240
              ]
            end
241
          end
242

243
          "INNER JOIN %s ON %s.%s = %s.%s %s #{@reflection.options[:joins]} #{custom_joins}" % [
244
            @reflection.through_reflection.table_name,
245
            @reflection.table_name, reflection_primary_key,
246 247
            @reflection.through_reflection.table_name, source_primary_key,
            polymorphic_join
248 249
          ]
        end
250

251
        def construct_scope
252
          { :create => construct_owner_attributes(@reflection),
253 254 255
            :find   => { :from        => construct_from,
                         :conditions  => construct_conditions,
                         :joins       => construct_joins,
256
                         :include     => @reflection.options[:include],
257
                         :select      => construct_select,
258
                         :order       => @reflection.options[:order],
259 260 261
                         :limit       => @reflection.options[:limit],
                         :readonly    => @reflection.options[:readonly],
             } }
262
        end
263

264 265 266 267 268
        def construct_sql
          case
            when @reflection.options[:finder_sql]
              @finder_sql = interpolate_sql(@reflection.options[:finder_sql])

269
              @finder_sql = "#{@reflection.quoted_table_name}.#{@reflection.primary_key_name} = #{@owner.quoted_id}"
270
              @finder_sql << " AND (#{conditions})" if conditions
271 272 273 274 275
          end

          if @reflection.options[:counter_sql]
            @counter_sql = interpolate_sql(@reflection.options[:counter_sql])
          elsif @reflection.options[:finder_sql]
276 277
            # replace the SELECT clause with COUNT(*), preserving any hints within /* ... */
            @reflection.options[:counter_sql] = @reflection.options[:finder_sql].sub(/SELECT (\/\*.*?\*\/ )?(.*)\bFROM\b/im) { "SELECT #{$1}COUNT(*) FROM" }
278 279 280 281 282
            @counter_sql = interpolate_sql(@reflection.options[:counter_sql])
          else
            @counter_sql = @finder_sql
          end
        end
283

284
        def conditions
285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
          @conditions = build_conditions unless defined?(@conditions)
          @conditions
        end

        def build_conditions
          association_conditions = @reflection.options[:conditions]
          through_conditions = @reflection.through_reflection.options[:conditions]
          source_conditions = @reflection.source_reflection.options[:conditions]
          uses_sti = !@reflection.through_reflection.klass.descends_from_active_record?

          if association_conditions || through_conditions || source_conditions || uses_sti
            all = []

            [association_conditions, through_conditions, source_conditions].each do |conditions|
              all << interpolate_sql(sanitize_sql(conditions)) if conditions
            end

            all << build_sti_condition if uses_sti

            all.map { |sql| "(#{sql})" } * ' AND '
          end
        end

        def build_sti_condition
309
          "#{@reflection.through_reflection.quoted_table_name}.#{@reflection.through_reflection.klass.inheritance_column} = #{@reflection.klass.quote_value(@reflection.through_reflection.klass.name.demodulize)}"
310
        end
311

312
        alias_method :sql_conditions, :conditions
313 314 315 316 317 318 319 320

        def has_cached_counter?
          @owner.attribute_present?(cached_counter_attribute_name)
        end

        def cached_counter_attribute_name
          "#{@reflection.name}_count"
        end
321 322 323
    end
  end
end