mirror of
https://github.com/fastapi-practices/fastapi-best-architecture.git
synced 2026-09-21 05:02:49 +00:00
* Update the ruff rules and format the code * Update the per-file-ignores * Update the ci * Update rules * Fix codes * Fix pagination * Update rules
65 lines
1.8 KiB
Python
65 lines
1.8 KiB
Python
from sqlalchemy import Select
|
|
|
|
from backend.app.admin.crud.crud_opera_log import opera_log_dao
|
|
from backend.app.admin.schema.opera_log import CreateOperaLogParam, DeleteOperaLogParam
|
|
from backend.database.db import async_db_session
|
|
|
|
|
|
class OperaLogService:
|
|
"""操作日志服务类"""
|
|
|
|
@staticmethod
|
|
async def get_select(*, username: str | None, status: int | None, ip: str | None) -> Select:
|
|
"""
|
|
获取操作日志列表查询条件
|
|
|
|
:param username: 用户名
|
|
:param status: 状态
|
|
:param ip: IP 地址
|
|
:return:
|
|
"""
|
|
return await opera_log_dao.get_list(username=username, status=status, ip=ip)
|
|
|
|
@staticmethod
|
|
async def create(*, obj: CreateOperaLogParam) -> None:
|
|
"""
|
|
创建操作日志
|
|
|
|
:param obj: 操作日志创建参数
|
|
:return:
|
|
"""
|
|
async with async_db_session.begin() as db:
|
|
await opera_log_dao.create(db, obj)
|
|
|
|
@staticmethod
|
|
async def bulk_create(*, objs: list[CreateOperaLogParam]) -> None:
|
|
"""
|
|
批量创建操作日志
|
|
|
|
:param objs: 操作日志创建参数列表
|
|
:return:
|
|
"""
|
|
async with async_db_session.begin() as db:
|
|
await opera_log_dao.bulk_create(db, objs)
|
|
|
|
@staticmethod
|
|
async def delete(*, obj: DeleteOperaLogParam) -> int:
|
|
"""
|
|
批量删除操作日志
|
|
|
|
:param obj: 日志 ID 列表
|
|
:return:
|
|
"""
|
|
async with async_db_session.begin() as db:
|
|
count = await opera_log_dao.delete(db, obj.pks)
|
|
return count
|
|
|
|
@staticmethod
|
|
async def delete_all() -> None:
|
|
"""清空所有操作日志"""
|
|
async with async_db_session.begin() as db:
|
|
await opera_log_dao.delete_all(db)
|
|
|
|
|
|
opera_log_service: OperaLogService = OperaLogService()
|