query_methods.rb 7.4 KB
Newer Older
1
require 'active_support/core_ext/array/wrap'
2 3
require 'active_support/core_ext/object/blank'

4 5
module ActiveRecord
  module QueryMethods
6 7
    extend ActiveSupport::Concern

8 9 10
    attr_accessor :includes_values, :eager_load_values, :preload_values,
                  :select_values, :group_values, :order_values, :joins_values, :where_values, :having_values,
                  :limit_value, :offset_value, :lock_value, :readonly_value, :create_with_value, :from_value
11

12 13
    def includes(*args)
      args.reject! { |a| a.blank? }
14
      clone.tap {|r| r.includes_values = (r.includes_values + args).flatten.uniq if args.present? }
15
    end
16

17
    def eager_load(*args)
P
Pratik Naik 已提交
18
      clone.tap {|r| r.eager_load_values += args if args.present? }
19 20 21
    end

    def preload(*args)
P
Pratik Naik 已提交
22
      clone.tap {|r| r.preload_values += args if args.present? }
23
    end
24

25 26
    def select(*args)
      if block_given?
P
Pratik Naik 已提交
27
        to_a.select {|*block_args| yield(*block_args) }
28
      else
P
Pratik Naik 已提交
29
        clone.tap {|r| r.select_values += args if args.present? }
S
Santiago Pastorino 已提交
30
      end
31
    end
S
Santiago Pastorino 已提交
32

33
    def group(*args)
34
      clone.tap {|r| r.group_values += args.flatten if args.present? }
35
    end
36

37
    def order(*args)
P
Pratik Naik 已提交
38
      clone.tap {|r| r.order_values += args if args.present? }
39
    end
40

41
    def reorder(*args)
P
Pratik Naik 已提交
42
      clone.tap {|r| r.order_values = args if args.present? }
43 44
    end

45 46
    def joins(*args)
      args.flatten!
P
Pratik Naik 已提交
47
      clone.tap {|r| r.joins_values += args if args.present? }
P
Pratik Naik 已提交
48 49
    end

50 51
    def where(opts, *rest)
      value = build_where(opts, rest)
A
Aaron Patterson 已提交
52 53 54
      copy = clone
      copy.where_values += Array.wrap(value) if value
      copy
55
    end
P
Pratik Naik 已提交
56

57 58
    def having(*args)
      value = build_where(*args)
P
Pratik Naik 已提交
59
      clone.tap {|r| r.having_values += Array.wrap(value) if value.present? }
60 61 62
    end

    def limit(value = true)
A
Aaron Patterson 已提交
63 64 65
      copy = clone
      copy.limit_value = value
      copy
66 67 68
    end

    def offset(value = true)
P
Pratik Naik 已提交
69
      clone.tap {|r| r.offset_value = value }
70 71 72
    end

    def lock(locks = true)
73
      case locks
74
      when String, TrueClass, NilClass
P
Pratik Naik 已提交
75
        clone.tap {|r| r.lock_value = locks || true }
76
      else
P
Pratik Naik 已提交
77
        clone.tap {|r| r.lock_value = false }
78 79 80
      end
    end

81
    def readonly(value = true)
P
Pratik Naik 已提交
82
      clone.tap {|r| r.readonly_value = value }
83 84 85
    end

    def create_with(value = true)
P
Pratik Naik 已提交
86
      clone.tap {|r| r.create_with_value = value }
87 88 89
    end

    def from(value = true)
P
Pratik Naik 已提交
90
      clone.tap {|r| r.from_value = value }
91 92
    end

93 94
    def extending(*modules, &block)
      modules << Module.new(&block) if block_given?
P
Pratik Naik 已提交
95
      clone.tap {|r| r.send(:apply_modules, *modules) }
96 97
    end

98
    def reverse_order
99
      order_clause = arel.send(:order_clauses).join(', ')
100 101
      relation = except(:order)

102
      unless order_clauses.blank?
103 104 105 106 107 108
        relation.order(reverse_sql_order(order_clause))
      else
        relation.order("#{@klass.table_name}.#{@klass.primary_key} DESC")
      end
    end

109 110
    def arel
      @arel ||= build_arel
111 112
    end

113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
    def custom_join_sql(*joins)
      arel = table
      joins.each do |join|
        next if join.blank?

        @implicit_readonly = true

        case join
        when Hash, Array, Symbol
          if array_of_strings?(join)
            join_string = join.join(' ')
            arel = arel.join(join_string)
          end
        else
          arel = arel.join(join)
        end
      end
      arel.joins(arel)
    end

133 134
    def build_arel
      arel = table
135

136
      arel = build_joins(arel, @joins_values) unless @joins_values.empty?
137

138
      (@where_values - ['']).uniq.each do |where|
