2011-12-16 03:29:37 -05:00
|
|
|
module ActionDispatch
|
2014-08-08 17:25:18 -04:00
|
|
|
# When called, this middleware renders an error page. By default if an HTML
|
2014-08-05 12:45:44 -04:00
|
|
|
# response is expected it will render static error pages from the `/public`
|
|
|
|
# directory. For example when this middleware receives a 500 response it will
|
|
|
|
# render the template found in `/public/500.html`.
|
|
|
|
# If an internationalized locale is set, this middleware will attempt to render
|
|
|
|
# the template in `/public/500.<locale>.html`. If an internationalized template
|
|
|
|
# is not found it will fall back on `/public/500.html`.
|
|
|
|
#
|
|
|
|
# When a request with a content type other than HTML is made, this middleware
|
|
|
|
# will attempt to convert error information into the appropriate response type.
|
2011-12-16 03:29:37 -05:00
|
|
|
class PublicExceptions
|
|
|
|
attr_accessor :public_path
|
|
|
|
|
2012-06-12 12:24:56 -04:00
|
|
|
def initialize(public_path)
|
2011-12-16 03:29:37 -05:00
|
|
|
@public_path = public_path
|
|
|
|
end
|
|
|
|
|
|
|
|
def call(env)
|
2012-06-11 15:58:24 -04:00
|
|
|
request = ActionDispatch::Request.new(env)
|
2015-08-23 20:22:21 -04:00
|
|
|
status = request.path_info[1..-1].to_i
|
2012-06-11 15:58:24 -04:00
|
|
|
content_type = request.formats.first
|
2015-03-23 08:11:14 -04:00
|
|
|
body = { :status => status, :error => Rack::Utils::HTTP_STATUS_CODES.fetch(status, Rack::Utils::HTTP_STATUS_CODES[500]) }
|
2012-06-11 15:58:24 -04:00
|
|
|
|
2012-06-14 20:58:05 -04:00
|
|
|
render(status, content_type, body)
|
2012-06-11 15:58:24 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2012-06-14 20:58:05 -04:00
|
|
|
def render(status, content_type, body)
|
2013-05-09 00:28:27 -04:00
|
|
|
format = "to_#{content_type.to_sym}" if content_type
|
2012-06-12 12:24:56 -04:00
|
|
|
if format && body.respond_to?(format)
|
2012-06-14 20:28:37 -04:00
|
|
|
render_format(status, content_type, body.public_send(format))
|
2011-12-16 03:29:37 -05:00
|
|
|
else
|
2012-06-11 15:58:24 -04:00
|
|
|
render_html(status)
|
2011-12-16 03:29:37 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-06-14 20:28:37 -04:00
|
|
|
def render_format(status, content_type, body)
|
|
|
|
[status, {'Content-Type' => "#{content_type}; charset=#{ActionDispatch::Response.default_charset}",
|
2012-06-11 15:58:24 -04:00
|
|
|
'Content-Length' => body.bytesize.to_s}, [body]]
|
|
|
|
end
|
|
|
|
|
|
|
|
def render_html(status)
|
2014-05-20 21:25:20 -04:00
|
|
|
path = "#{public_path}/#{status}.#{I18n.locale}.html"
|
|
|
|
path = "#{public_path}/#{status}.html" unless (found = File.exist?(path))
|
2011-12-16 03:29:37 -05:00
|
|
|
|
2012-06-11 15:58:24 -04:00
|
|
|
if found || File.exist?(path)
|
2012-06-14 20:28:37 -04:00
|
|
|
render_format(status, 'text/html', File.read(path))
|
2012-06-11 15:58:24 -04:00
|
|
|
else
|
|
|
|
[404, { "X-Cascade" => "pass" }, []]
|
|
|
|
end
|
2011-12-16 03:29:37 -05:00
|
|
|
end
|
|
|
|
end
|
2012-06-11 15:58:24 -04:00
|
|
|
end
|