mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-21 04:46:26 +00:00
此次提交进行了大规模的架构重构: 1. 移除所有平台租户相关模块和代码,包括租户管理、套餐、订单、发票等功能 2. 将菜单模块从platform迁移到system模块,统一系统功能入口 3. 移除租户隔离相关的模型混入、中间件和配置 4. 简化文件上传、SSE事件总线、定时任务等模块的租户逻辑 5. 重构所有业务schema和模型,移除租户相关字段和关联 6. 清理初始化脚本、模板和常量中的租户相关代码 7. 简化认证和权限控制逻辑,移除数据范围检查相关代码
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 MenuCreateSchema, MenuOutSchema, MenuQueryParam, MenuUpdateSchema
|
|
from .service import MenuService
|
|
|
|
MenuRouter = APIRouter(route_class=OperationLogRoute, prefix="/menu", tags=["菜单管理"])
|
|
|
|
_MENU_NS = "menu"
|
|
|
|
|
|
@MenuRouter.get("/tree", summary="查询菜单树", response_model=ResponseSchema[list[MenuOutSchema]])
|
|
@cache(expire=300, namespace=_MENU_NS)
|
|
async def get_menu_tree_controller(
|
|
auth: Annotated[AuthSchema, Security(AuthPermission(["module_system:menu:query"]))],
|
|
db: Annotated[AsyncSession, Depends(db_getter)],
|
|
search: Annotated[MenuQueryParam, Query()],
|
|
) -> JSONResponse:
|
|
order_by = [{"order": "asc"}]
|
|
result_dict_tree = await MenuService(auth, db).tree(search=search, order_by=order_by)
|
|
return SuccessResponse(data=result_dict_tree, msg="查询菜单树成功")
|
|
|
|
|
|
@MenuRouter.get("/detail/{id}", summary="查询菜单详情", response_model=ResponseSchema[MenuOutSchema])
|
|
async def get_obj_detail_controller(
|
|
auth: Annotated[AuthSchema, Security(AuthPermission(["module_system:menu:detail"]))],
|
|
db: Annotated[AsyncSession, Depends(db_getter)],
|
|
id: Annotated[int, Path(description="菜单ID", ge=1)],
|
|
) -> JSONResponse:
|
|
result_dict = await MenuService(auth, db).detail(id=id)
|
|
return SuccessResponse(data=result_dict, msg="查询菜单详情成功")
|
|
|
|
|
|
@MenuRouter.post("/create", status_code=status.HTTP_201_CREATED, summary="创建菜单", response_model=ResponseSchema[MenuOutSchema])
|
|
async def create_obj_controller(
|
|
auth: Annotated[AuthSchema, Security(AuthPermission(["module_system:menu:create"]))],
|
|
db: Annotated[AsyncSession, Depends(db_getter)],
|
|
data: Annotated[MenuCreateSchema, Body(description="菜单创建参数")],
|
|
) -> JSONResponse:
|
|
result_dict = await MenuService(auth, db).create(data=data)
|
|
await FastAPICache.clear(namespace=_MENU_NS)
|
|
return SuccessResponse(data=result_dict, msg="创建菜单成功")
|
|
|
|
|
|
@MenuRouter.put("/update/{id}", summary="修改菜单", response_model=ResponseSchema[MenuOutSchema])
|
|
async def update_obj_controller(
|
|
auth: Annotated[AuthSchema, Security(AuthPermission(["module_system:menu:update"]))],
|
|
db: Annotated[AsyncSession, Depends(db_getter)],
|
|
id: Annotated[int, Path(description="菜单ID", ge=1)],
|
|
data: Annotated[MenuUpdateSchema, Body(description="菜单修改参数")],
|
|
) -> JSONResponse:
|
|
result_dict = await MenuService(auth, db).update(id=id, data=data)
|
|
await FastAPICache.clear(namespace=_MENU_NS)
|
|
return SuccessResponse(data=result_dict, msg="修改菜单成功")
|
|
|
|
|
|
@MenuRouter.delete("/delete", summary="删除菜单", response_model=ResponseSchema[None])
|
|
async def delete_obj_controller(
|
|
auth: Annotated[AuthSchema, Security(AuthPermission(["module_system:menu:delete"]))],
|
|
db: Annotated[AsyncSession, Depends(db_getter)],
|
|
ids: Annotated[list[int], Body(description="菜单ID列表")],
|
|
) -> JSONResponse:
|
|
await MenuService(auth, db).delete(ids=ids)
|
|
await FastAPICache.clear(namespace=_MENU_NS)
|
|
return SuccessResponse(msg="删除菜单成功")
|
|
|
|
|
|
@MenuRouter.patch("/status/batch", summary="批量修改菜单状态", response_model=ResponseSchema[None])
|
|
async def batch_set_available_obj_controller(
|
|
auth: Annotated[AuthSchema, Security(AuthPermission(["module_system:menu:patch"]))],
|
|
db: Annotated[AsyncSession, Depends(db_getter)],
|
|
data: Annotated[BatchSetAvailable, Body(description="状态设置")],
|
|
) -> JSONResponse:
|
|
await MenuService(auth, db).set_available(data=data)
|
|
await FastAPICache.clear(namespace=_MENU_NS)
|
|
return SuccessResponse(msg="批量修改菜单状态成功")
|