139
        case where
140 141
        when Arel::SqlLiteral
          arel = arel.where(where)
142
        else
143 144
          sql = where.is_a?(String) ? where : where.to_sql
          arel = arel.where(Arel::SqlLiteral.new("(#{sql})"))
145
        end
146 147
      end

148
      arel = arel.having(*@having_values.uniq.select{|h| h.present?}) unless @having_values.empty?
149

150
      arel = arel.take(@limit_value) if @limit_value
151
      arel = arel.skip(@offset_value) if @offset_value
152

153
      arel = arel.group(*@group_values.uniq.select{|g| g.present?}) unless @group_values.empty?
154

155
      arel = arel.order(*@order_values.uniq.select{|o| o.present?}) unless @order_values.empty?
156

157
      arel = build_select(arel, @select_values.uniq)
158

159
      arel = arel.from(@from_value) if @from_value
160
      arel = arel.lock(@lock_value) if @lock_value
161 162

      arel
163 164
    end

165
    def build_where(opts, other = [])
A
Aaron Patterson 已提交
166 167
      case opts
      when String, Array
168
        @klass.send(:sanitize_sql, other.empty? ? opts : ([opts] + other))
A
Aaron Patterson 已提交
169 170
      when Hash
        attributes = @klass.send(:expand_hash_conditions_for_aggregates, opts)
171
        PredicateBuilder.new(table.engine).build_from_hash(attributes, table)
172
      else
A
Aaron Patterson 已提交
173
        opts
174 175 176 177 178
      end
    end

    private

179 180 181 182 183 184 185 186 187 188 189 190
    def build_joins(relation, joins)
      joined_associations = []
      association_joins = []

      joins = @joins_values.map {|j| j.respond_to?(:strip) ? j.strip : j}.uniq

      joins.each do |join|
        association_joins << join if [Hash, Array, Symbol].include?(join.class) && !array_of_strings?(join)
      end

      stashed_association_joins = joins.select {|j| j.is_a?(ActiveRecord::Associations::ClassMethods::JoinDependency::JoinAssociation)}

S
Santiago Pastorino 已提交
191
      non_association_joins = (joins - association_joins - stashed_association_joins)
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
      custom_joins = custom_join_sql(*non_association_joins)

      join_dependency = ActiveRecord::Associations::ClassMethods::JoinDependency.new(@klass, association_joins, custom_joins)

      join_dependency.graft(*stashed_association_joins)

      @implicit_readonly = true unless association_joins.empty? && stashed_association_joins.empty?

      to_join = []

      join_dependency.join_associations.each do |association|
        if (association_relation = association.relation).is_a?(Array)
          to_join << [association_relation.first, association.join_class, association.association_join.first]
          to_join << [association_relation.last, association.join_class, association.association_join.last]
        else
          to_join << [association_relation, association.join_class, association.association_join]
        end
      end

      to_join.each do |tj|
        unless joined_associations.detect {|ja| ja[0] == tj[0] && ja[1] == tj[1] && ja[2] == tj[2] }
          joined_associations << tj
          relation = relation.join(tj[0], tj[1]).on(*tj[2])
        end
      end

      relation.join(custom_joins)
    end

221
    def build_select(arel, selects)
222
      unless selects.empty?
223
        @implicit_readonly = false
224 225
        # TODO: fix this ugly hack, we should refactor the callers to get an ARel compatible array.
        # Before this change we were passing to ARel the last element only, and ARel is capable of handling an array
P
Pratik Naik 已提交
226
        if selects.all? {|s| s.is_a?(String) || !s.is_a?(Arel::Expression) } && !(selects.last =~ /^COUNT\(/)
227 228 229
          arel.project(*selects)
        else
          arel.project(selects.last)
230 231
        end
      else
232
        arel.project(Arel::SqlLiteral.new(@klass.quoted_table_name + '.*'))
233 234 235
      end
    end

P
Pratik Naik 已提交
236 237 238 239 240 241
    def apply_modules(modules)
      values = Array.wrap(modules)
      @extensions += values if values.present?
      values.each {|extension| extend(extension) }
    end

242
    def reverse_sql_order(order_query)
243
      order_query.split(',').each { |s|
244 245 246 247 248 249 250 251 252 253
        if s.match(/\s(asc|ASC)$/)
          s.gsub!(/\s(asc|ASC)$/, ' DESC')
        elsif s.match(/\s(desc|DESC)$/)
          s.gsub!(/\s(desc|DESC)$/, ' ASC')
        else
          s.concat(' DESC')
        end
      }.join(',')
    end

P
Pratik Naik 已提交
254 255 256 257
    def array_of_strings?(o)
      o.is_a?(Array) && o.all?{|obj| obj.is_a?(String)}
    end

258 259
  end
end