has_many_through_association.rb 6.2 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 11
        @finder_sql = construct_conditions
        construct_sql
      end


12 13 14 15 16 17 18 19 20 21 22 23 24 25
      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
26
        
27 28 29 30
        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?
31
        
32 33
        merge_options_from_reflection!(options)

34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
        # Pass through args exactly as we received them.
        args << options
        @reflection.klass.find(*args)
      end

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

      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
            
        def find_target
          @reflection.klass.find(:all, 
55
            :select     => construct_select,
56 57
            :conditions => construct_conditions,
            :from       => construct_from,
58
            :joins      => construct_joins,
59 60
            :order      => @reflection.options[:order], 
            :limit      => @reflection.options[:limit],
61 62
            :group      => @reflection.options[:group],
            :include    => @reflection.options[:include] || @reflection.source_reflection.options[:include]
63 64 65
          )
        end

66 67 68
        def construct_conditions          
          conditions = if @reflection.through_reflection.options[:as]
              "#{@reflection.through_reflection.table_name}.#{@reflection.through_reflection.options[:as]}_id = #{@owner.quoted_id} " + 
69
              "AND #{@reflection.through_reflection.table_name}.#{@reflection.through_reflection.options[:as]}_type = #{@owner.class.quote @owner.class.base_class.name.to_s}"
70
          else
71 72 73 74
            case @reflection.source_reflection.macro
              when :belongs_to, :has_many
                "#{@reflection.through_reflection.table_name}.#{@reflection.through_reflection.primary_key_name} = #{@owner.quoted_id}"
              else
75
                raise ActiveRecordError, "Invalid source reflection macro :#{@reflection.source_reflection.macro} for has_many #{@reflection.name}, :through => #{@reflection.through_reflection.name}.  Use :source to specify the source reflection."
76
            end
77
          end
78
          conditions << " AND (#{sql_conditions})" if sql_conditions
79 80 81 82 83
          
          return conditions
        end

        def construct_from
84
          @reflection.table_name
85 86
        end
        
87 88
        def construct_select(custom_select = nil)
          selected = custom_select || @reflection.options[:select] || "#{@reflection.table_name}.*"          
89 90
        end
        
91
        def construct_joins(custom_joins = nil)
92 93 94 95 96 97 98
          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
          end
99 100

          "INNER JOIN %s ON %s.%s = %s.%s #{@reflection.options[:joins]} #{custom_joins}" % [
101
            @reflection.through_reflection.table_name,
102 103 104 105 106
            @reflection.table_name, reflection_primary_key,
            @reflection.through_reflection.table_name, source_primary_key
          ]
        end
        
107 108
        def construct_scope
          {
109
            :find   => { :from => construct_from, :conditions => construct_conditions, :joins => construct_joins, :select => construct_select },
110 111 112
            :create => { @reflection.primary_key_name => @owner.id }
          }
        end
113 114 115 116 117 118 119
        
        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}"
120
              @finder_sql << " AND (#{conditions})" if conditions
121 122 123 124 125
          end

          if @reflection.options[:counter_sql]
            @counter_sql = interpolate_sql(@reflection.options[:counter_sql])
          elsif @reflection.options[:finder_sql]
126 127
            # 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" }
128 129 130 131 132 133
            @counter_sql = interpolate_sql(@reflection.options[:counter_sql])
          else
            @counter_sql = @finder_sql
          end
        end
        
134 135 136 137 138
        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])
139
        end
140 141
        
        alias_method :sql_conditions, :conditions
142 143 144
    end
  end
end