mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-20 20:39:55 +00:00
refactor: 优化代码结构和可读性 feat: 添加http_limit模块实现请求限制功能 fix: 修复异步任务中使用time.sleep的问题 chore: 更新依赖项并添加pytest测试框架 docs: 更新项目描述信息 perf: 优化Redis序列化方式使用JSON替代pickle test: 添加测试相关配置和依赖
113 lines
3.2 KiB
Python
113 lines
3.2 KiB
Python
from collections.abc import Sequence
|
|
from typing import Any
|
|
|
|
from app.api.v1.module_system.auth.schema import AuthSchema
|
|
from app.core.base_crud import CRUDBase
|
|
|
|
from .model import McpModel
|
|
from .schema import McpCreateSchema, McpUpdateSchema
|
|
|
|
|
|
class McpCRUD(CRUDBase[McpModel, McpCreateSchema, McpUpdateSchema]):
|
|
"""MCP 服务器数据层"""
|
|
|
|
def __init__(self, auth: AuthSchema) -> None:
|
|
"""
|
|
初始化CRUD
|
|
|
|
参数:
|
|
- auth (AuthSchema): 认证信息模型
|
|
"""
|
|
self.auth = auth
|
|
super().__init__(model=McpModel, auth=auth)
|
|
|
|
async def get_by_id_crud(
|
|
self, id: int, preload: list[str | Any] | None = None
|
|
) -> McpModel | None:
|
|
"""
|
|
获取MCP服务器详情
|
|
|
|
参数:
|
|
- id (int): MCP服务器ID
|
|
- preload (list[str | Any] | None): 预加载关系,未提供时使用模型默认项
|
|
|
|
返回:
|
|
- McpModel | None: MCP服务器模型实例(如果存在)
|
|
"""
|
|
return await self.get(id=id, preload=preload)
|
|
|
|
async def get_by_name_crud(
|
|
self, name: str, preload: list[str | Any] | None = None
|
|
) -> McpModel | None:
|
|
"""
|
|
通过名称获取MCP服务器
|
|
|
|
参数:
|
|
- name (str): MCP服务器名称
|
|
- preload (list[str | Any] | None): 预加载关系,未提供时使用模型默认项
|
|
|
|
返回:
|
|
- Optional[McpModel]: MCP服务器模型实例(如果存在)
|
|
"""
|
|
return await self.get(name=name, preload=preload)
|
|
|
|
async def get_list_crud(
|
|
self,
|
|
search: dict | None = None,
|
|
order_by: list[dict[str, str]] | None = None,
|
|
preload: list[str | Any] | None = None,
|
|
) -> Sequence[McpModel]:
|
|
"""
|
|
列表查询MCP服务器
|
|
|
|
参数:
|
|
- search (dict | None): 查询参数字典
|
|
- order_by (list[dict[str, str]] | None): 排序参数列表
|
|
- preload (list[str | Any] | None): 预加载关系,未提供时使用模型默认项
|
|
|
|
返回:
|
|
- Sequence[McpModel]: MCP服务器模型实例序列
|
|
"""
|
|
return await self.list(
|
|
search=search or {},
|
|
order_by=order_by or [{"id": "asc"}],
|
|
preload=preload,
|
|
)
|
|
|
|
async def create_crud(self, data: McpCreateSchema) -> McpModel | None:
|
|
"""
|
|
创建MCP服务器
|
|
|
|
参数:
|
|
- data (McpCreateSchema): 创建MCP服务器模型
|
|
|
|
返回:
|
|
- Optional[McpModel]: 创建的MCP服务器模型实例(如果成功)
|
|
"""
|
|
return await self.create(data=data)
|
|
|
|
async def update_crud(self, id: int, data: McpUpdateSchema) -> McpModel | None:
|
|
"""
|
|
更新MCP服务器
|
|
|
|
参数:
|
|
- id (int): MCP服务器ID
|
|
- data (McpUpdateSchema): 更新MCP服务器模型
|
|
|
|
返回:
|
|
- McpModel | None: 更新的MCP服务器模型实例(如果成功)
|
|
"""
|
|
return await self.update(id=id, data=data)
|
|
|
|
async def delete_crud(self, ids: list[int]) -> None:
|
|
"""
|
|
批量删除MCP服务器
|
|
|
|
参数:
|
|
- ids (list[int]): MCP服务器ID列表
|
|
|
|
返回:
|
|
- None
|
|
"""
|
|
return await self.delete(ids=ids)
|