aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2006-02-26 20:12:09 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2006-02-26 20:12:09 +0000
commit1215d54c2f31c4d19b2432ab05751fe2eaec0319 (patch)
tree52274812525e365405b0e7a769e0a7e3d03f4e9d /activerecord/lib/active_record
parent3cfbb4f374cee2d193b80d4cd373e3fd05997027 (diff)
downloadrails-1215d54c2f31c4d19b2432ab05751fe2eaec0319.tar.gz
rails-1215d54c2f31c4d19b2432ab05751fe2eaec0319.tar.bz2
rails-1215d54c2f31c4d19b2432ab05751fe2eaec0319.zip
Added support for nested scopes (closes #3407) [anna@wota.jp]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3671 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/lib/active_record')
-rwxr-xr-xactiverecord/lib/active_record/base.rb89
1 files changed, 66 insertions, 23 deletions
diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb
index 829d4f0a5d..441b555721 100755
--- a/activerecord/lib/active_record/base.rb
+++ b/activerecord/lib/active_record/base.rb
@@ -828,20 +828,40 @@ module ActiveRecord #:nodoc:
end
# Scope parameters to method calls within the block. Takes a hash of method_name => parameters hash.
- # method_name may be :find or :create.
- # :find parameters may include the <tt>:conditions</tt>, <tt>:joins</tt>,
- # <tt>:offset</tt>, <tt>:limit</tt>, and <tt>:readonly</tt> options.
- # :create parameters are an attributes hash.
+ # method_name may be :find or :create. :find parameters may include the <tt>:conditions</tt>, <tt>:joins</tt>,
+ # <tt>:offset</tt>, <tt>:limit</tt>, and <tt>:readonly</tt> options. :create parameters are an attributes hash.
#
# Article.with_scope(:find => { :conditions => "blog_id = 1" }, :create => { :blog_id => 1 }) do
# Article.find(1) # => SELECT * from articles WHERE blog_id = 1 AND id = 1
# a = Article.create(1)
- # a.blog_id == 1
+ # a.blog_id # => 1
# end
- def with_scope(method_scoping = {})
+ #
+ # In nested scopings, all previous parameters are overwritten by inner rule
+ # except :conditions in :find, that are merged as hash.
+ #
+ # Article.with_scope(:find => { :conditions => "blog_id = 1", :limit => 1 }, :create => { :blog_id => 1 }) do
+ # Article.with_scope(:find => { :limit => 10})
+ # Article.find(:all) # => SELECT * from articles WHERE blog_id = 1 LIMIT 10
+ # end
+ # Article.with_scope(:find => { :conditions => "author_id = 3" })
+ # Article.find(:all) # => SELECT * from articles WHERE blog_id = 1 AND author_id = 3 LIMIT 1
+ # end
+ # end
+ #
+ # You can ignore any previous scopings by using <tt>with_exclusive_scope</tt> method.
+ #
+ # Article.with_scope(:find => { :conditions => "blog_id = 1", :limit => 1 }) do
+ # Article.with_exclusive_scope(:find => { :limit => 10 })
+ # Article.find(:all) # => SELECT * from articles LIMIT 10
+ # end
+ # end
+ def with_scope(method_scoping = {}, action = :merge, &block)
+ method_scoping = method_scoping.method_scoping if method_scoping.respond_to?(:method_scoping)
+
# Dup first and second level of hash (method and params).
method_scoping = method_scoping.inject({}) do |hash, (method, params)|
- hash[method] = params.dup
+ hash[method] = (params == true) ? params : params.dup
hash
end
@@ -852,12 +872,40 @@ module ActiveRecord #:nodoc:
f[:readonly] = true if !f[:joins].blank? && !f.has_key?(:readonly)
end
- raise ArgumentError, "Nested scopes are not yet supported: #{scoped_methods.inspect}" unless scoped_methods.nil?
+ # Merge scopings
+ if action == :merge && current_scoped_methods
+ method_scoping = current_scoped_methods.inject(method_scoping) do |hash, (method, params)|
+ case hash[method]
+ when Hash
+ if method == :find && hash[method][:conditions] && params[:conditions]
+ (hash[method].keys + params.keys).uniq.each do |key|
+ if key == :conditions
+ hash[method][key] = [params[key], hash[method][key]].collect{|sql| "( %s )" % sanitize_sql(sql)}.join(" AND ")
+ else
+ hash[method][key] = hash[method][key] || params[key]
+ end
+ end
+ else
+ hash[method] = params.merge(hash[method])
+ end
+ else
+ hash[method] = params
+ end
+ hash
+ end
+ end
- self.scoped_methods = method_scoping
- yield
- ensure
- self.scoped_methods = nil
+ self.scoped_methods << method_scoping
+
+ begin
+ yield
+ ensure
+ self.scoped_methods.pop
+ end
+ end
+
+ def with_exclusive_scope(method_scoping = {}, &block)
+ with_scope(method_scoping, :overwrite, &block)
end
# Overwrite the default class equality method to provide support for association proxies.
@@ -1076,12 +1124,12 @@ module ActiveRecord #:nodoc:
# Test whether the given method and optional key are scoped.
def scoped?(method, key = nil)
- scoped_methods and scoped_methods.has_key?(method) and (key.nil? or scope(method).has_key?(key))
+ current_scoped_methods && current_scoped_methods.has_key?(method) && (key.nil? || scope(method).has_key?(key))
end
# Retrieve the scope for the given method and optional key.
def scope(method, key = nil)
- if scoped_methods and scope = scoped_methods[method]
+ if current_scoped_methods && scope = current_scoped_methods[method]
key ? scope[key] : scope
end
end
@@ -1089,19 +1137,14 @@ module ActiveRecord #:nodoc:
def scoped_methods
if allow_concurrency
Thread.current[:scoped_methods] ||= {}
- Thread.current[:scoped_methods][self] ||= nil
+ Thread.current[:scoped_methods][self] ||= []
else
- @scoped_methods ||= nil
+ @scoped_methods ||= []
end
end
- def scoped_methods=(value)
- if allow_concurrency
- Thread.current[:scoped_methods] ||= {}
- Thread.current[:scoped_methods][self] = value
- else
- @scoped_methods = value
- end
+ def current_scoped_methods
+ scoped_methods.last
end
# Returns the class type of the record using the current module as a prefix. So descendents of