Spaces:
Running
Running
File size: 1,908 Bytes
0a1b571 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
from fastapi import Request, Response
from fastapi.exceptions import HTTPException as FastAPIHTTPException
from fastapi.exceptions import RequestValidationError as FastAPIValidationError
from pydantic.error_wrappers import ValidationError as PydanticValidationError
from starlette.exceptions import HTTPException as StarletteHTTPException
from hibiapi.utils import exceptions
from hibiapi.utils.log import logger
from .application import app
@app.exception_handler(exceptions.BaseServerException)
async def exception_handler(
request: Request,
exc: exceptions.BaseServerException,
) -> Response:
if isinstance(exc, exceptions.UncaughtException):
logger.opt(exception=exc).exception(f"Uncaught exception raised {exc.data=}:")
exc.data.url = str(request.url) # type:ignore
return Response(
content=exc.data.json(),
status_code=exc.data.code,
headers=exc.data.headers,
media_type="application/json",
)
@app.exception_handler(StarletteHTTPException)
async def override_handler(
request: Request,
exc: StarletteHTTPException,
):
return await exception_handler(
request,
exceptions.BaseHTTPException(
exc.detail,
code=exc.status_code,
headers={} if not isinstance(exc, FastAPIHTTPException) else exc.headers,
),
)
@app.exception_handler(AssertionError)
async def assertion_handler(request: Request, exc: AssertionError):
return await exception_handler(
request,
exceptions.ClientSideException(detail=f"Assertion: {exc}"),
)
@app.exception_handler(FastAPIValidationError)
@app.exception_handler(PydanticValidationError)
async def validation_handler(request: Request, exc: PydanticValidationError):
return await exception_handler(
request,
exceptions.ValidationException(detail=str(exc), validation=exc.errors()),
)
|