aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--actionpack/CHANGELOG32
-rw-r--r--actionpack/lib/action_controller/resources.rb24
-rw-r--r--actionpack/test/controller/resources_test.rb25
3 files changed, 76 insertions, 5 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 9797f24410..773458574a 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,37 @@
*SVN*
+* Added :name_prefix as standard for nested resources [DHH]. WARNING: May be backwards incompatible with your app
+
+ Before:
+
+ map.resources :emails do |emails|
+ emails.resources :comments, :name_prefix => "email_"
+ emails.resources :attachments, :name_prefix => "email_"
+ end
+
+ After:
+
+ map.resources :emails do |emails|
+ emails.resources :comments
+ emails.resources :attachments
+ end
+
+ This does mean that if you intended to have comments_url go to /emails/5/comments, then you'll have to set :name_prefix to nil explicitly.
+
+* Added :has_many and :has_one for declaring plural and singular resources beneath the current [DHH]
+
+ Before:
+
+ map.resources :notes do |notes|
+ notes.resources :comments
+ notes.resources :attachments
+ notes.resource :author
+ end
+
+ After:
+
+ map.resources :notes, :has_many => [ :comments, :attachments ], :has_one => :author
+
* Added that render :xml will try to call to_xml if it can [DHH]. Makes these work:
render :xml => post
diff --git a/actionpack/lib/action_controller/resources.rb b/actionpack/lib/action_controller/resources.rb
index 506440c5c4..498ab44746 100644
--- a/actionpack/lib/action_controller/resources.rb
+++ b/actionpack/lib/action_controller/resources.rb
@@ -234,7 +234,7 @@ module ActionController
# # has named route "category_message"
def resources(*entities, &block)
options = entities.last.is_a?(Hash) ? entities.pop : { }
- entities.each { |entity| map_resource entity, options.dup, &block }
+ entities.each { |entity| map_resource(entity, options.dup, &block) }
end
# Creates named routes for implementing verb-oriented controllers for a singleton resource.
@@ -293,7 +293,7 @@ module ActionController
# edit_account_path, hash_for_edit_account_path
def resource(*entities, &block)
options = entities.last.is_a?(Hash) ? entities.pop : { }
- entities.each { |entity| map_singleton_resource entity, options.dup, &block }
+ entities.each { |entity| map_singleton_resource(entity, options.dup, &block) }
end
private
@@ -306,9 +306,11 @@ module ActionController
map_new_actions(map, resource)
map_member_actions(map, resource)
+ map_associations(resource, options)
+
if block_given?
- with_options(:path_prefix => resource.nesting_path_prefix, &block)
- end
+ with_options(:path_prefix => resource.nesting_path_prefix, :name_prefix => resource.name_prefix, &block)
+ end
end
end
@@ -321,12 +323,24 @@ module ActionController
map_new_actions(map, resource)
map_member_actions(map, resource)
+ map_associations(resource, options)
+
if block_given?
- with_options(:path_prefix => resource.nesting_path_prefix, &block)
+ with_options(:path_prefix => resource.nesting_path_prefix, :name_prefix => resource.name_prefix, &block)
end
end
end
+ def map_associations(resource, options)
+ Array(options[:has_many]).each do |association|
+ resources(association, :path_prefix => resource.nesting_path_prefix, :name_prefix => resource.name_prefix)
+ end
+
+ Array(options[:has_one]).each do |association|
+ resource(association, :path_prefix => resource.nesting_path_prefix, :name_prefix => resource.name_prefix)
+ end
+ end
+
def map_collection_actions(map, resource)
resource.collection_methods.each do |method, actions|
actions.each do |action|
diff --git a/actionpack/test/controller/resources_test.rb b/actionpack/test/controller/resources_test.rb
index 3d85f49c4c..278e4b1512 100644
--- a/actionpack/test/controller/resources_test.rb
+++ b/actionpack/test/controller/resources_test.rb
@@ -9,6 +9,8 @@ end
class ThreadsController < ResourcesController; end
class MessagesController < ResourcesController; end
class CommentsController < ResourcesController; end
+class AuthorsController < ResourcesController; end
+class LogoController < ResourcesController; end
class AccountController < ResourcesController; end
class AdminController < ResourcesController; end
@@ -247,6 +249,29 @@ class ResourcesTest < Test::Unit::TestCase
assert_singleton_restful_for :account, :path_prefix => 'admin/'
end
end
+
+ def test_resource_has_many_should_become_nested_resources
+ with_routing do |set|
+ set.draw do |map|
+ map.resources :messages, :has_many => [ :comments, :authors ]
+ end
+
+ assert_simply_restful_for :messages
+ assert_simply_restful_for :comments, :path_prefix => 'messages/1/', :options => { :message_id => '1' }
+ assert_simply_restful_for :authors, :path_prefix => 'messages/1/', :options => { :message_id => '1' }
+ end
+ end
+
+ def test_resource_has_one_should_become_nested_resources
+ with_routing do |set|
+ set.draw do |map|
+ map.resources :messages, :has_one => :logo
+ end
+
+ assert_simply_restful_for :messages
+ assert_singleton_restful_for :logo, :path_prefix => 'messages/1/', :options => { :message_id => '1' }
+ end
+ end
def test_singleton_resource_with_member_action
[:put, :post].each do |method|