mirror of
https://github.com/fastapi-practices/fastapi-best-architecture.git
synced 2026-09-21 21:15:13 +00:00
178 lines
6.6 KiB
Python
178 lines
6.6 KiB
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
from asyncio import create_task
|
|
|
|
from asgiref.sync import sync_to_async
|
|
from fastapi import Response
|
|
from starlette.datastructures import UploadFile
|
|
from starlette.middleware.base import BaseHTTPMiddleware
|
|
from starlette.requests import Request
|
|
|
|
from backend.app.admin.schema.opera_log import CreateOperaLogParam
|
|
from backend.app.admin.service.opera_log_service import OperaLogService
|
|
from backend.common.dataclasses import RequestCallNext
|
|
from backend.common.enums import OperaLogCipherType, StatusType
|
|
from backend.common.log import log
|
|
from backend.core.conf import settings
|
|
from backend.utils.encrypt import AESCipher, ItsDCipher, Md5Cipher
|
|
from backend.utils.timezone import timezone
|
|
from backend.utils.trace_id import get_request_trace_id
|
|
|
|
|
|
class OperaLogMiddleware(BaseHTTPMiddleware):
|
|
"""操作日志中间件"""
|
|
|
|
async def dispatch(self, request: Request, call_next) -> Response:
|
|
# 排除记录白名单
|
|
path = request.url.path
|
|
if path in settings.OPERA_LOG_PATH_EXCLUDE or not path.startswith(f'{settings.FASTAPI_API_V1_PATH}'):
|
|
return await call_next(request)
|
|
|
|
# 请求解析
|
|
try:
|
|
# 此信息依赖于 jwt 中间件
|
|
username = request.user.username
|
|
except AttributeError:
|
|
username = None
|
|
method = request.method
|
|
args = await self.get_request_args(request)
|
|
args = await self.desensitization(args)
|
|
|
|
# 执行请求
|
|
start_time = timezone.now()
|
|
request_next = await self.execute_request(request, call_next)
|
|
end_time = timezone.now()
|
|
cost_time = (end_time - start_time).total_seconds() * 1000.0
|
|
|
|
# 此信息只能在请求后获取
|
|
_route = request.scope.get('route')
|
|
summary = getattr(_route, 'summary', None) or ''
|
|
|
|
# 日志创建
|
|
opera_log_in = CreateOperaLogParam(
|
|
trace_id=get_request_trace_id(request),
|
|
username=username,
|
|
method=method,
|
|
title=summary,
|
|
path=path,
|
|
ip=request.state.ip,
|
|
country=request.state.country,
|
|
region=request.state.region,
|
|
city=request.state.city,
|
|
user_agent=request.state.user_agent,
|
|
os=request.state.os,
|
|
browser=request.state.browser,
|
|
device=request.state.device,
|
|
args=args,
|
|
status=request_next.status,
|
|
code=request_next.code,
|
|
msg=request_next.msg,
|
|
cost_time=cost_time,
|
|
opera_time=start_time,
|
|
)
|
|
create_task(OperaLogService.create(obj_in=opera_log_in)) # noqa: ignore
|
|
|
|
# 错误抛出
|
|
err = request_next.err
|
|
if err:
|
|
raise err from None
|
|
|
|
return request_next.response
|
|
|
|
async def execute_request(self, request: Request, call_next) -> RequestCallNext:
|
|
"""执行请求"""
|
|
code = 200
|
|
msg = 'Success'
|
|
status = StatusType.enable
|
|
err = None
|
|
response = None
|
|
try:
|
|
response = await call_next(request)
|
|
code, msg = self.request_exception_handler(request, code, msg)
|
|
except Exception as e:
|
|
log.error(f'请求异常: {e}')
|
|
# code 处理包含 SQLAlchemy 和 Pydantic
|
|
code = getattr(e, 'code', None) or code
|
|
msg = getattr(e, 'msg', None) or msg
|
|
status = StatusType.disable
|
|
err = e
|
|
|
|
return RequestCallNext(code=str(code), msg=msg, status=status, err=err, response=response)
|
|
|
|
@staticmethod
|
|
def request_exception_handler(request: Request, code: int, msg: str) -> tuple[str, str]:
|
|
"""请求异常处理器"""
|
|
exception_states = [
|
|
'__request_http_exception__',
|
|
'__request_validation_exception__',
|
|
'__request_pydantic_user_error__',
|
|
'__request_assertion_error__',
|
|
'__request_custom_exception__',
|
|
'__request_all_unknown_exception__',
|
|
'__request_cors_500_exception__',
|
|
]
|
|
for state in exception_states:
|
|
exception = getattr(request.state, state, None)
|
|
if exception:
|
|
code = exception.get('code')
|
|
msg = exception.get('msg')
|
|
log.error(f'请求异常: {msg}')
|
|
break
|
|
return code, msg
|
|
|
|
@staticmethod
|
|
async def get_request_args(request: Request) -> dict:
|
|
"""获取请求参数"""
|
|
args = dict(request.query_params)
|
|
args.update(request.path_params)
|
|
# Tip: .body() 必须在 .form() 之前获取
|
|
# https://github.com/encode/starlette/discussions/1933
|
|
body_data = await request.body()
|
|
form_data = await request.form()
|
|
if len(form_data) > 0:
|
|
args.update({k: v.filename if isinstance(v, UploadFile) else v for k, v in form_data.items()})
|
|
else:
|
|
if body_data:
|
|
json_data = await request.json()
|
|
if not isinstance(json_data, dict):
|
|
json_data = {
|
|
f'{type(json_data)}_to_dict_data': json_data.decode('utf-8')
|
|
if isinstance(json_data, bytes)
|
|
else json_data
|
|
}
|
|
args.update(json_data)
|
|
return args
|
|
|
|
@staticmethod
|
|
@sync_to_async
|
|
def desensitization(args: dict) -> dict | None:
|
|
"""
|
|
脱敏处理
|
|
|
|
:param args:
|
|
:return:
|
|
"""
|
|
if not args:
|
|
args = None
|
|
else:
|
|
match settings.OPERA_LOG_ENCRYPT_TYPE:
|
|
case OperaLogCipherType.aes:
|
|
for key in args.keys():
|
|
if key in settings.OPERA_LOG_ENCRYPT_KEY_INCLUDE:
|
|
args[key] = (AESCipher(settings.OPERA_LOG_ENCRYPT_SECRET_KEY).encrypt(args[key])).hex()
|
|
case OperaLogCipherType.md5:
|
|
for key in args.keys():
|
|
if key in settings.OPERA_LOG_ENCRYPT_KEY_INCLUDE:
|
|
args[key] = Md5Cipher.encrypt(args[key])
|
|
case OperaLogCipherType.itsdangerous:
|
|
for key in args.keys():
|
|
if key in settings.OPERA_LOG_ENCRYPT_KEY_INCLUDE:
|
|
args[key] = ItsDCipher(settings.OPERA_LOG_ENCRYPT_SECRET_KEY).encrypt(args[key])
|
|
case OperaLogCipherType.plan:
|
|
pass
|
|
case _:
|
|
for key in args.keys():
|
|
if key in settings.OPERA_LOG_ENCRYPT_KEY_INCLUDE:
|
|
args[key] = '******'
|
|
return args
|