mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-23 13:13:09 +00:00
1. 重构后端API路由、CRUD与模块结构,整合日志管理,移除废弃demo代码 2. 优化前端组件类型定义、样式与路由配置,修复权限判断逻辑 3. 调整默认排序规则、滚动条样式与工具类函数,更新依赖与配置文件 4. 修复多处类型不匹配与默认值问题,完善表单与菜单验证逻辑
208 lines
6.1 KiB
Python
208 lines
6.1 KiB
Python
from typing import Annotated
|
|
|
|
from fastapi import APIRouter, Body, Depends, Path
|
|
from fastapi.responses import JSONResponse
|
|
|
|
from app.common.response import ResponseSchema, SuccessResponse
|
|
from app.core.base_params import PaginationQueryParam
|
|
from app.core.base_schema import AuthSchema, PageResultSchema
|
|
from app.core.dependencies import AuthPermission
|
|
from app.core.router_class import OperationLogRoute
|
|
|
|
from .schema import (
|
|
WorkflowCreateSchema,
|
|
WorkflowExecuteResultSchema,
|
|
WorkflowExecuteSchema,
|
|
WorkflowOutSchema,
|
|
WorkflowQueryParam,
|
|
WorkflowUpdateSchema,
|
|
)
|
|
from .service import WorkflowService
|
|
|
|
WorkflowRouter = APIRouter(
|
|
route_class=OperationLogRoute, prefix="/workflow/definition", tags=["定时任务/工作流"]
|
|
)
|
|
|
|
|
|
@WorkflowRouter.get(
|
|
"/detail/{id}",
|
|
summary="工作流详情",
|
|
response_model=ResponseSchema[WorkflowOutSchema],
|
|
)
|
|
async def get_workflow_detail_controller(
|
|
id: Annotated[int, Path(description="工作流ID")],
|
|
auth: Annotated[
|
|
AuthSchema, Depends(AuthPermission(["module_task:workflow:definition:detail"]))
|
|
],
|
|
) -> JSONResponse:
|
|
"""
|
|
根据 ID 获取工作流详情(含画布 nodes/edges)。
|
|
|
|
参数:
|
|
- id (int): 工作流 ID。
|
|
- auth (AuthSchema): 认证信息。
|
|
|
|
返回:
|
|
- JSONResponse: 成功响应,data 为详情字典。
|
|
"""
|
|
result_dict = await WorkflowService.get_workflow_detail_service(auth=auth, id=id)
|
|
return SuccessResponse(data=result_dict, msg="获取工作流详情成功")
|
|
|
|
|
|
@WorkflowRouter.get(
|
|
"/list",
|
|
summary="工作流列表",
|
|
response_model=ResponseSchema[PageResultSchema[WorkflowOutSchema]],
|
|
)
|
|
async def get_workflow_list_controller(
|
|
page: Annotated[PaginationQueryParam, Depends()],
|
|
search: Annotated[WorkflowQueryParam, Depends()],
|
|
auth: Annotated[AuthSchema, Depends(AuthPermission(["module_task:workflow:definition:query"]))],
|
|
) -> JSONResponse:
|
|
"""
|
|
分页查询工作流列表。
|
|
|
|
参数:
|
|
- page (PaginationQueryParam): 分页与排序参数。
|
|
- search (WorkflowQueryParam): 查询条件。
|
|
- auth (AuthSchema): 认证信息。
|
|
|
|
返回:
|
|
- JSONResponse: 成功响应,data 为分页结果。
|
|
"""
|
|
result_dict = await WorkflowService.get_workflow_page_service(
|
|
auth=auth,
|
|
page_no=page.page_no,
|
|
page_size=page.page_size,
|
|
search=search,
|
|
order_by=page.order_by,
|
|
)
|
|
return SuccessResponse(data=result_dict, msg="查询工作流列表成功")
|
|
|
|
|
|
@WorkflowRouter.post(
|
|
"/create",
|
|
summary="创建工作流",
|
|
response_model=ResponseSchema[WorkflowOutSchema],
|
|
)
|
|
async def create_workflow_controller(
|
|
data: WorkflowCreateSchema,
|
|
auth: Annotated[
|
|
AuthSchema, Depends(AuthPermission(["module_task:workflow:definition:create"]))
|
|
],
|
|
) -> JSONResponse:
|
|
"""
|
|
创建草稿工作流。
|
|
|
|
参数:
|
|
- data (WorkflowCreateSchema): 创建体。
|
|
- auth (AuthSchema): 认证信息。
|
|
|
|
返回:
|
|
- JSONResponse: 成功响应,data 为新建工作流。
|
|
"""
|
|
result_dict = await WorkflowService.create_workflow_service(auth=auth, data=data)
|
|
return SuccessResponse(data=result_dict, msg="创建工作流成功")
|
|
|
|
|
|
@WorkflowRouter.put(
|
|
"/update/{id}",
|
|
summary="更新工作流",
|
|
response_model=ResponseSchema[WorkflowOutSchema],
|
|
)
|
|
async def update_workflow_controller(
|
|
id: Annotated[int, Path(description="工作流ID")],
|
|
data: WorkflowUpdateSchema,
|
|
auth: Annotated[
|
|
AuthSchema, Depends(AuthPermission(["module_task:workflow:definition:update"]))
|
|
],
|
|
) -> JSONResponse:
|
|
"""
|
|
更新工作流及画布。
|
|
|
|
参数:
|
|
- id (int): 工作流 ID。
|
|
- data (WorkflowUpdateSchema): 更新体。
|
|
- auth (AuthSchema): 认证信息。
|
|
|
|
返回:
|
|
- JSONResponse: 成功响应,data 为更新后的工作流。
|
|
"""
|
|
result_dict = await WorkflowService.update_workflow_service(auth=auth, id=id, data=data)
|
|
return SuccessResponse(data=result_dict, msg="更新工作流成功")
|
|
|
|
|
|
@WorkflowRouter.delete(
|
|
"/delete",
|
|
summary="删除工作流",
|
|
response_model=ResponseSchema[None],
|
|
)
|
|
async def delete_workflow_controller(
|
|
ids: Annotated[list[int], Body(description="ID列表")],
|
|
auth: Annotated[
|
|
AuthSchema, Depends(AuthPermission(["module_task:workflow:definition:delete"]))
|
|
],
|
|
) -> JSONResponse:
|
|
"""
|
|
批量删除工作流。
|
|
|
|
参数:
|
|
- ids (list[int]): 工作流 ID 列表。
|
|
- auth (AuthSchema): 认证信息。
|
|
|
|
返回:
|
|
- JSONResponse: 成功提示响应。
|
|
"""
|
|
await WorkflowService.delete_workflow_service(auth=auth, ids=ids)
|
|
return SuccessResponse(msg="删除工作流成功")
|
|
|
|
|
|
@WorkflowRouter.post(
|
|
"/publish/{id}",
|
|
summary="发布工作流",
|
|
response_model=ResponseSchema[WorkflowOutSchema],
|
|
)
|
|
async def publish_workflow_controller(
|
|
id: Annotated[int, Path(description="工作流ID")],
|
|
auth: Annotated[
|
|
AuthSchema, Depends(AuthPermission(["module_task:workflow:definition:update"]))
|
|
],
|
|
) -> JSONResponse:
|
|
"""
|
|
校验 DAG 无环后发布工作流。
|
|
|
|
参数:
|
|
- id (int): 工作流 ID。
|
|
- auth (AuthSchema): 认证信息。
|
|
|
|
返回:
|
|
- JSONResponse: 成功响应,data 为发布后工作流。
|
|
"""
|
|
result_dict = await WorkflowService.publish_workflow_service(auth=auth, id=id)
|
|
return SuccessResponse(data=result_dict, msg="发布工作流成功")
|
|
|
|
|
|
@WorkflowRouter.post(
|
|
"/execute",
|
|
summary="执行工作流",
|
|
response_model=ResponseSchema[WorkflowExecuteResultSchema],
|
|
)
|
|
async def execute_workflow_controller(
|
|
body: WorkflowExecuteSchema,
|
|
auth: Annotated[
|
|
AuthSchema, Depends(AuthPermission(["module_task:workflow:definition:execute"]))
|
|
],
|
|
) -> JSONResponse:
|
|
"""
|
|
使用 Prefect 按拓扑顺序执行已发布工作流。
|
|
|
|
参数:
|
|
- body (WorkflowExecuteSchema): 工作流 ID 与变量等。
|
|
- auth (AuthSchema): 认证信息。
|
|
|
|
返回:
|
|
- JSONResponse: 成功响应,data 为执行结果摘要。
|
|
"""
|
|
result_dict = await WorkflowService.execute_workflow_service(auth=auth, body=body)
|
|
return SuccessResponse(data=result_dict, msg="执行工作流完成")
|