diff options
author | Prem Sichanugrist <s@sikachu.com> | 2012-03-05 21:06:02 -0500 |
---|---|---|
committer | Prem Sichanugrist <s@sikachu.com> | 2012-03-05 21:06:02 -0500 |
commit | 284041cf91a3b2c2d041e71e86fec467080ea9be (patch) | |
tree | 021f66612bef8de5c2f2db84e01b6ba3b0fbfd43 /actionpack | |
parent | 4c31ba93863e538d65c07f55e0c6ea356aee8f3a (diff) | |
download | rails-284041cf91a3b2c2d041e71e86fec467080ea9be.tar.gz rails-284041cf91a3b2c2d041e71e86fec467080ea9be.tar.bz2 rails-284041cf91a3b2c2d041e71e86fec467080ea9be.zip |
Always passing a respond block from to responder
We should let the responder to decide what to do with the given
overridden response block, and not short circuit it.
Fixes #5280
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_controller/metal/mime_responds.rb | 12 | ||||
-rw-r--r-- | actionpack/lib/action_controller/metal/responder.rb | 13 |
2 files changed, 13 insertions, 12 deletions
diff --git a/actionpack/lib/action_controller/metal/mime_responds.rb b/actionpack/lib/action_controller/metal/mime_responds.rb index cb59af4f85..b423807f91 100644 --- a/actionpack/lib/action_controller/metal/mime_responds.rb +++ b/actionpack/lib/action_controller/metal/mime_responds.rb @@ -235,16 +235,8 @@ module ActionController #:nodoc: if collector = retrieve_collector_from_mimes(&block) options = resources.size == 1 ? {} : resources.extract_options! - - if defined_response = collector.response - if action = options.delete(:action) - render :action => action - else - defined_response.call - end - else - (options.delete(:responder) || self.class.responder).call(self, resources, options) - end + options[:default_response] = collector.response + (options.delete(:responder) || self.class.responder).call(self, resources, options) end end diff --git a/actionpack/lib/action_controller/metal/responder.rb b/actionpack/lib/action_controller/metal/responder.rb index ccda01ed44..1e8990495c 100644 --- a/actionpack/lib/action_controller/metal/responder.rb +++ b/actionpack/lib/action_controller/metal/responder.rb @@ -130,6 +130,7 @@ module ActionController #:nodoc: @resources = resources @options = options @action = options.delete(:action) + @default_response = options.delete(:default_response) end delegate :head, :render, :redirect_to, :to => :controller @@ -172,7 +173,7 @@ module ActionController #:nodoc: # responds to :to_format and display it. # def to_format - if get? || !has_errors? + if get? || !has_errors? || response_overridden? default_render else display_errors @@ -226,7 +227,11 @@ module ActionController #:nodoc: # controller. # def default_render - controller.default_render(options) + if @default_response + @default_response.call(options) + else + controller.default_render(options) + end end # Display is just a shortcut to render a resource with the current format. @@ -274,5 +279,9 @@ module ActionController #:nodoc: def json_resource_errors {:errors => resource.errors} end + + def response_overridden? + @default_response.present? + end end end |