2007-01-22 14:43:50 +01:00
|
|
|
module ActionController #:nodoc:
|
2009-02-04 21:26:08 +01:00
|
|
|
# Actions that fail to perform as expected throw exceptions. These
|
|
|
|
# exceptions can either be rescued for the public view (with a nice
|
|
|
|
# user-friendly explanation) or for the developers view (with tons of
|
|
|
|
# debugging information). The developers view is already implemented by
|
|
|
|
# the Action Controller, but the public view should be tailored to your
|
|
|
|
# specific application.
|
2007-01-22 14:43:50 +01:00
|
|
|
#
|
2009-02-04 21:26:08 +01:00
|
|
|
# The default behavior for public exceptions is to render a static html
|
|
|
|
# file with the name of the error code thrown. If no such file exists, an
|
|
|
|
# empty response is sent with the correct status code.
|
|
|
|
#
|
|
|
|
# You can override what constitutes a local request by overriding the
|
|
|
|
# <tt>local_request?</tt> method in your own controller. Custom rescue
|
|
|
|
# behavior is achieved by overriding the <tt>rescue_action_in_public</tt>
|
|
|
|
# and <tt>rescue_action_locally</tt> methods.
|
2007-01-22 14:43:50 +01:00
|
|
|
module Rescue
|
2007-12-21 08:48:59 +01:00
|
|
|
LOCALHOST = '127.0.0.1'.freeze
|
|
|
|
|
|
|
|
DEFAULT_RESCUE_RESPONSE = :internal_server_error
|
|
|
|
DEFAULT_RESCUE_RESPONSES = {
|
|
|
|
'ActionController::RoutingError' => :not_found,
|
|
|
|
'ActionController::UnknownAction' => :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
|
|
|
|
}
|
|
|
|
|
|
|
|
DEFAULT_RESCUE_TEMPLATE = 'diagnostics'
|
|
|
|
DEFAULT_RESCUE_TEMPLATES = {
|
2008-05-18 06:22:34 +02:00
|
|
|
'ActionView::MissingTemplate' => 'missing_template',
|
2007-12-21 08:48:59 +01:00
|
|
|
'ActionController::RoutingError' => 'routing_error',
|
|
|
|
'ActionController::UnknownAction' => 'unknown_action',
|
|
|
|
'ActionView::TemplateError' => 'template_error'
|
|
|
|
}
|
|
|
|
|
2009-02-28 02:23:00 +01:00
|
|
|
RESCUES_TEMPLATE_PATH = ActionView::Template::EagerPath.new_and_loaded(
|
2009-02-04 21:26:08 +01:00
|
|
|
File.join(File.dirname(__FILE__), "templates"))
|
|
|
|
|
2007-02-09 09:04:31 +01:00
|
|
|
def self.included(base) #:nodoc:
|
2007-12-21 08:48:59 +01:00
|
|
|
base.cattr_accessor :rescue_responses
|
|
|
|
base.rescue_responses = Hash.new(DEFAULT_RESCUE_RESPONSE)
|
|
|
|
base.rescue_responses.update DEFAULT_RESCUE_RESPONSES
|
|
|
|
|
|
|
|
base.cattr_accessor :rescue_templates
|
|
|
|
base.rescue_templates = Hash.new(DEFAULT_RESCUE_TEMPLATE)
|
|
|
|
base.rescue_templates.update DEFAULT_RESCUE_TEMPLATES
|
|
|
|
|
2007-01-22 14:43:50 +01:00
|
|
|
base.extend(ClassMethods)
|
2008-10-27 07:47:01 +01:00
|
|
|
base.send :include, ActiveSupport::Rescuable
|
|
|
|
|
2007-01-22 14:43:50 +01:00
|
|
|
base.class_eval do
|
2007-02-09 09:04:31 +01:00
|
|
|
alias_method_chain :perform_action, :rescue
|
2007-01-22 14:43:50 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
module ClassMethods
|
2009-02-04 21:26:08 +01:00
|
|
|
def call_with_exception(env, exception) #:nodoc:
|
|
|
|
request = env["action_controller.rescue.request"] ||= Request.new(env)
|
|
|
|
response = env["action_controller.rescue.response"] ||= Response.new
|
2007-01-22 14:43:50 +01:00
|
|
|
new.process(request, response, :rescue_action, exception)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
protected
|
2009-02-04 21:26:08 +01:00
|
|
|
# Exception handler called when the performance of an action raises
|
|
|
|
# an exception.
|
2007-01-22 14:43:50 +01:00
|
|
|
def rescue_action(exception)
|
2009-02-04 21:26:08 +01:00
|
|
|
rescue_with_handler(exception) ||
|
|
|
|
rescue_action_without_handler(exception)
|
2007-01-22 14:43:50 +01:00
|
|
|
end
|
|
|
|
|
2009-02-04 21:26:08 +01:00
|
|
|
# Overwrite to implement custom logging of errors. By default
|
|
|
|
# logs as fatal.
|
2007-01-22 14:43:50 +01:00
|
|
|
def log_error(exception) #:doc:
|
2007-02-09 09:04:31 +01:00
|
|
|
ActiveSupport::Deprecation.silence do
|
|
|
|
if ActionView::TemplateError === exception
|
|
|
|
logger.fatal(exception.to_s)
|
|
|
|
else
|
|
|
|
logger.fatal(
|
2009-02-04 21:26:08 +01:00
|
|
|
"\n#{exception.class} (#{exception.message}):\n " +
|
|
|
|
clean_backtrace(exception).join("\n ") + "\n\n"
|
2007-02-09 09:04:31 +01:00
|
|
|
)
|
|
|
|
end
|
2007-01-22 14:43:50 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-02-04 21:26:08 +01:00
|
|
|
# Overwrite to implement public exception handling (for requests
|
|
|
|
# answering false to <tt>local_request?</tt>). By default will call
|
|
|
|
# render_optional_error_file. Override this method to provide more
|
|
|
|
# user friendly error messages.
|
2007-01-22 14:43:50 +01:00
|
|
|
def rescue_action_in_public(exception) #:doc:
|
2007-12-21 08:48:59 +01:00
|
|
|
render_optional_error_file response_code_for_rescue(exception)
|
|
|
|
end
|
2009-02-04 21:26:08 +01:00
|
|
|
|
|
|
|
# Attempts to render a static error page based on the
|
|
|
|
# <tt>status_code</tt> thrown, or just return headers if no such file
|
|
|
|
# exists. At first, it will try to render a localized static page.
|
|
|
|
# For example, if a 500 error is being handled Rails and locale is :da,
|
|
|
|
# it will first attempt to render the file at <tt>public/500.da.html</tt>
|
|
|
|
# then attempt to render <tt>public/500.html</tt>. If none of them exist,
|
|
|
|
# the body of the response will be left empty.
|
2007-12-21 08:48:59 +01:00
|
|
|
def render_optional_error_file(status_code)
|
|
|
|
status = interpret_status(status_code)
|
2009-02-04 21:26:08 +01:00
|
|
|
locale_path = "#{Rails.public_path}/#{status[0,3]}.#{I18n.locale}.html" if I18n.locale
|
2008-05-18 06:22:34 +02:00
|
|
|
path = "#{Rails.public_path}/#{status[0,3]}.html"
|
2009-02-04 21:26:08 +01:00
|
|
|
|
|
|
|
if locale_path && File.exist?(locale_path)
|
|
|
|
render :file => locale_path, :status => status, :content_type => Mime::HTML
|
|
|
|
elsif File.exist?(path)
|
|
|
|
render :file => path, :status => status, :content_type => Mime::HTML
|
2007-12-21 08:48:59 +01:00
|
|
|
else
|
|
|
|
head status
|
2007-01-22 14:43:50 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
# True if the request came from localhost, 127.0.0.1. Override this
|
|
|
|
# method if you wish to redefine the meaning of a local request to
|
|
|
|
# include remote IP addresses or other criteria.
|
2007-01-22 14:43:50 +01:00
|
|
|
def local_request? #:doc:
|
2008-05-18 06:22:34 +02:00
|
|
|
request.remote_addr == LOCALHOST && request.remote_ip == LOCALHOST
|
2007-01-22 14:43:50 +01:00
|
|
|
end
|
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
# Render detailed diagnostics for unhandled exceptions rescued from
|
|
|
|
# a controller action.
|
2007-01-22 14:43:50 +01:00
|
|
|
def rescue_action_locally(exception)
|
|
|
|
@template.instance_variable_set("@exception", exception)
|
2009-02-04 21:26:08 +01:00
|
|
|
@template.instance_variable_set("@rescues_path", RESCUES_TEMPLATE_PATH)
|
|
|
|
@template.instance_variable_set("@contents",
|
|
|
|
@template.render(:file => template_path_for_local_rescue(exception)))
|
2007-12-21 08:48:59 +01:00
|
|
|
|
2007-02-09 09:04:31 +01:00
|
|
|
response.content_type = Mime::HTML
|
2009-02-04 21:26:08 +01:00
|
|
|
render_for_file(rescues_path("layout"),
|
|
|
|
response_code_for_rescue(exception))
|
2007-01-22 14:43:50 +01:00
|
|
|
end
|
|
|
|
|
2008-10-27 07:47:01 +01:00
|
|
|
def rescue_action_without_handler(exception)
|
|
|
|
log_error(exception) if logger
|
|
|
|
erase_results if performed?
|
|
|
|
|
|
|
|
# Let the exception alter the response if it wants.
|
|
|
|
# For example, MethodNotAllowed sets the Allow header.
|
|
|
|
if exception.respond_to?(:handle_response!)
|
|
|
|
exception.handle_response!(response)
|
|
|
|
end
|
|
|
|
|
|
|
|
if consider_all_requests_local || local_request?
|
|
|
|
rescue_action_locally(exception)
|
|
|
|
else
|
|
|
|
rescue_action_in_public(exception)
|
2007-01-22 14:43:50 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
private
|
|
|
|
def perform_action_with_rescue #:nodoc:
|
|
|
|
perform_action_without_rescue
|
2008-06-02 08:35:38 +02:00
|
|
|
rescue Exception => exception
|
2008-10-27 07:47:01 +01:00
|
|
|
rescue_action(exception)
|
2007-12-21 08:48:59 +01:00
|
|
|
end
|
|
|
|
|
2007-01-22 14:43:50 +01:00
|
|
|
def rescues_path(template_name)
|
2009-02-04 21:26:08 +01:00
|
|
|
RESCUES_TEMPLATE_PATH["rescues/#{template_name}.erb"]
|
2007-01-22 14:43:50 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def template_path_for_local_rescue(exception)
|
2007-12-21 08:48:59 +01:00
|
|
|
rescues_path(rescue_templates[exception.class.name])
|
2007-01-22 14:43:50 +01:00
|
|
|
end
|
2007-12-21 08:48:59 +01:00
|
|
|
|
2007-01-22 14:43:50 +01:00
|
|
|
def response_code_for_rescue(exception)
|
2007-12-21 08:48:59 +01:00
|
|
|
rescue_responses[exception.class.name]
|
|
|
|
end
|
|
|
|
|
2007-01-22 14:43:50 +01:00
|
|
|
def clean_backtrace(exception)
|
2009-02-04 21:26:08 +01:00
|
|
|
defined?(Rails) && Rails.respond_to?(:backtrace_cleaner) ?
|
|
|
|
Rails.backtrace_cleaner.clean(exception.backtrace) :
|
|
|
|
exception.backtrace
|
2007-01-22 14:43:50 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|