mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-14 13:42:56 +08:00
Some checks failed
检查bot是否运行正常 / bot check (push) Has been cancelled
CodeQL Code Security Analysis / Analyze (${{ matrix.language }}) (none, python) (push) Has been cancelled
Sequential Lint and Type Check / ruff-call (push) Has been cancelled
Release Drafter / Update Release Draft (push) Has been cancelled
Force Sync to Aliyun / sync (push) Has been cancelled
Update Version / update-version (push) Has been cancelled
Sequential Lint and Type Check / pyright-call (push) Has been cancelled
* ✨ feat(group-settings): 实现群插件配置管理系统 - 引入 GroupSettingsService 服务,提供统一的群插件配置管理接口 - 新增 GroupPluginSetting 模型,用于持久化存储插件在不同群组的配置 - 插件扩展数据 PluginExtraData 增加 group_config_model 字段,用于注册分群配置模型 - 新增 GetGroupConfig 依赖注入,允许插件轻松获取和解析当前群组的配置 【核心服务 GroupSettingsService】 - 支持按群组、插件名和键设置、获取和删除配置项 - 实现配置聚合缓存机制,提升配置读取效率,减少数据库查询 - 支持配置继承与覆盖逻辑(群配置覆盖全局默认值) - 提供批量设置功能 set_bulk,方便为多个群组同时更新配置 【管理与缓存】 - 新增超级用户命令 pconf (plugin_config_manager),用于命令行管理插件的分群和全局配置 - 新增 CacheType.GROUP_PLUGIN_SETTINGS 缓存类型并注册 - 增加 Pydantic model_construct 兼容函数 * 🐛 fix(codeql): 移除对 JavaScript 和 TypeScript 的分析支持 --------- Co-authored-by: webjoin111 <455457521@qq.com>
279 lines
6.2 KiB
Python
279 lines
6.2 KiB
Python
from collections.abc import Callable
|
|
from datetime import datetime
|
|
from typing import Any, Literal
|
|
|
|
from pydantic import BaseModel, Field
|
|
|
|
from zhenxun.utils.enum import BlockType, LimitWatchType, PluginLimitType, PluginType
|
|
from zhenxun.utils.pydantic_compat import model_dump
|
|
|
|
__all__ = [
|
|
"AICallableParam",
|
|
"AICallableProperties",
|
|
"AICallableTag",
|
|
"BaseBlock",
|
|
"Command",
|
|
"ConfigModel",
|
|
"Example",
|
|
"PluginCdBlock",
|
|
"PluginCountBlock",
|
|
"PluginExtraData",
|
|
"PluginSetting",
|
|
"RegisterConfig",
|
|
"Task",
|
|
]
|
|
|
|
|
|
class Example(BaseModel):
|
|
"""
|
|
示例
|
|
"""
|
|
|
|
exec: str
|
|
"""执行命令"""
|
|
description: str = ""
|
|
"""命令描述"""
|
|
|
|
|
|
class Command(BaseModel):
|
|
"""
|
|
具体参数说明
|
|
"""
|
|
|
|
command: str
|
|
"""命令名称"""
|
|
params: list[str] = Field(default_factory=list)
|
|
"""参数"""
|
|
description: str = ""
|
|
"""描述"""
|
|
examples: list[Example] = Field(default_factory=list)
|
|
"""示例列表"""
|
|
|
|
|
|
class RegisterConfig(BaseModel):
|
|
"""
|
|
注册配置项
|
|
"""
|
|
|
|
key: str
|
|
"""配置项键"""
|
|
value: Any
|
|
"""配置项值"""
|
|
module: str | None = None
|
|
"""模块名"""
|
|
help: str | None
|
|
"""配置注解"""
|
|
default_value: Any | None = None
|
|
"""默认值"""
|
|
type: object = None
|
|
"""参数类型"""
|
|
arg_parser: Callable | None = None
|
|
"""参数解析"""
|
|
|
|
|
|
class ConfigModel(BaseModel):
|
|
"""
|
|
配置项
|
|
"""
|
|
|
|
value: Any
|
|
"""配置项值"""
|
|
help: str | None
|
|
"""配置注解"""
|
|
default_value: Any | None = None
|
|
"""默认值"""
|
|
type: Any = None
|
|
"""参数类型"""
|
|
arg_parser: Callable | None = None
|
|
"""参数解析"""
|
|
|
|
def to_dict(self, **kwargs):
|
|
return model_dump(self, **kwargs)
|
|
|
|
|
|
class BaseBlock(BaseModel):
|
|
"""
|
|
插件阻断基本类(插件阻断限制)
|
|
"""
|
|
|
|
status: bool = True
|
|
"""限制状态"""
|
|
check_type: BlockType = BlockType.ALL
|
|
"""检查类型"""
|
|
watch_type: LimitWatchType = LimitWatchType.USER
|
|
"""监听对象"""
|
|
result: str | None = None
|
|
"""阻断时回复内容"""
|
|
_type: PluginLimitType = PluginLimitType.BLOCK
|
|
"""类型"""
|
|
|
|
def to_dict(self, **kwargs):
|
|
return model_dump(self, **kwargs)
|
|
|
|
|
|
class PluginCdBlock(BaseBlock):
|
|
"""
|
|
插件cd限制
|
|
"""
|
|
|
|
cd: int = 5
|
|
"""cd"""
|
|
_type: PluginLimitType = PluginLimitType.CD
|
|
"""类型"""
|
|
|
|
|
|
class PluginCountBlock(BaseBlock):
|
|
"""
|
|
插件次数限制
|
|
"""
|
|
|
|
max_count: int
|
|
"""最大调用次数"""
|
|
_type: PluginLimitType = PluginLimitType.COUNT
|
|
"""类型"""
|
|
|
|
|
|
class PluginSetting(BaseModel):
|
|
"""
|
|
插件基本配置
|
|
"""
|
|
|
|
level: int = 5
|
|
"""群权限等级"""
|
|
default_status: bool = True
|
|
"""进群默认开关状态"""
|
|
limit_superuser: bool = False
|
|
"""是否限制超级用户"""
|
|
cost_gold: int = 0
|
|
"""调用插件花费金币"""
|
|
impression: float = 0.0
|
|
"""调用插件好感度限制"""
|
|
|
|
|
|
class AICallableProperties(BaseModel):
|
|
type: str
|
|
"""参数类型"""
|
|
description: str
|
|
"""参数描述"""
|
|
|
|
|
|
class AICallableParam(BaseModel):
|
|
type: str
|
|
"""类型"""
|
|
properties: dict[str, AICallableProperties]
|
|
"""参数列表"""
|
|
required: list[str]
|
|
"""必要参数"""
|
|
|
|
|
|
class AICallableTag(BaseModel):
|
|
name: str
|
|
"""工具名称"""
|
|
parameters: AICallableParam | None = None
|
|
"""工具参数"""
|
|
description: str
|
|
"""工具描述"""
|
|
func: Callable | None = None
|
|
"""工具函数"""
|
|
|
|
def to_dict(self):
|
|
result = model_dump(self)
|
|
del result["func"]
|
|
return result
|
|
|
|
|
|
class SchedulerModel(BaseModel):
|
|
trigger: Literal["date", "interval", "cron"]
|
|
"""trigger"""
|
|
day: int | None = None
|
|
"""天数"""
|
|
hour: int | None = None
|
|
"""小时"""
|
|
minute: int | None = None
|
|
"""分钟"""
|
|
second: int | None = None
|
|
"""秒"""
|
|
run_date: datetime | None = None
|
|
"""运行日期"""
|
|
id: str | None = None
|
|
"""id"""
|
|
max_instances: int | None = None
|
|
"""最大运行实例"""
|
|
args: list | None = None
|
|
"""参数"""
|
|
kwargs: dict | None = None
|
|
"""参数"""
|
|
|
|
|
|
class Task(BaseBlock):
|
|
module: str
|
|
"""被动技能模块名"""
|
|
name: str
|
|
"""被动技能名称"""
|
|
status: bool = True
|
|
"""全局开关状态"""
|
|
create_status: bool = False
|
|
"""初次加载默认开关状态"""
|
|
default_status: bool = True
|
|
"""进群时默认状态"""
|
|
scheduler: SchedulerModel | None = None
|
|
"""定时任务配置"""
|
|
run_func: Callable | None = None
|
|
"""运行函数"""
|
|
check: Callable | None = None
|
|
"""检查函数"""
|
|
check_args: list = Field(default_factory=list)
|
|
"""检查函数参数"""
|
|
|
|
|
|
class PluginExtraData(BaseModel):
|
|
"""
|
|
插件扩展信息
|
|
"""
|
|
|
|
author: str | None = None
|
|
"""作者"""
|
|
version: str | None = None
|
|
"""版本"""
|
|
plugin_type: PluginType = PluginType.NORMAL
|
|
"""插件类型"""
|
|
menu_type: str = "功能"
|
|
"""菜单类型"""
|
|
admin_level: int | None = None
|
|
"""管理员插件所需权限等级"""
|
|
configs: list[RegisterConfig] | None = None
|
|
"""插件配置"""
|
|
setting: PluginSetting | None = None
|
|
"""插件基本配置"""
|
|
limits: list[BaseBlock | PluginCdBlock | PluginCountBlock] | None = None
|
|
"""插件限制"""
|
|
commands: list[Command] = Field(default_factory=list)
|
|
"""命令列表,用于说明帮助"""
|
|
ignore_prompt: bool = False
|
|
"""是否忽略阻断提示"""
|
|
tasks: list[Task] | None = None
|
|
"""技能被动"""
|
|
superuser_help: str | None = None
|
|
"""超级用户帮助"""
|
|
aliases: set[str] = Field(default_factory=set)
|
|
"""额外名称"""
|
|
sql_list: list[str] | None = None
|
|
"""常用sql"""
|
|
is_show: bool = True
|
|
"""是否显示在菜单中"""
|
|
smart_tools: list[AICallableTag] | None = None
|
|
"""智能模式函数工具集"""
|
|
introduction: str | None = None
|
|
"""BOT自我介绍时插件的自我介绍"""
|
|
precautions: list[str] | None = None
|
|
"""BOT自我介绍时插件的注意事项"""
|
|
|
|
def to_dict(self, **kwargs):
|
|
return model_dump(self, **kwargs)
|
|
|
|
group_config_model: type[BaseModel] | None = None
|
|
"""插件的分群配置模型"""
|
|
|
|
class Config:
|
|
arbitrary_types_allowed = True
|