named.rb 7.7 KB
Newer Older
1 2
# frozen_string_literal: true

3 4 5
require "active_support/core_ext/array"
require "active_support/core_ext/hash/except"
require "active_support/core_ext/kernel/singleton_class"
6 7

module ActiveRecord
8
  # = Active Record \Named \Scopes
9 10 11 12 13
  module Scoping
    module Named
      extend ActiveSupport::Concern

      module ClassMethods
14
        # Returns an ActiveRecord::Relation scope object.
15
        #
16
        #   posts = Post.all
17 18 19
        #   posts.size # Fires "select count(*) from  posts" and returns the count
        #   posts.each {|p| puts p.name } # Fires "select * from posts" and loads post objects
        #
20
        #   fruits = Fruit.all
21
        #   fruits = fruits.where(color: 'red') if options[:red_only]
22 23
        #   fruits = fruits.limit(10) if limited?
        #
24
        # You can define a scope that applies to all finders using
25
        # {default_scope}[rdoc-ref:Scoping::Default::ClassMethods#default_scope].
26
        def all
27
          scope = current_scope
28

29 30 31
          if scope
            if self == scope.klass
              scope.clone
32
            else
33
              relation.merge!(scope)
34
            end
35
          else
36
            default_scoped
37
          end
38
        end
J
Jon Leighton 已提交
39

40
        def scope_for_association(scope = relation) # :nodoc:
41
          if current_scope&.empty_scope?
42 43 44 45 46 47
            scope
          else
            default_scoped(scope)
          end
        end

48
        def default_scoped(scope = relation) # :nodoc:
49
          build_default_scope(scope) || scope
50
        end
51

52 53 54
        def default_extensions # :nodoc:
          if scope = current_scope || build_default_scope
            scope.extensions
55
          else
56
            []
57
          end
58 59
        end

60
        # Adds a class method for retrieving and querying objects.
61
        # The method is intended to return an ActiveRecord::Relation
62
        # object, which is composable with other scopes.
63
        # If it returns +nil+ or +false+, an
64
        # {all}[rdoc-ref:Scoping::Named::ClassMethods#all] scope is returned instead.
65 66
        #
        # A \scope represents a narrowing of a database query, such as
67
        # <tt>where(color: :red).select('shirts.*').includes(:washing_instructions)</tt>.
68 69
        #
        #   class Shirt < ActiveRecord::Base
70 71
        #     scope :red, -> { where(color: 'red') }
        #     scope :dry_clean_only, -> { joins(:washing_instructions).where('washing_instructions.dry_clean_only = ?', true) }
72 73
        #   end
        #
74
        # The above calls to #scope define class methods <tt>Shirt.red</tt> and
75 76
        # <tt>Shirt.dry_clean_only</tt>. <tt>Shirt.red</tt>, in effect,
        # represents the query <tt>Shirt.where(color: 'red')</tt>.
77
        #
78
        # You should always pass a callable object to the scopes defined
79
        # with #scope. This ensures that the scope is re-evaluated each
80 81 82 83
        # time it is called.
        #
        # Note that this is simply 'syntactic sugar' for defining an actual
        # class method:
84 85 86
        #
        #   class Shirt < ActiveRecord::Base
        #     def self.red
87
        #       where(color: 'red')
88 89 90
        #     end
        #   end
        #
91
        # Unlike <tt>Shirt.find(...)</tt>, however, the object returned by
92
        # <tt>Shirt.red</tt> is not an Array but an ActiveRecord::Relation,
93
        # which is composable with other scopes; it resembles the association object
94 95
        # constructed by a {has_many}[rdoc-ref:Associations::ClassMethods#has_many]
        # declaration. For instance, you can invoke <tt>Shirt.red.first</tt>, <tt>Shirt.red.count</tt>,
96 97 98 99
        # <tt>Shirt.red.where(size: 'small')</tt>. Also, just as with the
        # association objects, named \scopes act like an Array, implementing
        # Enumerable; <tt>Shirt.red.each(&block)</tt>, <tt>Shirt.red.first</tt>,
        # and <tt>Shirt.red.inject(memo, &block)</tt> all behave as if
