summaryrefslogtreecommitdiff
path: root/ATRI/plugins/manage/modules/dormant.py
blob: 68d14f90707c6f25e20aa90f626c55e15d1b5b91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from nonebot.permission import SUPERUSER
from nonebot.adapters.cqhttp import Bot, MessageEvent

from ATRI.service import Service as sv


__doc__ = """
休眠,不处理任何信息
权限组:维护者
用法:
  @ 休眠
"""

dormant_enabled = sv.on_command(
    cmd='休眠',
    docs=__doc__,
    permission=SUPERUSER
)

@dormant_enabled.handle()
async def _dormant_enabled(bot: Bot, event: MessageEvent) -> None:
    sv.Dormant.control_dormant(True)
    msg = "已进入休眠状态...期间咱不会回应任何人的消息哦..."
    await dormant_enabled.finish(msg)


__doc__ = """
苏醒,开始处理信息
权限组:维护者
用法:
  @ 苏醒
"""

dormant_disabled = sv.on_command(
    cmd='休眠',
    docs=__doc__,
    permission=SUPERUSER
)

@dormant_disabled.handle()
async def _dormant_disabled(bot: Bot, event: MessageEvent) -> None:
    sv.Dormant.control_dormant(False)
    msg = "唔...早上好...——哇哈哈"
    await dormant_disabled.finish(msg)