新增了插件相关的完整领域模型、应用服务、基础设施实现,包括: 1. 插件状态、注册模式、来源等基础枚举和数据结构 2. 插件清单解析、发现、加载工具类 3. 插件注册表领域服务和内存存储实现 4. 插件相关的命令、查询、事件定义 5. 插件REST API接口和DTO映射 6. 集成了原有通道适配器到插件系统 7. 新增内置插件注册和自动发现能力
46 lines
1.7 KiB
Python
46 lines
1.7 KiB
Python
from __future__ import annotations
|
|
|
|
from yuxi.channel.domain.model.message.peer import Peer
|
|
from yuxi.channel.domain.model.message.unified_message import UnifiedMessage
|
|
from yuxi.channel.domain.model.shared.channel_type import ChannelType
|
|
|
|
|
|
class HooksTranslator:
|
|
@staticmethod
|
|
def translate(raw: dict) -> UnifiedMessage:
|
|
mapping = raw.pop("_hook_mapping", None)
|
|
if not mapping:
|
|
raise ValueError("no hook mapping in raw")
|
|
|
|
agent_id = raw.get("agent_id", mapping.default_agent_id)
|
|
if not mapping.allowed_agent_ids or agent_id not in mapping.allowed_agent_ids:
|
|
agent_id = mapping.default_agent_id
|
|
|
|
session_key = mapping.default_session_key
|
|
if mapping.allow_request_session_key:
|
|
req_key = raw.get("session_key", "")
|
|
if req_key:
|
|
if not mapping.allowed_session_key_prefixes or any(
|
|
req_key.startswith(p) for p in mapping.allowed_session_key_prefixes
|
|
):
|
|
session_key = req_key
|
|
|
|
strategy = mapping.session_key_strategy
|
|
|
|
return UnifiedMessage(
|
|
message_id=raw.get("id", ""),
|
|
channel_type=ChannelType.HOOKS,
|
|
sender=Peer(id="hooks", name="Hooks", kind="system"),
|
|
content=raw.get("content", raw.get("text", "")),
|
|
metadata={
|
|
"source": "hooks",
|
|
"match_path": mapping.match_path,
|
|
"session_key_strategy": strategy,
|
|
"session_key": session_key,
|
|
"session_key_prefix": mapping.match_path,
|
|
"deliver": mapping.deliver,
|
|
},
|
|
agent_config_id=agent_id,
|
|
raw_payload=raw,
|
|
)
|