100
        # <tt>Shirt.red</tt> really was an array.
101 102 103 104 105 106 107 108 109 110
        #
        # These named \scopes are composable. For instance,
        # <tt>Shirt.red.dry_clean_only</tt> will produce all shirts that are
        # both red and dry clean only. Nested finds and calculations also work
        # with these compositions: <tt>Shirt.red.dry_clean_only.count</tt>
        # returns the number of garments for which these criteria obtain.
        # Similarly with <tt>Shirt.red.dry_clean_only.average(:thread_count)</tt>.
        #
        # All scopes are available as class methods on the ActiveRecord::Base
        # descendant upon which the \scopes were defined. But they are also
111 112
        # available to {has_many}[rdoc-ref:Associations::ClassMethods#has_many]
        # associations. If,
113 114 115 116 117
        #
        #   class Person < ActiveRecord::Base
        #     has_many :shirts
        #   end
        #
118 119
        # then <tt>elton.shirts.red.dry_clean_only</tt> will return all of
        # Elton's red, dry clean only shirts.
120
        #
121 122
        # \Named scopes can also have extensions, just as with
        # {has_many}[rdoc-ref:Associations::ClassMethods#has_many] declarations:
123 124
        #
        #   class Shirt < ActiveRecord::Base
125
        #     scope :red, -> { where(color: 'red') } do
126 127 128 129 130 131 132 133 134
        #       def dom_id
        #         'red_shirts'
        #       end
        #     end
        #   end
        #
        # Scopes can also be used while creating/building a record.
        #
        #   class Article < ActiveRecord::Base
135
        #     scope :published, -> { where(published: true) }
136 137 138 139 140
        #   end
        #
        #   Article.published.new.published    # => true
        #   Article.published.create.published # => true
        #
141
        # \Class methods on your model are automatically available
142 143 144
        # on scopes. Assuming the following setup:
        #
        #   class Article < ActiveRecord::Base
145
        #     scope :published, -> { where(published: true) }
146
        #     scope :featured, -> { where(featured: true) }
147 148 149 150 151 152
        #
        #     def self.latest_article
        #       order('published_at desc').first
        #     end
        #
        #     def self.titles
153
        #       pluck(:title)
154 155 156 157 158 159 160
        #     end
        #   end
        #
        # We are able to call the methods like this:
        #
        #   Article.published.featured.latest_article
        #   Article.featured.titles
J
Jon Leighton 已提交
161
        def scope(name, body, &block)
A
Andrey Deryabin 已提交
162
          unless body.respond_to?(:call)
163
            raise ArgumentError, "The scope body needs to be callable."
164
          end
165

166 167 168 169 170 171
          if dangerous_class_method?(name)
            raise ArgumentError, "You tried to define a scope named \"#{name}\" " \
              "on the model \"#{self.name}\", but Active Record already defined " \
              "a class method with the same name."
          end

172 173 174 175 176 177
          if method_defined_within?(name, Relation)
            raise ArgumentError, "You tried to define a scope named \"#{name}\" " \
              "on the model \"#{self.name}\", but ActiveRecord::Relation already defined " \
              "an instance method with the same name."
          end

178
          valid_scope_name?(name)
J
Jon Leighton 已提交
179
          extension = Module.new(&block) if block
180

181 182
          if body.respond_to?(:to_proc)
            singleton_class.send(:define_method, name) do |*args|
R
Ryuta Kamizono 已提交
183
              scope = all._exec_scope(*args, &body)
184
              scope = scope.extending(extension) if extension
185
              scope
186 187 188
            end
          else
            singleton_class.send(:define_method, name) do |*args|
R
Ryuta Kamizono 已提交
189
              scope = body.call(*args) || all
190
              scope = scope.extending(extension) if extension
191
              scope
192
            end
193
          end
194 195

          generate_relation_method(name)
196
        end
197

198
        private
199

200 201 202 203 204
          def valid_scope_name?(name)
            if respond_to?(name, true) && logger
              logger.warn "Creating scope :#{name}. " \
                "Overwriting existing method #{self.name}.#{name}."
            end
205
          end
206 207 208 209
      end
    end
  end
end