query_methods.rb 35.7 KB
Newer Older
1
require 'active_support/core_ext/array/wrap'
2

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

7
    # WhereChain objects act as placeholder for queries in which #where does not have any parameter.
8
    # In this case, #where must be chained with #not to return a new relation.
9 10 11 12 13
    class WhereChain
      def initialize(scope)
        @scope = scope
      end

14 15
      # Returns a new relation expressing WHERE + NOT condition according to
      # the conditions in the arguments.
16
      #
17 18
      # +not+ accepts conditions as a string, array, or hash. See #where for
      # more details on each format.
19 20
      #
      #    User.where.not("name = 'Jon'")
21
      #    # SELECT * FROM users WHERE NOT (name = 'Jon')
22 23
      #
      #    User.where.not(["name = ?", "Jon"])
24
      #    # SELECT * FROM users WHERE NOT (name = 'Jon')
25
      #
26
      #    User.where.not(name: "Jon")
27
      #    # SELECT * FROM users WHERE name != 'Jon'
28 29 30 31
      #
      #    User.where.not(name: nil)
      #    # SELECT * FROM users WHERE name IS NOT NULL
      #
32
      #    User.where.not(name: %w(Ko1 Nobu))
33
      #    # SELECT * FROM users WHERE name NOT IN ('Ko1', 'Nobu')
34 35 36
      #
      #    User.where.not(name: "Jon", role: "admin")
      #    # SELECT * FROM users WHERE name != 'Jon' AND role != 'admin'
37 38 39
      def not(opts, *rest)
        where_value = @scope.send(:build_where, opts, rest).map do |rel|
          case rel
40 41
          when NilClass
            raise ArgumentError, 'Invalid argument for .where.not(), got nil.'
42 43
          when Arel::Nodes::In
            Arel::Nodes::NotIn.new(rel.left, rel.right)
44 45
          when Arel::Nodes::Equality
            Arel::Nodes::NotEqual.new(rel.left, rel.right)
46 47 48 49 50 51
          when String
            Arel::Nodes::Not.new(Arel::Nodes::SqlLiteral.new(rel))
          else
            Arel::Nodes::Not.new(rel)
          end
        end
52 53

        @scope.references!(PredicateBuilder.references(opts)) if Hash === opts
54 55 56 57 58
        @scope.where_values += where_value
        @scope
      end
    end

59 60
    Relation::MULTI_VALUE_METHODS.each do |name|
      class_eval <<-CODE, __FILE__, __LINE__ + 1
