tmpl-fastapi/app/paths/errors.py

54 lines
1.3 KiB
Python
Raw Permalink Normal View History

"""Custom error pages for FastAPI app"""
from pathlib import Path
2023-02-22 20:40:21 +03:00
from typing import List
from fastapi import Request, Response
from fastapi import HTTPException
from . import Paths
from .. import respond
from .. import common
# Add other HTTP error codes
2023-02-22 20:40:21 +03:00
codes: List[int] = [404, 500]
class ErrorsPaths(Paths):
"""Sets up custom error pages,
inherited from paths.Paths"""
def add_paths(self) -> None:
2023-02-27 18:05:04 +03:00
# For each HTTP code specified above
for code in codes:
self.add_handler(code)
2023-02-27 18:05:57 +03:00
def add_handler(self, code: int) -> None:
"""Adds an error handler to FastAPI app.
Only for internal use!
Args:
code (int): HTTP error code
"""
2023-02-27 18:05:04 +03:00
# Jinja template file name
# e.g. 404.html for 404 code
2023-02-19 15:19:18 +03:00
file = Path(common.templates_dir) / f'{code}.html'
2023-02-27 18:05:04 +03:00
# Exit from the function
# if the template does not exist
if not file.exists():
return
@self.app.exception_handler(code)
async def handler(req: Request, exc: HTTPException) -> Response:
2023-02-27 18:05:04 +03:00
# Respond with the template
return respond.with_tmpl(
f'{code}.html',
code=code,
request=req,
exc=exc,
)