has_many_through_association.rb 8.0 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 12 13 14 15 16 17 18 19 20 21 22 23 24
      def find(*args)
        options = Base.send(:extract_options_from_args!, args)

        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
      def <<(*args)
48 49 50 51 52 53 54 55 56 57 58
        return if args.empty?
        through = @reflection.through_reflection
        raise ActiveRecord::HasManyThroughCantAssociateNewRecords.new(@owner, through) if @owner.new_record?

        klass = through.klass
        klass.transaction do
          args.each do |associate|
            raise ActiveRecord::HasManyThroughCantAssociateNewRecords.new(@owner, through) unless associate.respond_to?(:new_record?) && !associate.new_record?
            klass.with_scope(:create => construct_association_attributes(through)) { klass.create! }
          end
        end
59 60
      end

61 62 63 64
      [:push, :concat].each { |method| alias_method method, :<< }

      def build(attrs = nil)
        raise ActiveRecord::HasManyThroughCantAssociateNewRecords.new(@owner, @reflection.through_reflection)
65
      end
66 67 68 69 70 71 72

      def create!(attrs = nil)
        @reflection.klass.transaction do
          self << @reflection.klass.with_scope(:create => attrs) { @reflection.klass.create! }
        end
      end

73 74 75 76
      # Calculate sum using SQL, not Enumerable
      def sum(*args, &block)
        calculate(:sum, *args, &block)
      end
77

78 79 80 81 82 83 84 85
      protected
        def method_missing(method, *args, &block)
          if @target.respond_to?(method) || (!@reflection.klass.respond_to?(method) && Class.respond_to?(method))
            super
          else
            @reflection.klass.with_scope(construct_scope) { @reflection.klass.send(method, *args, &block) }
          end
        end
86

87
        def find_target
88
          records = @reflection.klass.find(:all,
89
            :select     => construct_select,
90 91
            :conditions => construct_conditions,
            :from       => construct_from,
92
            :joins      => construct_joins,
93
            :order      => @reflection.options[:order],
94
            :limit      => @reflection.options[:limit],
95 96
            :group      => @reflection.options[:group],
            :include    => @reflection.options[:include] || @reflection.source_reflection.options[:include]
97
          )
98 99

          @reflection.options[:uniq] ? records.to_set.to_a : records
100 101
        end

102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
        def construct_association_attributes(reflection)
          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

        def construct_quoted_association_attributes(reflection)
          if as = reflection.options[:as]
            { "#{as}_id" => @owner.quoted_id,
              "#{as}_type" => reflection.klass.quote(
                @owner.class.base_class.name.to_s,
                reflection.klass.columns_hash["#{as}_type"]) }
117
          else
118 119 120 121 122 123 124 125
            { reflection.primary_key_name => @owner.quoted_id }
          end
        end

        def construct_conditions
          table_name = @reflection.through_reflection.table_name
          conditions = construct_quoted_association_attributes(@reflection.through_reflection).map do |attr, value|
            "#{table_name}.#{attr} = #{value}"
126
          end
127 128
          conditions << sql_conditions if sql_conditions
          "(" + conditions.join(') AND (') + ")"
129 130 131
        end

        def construct_from
132
          @reflection.table_name
133
        end
134

135
        def construct_select(custom_select = nil)
136
          selected = custom_select || @reflection.options[:select] || "#{@reflection.table_name}.*"
137
        end
138 139

        def construct_joins(custom_joins = nil)
140
          polymorphic_join = nil
141 142 143 144 145 146
          if @reflection.through_reflection.options[:as] || @reflection.source_reflection.macro == :belongs_to
            reflection_primary_key = @reflection.klass.primary_key
            source_primary_key     = @reflection.source_reflection.primary_key_name
          else
            reflection_primary_key = @reflection.source_reflection.primary_key_name
            source_primary_key     = @reflection.klass.primary_key
147 148 149 150 151 152
            if @reflection.source_reflection.options[:as]
              polymorphic_join = "AND %s.%s = %s" % [
                @reflection.table_name, "#{@reflection.source_reflection.options[:as]}_type",
                @owner.class.quote(@reflection.through_reflection.klass.name)
              ]
            end
153
          end
154

155
          "INNER JOIN %s ON %s.%s = %s.%s %s #{@reflection.options[:joins]} #{custom_joins}" % [
156
            @reflection.through_reflection.table_name,
157
            @reflection.table_name, reflection_primary_key,
158 159
            @reflection.through_reflection.table_name, source_primary_key,
            polymorphic_join
160 161
          ]
        end
162

163
        def construct_scope
164 165 166 167 168
          { :create => construct_association_attributes(@reflection),
            :find   => { :from        => construct_from,
                         :conditions  => construct_conditions,
                         :joins       => construct_joins,
                         :select      => construct_select } }
169
        end
170

171 172 173 174 175 176
        def construct_sql
          case
            when @reflection.options[:finder_sql]
              @finder_sql = interpolate_sql(@reflection.options[:finder_sql])

              @finder_sql = "#{@reflection.klass.table_name}.#{@reflection.primary_key_name} = #{@owner.quoted_id}"
177
              @finder_sql << " AND (#{conditions})" if conditions
178 179 180 181 182
          end

          if @reflection.options[:counter_sql]
            @counter_sql = interpolate_sql(@reflection.options[:counter_sql])
          elsif @reflection.options[:finder_sql]
183 184
            # 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" }
185 186 187 188 189
            @counter_sql = interpolate_sql(@reflection.options[:counter_sql])
          else
            @counter_sql = @finder_sql
          end
        end
190

191 192 193 194 195
        def conditions
          @conditions ||= [
            (interpolate_sql(@reflection.active_record.send(:sanitize_sql, @reflection.options[:conditions])) if @reflection.options[:conditions]),
            (interpolate_sql(@reflection.active_record.send(:sanitize_sql, @reflection.through_reflection.options[:conditions])) if @reflection.through_reflection.options[:conditions])
          ].compact.collect { |condition| "(#{condition})" }.join(' AND ') unless (!@reflection.options[:conditions] && !@reflection.through_reflection.options[:conditions])
196
        end
197

198
        alias_method :sql_conditions, :conditions
199 200 201
    end
  end
end