61 62 63 64 65 66 67 68
        def #{name}_values                   # def select_values
          @values[:#{name}] || []            #   @values[:select] || []
        end                                  # end
                                             #
        def #{name}_values=(values)          # def select_values=(values)
          raise ImmutableRelation if @loaded #   raise ImmutableRelation if @loaded
          @values[:#{name}] = values         #   @values[:select] = values
        end                                  # end
69 70 71 72 73
      CODE
    end

    (Relation::SINGLE_VALUE_METHODS - [:create_with]).each do |name|
      class_eval <<-CODE, __FILE__, __LINE__ + 1
74 75 76
        def #{name}_value                    # def readonly_value
          @values[:#{name}]                  #   @values[:readonly]
        end                                  # end
77 78 79
      CODE
    end

80 81 82 83 84 85 86
    Relation::SINGLE_VALUE_METHODS.each do |name|
      class_eval <<-CODE, __FILE__, __LINE__ + 1
        def #{name}_value=(value)            # def readonly_value=(value)
          raise ImmutableRelation if @loaded #   raise ImmutableRelation if @loaded
          @values[:#{name}] = value          #   @values[:readonly] = value
        end                                  # end
      CODE
87 88
    end

O
Oscar Del Ben 已提交
89
    def create_with_value # :nodoc:
90
      @values[:create_with] || {}
91
    end
92 93

    alias extensions extending_values
94

O
Oscar Del Ben 已提交
95 96 97 98 99 100 101 102 103 104
    # Specify relationships to be included in the result set. For
    # example:
    #
    #   users = User.includes(:address)
    #   users.each do |user|
    #     user.address.city
    #   end
    #
    # allows you to access the +address+ attribute of the +User+ model without
    # firing an additional query. This will often result in a
105 106
    # performance improvement over a simple +join+.
    #
107 108 109 110 111 112 113 114
    # You can also specify multiple relationships, like this:
    #
    #   users = User.includes(:address, :friends)
    #
    # Loading nested relationships is possible using a Hash:
    #
    #   users = User.includes(:address, friends: [:address, :followers])
    #
115 116 117 118 119 120 121 122 123 124
    # === conditions
    #
    # If you want to add conditions to your included models you'll have
    # to explicitly reference them. For example:
    #
    #   User.includes(:posts).where('posts.name = ?', 'example')
    #
    # Will throw an error, but this will work:
    #
    #   User.includes(:posts).where('posts.name = ?', 'example').references(:posts)
125 126 127
    #
    # Note that +includes+ works with association names while +references+ needs
    # the actual table name.
128
    def includes(*args)
129
      check_if_method_has_arguments!(:includes, args)
130
      spawn.includes!(*args)
131
    end
132

J
Jon Leighton 已提交
133
    def includes!(*args) # :nodoc:
134 135
      args.reject!(&:blank?)
      args.flatten!
A
Aaron Patterson 已提交
136

137
      self.includes_values |= args
138
      self
139
    end
140

141 142 143 144 145 146
    # Forces eager loading by performing a LEFT OUTER JOIN on +args+:
    #
    #   User.eager_load(:posts)
    #   => SELECT "users"."id" AS t0_r0, "users"."name" AS t0_r1, ...
    #   FROM "users" LEFT OUTER JOIN "posts" ON "posts"."user_id" =
    #   "users"."id"
147
    def eager_load(*args)
148
      check_if_method_has_arguments!(:eager_load, args)
149
      spawn.eager_load!(*args)
150
    end
151

J
Jon Leighton 已提交
152
    def eager_load!(*args) # :nodoc:
153 154
      self.eager_load_values += args
      self
155 156
    end

157 158 159 160
    # Allows preloading of +args+, in the same way that +includes+ does:
    #
    #   User.preload(:posts)
    #   => SELECT "posts".* FROM "posts" WHERE "posts"."user_id" IN (1, 2, 3)
161
    def preload(*args)
162
      check_if_method_has_arguments!(:preload, args)
163
      spawn.preload!(*args)
164
    end
165

J
Jon Leighton 已提交
166
    def preload!(*args) # :nodoc:
167 168
      self.preload_values += args
      self
169
    end
170

171 172
    # Use to indicate that the given +table_names+ are referenced by an SQL string,
    # and should therefore be JOINed in any query rather than loaded separately.
173
    # This method only works in conjunction with +includes+.
174
    # See #includes for more details.
175 176 177 178 179 180
    #
    #   User.includes(:posts).where("posts.name = 'foo'")
    #   # => Doesn't JOIN the posts table, resulting in an error.
    #
    #   User.includes(:posts).where("posts.name = 'foo'").references(:posts)
    #   # => Query now knows the string references posts, so adds a JOIN
181 182 183
    def references(*table_names)
      check_if_method_has_arguments!(:references, table_names)
      spawn.references!(*table_names)
184
    end
185

186 187 188
    def references!(*table_names) # :nodoc:
      table_names.flatten!
      table_names.map!(&:to_s)
189

190
      self.references_values |= table_names
191
      self
192 193
    end

194
    # Works in two unique ways.
195
    #
196 197
    # First: takes a block so it can be used just like Array#select.
    #
198
    #   Model.all.select { |m| m.field == value }
199 200 201 202 203
    #
    # This will build an array of objects from the database for the scope,
    # converting them into an array and iterating through them using Array#select.
    #
    # Second: Modifies the SELECT statement for the query so that only certain
V
Vijay Dev 已提交
204
    # fields are retrieved:
205
    #
206
    #   Model.select(:field)
207
    #   # => [#<Model id: nil, field: "value">]
208 209
    #
    # Although in the above example it looks as though this method returns an
V
Vijay Dev 已提交
210
    # array, it actually returns a relation object and can have other query
211 212
    # methods appended to it, such as the other methods in ActiveRecord::QueryMethods.
    #
213
    # The argument to the method can also be an array of fields.
214
    #
215
    #   Model.select(:field, :other_field, :and_one_more)
216
    #   # => [#<Model id: nil, field: "value", other_field: "value", and_one_more: "value">]
217
    #
218 219 220
    # You can also use one or more strings, which will be used unchanged as SELECT fields.
    #
    #   Model.select('field AS field_one', 'other_field AS field_two')
221
    #   # => [#<Model id: nil, field: "value", other_field: "value">]
222 223 224 225 226 227
    #
    # If an alias was specified, it will be accessible from the resulting objects:
    #
    #   Model.select('field AS field_one').first.field_one
    #   # => "value"
    #
228
    # Accessing attributes of an object that do not have fields retrieved by a select
229
    # except +id+ will throw <tt>ActiveModel::MissingAttributeError</tt>:
230
    #
231 232 233
    #   Model.select(:field).first.other_field
    #   # => ActiveModel::MissingAttributeError: missing attribute: other_field
    def select(*fields)
234
      if block_given?
235
        to_a.select { |*block_args| yield(*block_args) }
236
      else
237
        raise ArgumentError, 'Call this with at least one field' if fields.empty?
238
        spawn._select!(*fields)
239 240 241
      end
    end

242
    def _select!(*fields) # :nodoc:
243
      fields.flatten!
244
      fields.map! do |field|
245
        klass.attribute_alias?(field) ? klass.attribute_alias(field) : field
246
      end
247
      self.select_values += fields
248
      self
249
    end
S
Santiago Pastorino 已提交
250

O
Oscar Del Ben 已提交
251 252 253 254 255
    # Allows to specify a group attribute:
    #
    #   User.group(:name)
    #   => SELECT "users".* FROM "users" GROUP BY name
    #
256
    # Returns an array with distinct records based on the +group+ attribute:
O
Oscar Del Ben 已提交
257 258 259 260 261 262
    #
    #   User.select([:id, :name])
    #   => [#<User id: 1, name: "Oscar">, #<User id: 2, name: "Oscar">, #<User id: 3, name: "Foo">
    #
    #   User.group(:name)
    #   => [#<User id: 3, name: "Foo", ...>, #<User id: 2, name: "Oscar", ...>]
263 264 265
    #
    #   User.group('name AS grouped_name, age')
    #   => [#<User id: 3, name: "Foo", age: 21, ...>, #<User id: 2, name: "Oscar", age: 21, ...>, #<User id: 5, name: "Foo", age: 23, ...>]
266 267 268 269
    #
    # Passing in an array of attributes to group by is also supported.
    #   User.select([:id, :first_name]).group(:id, :first_name).first(3)
    #   => [#<User id: 1, first_name: "Bill">, #<User id: 2, first_name: "Earl">, #<User id: 3, first_name: "Beto">]
270
    def group(*args)
271
      check_if_method_has_arguments!(:group, args)
272
      spawn.group!(*args)
273
    end
274

J
Jon Leighton 已提交
275
    def group!(*args) # :nodoc:
276 277 278
      args.flatten!

      self.group_values += args
279
      self
280
    end
281

O
Oscar Del Ben 已提交
282 283
    # Allows to specify an order attribute:
    #
284 285
    #   User.order(:name)
    #   => SELECT "users".* FROM "users" ORDER BY "users"."name" ASC
286
    #
287 288
    #   User.order(email: :desc)
    #   => SELECT "users".* FROM "users" ORDER BY "users"."email" DESC
289
    #
290 291
    #   User.order(:name, email: :desc)
    #   => SELECT "users".* FROM "users" ORDER BY "users"."name" ASC, "users"."email" DESC
292 293 294 295 296 297 298 299 300
    #
    #   User.order('name')
    #   => SELECT "users".* FROM "users" ORDER BY name
    #
    #   User.order('name DESC')
    #   => SELECT "users".* FROM "users" ORDER BY name DESC
    #
    #   User.order('name DESC, email')
    #   => SELECT "users".* FROM "users" ORDER BY name DESC, email
301
    def order(*args)
302
      check_if_method_has_arguments!(:order, args)
303
      spawn.order!(*args)
304
    end
305

J
Jon Leighton 已提交
306
    def order!(*args) # :nodoc:
307
      preprocess_order_args(args)
308

309
      self.order_values += args
310
      self
311
    end
312

313 314 315 316 317 318 319 320
    # Replaces any existing order defined on the relation with the specified order.
    #
    #   User.order('email DESC').reorder('id ASC') # generated SQL has 'ORDER BY id ASC'
    #
    # Subsequent calls to order on the same relation will be appended. For example:
    #
    #   User.order('email DESC').reorder('id ASC').order('name ASC')
    #
321
    # generates a query with 'ORDER BY id ASC, name ASC'.
S
Sebastian Martinez 已提交
322
    def reorder(*args)
323
      check_if_method_has_arguments!(:reorder, args)
324
      spawn.reorder!(*args)
325
    end
326

J
Jon Leighton 已提交
327
    def reorder!(*args) # :nodoc:
328
      preprocess_order_args(args)
329

330
      self.reordering_value = true
331
      self.order_values = args
332
      self
S
Sebastian Martinez 已提交
333 334
    end

335 336 337 338 339 340 341 342
    VALID_UNSCOPING_VALUES = Set.new([:where, :select, :group, :order, :lock,
                                     :limit, :offset, :joins, :includes, :from,
                                     :readonly, :having])

    # Removes an unwanted relation that is already defined on a chain of relations.
    # This is useful when passing around chains of relations and would like to
    # modify the relations without reconstructing the entire chain.
    #
343
    #   User.order('email DESC').unscope(:order) == User.all
344 345 346 347 348
    #
    # The method arguments are symbols which correspond to the names of the methods
    # which should be unscoped. The valid arguments are given in VALID_UNSCOPING_VALUES.
    # The method can also be called with multiple arguments. For example:
    #
349
    #   User.order('email DESC').select('id').where(name: "John")
350 351 352 353 354 355
    #       .unscope(:order, :select, :where) == User.all
    #
    # One can additionally pass a hash as an argument to unscope specific :where values.
    # This is done by passing a hash with a single key-value pair. The key should be
    # :where and the value should be the where value to unscope. For example:
    #
356 357
    #   User.where(name: "John", active: true).unscope(where: :name)
    #       == User.where(active: true)
358
    #
J
Jon Leighton 已提交
359 360
    # This method is similar to <tt>except</tt>, but unlike
    # <tt>except</tt>, it persists across merges:
361
    #
J
Jon Leighton 已提交
362 363 364 365 366 367 368 369 370
    #   User.order('email').merge(User.except(:order))
    #       == User.order('email')
    #
    #   User.order('email').merge(User.unscope(:order))
    #       == User.all
    #
    # This means it can be used in association definitions:
    #
    #   has_many :comments, -> { unscope where: :trashed }
371 372
    #
    def unscope(*args)
373
      check_if_method_has_arguments!(:unscope, args)
374 375 376
      spawn.unscope!(*args)
    end

377
    def unscope!(*args) # :nodoc:
378
      args.flatten!
J
Jon Leighton 已提交
379
      self.unscope_values += args
380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402

      args.each do |scope|
        case scope
        when Symbol
          symbol_unscoping(scope)
        when Hash
          scope.each do |key, target_value|
            if key != :where
              raise ArgumentError, "Hash arguments in .unscope(*args) must have :where as the key."
            end

            Array(target_value).each do |val|
              where_unscoping(val)
            end
          end
        else
          raise ArgumentError, "Unrecognized scoping: #{args.inspect}. Use .unscope(where: :attribute_name) or .unscope(:order), for example."
        end
      end

      self
    end

403 404 405 406
    # Performs a joins on +args+:
    #
    #   User.joins(:posts)
    #   => SELECT "users".* FROM "users" INNER JOIN "posts" ON "posts"."user_id" = "users"."id"
407 408 409 410 411
    #
    # You can use strings in order to customize your joins:
    #
    #   User.joins("LEFT JOIN bookmarks ON bookmarks.bookmarkable_type = 'Post' AND bookmarks.user_id = users.id")
    #   => SELECT "users".* FROM "users" LEFT JOIN bookmarks ON bookmarks.bookmarkable_type = 'Post' AND bookmarks.user_id = users.id
412
    def joins(*args)
413 414 415 416 417 418
      check_if_method_has_arguments!(:joins, args)

      args.compact!
      args.flatten!

      spawn.joins!(*args)
419
    end
420

J
Jon Leighton 已提交
421
    def joins!(*args) # :nodoc:
422 423
      self.joins_values += args
      self
P
Pratik Naik 已提交
424 425
    end

A
Aaron Patterson 已提交
426
    def bind(value)
J
Jon Leighton 已提交
427
      spawn.bind!(value)
428 429
    end

J
Jon Leighton 已提交
430
    def bind!(value) # :nodoc:
431 432
      self.bind_values += [value]
      self
A
Aaron Patterson 已提交
433 434
    end

435 436 437 438 439 440 441 442 443 444
    # Returns a new relation, which is the result of filtering the current relation
    # according to the conditions in the arguments.
    #
    # #where accepts conditions in one of several formats. In the examples below, the resulting
    # SQL is given as an illustration; the actual query generated may be different depending
    # on the database adapter.
    #
    # === string
    #
    # A single string, without additional arguments, is passed to the query
445
    # constructor as an SQL fragment, and used in the where clause of the query.
446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509
    #
    #    Client.where("orders_count = '2'")
    #    # SELECT * from clients where orders_count = '2';
    #
    # Note that building your own string from user input may expose your application
    # to injection attacks if not done properly. As an alternative, it is recommended
    # to use one of the following methods.
    #
    # === array
    #
    # If an array is passed, then the first element of the array is treated as a template, and
    # the remaining elements are inserted into the template to generate the condition.
    # Active Record takes care of building the query to avoid injection attacks, and will
    # convert from the ruby type to the database type where needed. Elements are inserted
    # into the string in the order in which they appear.
    #
    #   User.where(["name = ? and email = ?", "Joe", "joe@example.com"])
    #   # SELECT * FROM users WHERE name = 'Joe' AND email = 'joe@example.com';
    #
    # Alternatively, you can use named placeholders in the template, and pass a hash as the
    # second element of the array. The names in the template are replaced with the corresponding
    # values from the hash.
    #
    #   User.where(["name = :name and email = :email", { name: "Joe", email: "joe@example.com" }])
    #   # SELECT * FROM users WHERE name = 'Joe' AND email = 'joe@example.com';
    #
    # This can make for more readable code in complex queries.
    #
    # Lastly, you can use sprintf-style % escapes in the template. This works slightly differently
    # than the previous methods; you are responsible for ensuring that the values in the template
    # are properly quoted. The values are passed to the connector for quoting, but the caller
    # is responsible for ensuring they are enclosed in quotes in the resulting SQL. After quoting,
    # the values are inserted using the same escapes as the Ruby core method <tt>Kernel::sprintf</tt>.
    #
    #   User.where(["name = '%s' and email = '%s'", "Joe", "joe@example.com"])
    #   # SELECT * FROM users WHERE name = 'Joe' AND email = 'joe@example.com';
    #
    # If #where is called with multiple arguments, these are treated as if they were passed as
    # the elements of a single array.
    #
    #   User.where("name = :name and email = :email", { name: "Joe", email: "joe@example.com" })
    #   # SELECT * FROM users WHERE name = 'Joe' AND email = 'joe@example.com';
    #
    # When using strings to specify conditions, you can use any operator available from
    # the database. While this provides the most flexibility, you can also unintentionally introduce
    # dependencies on the underlying database. If your code is intended for general consumption,
    # test with multiple database backends.
    #
    # === hash
    #
    # #where will also accept a hash condition, in which the keys are fields and the values
    # are values to be searched for.
    #
    # Fields can be symbols or strings. Values can be single values, arrays, or ranges.
    #
    #    User.where({ name: "Joe", email: "joe@example.com" })
    #    # SELECT * FROM users WHERE name = 'Joe' AND email = 'joe@example.com'
    #
    #    User.where({ name: ["Alice", "Bob"]})
    #    # SELECT * FROM users WHERE name IN ('Alice', 'Bob')
    #
    #    User.where({ created_at: (Time.now.midnight - 1.day)..Time.now.midnight })
    #    # SELECT * FROM users WHERE (created_at BETWEEN '2012-06-09 07:00:00.000000' AND '2012-06-10 07:00:00.000000')
    #
510 511 512 513 514 515
    # In the case of a belongs_to relationship, an association key can be used
    # to specify the model if an ActiveRecord object is used as the value.
    #
    #    author = Author.find(1)
    #
    #    # The following queries will be equivalent:
A
AvnerCohen 已提交
516 517
    #    Post.where(author: author)
    #    Post.where(author_id: author)
518 519 520
    #
    # This also works with polymorphic belongs_to relationships:
    #
A
AvnerCohen 已提交
521 522
    #    treasure = Treasure.create(name: 'gold coins')
    #    treasure.price_estimates << PriceEstimate.create(price: 125)
523 524
    #
    #    # The following queries will be equivalent:
A
AvnerCohen 已提交
525 526
    #    PriceEstimate.where(estimate_of: treasure)
    #    PriceEstimate.where(estimate_of_type: 'Treasure', estimate_of_id: treasure)
527
    #
528 529 530 531 532 533 534 535 536 537
    # === Joins
    #
    # If the relation is the result of a join, you may create a condition which uses any of the
    # tables in the join. For string and array conditions, use the table name in the condition.
    #
    #    User.joins(:posts).where("posts.created_at < ?", Time.now)
    #
    # For hash conditions, you can either use the table name in the key, or use a sub-hash.
    #
    #    User.joins(:posts).where({ "posts.published" => true })
A
AvnerCohen 已提交
538
    #    User.joins(:posts).where({ posts: { published: true } })
539
    #
540
    # === no argument
541
    #
542 543
    # If no argument is passed, #where returns a new instance of WhereChain, that
    # can be chained with #not to return a new relation that negates the where clause.
544 545
    #
    #    User.where.not(name: "Jon")
546
    #    # SELECT * FROM users WHERE name != 'Jon'
547
    #
548
    # See WhereChain for more details on #not.
549
    #
550
    # === blank condition
551
    #
552
    # If the condition is any blank-ish object, then #where is a no-op and returns
553
    # the current relation.
554 555
    def where(opts = :chain, *rest)
      if opts == :chain
556 557 558 559 560 561
        WhereChain.new(spawn)
      elsif opts.blank?
        self
      else
        spawn.where!(opts, *rest)
      end
562 563
    end

564 565
    def where!(opts = :chain, *rest) # :nodoc:
      if opts == :chain
566 567 568
        WhereChain.new(self)
      else
        references!(PredicateBuilder.references(opts)) if Hash === opts
569

570 571 572
        self.where_values += build_where(opts, rest)
        self
      end
573
    end
P
Pratik Naik 已提交
574

575 576
    # Allows you to change a previously set where condition for a given attribute, instead of appending to that condition.
    #
577 578 579
    #   Post.where(trashed: true).where(trashed: false)                       # => WHERE `trashed` = 1 AND `trashed` = 0
    #   Post.where(trashed: true).rewhere(trashed: false)                     # => WHERE `trashed` = 0
    #   Post.where(active: true).where(trashed: true).rewhere(trashed: false) # => WHERE `active` = 1 AND `trashed` = 0
580 581 582 583 584 585 586
    #
    # This is short-hand for unscope(where: conditions.keys).where(conditions). Note that unlike reorder, we're only unscoping
    # the named conditions -- not the entire where statement.
    def rewhere(conditions)
      unscope(where: conditions.keys).where(conditions)
    end

587 588 589 590
    # Allows to specify a HAVING clause. Note that you can't use HAVING
    # without also specifying a GROUP clause.
    #
    #   Order.having('SUM(price) > 30').group('user_id')
591
    def having(opts, *rest)
592
      opts.blank? ? self : spawn.having!(opts, *rest)
593 594
    end

J
Jon Leighton 已提交
595
    def having!(opts, *rest) # :nodoc:
596
      references!(PredicateBuilder.references(opts)) if Hash === opts
597

598 599
      self.having_values += build_where(opts, rest)
      self
600 601
    end

602
    # Specifies a limit for the number of records to retrieve.
603 604 605 606
    #
    #   User.limit(10) # generated SQL has 'LIMIT 10'
    #
    #   User.limit(10).limit(20) # generated SQL has 'LIMIT 20'
607
    def limit(value)
J
Jon Leighton 已提交
608
      spawn.limit!(value)
609 610
    end

J
Jon Leighton 已提交
611
    def limit!(value) # :nodoc:
612 613
      self.limit_value = value
      self
614 615
    end

616 617 618 619
    # Specifies the number of rows to skip before returning rows.
    #
    #   User.offset(10) # generated SQL has "OFFSET 10"
    #
620
    # Should be used with order.
621
    #
622
    #   User.offset(10).order("name ASC")
623
    def offset(value)
J
Jon Leighton 已提交
624
      spawn.offset!(value)
625 626
    end

J
Jon Leighton 已提交
627
    def offset!(value) # :nodoc:
628 629
      self.offset_value = value
      self
630 631
    end

632
    # Specifies locking settings (default to +true+). For more information
633
    # on locking, please see +ActiveRecord::Locking+.
634
    def lock(locks = true)
J
Jon Leighton 已提交
635
      spawn.lock!(locks)
636
    end
637

J
Jon Leighton 已提交
638
    def lock!(locks = true) # :nodoc:
639
      case locks
640
      when String, TrueClass, NilClass
641
        self.lock_value = locks || true
642
      else
643
        self.lock_value = false
644
      end
645

646
      self
647 648
    end

649
    # Returns a chainable relation with zero records.
650
    #
651 652 653
    # The returned relation implements the Null Object pattern. It is an
    # object with defined null behavior and always returns an empty array of
    # records without querying the database.
654 655 656 657
    #
    # Any subsequent condition chained to the returned relation will continue
    # generating an empty relation and will not fire any query to the database.
    #
658 659
    # Used in cases where a method or scope could return zero records but the
    # result needs to be chainable.
660 661 662
    #
    # For example:
    #
A
AvnerCohen 已提交
663
    #   @posts = current_user.visible_posts.where(name: params[:name])
664
    #   # => the visible_posts method is expected to return a chainable Relation
665 666 667
    #
    #   def visible_posts
    #     case role
668
    #     when 'Country Manager'
A
AvnerCohen 已提交
669
    #       Post.where(country: country)
670
    #     when 'Reviewer'
671
    #       Post.published
672
    #     when 'Bad User'
673
    #       Post.none # It can't be chained if [] is returned.
674 675 676 677
    #     end
    #   end
    #
    def none
678
      extending(NullRelation)
679 680
    end

J
Jon Leighton 已提交
681
    def none! # :nodoc:
682 683 684
      extending!(NullRelation)
    end

685 686 687 688 689 690
    # Sets readonly attributes for the returned relation. If value is
    # true (default), attempting to update a record will result in an error.
    #
    #   users = User.readonly
    #   users.first.save
    #   => ActiveRecord::ReadOnlyRecord: ActiveRecord::ReadOnlyRecord
691
    def readonly(value = true)
J
Jon Leighton 已提交
692
      spawn.readonly!(value)
693 694
    end

J
Jon Leighton 已提交
695
    def readonly!(value = true) # :nodoc:
696 697
      self.readonly_value = value
      self
698 699
    end

700 701 702 703 704 705 706 707 708 709 710 711 712
    # Sets attributes to be used when creating new records from a
    # relation object.
    #
    #   users = User.where(name: 'Oscar')
    #   users.new.name # => 'Oscar'
    #
    #   users = users.create_with(name: 'DHH')
    #   users.new.name # => 'DHH'
    #
    # You can pass +nil+ to +create_with+ to reset attributes:
    #
    #   users = users.create_with(nil)
    #   users.new.name # => 'Oscar'
713
    def create_with(value)
J
Jon Leighton 已提交
714
      spawn.create_with!(value)
715 716
    end

J
Jon Leighton 已提交
717
    def create_with!(value) # :nodoc:
718 719
      self.create_with_value = value ? create_with_value.merge(value) : {}
      self
720 721
    end

722 723 724
    # Specifies table from which the records will be fetched. For example:
    #
    #   Topic.select('title').from('posts')
725
    #   # => SELECT title FROM posts
726 727 728
    #
    # Can accept other relation objects. For example:
    #
729
    #   Topic.select('title').from(Topic.approved)
730 731
    #   # => SELECT title FROM (SELECT * FROM topics WHERE approved = 't') subquery
    #
732
    #   Topic.select('a.title').from(Topic.approved, :a)
733 734 735 736
    #   # => SELECT a.title FROM (SELECT * FROM topics WHERE approved = 't') a
    #
    def from(value, subquery_name = nil)
      spawn.from!(value, subquery_name)
737 738
    end

J
Jon Leighton 已提交
739
    def from!(value, subquery_name = nil) # :nodoc:
740
      self.from_value = [value, subquery_name]
741
      self
742 743
    end

744 745 746 747 748
    # Specifies whether the records should be unique or not. For example:
    #
    #   User.select(:name)
    #   # => Might return two records with the same name
    #
749 750
    #   User.select(:name).distinct
    #   # => Returns 1 record per distinct name
751
    #
752
    #   User.select(:name).distinct.distinct(false)
753
    #   # => You can also remove the uniqueness
754 755
    def distinct(value = true)
      spawn.distinct!(value)
756
    end
757
    alias uniq distinct
758

759 760 761
    # Like #distinct, but modifies relation in place.
    def distinct!(value = true) # :nodoc:
      self.distinct_value = value
762
      self
763
    end
764
    alias uniq! distinct!
765

766
    # Used to extend a scope with additional methods, either through
767 768
    # a module or through a block provided.
    #
769 770 771 772 773 774 775 776 777 778
    # The object returned is a relation, which can be further extended.
    #
    # === Using a module
    #
    #   module Pagination
    #     def page(number)
    #       # pagination code goes here
    #     end
    #   end
    #
779
    #   scope = Model.all.extending(Pagination)
780 781
    #   scope.page(params[:page])
    #
V
Vijay Dev 已提交
782
    # You can also pass a list of modules:
783
    #
784
    #   scope = Model.all.extending(Pagination, SomethingElse)
785 786 787
    #
    # === Using a block
    #
788
    #   scope = Model.all.extending do
789
    #     def page(number)
790
    #       # pagination code goes here
791 792 793 794 795 796
    #     end
    #   end
    #   scope.page(params[:page])
    #
    # You can also use a block and a module list:
    #
797
    #   scope = Model.all.extending(Pagination) do
798
    #     def per_page(number)
799
    #       # pagination code goes here
800 801
    #     end
    #   end
802 803
    def extending(*modules, &block)
      if modules.any? || block
J
Jon Leighton 已提交
804
        spawn.extending!(*modules, &block)
805 806 807 808
      else
        self
      end
    end
809

J
Jon Leighton 已提交
810
    def extending!(*modules, &block) # :nodoc:
811 812
      modules << Module.new(&block) if block
      modules.flatten!
813

814
      self.extending_values += modules
815
      extend(*extending_values) if extending_values.any?
816

817
      self
818 819
    end

820 821 822
    # Reverse the existing order clause on the relation.
    #
    #   User.order('name ASC').reverse_order # generated SQL has 'ORDER BY name DESC'
823
    def reverse_order
J
Jon Leighton 已提交
824
      spawn.reverse_order!
825 826
    end

J
Jon Leighton 已提交
827
    def reverse_order! # :nodoc:
828 829 830
      orders = order_values.uniq
      orders.reject!(&:blank?)
      self.order_values = reverse_sql_order(orders)
831
      self
832 833
    end

834
    # Returns the Arel object associated with the relation.
835
    def arel # :nodoc:
836
      @arel ||= build_arel
837 838
    end

839 840
    private

841
    def build_arel
842
      arel = Arel::SelectManager.new(table.engine, table)
843

844
      build_joins(arel, joins_values.flatten) unless joins_values.empty?
845

846
      collapse_wheres(arel, (where_values - ['']).uniq)
847

848
      arel.having(*having_values.uniq.reject(&:blank?)) unless having_values.empty?
849

850 851
      arel.take(connection.sanitize_limit(limit_value)) if limit_value
      arel.skip(offset_value.to_i) if offset_value
A
Aaron Patterson 已提交
852

853
      arel.group(*group_values.uniq.reject(&:blank?)) unless group_values.empty?
854

855
      build_order(arel)
856

857
      build_select(arel, select_values.uniq)
858

859
      arel.distinct(distinct_value)
860
      arel.from(build_from) if from_value
861
      arel.lock(lock_value) if lock_value
862 863

      arel
864 865
    end

866 867 868 869 870 871
    def symbol_unscoping(scope)
      if !VALID_UNSCOPING_VALUES.include?(scope)
        raise ArgumentError, "Called unscope() with invalid unscoping argument ':#{scope}'. Valid arguments are :#{VALID_UNSCOPING_VALUES.to_a.join(", :")}."
      end

      single_val_method = Relation::SINGLE_VALUE_METHODS.include?(scope)
A
Aaron Patterson 已提交
872
      unscope_code = "#{scope}_value#{'s' unless single_val_method}="
873 874 875 876 877 878 879 880 881 882 883 884

      case scope
      when :order
        result = []
      else
        result = [] unless single_val_method
      end

      self.send(unscope_code, result)
    end

    def where_unscoping(target_value)
A
Aaron Patterson 已提交
885
      target_value = target_value.to_s
886 887 888

      where_values.reject! do |rel|
        case rel
889
        when Arel::Nodes::In, Arel::Nodes::NotIn, Arel::Nodes::Equality, Arel::Nodes::NotEqual
890
          subrelation = (rel.left.kind_of?(Arel::Attributes::Attribute) ? rel.left : rel.right)
A
Aaron Patterson 已提交
891
          subrelation.name == target_value
892 893
        end
      end
894 895

      bind_values.reject! { |col,_| col.name == target_value }
896 897
    end

898
    def custom_join_ast(table, joins)
899
      joins = joins.reject(&:blank?)
900

901
      return [] if joins.empty?
902

903
      joins.map! do |join|
904 905 906 907 908 909
        case join
        when Array
          join = Arel.sql(join.join(' ')) if array_of_strings?(join)
        when String
          join = Arel.sql(join)
        end
910
        table.create_string_join(join)
911 912 913
      end
    end

914
    def collapse_wheres(arel, wheres)
915 916
      predicates = wheres.map do |where|
        next where if ::Arel::Nodes::Equality === where
917
        where = Arel.sql(where) if String === where
918
        Arel::Nodes::Grouping.new(where)
919
      end
920 921

      arel.where(Arel::Nodes::And.new(predicates)) if predicates.present?
922 923
    end

924
    def build_where(opts, other = [])
A
Aaron Patterson 已提交
925 926
      case opts
      when String, Array
927 928 929 930 931 932 933
        #TODO: Remove duplication with: /activerecord/lib/active_record/sanitization.rb:113
        values = Hash === other.first ? other.first.values : other

        values.grep(ActiveRecord::Relation) do |rel|
          self.bind_values += rel.bind_values
        end

934
        [@klass.send(:sanitize_sql, other.empty? ? opts : ([opts] + other))]
A
Aaron Patterson 已提交
935
      when Hash
936
        opts = PredicateBuilder.resolve_column_aliases(klass, opts)
937
        attributes = @klass.send(:expand_hash_conditions_for_aggregates, opts)
938 939 940 941 942

        attributes.values.grep(ActiveRecord::Relation) do |rel|
          self.bind_values += rel.bind_values
        end

943
        PredicateBuilder.build_from_hash(klass, attributes, table)
944
      else
945
        [opts]
946 947 948
      end
    end

949 950 951 952 953
    def build_from
      opts, name = from_value
      case opts
      when Relation
        name ||= 'subquery'
954
        self.bind_values = opts.bind_values + self.bind_values
955 956 957 958 959 960
        opts.arel.as(name.to_s)
      else
        opts
      end
    end

961
    def build_joins(manager, joins)
A
Aaron Patterson 已提交
962 963 964
      buckets = joins.group_by do |join|
        case join
        when String
965
          :string_join
A
Aaron Patterson 已提交
966
        when Hash, Symbol, Array
967
          :association_join
968
        when ActiveRecord::Associations::JoinDependency
969
          :stashed_join
970
        when Arel::Nodes::Join
971
          :join_node
A
Aaron Patterson 已提交
972 973 974
        else
          raise 'unknown class: %s' % join.class.name
        end
975 976
      end

977 978 979
      association_joins         = buckets[:association_join] || []
      stashed_association_joins = buckets[:stashed_join] || []
      join_nodes                = (buckets[:join_node] || []).uniq
980
      string_joins              = (buckets[:string_join] || []).map(&:strip).uniq
981

982
      join_list = join_nodes + custom_join_ast(manager, string_joins)
983

984
      join_dependency = ActiveRecord::Associations::JoinDependency.new(
985 986 987 988
        @klass,
        association_joins,
        join_list
      )
989

990
      joins = join_dependency.join_constraints stashed_association_joins
991

992
      joins.each { |join| manager.from(join) }
993

994
      manager.join_sources.concat(join_list)
995 996

      manager
997 998
    end

999
    def build_select(arel, selects)
C
Cody Cutrer 已提交
1000
      if !selects.empty?
1001 1002 1003 1004
        expanded_select = selects.map do |field|
          columns_hash.key?(field.to_s) ? arel_table[field] : field
        end
        arel.project(*expanded_select)
1005
      else
1006
        arel.project(@klass.arel_table[Arel.star])
1007 1008 1009
      end
    end

1010
    def reverse_sql_order(order_query)
B
Brian Mathiyakom 已提交
1011 1012
      order_query = ["#{quoted_table_name}.#{quoted_primary_key} ASC"] if order_query.empty?

1013
      order_query.flat_map do |o|
1014
        case o
1015
        when Arel::Nodes::Ordering
1016
          o.reverse
1017
        when String
1018
          o.to_s.split(',').map! do |s|
1019 1020 1021
            s.strip!
            s.gsub!(/\sasc\Z/i, ' DESC') || s.gsub!(/\sdesc\Z/i, ' ASC') || s.concat(' DESC')
          end
1022 1023 1024
        else
          o
        end
1025
      end
1026 1027
    end

P
Pratik Naik 已提交
1028
    def array_of_strings?(o)
1029
      o.is_a?(Array) && o.all? { |obj| obj.is_a?(String) }
P
Pratik Naik 已提交
1030
    end
1031

1032
    def build_order(arel)
1033 1034
      orders = order_values.uniq
      orders.reject!(&:blank?)
1035

1036 1037
      arel.order(*orders) unless orders.empty?
    end
1038

1039 1040
    VALID_DIRECTIONS = [:asc, :desc, :ASC, :DESC,
                        'asc', 'desc', 'ASC', 'DESC'] # :nodoc:
1041

1042
    def validate_order_args(args)
Y
Yves Senn 已提交
1043 1044 1045
      args.each do |arg|
        next unless arg.is_a?(Hash)
        arg.each do |_key, value|
1046 1047
          raise ArgumentError, "Direction \"#{value}\" is invalid. Valid " \
                               "directions are: #{VALID_DIRECTIONS.inspect}" unless VALID_DIRECTIONS.include?(value)
1048 1049 1050
        end
      end
    end
P
Pratik Naik 已提交
1051

1052 1053 1054 1055 1056 1057 1058 1059 1060 1061
    def preprocess_order_args(order_args)
      order_args.flatten!
      validate_order_args(order_args)

      references = order_args.grep(String)
      references.map! { |arg| arg =~ /^([a-zA-Z]\w*)\.(\w+)/ && $1 }.compact!
      references!(references) if references.any?

      # if a symbol is given we prepend the quoted table name
      order_args.map! do |arg|
1062 1063
        case arg
        when Symbol
1064
          arg = klass.attribute_alias(arg) if klass.attribute_alias?(arg)
1065 1066 1067
          table[arg].asc
        when Hash
          arg.map { |field, dir|
1068
            field = klass.attribute_alias(field) if klass.attribute_alias?(field)
1069
            table[field].send(dir.downcase)
1070 1071 1072 1073 1074
          }
        else
          arg
        end
      end.flatten!
1075 1076
    end

1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089
    # Checks to make sure that the arguments are not blank. Note that if some
    # blank-like object were initially passed into the query method, then this
    # method will not raise an error.
    #
    # Example:
    #
    #    Post.references()   # => raises an error
    #    Post.references([]) # => does not raise an error
    #
    # This particular method should be called with a method_name and the args
    # passed into that method as an input. For example:
    #
    # def references(*args)
1090
    #   check_if_method_has_arguments!("references", args)
1091 1092
    #   ...
    # end
1093
    def check_if_method_has_arguments!(method_name, args)
1094 1095 1096 1097
      if args.blank?
        raise ArgumentError, "The method .#{method_name}() must contain arguments."
      end
    end
1098 1099
  end
end