
* Remove unnecessary import in test_constants.py, which also fixes an error on win (#2180) Co-authored-by: Adam Hopkins <admhpkns@gmail.com> * Manually reset the buffer when streaming request body (#2183) * Remove Duplicated Dependencies and PEP 517 Support (#2173) * Remove duplicated dependencies * Specify setuptools as the tool for generating distribution (PEP 517) * Add `isort` to `dev_require` * manage all dependencies in setup.py * Execute `make pretty` * Set usedevelop to true (revert previous change) * Fix the handling of the end of a chunked request. (#2188) * Fix the handling of the end of a chunked request. * Avoid hardcoding final chunk header size. * Add some unit tests for pipeline body reading * Decode bytes for json serialization Co-authored-by: L. Kärkkäinen <tronic@users.noreply.github.com> Co-authored-by: Adam Hopkins <adam@amhopkins.com> * Resolve regressions in exceptions (#2181) * Update sanic-routing to fix path issues plus lookahead / lookbehind support (#2178) * Update sanic-routing to fix path issues plus lookahead / lookbehind support * Update setup.py Co-authored-by: Adam Hopkins <adam@amhopkins.com> Co-authored-by: Adam Hopkins <admhpkns@gmail.com> * style(app,blueprints): add some type hints (#2196) * style(app,blueprints): add some type hints * style(app): option is Any * style(blueprints): url prefix default value is ``""`` * style(app): backward compatible * style(app): backward compatible * style(blueprints): defult is None * style(app): apply code style (black) * Update some CC config (#2199) * Update README.rst * raise exception for `_static_request_handler` unknown exception; add test with custom error (#2195) Co-authored-by: n.feofanov <n.feofanov@visionlabs.ru> Co-authored-by: Adam Hopkins <admhpkns@gmail.com> * Change dumps to AnyStr (#2193) * HTTP tests (#2194) * Fix issues with after request handling in HTTP pipelining (#2201) * Clean up after a request is complete, before the next pipelined request. * Limit the size of request body consumed after handler has finished. * Linter error. * Add unit test re: bad headers Co-authored-by: L. Kärkkäinen <tronic@users.noreply.github.com> Co-authored-by: Adam Hopkins <admhpkns@gmail.com> Co-authored-by: Adam Hopkins <adam@amhopkins.com> * Update CHANGELOG * Log remote address if available (#2207) * Log remote address if available * Add tests * Fix testing version Co-authored-by: Adam Hopkins <adam@amhopkins.com> * Fixed for handling exceptions of asgi app call. (#2211) @cansarigol3megawatt Thanks for looking into this and getting the quick turnaround on this. I will 🍒 pick this into the 21.6 branch and get it out a little later tonight. * Signals Integration (#2160) * Update some tests * Resolve #2122 route decorator returning tuple * Use rc sanic-routing version * Update unit tests to <:str> * Minimal working version with some signals implemented * Add more http signals * Update ASGI and change listeners to signals * Allow for dynamic ODE signals * Allow signals to be stacked * Begin tests * Prioritize match_info on keyword argument injection * WIP on tests * Compat with signals * Work through some test coverage * Passing tests * Post linting * Setup proper resets * coverage reporting * Fixes from vltr comments * clear delayed tasks * Fix bad test * rm pycache * uncomment windows tests (#2214) * Add convenience methods to BP groups (#2209) * Fix bug where ws exceptions not being logged (#2213) * Fix bug where ws exceptions not being logged * Fix t\est * Style: add type hints (#2217) * style(routes): add_route argument, return typing * style(listeners): typing * style(views): typing as_view * style(routes): change type hint * style(listeners): change type hint * style(routes): change type hint * add some more types * Change as_view typing * Add some cleaner type annotations Co-authored-by: Adam Hopkins <adam@amhopkins.com> * Add default messages to SanicExceptions (#2216) * Add default messages to SanicExceptions * Cleaner exception message setting * Copy Blueprints Implementation (#2184) * Accept header parsing (#2200) * Add some tests * docstring * Add accept matching * Add some more tests on matching * Add matching flags for wildcards * Add mathing controls to accept * Limit uvicorn 14 in testing * Add convenience for annotated handlers (#2225) * Split HttpProtocol parts into base SanicProtocol and HTTPProtocol subclass (#2229) * Split HttpProtocol parts into base SanicProtocol and HTTPProtocol subclass. * lint fixes * re-black server.py * Move server.py into its own module (#2230) * Move server.py into its own module * Change monkeypatch path on test_logging.py * Blueprint specific exception handlers (#2208) * Call abort() on sockets after close() to prevent dangling sockets (#2231) * Add ability to return Falsey but not-None from handlers (#2236) * Adds Blueprint Group exception decorator (#2238) * Add exception decorator * Added tests * Fix line too long * Static DIR and FILE resource types (#2244) * Explicit static directive for serving file or dir Co-authored-by: anbuhckr <36891836+anbuhckr@users.noreply.github.com> Co-authored-by: anbuhckr <miki.suhendra@gmail.com> * Close HTTP loop when connection task cancelled (#2245) * Terminate loop when no transport exists * Add log when closing HTTP loop because of shutdown * Add unit test * New websockets (#2158) * First attempt at new Websockets implementation based on websockets >= 9.0, with sans-i/o features. Requires more work. * Update sanic/websocket.py Co-authored-by: Adam Hopkins <adam@amhopkins.com> * Update sanic/websocket.py Co-authored-by: Adam Hopkins <adam@amhopkins.com> * Update sanic/websocket.py Co-authored-by: Adam Hopkins <adam@amhopkins.com> * wip, update websockets code to new Sans/IO API * Refactored new websockets impl into own modules Incorporated other suggestions made by team * Another round of work on the new websockets impl * Added websocket_timeout support (matching previous/legacy support) * Lots more comments * Incorporated suggested changes from previous round of review * Changed RuntimeError usage to ServerError * Changed SanicException usage to ServerError * Removed some redundant asserts * Change remaining asserts to ServerErrors * Fixed some timeout handling issues * Fixed websocket.close() handling, and made it more robust * Made auto_close task smarter and more error-resilient * Made fail_connection routine smarter and more error-resilient * Further new websockets impl fixes * Update compatibility with Websockets v10 * Track server connection state in a more precise way * Try to handle the shutdown process more gracefully * Add a new end_connection() helper, to use as an alterative to close() or fail_connection() * Kill the auto-close task and keepalive-timeout task when sanic is shutdown * Deprecate WEBSOCKET_READ_LIMIT and WEBSOCKET_WRITE_LIMIT configs, they are not used in this implementation. * Change a warning message to debug level Remove default values for deprecated websocket parameters * Fix flake8 errors * Fix a couple of missed failing tests * remove websocket bench from examples * Integrate suggestions from code reviews Use Optional[T] instead of union[T,None] Fix mypy type logic errors change "is not None" to truthy checks where appropriate change "is None" to falsy checks were appropriate Add more debug logging when debug mode is on Change to using sanic.logger for debug logging rather than error_logger. * Fix long line lengths of debug messages Add some new debug messages when websocket IO is paused and unpaused for flow control Fix websocket example to use app.static() * remove unused import in websocket example app * re-run isort after Flake8 fixes Co-authored-by: Adam Hopkins <adam@amhopkins.com> Co-authored-by: Adam Hopkins <admhpkns@gmail.com> * Account for BP with exception handler but no routes (#2246) * Don't log "enabled" if auto-reload disabled (#2247) Fixes #2240 Co-authored-by: Adam Hopkins <admhpkns@gmail.com> * Smarter auto fallback (#2162) * Smarter auto fallback * remove config from blueprints * Add tests for error formatting * Add check for proper format * Fix some tests * Add some tests * docstring * Add accept matching * Add some more tests on matching * Fix contains bug, earlier return on MediaType eq * Add matching flags for wildcards * Add mathing controls to accept * Cleanup dev cruft * Add cleanup and resolve OSError relating to test implementation * Fix test * Fix some typos * Some fixes to the new Websockets impl (#2248) * First attempt at new Websockets implementation based on websockets >= 9.0, with sans-i/o features. Requires more work. * Update sanic/websocket.py Co-authored-by: Adam Hopkins <adam@amhopkins.com> * Update sanic/websocket.py Co-authored-by: Adam Hopkins <adam@amhopkins.com> * Update sanic/websocket.py Co-authored-by: Adam Hopkins <adam@amhopkins.com> * wip, update websockets code to new Sans/IO API * Refactored new websockets impl into own modules Incorporated other suggestions made by team * Another round of work on the new websockets impl * Added websocket_timeout support (matching previous/legacy support) * Lots more comments * Incorporated suggested changes from previous round of review * Changed RuntimeError usage to ServerError * Changed SanicException usage to ServerError * Removed some redundant asserts * Change remaining asserts to ServerErrors * Fixed some timeout handling issues * Fixed websocket.close() handling, and made it more robust * Made auto_close task smarter and more error-resilient * Made fail_connection routine smarter and more error-resilient * Further new websockets impl fixes * Update compatibility with Websockets v10 * Track server connection state in a more precise way * Try to handle the shutdown process more gracefully * Add a new end_connection() helper, to use as an alterative to close() or fail_connection() * Kill the auto-close task and keepalive-timeout task when sanic is shutdown * Deprecate WEBSOCKET_READ_LIMIT and WEBSOCKET_WRITE_LIMIT configs, they are not used in this implementation. * Change a warning message to debug level Remove default values for deprecated websocket parameters * Fix flake8 errors * Fix a couple of missed failing tests * remove websocket bench from examples * Integrate suggestions from code reviews Use Optional[T] instead of union[T,None] Fix mypy type logic errors change "is not None" to truthy checks where appropriate change "is None" to falsy checks were appropriate Add more debug logging when debug mode is on Change to using sanic.logger for debug logging rather than error_logger. * Fix long line lengths of debug messages Add some new debug messages when websocket IO is paused and unpaused for flow control Fix websocket example to use app.static() * remove unused import in websocket example app * re-run isort after Flake8 fixes * Some fixes to the new Websockets impl Will throw WebsocketClosed exception instead of ServerException now when attempting to read or write to closed websocket, this makes it easier to catch The various ws.recv() methods now have the ability to raise CancelledError into your websocket handler Fix a niche close-socket negotiation bug Fix bug where http protocol thought the websocket never sent any response. Allow data to still send in some cases after websocket enters CLOSING state. Fix some badly formatted and badly placed comments * allow eof_received to send back data too, if the connection is in CLOSING state Co-authored-by: Adam Hopkins <adam@amhopkins.com> Co-authored-by: Adam Hopkins <admhpkns@gmail.com> * 21.9 release docs (#2218) * Beging 21.9 release docs * Add PRs to changelog * Change deprecation version * Update logging tests * Bump version * Update changelog * Change dev install command (#2251) Co-authored-by: Zhiwei <zhi.wei.liang@outlook.com> Co-authored-by: L. Kärkkäinen <98187+Tronic@users.noreply.github.com> Co-authored-by: L. Kärkkäinen <tronic@users.noreply.github.com> Co-authored-by: Robert Palmer <robd003@users.noreply.github.com> Co-authored-by: Ryu JuHeon <saidbysolo@gmail.com> Co-authored-by: gluhar2006 <49654448+gluhar2006@users.noreply.github.com> Co-authored-by: n.feofanov <n.feofanov@visionlabs.ru> Co-authored-by: Néstor Pérez <25409753+prryplatypus@users.noreply.github.com> Co-authored-by: Can Sarigol <56863826+cansarigol3megawatt@users.noreply.github.com> Co-authored-by: Zhiwei <chihwei.public@outlook.com> Co-authored-by: YongChan Cho <h3236516@gmail.com> Co-authored-by: Zhiwei <zhiwei@sinatra.ai> Co-authored-by: Ashley Sommer <ashleysommer@gmail.com> Co-authored-by: anbuhckr <36891836+anbuhckr@users.noreply.github.com> Co-authored-by: anbuhckr <miki.suhendra@gmail.com>
478 lines
15 KiB
Python
478 lines
15 KiB
Python
"""
|
|
Sanic `provides a pattern
|
|
<https://sanicframework.org/guide/best-practices/exceptions.html#using-sanic-exceptions>`_
|
|
for providing a response when an exception occurs. However, if you do no handle
|
|
an exception, it will provide a fallback. There are three fallback types:
|
|
|
|
- HTML - *default*
|
|
- Text
|
|
- JSON
|
|
|
|
Setting ``app.config.FALLBACK_ERROR_FORMAT = "auto"`` will enable a switch that
|
|
will attempt to provide an appropriate response format based upon the
|
|
request type.
|
|
"""
|
|
|
|
import sys
|
|
import typing as t
|
|
|
|
from functools import partial
|
|
from traceback import extract_tb
|
|
|
|
from sanic.exceptions import InvalidUsage, SanicException
|
|
from sanic.helpers import STATUS_CODES
|
|
from sanic.request import Request
|
|
from sanic.response import HTTPResponse, html, json, text
|
|
|
|
|
|
try:
|
|
from ujson import dumps
|
|
|
|
dumps = partial(dumps, escape_forward_slashes=False)
|
|
except ImportError: # noqa
|
|
from json import dumps # type: ignore
|
|
|
|
|
|
FALLBACK_TEXT = (
|
|
"The server encountered an internal error and "
|
|
"cannot complete your request."
|
|
)
|
|
FALLBACK_STATUS = 500
|
|
|
|
|
|
class BaseRenderer:
|
|
"""
|
|
Base class that all renderers must inherit from.
|
|
"""
|
|
|
|
def __init__(self, request, exception, debug):
|
|
self.request = request
|
|
self.exception = exception
|
|
self.debug = debug
|
|
|
|
@property
|
|
def headers(self):
|
|
if isinstance(self.exception, SanicException):
|
|
return getattr(self.exception, "headers", {})
|
|
return {}
|
|
|
|
@property
|
|
def status(self):
|
|
if isinstance(self.exception, SanicException):
|
|
return getattr(self.exception, "status_code", FALLBACK_STATUS)
|
|
return FALLBACK_STATUS
|
|
|
|
@property
|
|
def text(self):
|
|
if self.debug or isinstance(self.exception, SanicException):
|
|
return str(self.exception)
|
|
return FALLBACK_TEXT
|
|
|
|
@property
|
|
def title(self):
|
|
status_text = STATUS_CODES.get(self.status, b"Error Occurred").decode()
|
|
return f"{self.status} — {status_text}"
|
|
|
|
def render(self) -> HTTPResponse:
|
|
"""
|
|
Outputs the exception as a :class:`HTTPResponse`.
|
|
|
|
:return: The formatted exception
|
|
:rtype: str
|
|
"""
|
|
output = (
|
|
self.full
|
|
if self.debug and not getattr(self.exception, "quiet", False)
|
|
else self.minimal
|
|
)
|
|
return output()
|
|
|
|
def minimal(self) -> HTTPResponse: # noqa
|
|
"""
|
|
Provide a formatted message that is meant to not show any sensitive
|
|
data or details.
|
|
"""
|
|
raise NotImplementedError
|
|
|
|
def full(self) -> HTTPResponse: # noqa
|
|
"""
|
|
Provide a formatted message that has all details and is mean to be used
|
|
primarily for debugging and non-production environments.
|
|
"""
|
|
raise NotImplementedError
|
|
|
|
|
|
class HTMLRenderer(BaseRenderer):
|
|
"""
|
|
Render an exception as HTML.
|
|
|
|
The default fallback type.
|
|
"""
|
|
|
|
TRACEBACK_STYLE = """
|
|
html { font-family: sans-serif }
|
|
h2 { color: #888; }
|
|
.tb-wrapper p { margin: 0 }
|
|
.frame-border { margin: 1rem }
|
|
.frame-line > * { padding: 0.3rem 0.6rem }
|
|
.frame-line { margin-bottom: 0.3rem }
|
|
.frame-code { font-size: 16px; padding-left: 4ch }
|
|
.tb-wrapper { border: 1px solid #eee }
|
|
.tb-header { background: #eee; padding: 0.3rem; font-weight: bold }
|
|
.frame-descriptor { background: #e2eafb; font-size: 14px }
|
|
"""
|
|
TRACEBACK_WRAPPER_HTML = (
|
|
"<div class=tb-header>{exc_name}: {exc_value}</div>"
|
|
"<div class=tb-wrapper>{frame_html}</div>"
|
|
)
|
|
TRACEBACK_BORDER = (
|
|
"<div class=frame-border>"
|
|
"The above exception was the direct cause of the following exception:"
|
|
"</div>"
|
|
)
|
|
TRACEBACK_LINE_HTML = (
|
|
"<div class=frame-line>"
|
|
"<p class=frame-descriptor>"
|
|
"File {0.filename}, line <i>{0.lineno}</i>, "
|
|
"in <code><b>{0.name}</b></code>"
|
|
"<p class=frame-code><code>{0.line}</code>"
|
|
"</div>"
|
|
)
|
|
OUTPUT_HTML = (
|
|
"<!DOCTYPE html><html lang=en>"
|
|
"<meta charset=UTF-8><title>{title}</title>\n"
|
|
"<style>{style}</style>\n"
|
|
"<h1>{title}</h1><p>{text}\n"
|
|
"{body}"
|
|
)
|
|
|
|
def full(self) -> HTTPResponse:
|
|
return html(
|
|
self.OUTPUT_HTML.format(
|
|
title=self.title,
|
|
text=self.text,
|
|
style=self.TRACEBACK_STYLE,
|
|
body=self._generate_body(),
|
|
),
|
|
status=self.status,
|
|
)
|
|
|
|
def minimal(self) -> HTTPResponse:
|
|
return html(
|
|
self.OUTPUT_HTML.format(
|
|
title=self.title,
|
|
text=self.text,
|
|
style=self.TRACEBACK_STYLE,
|
|
body="",
|
|
),
|
|
status=self.status,
|
|
headers=self.headers,
|
|
)
|
|
|
|
@property
|
|
def text(self):
|
|
return escape(super().text)
|
|
|
|
@property
|
|
def title(self):
|
|
return escape(f"⚠️ {super().title}")
|
|
|
|
def _generate_body(self):
|
|
_, exc_value, __ = sys.exc_info()
|
|
exceptions = []
|
|
while exc_value:
|
|
exceptions.append(self._format_exc(exc_value))
|
|
exc_value = exc_value.__cause__
|
|
|
|
traceback_html = self.TRACEBACK_BORDER.join(reversed(exceptions))
|
|
appname = escape(self.request.app.name)
|
|
name = escape(self.exception.__class__.__name__)
|
|
value = escape(self.exception)
|
|
path = escape(self.request.path)
|
|
lines = [
|
|
f"<h2>Traceback of {appname} (most recent call last):</h2>",
|
|
f"{traceback_html}",
|
|
"<div class=summary><p>",
|
|
f"<b>{name}: {value}</b> while handling path <code>{path}</code>",
|
|
"</div>",
|
|
]
|
|
return "\n".join(lines)
|
|
|
|
def _format_exc(self, exc):
|
|
frames = extract_tb(exc.__traceback__)
|
|
frame_html = "".join(
|
|
self.TRACEBACK_LINE_HTML.format(frame) for frame in frames
|
|
)
|
|
return self.TRACEBACK_WRAPPER_HTML.format(
|
|
exc_name=escape(exc.__class__.__name__),
|
|
exc_value=escape(exc),
|
|
frame_html=frame_html,
|
|
)
|
|
|
|
|
|
class TextRenderer(BaseRenderer):
|
|
"""
|
|
Render an exception as plain text.
|
|
"""
|
|
|
|
OUTPUT_TEXT = "{title}\n{bar}\n{text}\n\n{body}"
|
|
SPACER = " "
|
|
|
|
def full(self) -> HTTPResponse:
|
|
return text(
|
|
self.OUTPUT_TEXT.format(
|
|
title=self.title,
|
|
text=self.text,
|
|
bar=("=" * len(self.title)),
|
|
body=self._generate_body(),
|
|
),
|
|
status=self.status,
|
|
)
|
|
|
|
def minimal(self) -> HTTPResponse:
|
|
return text(
|
|
self.OUTPUT_TEXT.format(
|
|
title=self.title,
|
|
text=self.text,
|
|
bar=("=" * len(self.title)),
|
|
body="",
|
|
),
|
|
status=self.status,
|
|
headers=self.headers,
|
|
)
|
|
|
|
@property
|
|
def title(self):
|
|
return f"⚠️ {super().title}"
|
|
|
|
def _generate_body(self):
|
|
_, exc_value, __ = sys.exc_info()
|
|
exceptions = []
|
|
|
|
lines = [
|
|
f"{self.exception.__class__.__name__}: {self.exception} while "
|
|
f"handling path {self.request.path}",
|
|
f"Traceback of {self.request.app.name} (most recent call last):\n",
|
|
]
|
|
|
|
while exc_value:
|
|
exceptions.append(self._format_exc(exc_value))
|
|
exc_value = exc_value.__cause__
|
|
|
|
return "\n".join(lines + exceptions[::-1])
|
|
|
|
def _format_exc(self, exc):
|
|
frames = "\n\n".join(
|
|
[
|
|
f"{self.SPACER * 2}File {frame.filename}, "
|
|
f"line {frame.lineno}, in "
|
|
f"{frame.name}\n{self.SPACER * 2}{frame.line}"
|
|
for frame in extract_tb(exc.__traceback__)
|
|
]
|
|
)
|
|
return f"{self.SPACER}{exc.__class__.__name__}: {exc}\n{frames}"
|
|
|
|
|
|
class JSONRenderer(BaseRenderer):
|
|
"""
|
|
Render an exception as JSON.
|
|
"""
|
|
|
|
def full(self) -> HTTPResponse:
|
|
output = self._generate_output(full=True)
|
|
return json(output, status=self.status, dumps=dumps)
|
|
|
|
def minimal(self) -> HTTPResponse:
|
|
output = self._generate_output(full=False)
|
|
return json(output, status=self.status, dumps=dumps)
|
|
|
|
def _generate_output(self, *, full):
|
|
output = {
|
|
"description": self.title,
|
|
"status": self.status,
|
|
"message": self.text,
|
|
}
|
|
|
|
if full:
|
|
_, exc_value, __ = sys.exc_info()
|
|
exceptions = []
|
|
|
|
while exc_value:
|
|
exceptions.append(
|
|
{
|
|
"type": exc_value.__class__.__name__,
|
|
"exception": str(exc_value),
|
|
"frames": [
|
|
{
|
|
"file": frame.filename,
|
|
"line": frame.lineno,
|
|
"name": frame.name,
|
|
"src": frame.line,
|
|
}
|
|
for frame in extract_tb(exc_value.__traceback__)
|
|
],
|
|
}
|
|
)
|
|
exc_value = exc_value.__cause__
|
|
|
|
output["path"] = self.request.path
|
|
output["args"] = self.request.args
|
|
output["exceptions"] = exceptions[::-1]
|
|
|
|
return output
|
|
|
|
@property
|
|
def title(self):
|
|
return STATUS_CODES.get(self.status, b"Error Occurred").decode()
|
|
|
|
|
|
def escape(text):
|
|
"""
|
|
Minimal HTML escaping, not for attribute values (unlike html.escape).
|
|
"""
|
|
return f"{text}".replace("&", "&").replace("<", "<")
|
|
|
|
|
|
RENDERERS_BY_CONFIG = {
|
|
"html": HTMLRenderer,
|
|
"json": JSONRenderer,
|
|
"text": TextRenderer,
|
|
}
|
|
|
|
RENDERERS_BY_CONTENT_TYPE = {
|
|
"text/plain": TextRenderer,
|
|
"application/json": JSONRenderer,
|
|
"multipart/form-data": HTMLRenderer,
|
|
"text/html": HTMLRenderer,
|
|
}
|
|
CONTENT_TYPE_BY_RENDERERS = {
|
|
v: k for k, v in RENDERERS_BY_CONTENT_TYPE.items()
|
|
}
|
|
|
|
RESPONSE_MAPPING = {
|
|
"empty": "html",
|
|
"json": "json",
|
|
"text": "text",
|
|
"raw": "text",
|
|
"html": "html",
|
|
"file": "html",
|
|
"file_stream": "text",
|
|
"stream": "text",
|
|
"redirect": "html",
|
|
"text/plain": "text",
|
|
"text/html": "html",
|
|
"application/json": "json",
|
|
}
|
|
|
|
|
|
def check_error_format(format):
|
|
if format not in RENDERERS_BY_CONFIG and format != "auto":
|
|
raise SanicException(f"Unknown format: {format}")
|
|
|
|
|
|
def exception_response(
|
|
request: Request,
|
|
exception: Exception,
|
|
debug: bool,
|
|
fallback: str,
|
|
base: t.Type[BaseRenderer],
|
|
renderer: t.Type[t.Optional[BaseRenderer]] = None,
|
|
) -> HTTPResponse:
|
|
"""
|
|
Render a response for the default FALLBACK exception handler.
|
|
"""
|
|
content_type = None
|
|
|
|
if not renderer:
|
|
# Make sure we have something set
|
|
renderer = base
|
|
render_format = fallback
|
|
|
|
if request:
|
|
# If there is a request, try and get the format
|
|
# from the route
|
|
if request.route:
|
|
try:
|
|
render_format = request.route.ctx.error_format
|
|
except AttributeError:
|
|
...
|
|
|
|
content_type = request.headers.getone("content-type", "").split(
|
|
";"
|
|
)[0]
|
|
|
|
acceptable = request.accept
|
|
|
|
# If the format is auto still, make a guess
|
|
if render_format == "auto":
|
|
# First, if there is an Accept header, check if text/html
|
|
# is the first option
|
|
# According to MDN Web Docs, all major browsers use text/html
|
|
# as the primary value in Accept (with the exception of IE 8,
|
|
# and, well, if you are supporting IE 8, then you have bigger
|
|
# problems to concern yourself with than what default exception
|
|
# renderer is used)
|
|
# Source:
|
|
# https://developer.mozilla.org/en-US/docs/Web/HTTP/Content_negotiation/List_of_default_Accept_values
|
|
|
|
if acceptable and acceptable[0].match(
|
|
"text/html",
|
|
allow_type_wildcard=False,
|
|
allow_subtype_wildcard=False,
|
|
):
|
|
renderer = HTMLRenderer
|
|
|
|
# Second, if there is an Accept header, check if
|
|
# application/json is an option, or if the content-type
|
|
# is application/json
|
|
elif (
|
|
acceptable
|
|
and acceptable.match(
|
|
"application/json",
|
|
allow_type_wildcard=False,
|
|
allow_subtype_wildcard=False,
|
|
)
|
|
or content_type == "application/json"
|
|
):
|
|
renderer = JSONRenderer
|
|
|
|
# Third, if there is no Accept header, assume we want text.
|
|
# The likely use case here is a raw socket.
|
|
elif not acceptable:
|
|
renderer = TextRenderer
|
|
else:
|
|
# Fourth, look to see if there was a JSON body
|
|
# When in this situation, the request is probably coming
|
|
# from curl, an API client like Postman or Insomnia, or a
|
|
# package like requests or httpx
|
|
try:
|
|
# Give them the benefit of the doubt if they did:
|
|
# $ curl localhost:8000 -d '{"foo": "bar"}'
|
|
# And provide them with JSONRenderer
|
|
renderer = JSONRenderer if request.json else base
|
|
except InvalidUsage:
|
|
renderer = base
|
|
else:
|
|
renderer = RENDERERS_BY_CONFIG.get(render_format, renderer)
|
|
|
|
# Lastly, if there is an Accept header, make sure
|
|
# our choice is okay
|
|
if acceptable:
|
|
type_ = CONTENT_TYPE_BY_RENDERERS.get(renderer) # type: ignore
|
|
if type_ and type_ not in acceptable:
|
|
# If the renderer selected is not in the Accept header
|
|
# look through what is in the Accept header, and select
|
|
# the first option that matches. Otherwise, just drop back
|
|
# to the original default
|
|
for accept in acceptable:
|
|
mtype = f"{accept.type_}/{accept.subtype}"
|
|
maybe = RENDERERS_BY_CONTENT_TYPE.get(mtype)
|
|
if maybe:
|
|
renderer = maybe
|
|
break
|
|
else:
|
|
renderer = base
|
|
|
|
renderer = t.cast(t.Type[BaseRenderer], renderer)
|
|
return renderer(request, exception, debug).render()
|