mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-15 06:12:53 +08:00
- 引入 GroupSettingsService 服务,提供统一的群插件配置管理接口 - 新增 GroupPluginSetting 模型,用于持久化存储插件在不同群组的配置 - 插件扩展数据 PluginExtraData 增加 group_config_model 字段,用于注册分群配置模型 - 新增 GetGroupConfig 依赖注入,允许插件轻松获取和解析当前群组的配置 【核心服务 GroupSettingsService】 - 支持按群组、插件名和键设置、获取和删除配置项 - 实现配置聚合缓存机制,提升配置读取效率,减少数据库查询 - 支持配置继承与覆盖逻辑(群配置覆盖全局默认值) - 提供批量设置功能 set_bulk,方便为多个群组同时更新配置 【管理与缓存】 - 新增超级用户命令 pconf (plugin_config_manager),用于命令行管理插件的分群和全局配置 - 新增 CacheType.GROUP_PLUGIN_SETTINGS 缓存类型并注册 - 增加 Pydantic model_construct 兼容函数
30 lines
1.1 KiB
Python
30 lines
1.1 KiB
Python
from tortoise import fields
|
|
|
|
from zhenxun.services.db_context import Model
|
|
from zhenxun.utils.enum import CacheType
|
|
|
|
|
|
class GroupPluginSetting(Model):
|
|
id = fields.IntField(pk=True, generated=True, auto_increment=True)
|
|
"""自增ID"""
|
|
group_id = fields.CharField(max_length=255, indexed=True, description="群组ID")
|
|
"""群组ID"""
|
|
plugin_name = fields.CharField(
|
|
max_length=255, indexed=True, description="插件模块名"
|
|
)
|
|
"""插件模块名"""
|
|
settings = fields.JSONField(description="插件的完整配置 (JSON)")
|
|
"""插件的完整配置 (JSON)"""
|
|
updated_at = fields.DatetimeField(auto_now=True, description="最后更新时间")
|
|
"""最后更新时间"""
|
|
|
|
cache_type = CacheType.GROUP_PLUGIN_SETTINGS
|
|
"""缓存类型"""
|
|
cache_key_field = ("group_id", "plugin_name")
|
|
"""缓存键字段"""
|
|
|
|
class Meta: # pyright: ignore [reportIncompatibleVariableOverride]
|
|
table = "group_plugin_settings"
|
|
table_description = "插件分群通用配置表"
|
|
unique_together = ("group_id", "plugin_name")
|