Skip to content

Commit

Permalink
Allow rescue responses to be configured through a railtie.
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed Dec 1, 2011
1 parent 1e51cd9 commit b4359bc
Show file tree
Hide file tree
Showing 6 changed files with 55 additions and 30 deletions.
2 changes: 2 additions & 0 deletions actionpack/CHANGELOG.md
@@ -1,5 +1,7 @@
## Rails 3.2.0 (unreleased) ##

* Allow rescue responses to be configured through a railtie as in `config.action_dispatch.rescue_responses`. Please look at ActiveRecord::Railtie for an example. *José Valim*

* Assets should use the request protocol by default or default to relative if no request is available *Jonathan del Strother*

* Log "Filter chain halted as CALLBACKNAME rendered or redirected" every time a before callback halts *José Valim*
Expand Down
12 changes: 4 additions & 8 deletions actionpack/lib/action_dispatch/middleware/show_exceptions.rb
Expand Up @@ -12,26 +12,22 @@ class ShowExceptions

cattr_accessor :rescue_responses
@@rescue_responses = Hash.new(:internal_server_error)
@@rescue_responses.update({
@@rescue_responses.merge!(
'ActionController::RoutingError' => :not_found,
'AbstractController::ActionNotFound' => :not_found,
'ActiveRecord::RecordNotFound' => :not_found,
'ActiveRecord::StaleObjectError' => :conflict,
'ActiveRecord::RecordInvalid' => :unprocessable_entity,
'ActiveRecord::RecordNotSaved' => :unprocessable_entity,
'ActionController::MethodNotAllowed' => :method_not_allowed,
'ActionController::NotImplemented' => :not_implemented,
'ActionController::InvalidAuthenticityToken' => :unprocessable_entity
})
)

cattr_accessor :rescue_templates
@@rescue_templates = Hash.new('diagnostics')
@@rescue_templates.update({
@@rescue_templates.merge!(
'ActionView::MissingTemplate' => 'missing_template',
'ActionController::RoutingError' => 'routing_error',
'AbstractController::ActionNotFound' => 'unknown_action',
'ActionView::Template::Error' => 'template_error'
})
)

FAILSAFE_RESPONSE = [500, {'Content-Type' => 'text/html'},
["<html><body><h1>500 Internal Server Error</h1>" <<
Expand Down
13 changes: 12 additions & 1 deletion actionpack/lib/action_dispatch/railtie.rb
Expand Up @@ -9,11 +9,22 @@ class Railtie < Rails::Railtie
config.action_dispatch.best_standards_support = true
config.action_dispatch.tld_length = 1
config.action_dispatch.ignore_accept_header = false
config.action_dispatch.rack_cache = {:metastore => "rails:/", :entitystore => "rails:/", :verbose => true}
config.action_dispatch.rescue_templates = { }
config.action_dispatch.rescue_responses = { }

config.action_dispatch.rack_cache = {
:metastore => "rails:/",
:entitystore => "rails:/",
:verbose => true
}

initializer "action_dispatch.configure" do |app|
ActionDispatch::Http::URL.tld_length = app.config.action_dispatch.tld_length
ActionDispatch::Request.ignore_accept_header = app.config.action_dispatch.ignore_accept_header

ActionDispatch::ShowExceptions.rescue_responses.merge!(config.action_dispatch.rescue_responses)
ActionDispatch::ShowExceptions.rescue_templates.merge!(config.action_dispatch.rescue_templates)

config.action_dispatch.always_write_cookie = Rails.env.development? if config.action_dispatch.always_write_cookie.nil?
ActionDispatch::Cookies::CookieJar.always_write_cookie = config.action_dispatch.always_write_cookie
end
Expand Down
7 changes: 7 additions & 0 deletions activerecord/lib/active_record/railtie.rb
Expand Up @@ -22,6 +22,13 @@ class Railtie < Rails::Railtie
config.app_middleware.insert_after "::ActionDispatch::Callbacks",
"ActiveRecord::ConnectionAdapters::ConnectionManagement"

config.action_dispatch.rescue_responses.merge!(
'ActiveRecord::RecordNotFound' => :not_found,
'ActiveRecord::StaleObjectError' => :conflict,
'ActiveRecord::RecordInvalid' => :unprocessable_entity,
'ActiveRecord::RecordNotSaved' => :unprocessable_entity
)

rake_tasks do
load "active_record/railties/databases.rake"
end
Expand Down
29 changes: 29 additions & 0 deletions railties/test/application/middleware/show_exceptions_test.rb
Expand Up @@ -16,6 +16,35 @@ def teardown
teardown_app
end

test "show exceptions middleware filter backtrace before logging" do
my_middleware = Struct.new(:app) do
def call(env)
raise "Failure"
end
end

app.config.middleware.use my_middleware

stringio = StringIO.new
Rails.logger = Logger.new(stringio)

get "/"
assert_no_match(/action_dispatch/, stringio.string)
end

test "renders active record exceptions as 404" do
my_middleware = Struct.new(:app) do
def call(env)
raise ActiveRecord::RecordNotFound
end
end

app.config.middleware.use my_middleware

get "/"
assert_equal 404, last_response.status
end

test "unspecified route when set action_dispatch.show_exceptions to false" do
app.config.action_dispatch.show_exceptions = false

Expand Down
22 changes: 1 addition & 21 deletions railties/test/application/middleware_test.rb
Expand Up @@ -104,7 +104,7 @@ def app
assert !middleware.include?("ActionDispatch::Static")
end

test "includes show exceptions even action_dispatch.show_exceptions is disabled" do
test "includes show exceptions even if action_dispatch.show_exceptions is disabled" do
add_to_config "config.action_dispatch.show_exceptions = false"
boot!
assert middleware.include?("ActionDispatch::ShowExceptions")
Expand Down Expand Up @@ -191,26 +191,6 @@ def index
assert_equal nil, last_response.headers["Etag"]
end

# Show exceptions middleware
test "show exceptions middleware filter backtrace before logging" do
my_middleware = Struct.new(:app) do
def call(env)
raise "Failure"
end
end

make_basic_app do |app|
app.config.middleware.use my_middleware
end

stringio = StringIO.new
Rails.logger = Logger.new(stringio)

env = Rack::MockRequest.env_for("/")
Rails.application.call(env)
assert_no_match(/action_dispatch/, stringio.string)
end

private

def boot!
Expand Down

0 comments on commit b4359bc

Please sign in to comment.