From e01b1ed882a01d03b763e9b06b8b5d0608fc5f21 Mon Sep 17 00:00:00 2001 From: Kyomotoi <1172294279@qq.com> Date: Sat, 24 Apr 2021 16:20:19 +0800 Subject: =?UTF-8?q?=E2=9C=A8=F0=9F=94=A5=F0=9F=8E=A8=F0=9F=90=9B=E2=99=BB?= =?UTF-8?q?=EF=B8=8F=F0=9F=93=9D=20=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 新增:开发工具中ub paste,再也不怕长消息了。 新增:错误处理两项`ReadFileError`、`FormatError` 修复:bot退群显示被自己踢出群 删除:Service部分内容 删除:hitokoto本地库,改用请求 优化:b站小程序抓取 重构:bot管理部分,对命令进行简化 --- ATRI/plugins/manage/modules/shutdown.py | 34 +++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 ATRI/plugins/manage/modules/shutdown.py (limited to 'ATRI/plugins/manage/modules/shutdown.py') diff --git a/ATRI/plugins/manage/modules/shutdown.py b/ATRI/plugins/manage/modules/shutdown.py new file mode 100644 index 0000000..11b2b1b --- /dev/null +++ b/ATRI/plugins/manage/modules/shutdown.py @@ -0,0 +1,34 @@ +from nonebot.typing import T_State +from nonebot.permission import SUPERUSER +from nonebot.adapters.cqhttp import Bot, MessageEvent + +from ATRI.service import Service as sv + + +__doc__ = """ +紧急停机 +权限组:维护者 +用法: + @ 关机 +""" + +shutdown = sv.on_command( + cmd="关机", + docs=__doc__, + permission=SUPERUSER +) + +@shutdown.handle() +async def _shutdown(bot: Bot, event: MessageEvent, state: T_State) -> None: + msg = str(event.message).strip() + if msg: + state["msg"] = msg + +@shutdown.got("msg", prompt="[WARNING]此项操作将强行终止bot运行,是否继续(y/n)") +async def __shutdown(bot: Bot, event: MessageEvent, state: T_State) -> None: + t = ['y', 'Y', '是'] + if state["msg"] in t: + await bot.send(event, "咱还会醒来的,一定") + exit(0) + else: + await shutdown.finish("再考虑下吧 ;w;") -- cgit v1.2.3