query_methods.rb 7.6 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 46
    def joins(*args)
      args.flatten!
47
      args.present? ? clone.tap {|r| r.joins_values += args } : clone
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)
59
      value.present? ? clone.tap {|r| r.having_values += Array.wrap(value) } : clone
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.order_clauses.join(', ')
100 101
      relation = except(:order)

102 103 104 105 106
      order = order_clause.blank? ?
        "#{@klass.table_name}.#{@klass.primary_key} DESC" :
        reverse_sql_order(order_clause)

      relation.order Arel::SqlLiteral.new order
107 108
    end

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

113 114 115 116 117 118 119 120 121 122 123
    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(' ')
124
            arel = arel.join(Arel::SqlLiteral.new(join_string))
125
          end
126 127
        when String
          arel = arel.join(Arel::SqlLiteral.new(join))
128 129 130 131 132 133 134
        else
          arel = arel.join(join)
        end
      end
      arel.joins(arel)
    end

135 136
    def build_arel
      arel = table
137

138
      arel = build_joins(arel, @joins_values) unless @joins_values.empty?
139

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

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

152
      arel = arel.take(@limit_value) if @limit_value
153
      arel = arel.skip(@offset_value) if @offset_value
154

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

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

159
      arel = build_select(arel, @select_values.uniq)
160

161
      arel = arel.from(@from_value) if @from_value
162
      arel = arel.lock(@lock_value) if @lock_value
163 164

      arel
165 166
    end

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

    private

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

191
      stashed_association_joins = joins.grep(ActiveRecord::Associations::ClassMethods::JoinDependency::JoinAssociation)
192

S
Santiago Pastorino 已提交
193
      non_association_joins = (joins - association_joins - stashed_association_joins)
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 221 222
      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

223
    def build_select(arel, selects)
224
      unless selects.empty?
225
        @implicit_readonly = false
226 227
        # 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 已提交
228
        if selects.all? {|s| s.is_a?(String) || !s.is_a?(Arel::Expression) } && !(selects.last =~ /^COUNT\(/)
229 230 231
          arel.project(*selects)
        else
          arel.project(selects.last)
232 233
        end
      else
234
        arel.project(Arel::SqlLiteral.new(@klass.quoted_table_name + '.*'))
235 236 237
      end
    end

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

244
    def reverse_sql_order(order_query)
245
      order_query.split(',').each { |s|
246 247 248 249 250 251 252 253 254 255
        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 已提交
256 257 258 259
    def array_of_strings?(o)
      o.is_a?(Array) && o.all?{|obj| obj.is_a?(String)}
    end

260 261
  end
end