query_methods.rb 7.7 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
      args.present? ? clone.tap {|r| r.includes_values = (r.includes_values + args).flatten.uniq } : clone
15
    end
16

17
    def eager_load(*args)
18
      args.present? ? clone.tap {|r| r.eager_load_values += args } : clone
19 20 21
    end

    def preload(*args)
22
      args.present? ? clone.tap {|r| r.preload_values += args } : clone
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
29
        args.present? ? clone.tap {|r| r.select_values += args  } : clone
S
Santiago Pastorino 已提交
30
      end
31
    end
S
Santiago Pastorino 已提交
32

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

37
    def order(*args)
38
      args.present? ? clone.tap {|r| r.order_values += args  } : clone
39
    end
40

41
    def reorder(*args)
42
      args.present? ? clone.tap {|r| r.order_values = args  } : clone
43 44
    end

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

54
    def where(opts, *rest)
55 56 57 58 59 60 61
      if value = build_where(opts, rest)
        copy = clone
        copy.where_values += Array.wrap(value)
        copy
      else
        clone
      end
62
    end
P
Pratik Naik 已提交
63

64
    def having(*args)
65 66 67 68 69 70
      if args.present?
        value = build_where(*args)
        clone.tap {|r| r.having_values += Array.wrap(value) }
      else
        clone
      end
71 72 73
    end

    def limit(value = true)
A
Aaron Patterson 已提交
74 75 76
      copy = clone
      copy.limit_value = value
      copy
77 78 79
    end

    def offset(value = true)
P
Pratik Naik 已提交
80
      clone.tap {|r| r.offset_value = value }
81 82 83
    end

    def lock(locks = true)
84
      case locks
85
      when String, TrueClass, NilClass
P
Pratik Naik 已提交
86
        clone.tap {|r| r.lock_value = locks || true }
87
      else
P
Pratik Naik 已提交
88
        clone.tap {|r| r.lock_value = false }
89 90 91
      end
    end

92
    def readonly(value = true)
P
Pratik Naik 已提交
93
      clone.tap {|r| r.readonly_value = value }
94 95 96
    end

    def create_with(value = true)
P
Pratik Naik 已提交
97
      clone.tap {|r| r.create_with_value = value }
98 99 100
    end

    def from(value = true)
P
Pratik Naik 已提交
101
      clone.tap {|r| r.from_value = value }
102 103
    end

104 105
    def extending(*modules, &block)
      modules << Module.new(&block) if block_given?
P
Pratik Naik 已提交
106
      clone.tap {|r| r.send(:apply_modules, *modules) }
107 108
    end

109
    def reverse_order
110
      order_clause = arel.order_clauses.join(', ')
111 112
      relation = except(:order)

113 114 115 116 117
      order = order_clause.blank? ?
        "#{@klass.table_name}.#{@klass.primary_key} DESC" :
        reverse_sql_order(order_clause)

      relation.order Arel::SqlLiteral.new order
118 119
    end

120 121
    def arel
      @arel ||= build_arel
122 123
    end

124 125 126 127 128 129 130 131 132 133 134
    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(' ')
135
            arel = arel.join(Arel::SqlLiteral.new(join_string))
136
          end
137 138
        when String
          arel = arel.join(Arel::SqlLiteral.new(join))
139 140 141 142 143 144 145
        else
          arel = arel.join(join)
        end
      end
      arel.joins(arel)
    end

146 147
    def build_arel
      arel = table
148

149
      arel = build_joins(arel, @joins_values) unless @joins_values.empty?
150

151
      (@where_values - ['']).uniq.each do |where|
152
        case where
153 154
        when Arel::SqlLiteral
          arel = arel.where(where)
155
        else
156 157
          sql = where.is_a?(String) ? where : where.to_sql
          arel = arel.where(Arel::SqlLiteral.new("(#{sql})"))
158
        end
159 160
      end

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

163
      arel = arel.take(@limit_value) if @limit_value
164
      arel = arel.skip(@offset_value) if @offset_value
165

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

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

170
      arel = build_select(arel, @select_values.uniq)
171

172
      arel = arel.from(@from_value) if @from_value
173
      arel = arel.lock(@lock_value) if @lock_value
174 175

      arel
176 177
    end

178
    def build_where(opts, other = [])
A
Aaron Patterson 已提交
179 180
      case opts
      when String, Array
181
        @klass.send(:sanitize_sql, other.empty? ? opts : ([opts] + other))
A
Aaron Patterson 已提交
182 183
      when Hash
        attributes = @klass.send(:expand_hash_conditions_for_aggregates, opts)
184
        PredicateBuilder.new(table.engine).build_from_hash(attributes, table)
185
      else
A
Aaron Patterson 已提交
186
        opts
187 188 189 190 191
      end
    end

    private

192 193 194 195 196 197 198 199 200 201
    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

202
      stashed_association_joins = joins.grep(ActiveRecord::Associations::ClassMethods::JoinDependency::JoinAssociation)
203

S
Santiago Pastorino 已提交
204
      non_association_joins = (joins - association_joins - stashed_association_joins)
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
      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

234
    def build_select(arel, selects)
235
      unless selects.empty?
236
        @implicit_readonly = false
237 238
        # 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 已提交
239
        if selects.all? {|s| s.is_a?(String) || !s.is_a?(Arel::Expression) } && !(selects.last =~ /^COUNT\(/)
240 241 242
          arel.project(*selects)
        else
          arel.project(selects.last)
243 244
        end
      else
245
        arel.project(Arel::SqlLiteral.new(@klass.quoted_table_name + '.*'))
246 247 248
      end
    end

P
Pratik Naik 已提交
249 250 251 252 253 254
    def apply_modules(modules)
      values = Array.wrap(modules)
      @extensions += values if values.present?
      values.each {|extension| extend(extension) }
    end

255
    def reverse_sql_order(order_query)
256
      order_query.split(',').each { |s|
257 258 259 260 261 262 263 264 265 266
        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 已提交
267 268 269 270
    def array_of_strings?(o)
      o.is_a?(Array) && o.all?{|obj| obj.is_a?(String)}
    end

271 272
  end
end