mirror of
https://github.com/grillazz/fastapi-sqlalchemy-asyncpg.git
synced 2025-08-26 16:40:40 +03:00
36 lines
1.1 KiB
Python
36 lines
1.1 KiB
Python
import orjson
|
|
from fastapi import FastAPI, Request
|
|
from fastapi.responses import JSONResponse
|
|
from rotoger import AppStructLogger
|
|
from sqlalchemy.exc import SQLAlchemyError
|
|
|
|
logger = AppStructLogger().get_logger()
|
|
|
|
#TODO: add reasoning for this in readme plus higligh using re-raise in db session
|
|
async def sqlalchemy_exception_handler(
|
|
request: Request, exc: SQLAlchemyError
|
|
) -> JSONResponse:
|
|
request_path = request.url.path
|
|
try:
|
|
raw_body = await request.body()
|
|
request_body = orjson.loads(raw_body) if raw_body else None
|
|
except orjson.JSONDecodeError:
|
|
request_body = None
|
|
|
|
await logger.aerror(
|
|
"Database error occurred",
|
|
sql_error=repr(exc),
|
|
request_url=request_path,
|
|
request_body=request_body,
|
|
)
|
|
|
|
return JSONResponse(
|
|
status_code=500,
|
|
content={"message": "A database error occurred. Please try again later."},
|
|
)
|
|
|
|
|
|
def register_exception_handlers(app: FastAPI) -> None:
|
|
"""Register all exception handlers with the FastAPI app."""
|
|
app.add_exception_handler(SQLAlchemyError, sqlalchemy_exception_handler)
|