mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-14 21:52:56 +08:00
69 lines
1.9 KiB
Python
69 lines
1.9 KiB
Python
from nonebot.permission import SUPERUSER
|
|
from nonebot.plugin import PluginMetadata
|
|
from nonebot.rule import to_me
|
|
from nonebot_plugin_alconna import Alconna, Arparma, on_alconna
|
|
from nonebot_plugin_apscheduler import scheduler
|
|
from nonebot_plugin_session import EventSession
|
|
|
|
from zhenxun.configs.config import Config
|
|
from zhenxun.configs.utils import PluginExtraData, RegisterConfig
|
|
from zhenxun.services.log import logger
|
|
from zhenxun.utils.enum import PluginType
|
|
from zhenxun.utils.message import MessageUtils
|
|
|
|
__plugin_meta__ = PluginMetadata(
|
|
name="重载配置",
|
|
description="重新加载config.yaml",
|
|
usage="""
|
|
重载配置
|
|
""".strip(),
|
|
extra=PluginExtraData(
|
|
author="HibiKier",
|
|
version="0.1",
|
|
plugin_type=PluginType.SUPERUSER,
|
|
configs=[
|
|
RegisterConfig(
|
|
key="AUTO_RELOAD",
|
|
value=False,
|
|
help="自动重载配置文件",
|
|
default_value=False,
|
|
type=bool,
|
|
),
|
|
RegisterConfig(
|
|
key="AUTO_RELOAD_TIME",
|
|
value=180,
|
|
help="自动重载配置文件时长",
|
|
default_value=180,
|
|
type=int,
|
|
),
|
|
],
|
|
).to_dict(),
|
|
)
|
|
|
|
_matcher = on_alconna(
|
|
Alconna(
|
|
"重载配置",
|
|
),
|
|
rule=to_me(),
|
|
permission=SUPERUSER,
|
|
priority=1,
|
|
block=True,
|
|
)
|
|
|
|
|
|
@_matcher.handle()
|
|
async def _(session: EventSession, arparma: Arparma):
|
|
Config.reload()
|
|
logger.debug("自动重载配置文件", arparma.header_result, session=session)
|
|
await MessageUtils.build_message("重载完成!").send(reply_to=True)
|
|
|
|
|
|
@scheduler.scheduled_job(
|
|
"interval",
|
|
seconds=Config.get_config("reload_setting", "AUTO_RELOAD_TIME", 180),
|
|
)
|
|
async def _():
|
|
if Config.get_config("reload_setting", "AUTO_RELOAD"):
|
|
Config.reload()
|
|
logger.debug("已自动重载配置文件...")
|