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>
42 lines
1.6 KiB
Python
42 lines
1.6 KiB
Python
"""
|
|
缓存初始化模块
|
|
|
|
负责注册各种缓存类型,实现按需缓存机制
|
|
"""
|
|
|
|
from zhenxun.models.ban_console import BanConsole
|
|
from zhenxun.models.bot_console import BotConsole
|
|
from zhenxun.models.group_console import GroupConsole
|
|
from zhenxun.models.group_plugin_setting import GroupPluginSetting
|
|
from zhenxun.models.level_user import LevelUser
|
|
from zhenxun.models.plugin_info import PluginInfo
|
|
from zhenxun.models.user_console import UserConsole
|
|
from zhenxun.services.cache import CacheRegistry, cache_config
|
|
from zhenxun.services.cache.config import CacheMode
|
|
from zhenxun.services.log import logger
|
|
from zhenxun.utils.enum import CacheType
|
|
|
|
|
|
# 注册缓存类型
|
|
def register_cache_types():
|
|
"""注册所有缓存类型"""
|
|
CacheRegistry.register(CacheType.PLUGINS, PluginInfo)
|
|
CacheRegistry.register(CacheType.GROUPS, GroupConsole)
|
|
CacheRegistry.register(CacheType.BOT, BotConsole)
|
|
CacheRegistry.register(CacheType.USERS, UserConsole)
|
|
CacheRegistry.register(
|
|
CacheType.GROUP_PLUGIN_SETTINGS,
|
|
GroupPluginSetting,
|
|
key_format="{group_id}_{plugin_name}_{key}",
|
|
)
|
|
CacheRegistry.register(
|
|
CacheType.LEVEL, LevelUser, key_format="{user_id}_{group_id}"
|
|
)
|
|
CacheRegistry.register(CacheType.BAN, BanConsole, key_format="{user_id}_{group_id}")
|
|
|
|
if cache_config.cache_mode == CacheMode.NONE:
|
|
logger.info("缓存功能已禁用,将直接从数据库获取数据")
|
|
else:
|
|
logger.info(f"已注册所有缓存类型,缓存模式: {cache_config.cache_mode}")
|
|
logger.info("使用增量缓存模式,数据将按需加载到缓存中")
|