mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-21 04:46:26 +00:00
- 移除各模块查询schema中的自定义model_validator,统一通过search_to_dict处理搜索参数 - 为需要的字段添加json_schema_extra标记查询操作类型 - 重构base_crud的条件解析逻辑,支持直接处理普通字符串、数字类型参数 - 重构base_schema中的公共查询参数校验逻辑,简化时间范围和创建更新人参数处理 - 修复菜单查询的异步懒加载问题,添加多级预加载 - 调整日志打印配置,关闭uvicorn.access重复日志 - 修复前端路由跳转路径错误 - 调整弹窗宽度适配内容 - 修复测试环境限流器未注册问题 - 清理无用的导入和废弃函数
87 lines
4.0 KiB
Python
87 lines
4.0 KiB
Python
from typing import Annotated
|
|
|
|
from fastapi import APIRouter, Body, Depends, Path, Query, Security, status
|
|
from fastapi.responses import JSONResponse
|
|
from fastapi_cache import FastAPICache
|
|
from fastapi_cache.decorator import cache
|
|
from sqlalchemy.ext.asyncio import AsyncSession
|
|
|
|
from app.common.response import ResponseSchema, SuccessResponse
|
|
from app.core.base_schema import AuthSchema, BatchSetAvailable
|
|
from app.core.dependencies import AuthPermission, db_getter
|
|
from app.core.router_class import OperationLogRoute
|
|
|
|
from .schema import DeptCreateSchema, DeptOutSchema, DeptQueryParam, DeptUpdateSchema
|
|
from .service import DeptService
|
|
|
|
DeptRouter = APIRouter(route_class=OperationLogRoute, prefix="/dept", tags=["部门管理"])
|
|
|
|
_DEPT_NS = "dept"
|
|
|
|
|
|
@DeptRouter.get("/tree", summary="查询部门树", response_model=ResponseSchema[list[DeptOutSchema]])
|
|
@cache(expire=300, namespace=_DEPT_NS)
|
|
async def get_dept_tree_controller(
|
|
auth: Annotated[AuthSchema, Security(AuthPermission(["module_system:dept:query"]))],
|
|
db: Annotated[AsyncSession, Depends(db_getter)],
|
|
search: Annotated[DeptQueryParam, Query()],
|
|
) -> JSONResponse:
|
|
order_by = [{"order": "asc"}]
|
|
result_dict_tree = await DeptService(auth, db).tree(search=search, order_by=order_by)
|
|
return SuccessResponse(data=result_dict_tree, msg="查询部门树成功")
|
|
|
|
|
|
@DeptRouter.get("/detail/{id}", summary="查询部门详情", response_model=ResponseSchema[DeptOutSchema])
|
|
async def get_obj_detail_controller(
|
|
auth: Annotated[AuthSchema, Security(AuthPermission(["module_system:dept:detail"]))],
|
|
db: Annotated[AsyncSession, Depends(db_getter)],
|
|
id: Annotated[int, Path(description="部门ID", ge=1)],
|
|
) -> JSONResponse:
|
|
result_dict = await DeptService(auth, db).detail(id=id)
|
|
return SuccessResponse(data=result_dict, msg="查询部门详情成功")
|
|
|
|
|
|
@DeptRouter.post("/create", status_code=status.HTTP_201_CREATED, summary="创建部门", response_model=ResponseSchema[DeptOutSchema])
|
|
async def create_obj_controller(
|
|
auth: Annotated[AuthSchema, Security(AuthPermission(["module_system:dept:create"]))],
|
|
db: Annotated[AsyncSession, Depends(db_getter)],
|
|
data: Annotated[DeptCreateSchema, Body(description="部门创建参数")],
|
|
) -> JSONResponse:
|
|
result_dict = await DeptService(auth, db).create(data=data)
|
|
await FastAPICache.clear(namespace=_DEPT_NS)
|
|
return SuccessResponse(data=result_dict, msg="创建部门成功")
|
|
|
|
|
|
@DeptRouter.put("/update/{id}", summary="修改部门", response_model=ResponseSchema[DeptOutSchema])
|
|
async def update_obj_controller(
|
|
auth: Annotated[AuthSchema, Security(AuthPermission(["module_system:dept:update"]))],
|
|
db: Annotated[AsyncSession, Depends(db_getter)],
|
|
id: Annotated[int, Path(description="部门ID", ge=1)],
|
|
data: Annotated[DeptUpdateSchema, Body(description="部门修改参数")],
|
|
) -> JSONResponse:
|
|
result_dict = await DeptService(auth, db).update(id=id, data=data)
|
|
await FastAPICache.clear(namespace=_DEPT_NS)
|
|
return SuccessResponse(data=result_dict, msg="修改部门成功")
|
|
|
|
|
|
@DeptRouter.delete("/delete", summary="删除部门", response_model=ResponseSchema[None])
|
|
async def delete_obj_controller(
|
|
auth: Annotated[AuthSchema, Security(AuthPermission(["module_system:dept:delete"]))],
|
|
db: Annotated[AsyncSession, Depends(db_getter)],
|
|
ids: Annotated[list[int], Body(description="ID列表")],
|
|
) -> JSONResponse:
|
|
await DeptService(auth, db).delete(ids=ids)
|
|
await FastAPICache.clear(namespace=_DEPT_NS)
|
|
return SuccessResponse(msg="删除部门成功")
|
|
|
|
|
|
@DeptRouter.patch("/status/batch", summary="批量修改部门状态", response_model=ResponseSchema[None])
|
|
async def batch_set_available_obj_controller(
|
|
auth: Annotated[AuthSchema, Security(AuthPermission(["module_system:dept:patch"]))],
|
|
db: Annotated[AsyncSession, Depends(db_getter)],
|
|
data: Annotated[BatchSetAvailable, Body(description="状态设置")],
|
|
) -> JSONResponse:
|
|
await DeptService(auth, db).batch_set_available(data=data)
|
|
await FastAPICache.clear(namespace=_DEPT_NS)
|
|
return SuccessResponse(msg="批量修改部门状态成功")
|