mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-15 06:12:53 +08:00
154 lines
3.5 KiB
Python
154 lines
3.5 KiB
Python
from arclet.alconna import Alconna, Args, Option, Subcommand
|
|
from arclet.alconna.action import store_false
|
|
from nonebot.permission import SUPERUSER
|
|
from nonebot_plugin_alconna import on_alconna
|
|
|
|
bot_manage = on_alconna(
|
|
Alconna(
|
|
"bot_manage",
|
|
Subcommand(
|
|
"task",
|
|
Option(
|
|
"list",
|
|
action=store_false,
|
|
help_text="查看 bot_id 下的所有可用被动",
|
|
),
|
|
Option("-b|--bot", Args["bot_id", str], help_text="指定 bot_id"),
|
|
Subcommand(
|
|
"enable",
|
|
Args["feature_name?", str],
|
|
),
|
|
Subcommand(
|
|
"disable",
|
|
Args["feature_name?", str],
|
|
),
|
|
),
|
|
Subcommand(
|
|
"plugin",
|
|
Option(
|
|
"list",
|
|
action=store_false,
|
|
help_text="查看 bot_id 下的所有可用插件",
|
|
),
|
|
Option("-b|--bot", Args["bot_id", str], help_text="指定 bot_id"),
|
|
Subcommand(
|
|
"enable",
|
|
Args["plugin_name?", str],
|
|
),
|
|
Subcommand(
|
|
"disable",
|
|
Args["plugin_name?", str],
|
|
),
|
|
),
|
|
Subcommand(
|
|
"full_function",
|
|
Subcommand(
|
|
"enable",
|
|
Args["bot_id?", str],
|
|
),
|
|
Subcommand(
|
|
"disable",
|
|
Args["bot_id?", str],
|
|
),
|
|
),
|
|
Subcommand(
|
|
"bot_switch",
|
|
Subcommand(
|
|
"enable",
|
|
Args["bot_id?", str],
|
|
),
|
|
Subcommand(
|
|
"disable",
|
|
Args["bot_id?", str],
|
|
),
|
|
),
|
|
),
|
|
permission=SUPERUSER,
|
|
priority=5,
|
|
block=True,
|
|
)
|
|
|
|
bot_manage.shortcut(
|
|
r"bot被动状态",
|
|
command="bot_manage",
|
|
arguments=["task", "list"],
|
|
prefix=True,
|
|
)
|
|
|
|
bot_manage.shortcut(
|
|
r"bot开启被动\s*(?P<name>.+)",
|
|
command="bot_manage",
|
|
arguments=["task", "enable", "{name}"],
|
|
prefix=True,
|
|
)
|
|
|
|
bot_manage.shortcut(
|
|
r"bot关闭被动\s*(?P<name>.+)",
|
|
command="bot_manage",
|
|
arguments=["task", "disable", "{name}"],
|
|
prefix=True,
|
|
)
|
|
|
|
bot_manage.shortcut(
|
|
r"bot开启(全部|所有)被动",
|
|
command="bot_manage",
|
|
arguments=["task", "enable"],
|
|
prefix=True,
|
|
)
|
|
|
|
bot_manage.shortcut(
|
|
r"bot关闭(全部|所有)被动",
|
|
command="bot_manage",
|
|
arguments=["task", "disable"],
|
|
prefix=True,
|
|
)
|
|
|
|
bot_manage.shortcut(
|
|
r"bot插件列表",
|
|
command="bot_manage",
|
|
arguments=["plugin", "list"],
|
|
prefix=True,
|
|
)
|
|
|
|
bot_manage.shortcut(
|
|
r"bot开启(全部|所有)插件",
|
|
command="bot_manage",
|
|
arguments=["plugin", "enable"],
|
|
prefix=True,
|
|
)
|
|
|
|
bot_manage.shortcut(
|
|
r"bot关闭(全部|所有)插件",
|
|
command="bot_manage",
|
|
arguments=["plugin", "disable"],
|
|
prefix=True,
|
|
)
|
|
|
|
bot_manage.shortcut(
|
|
r"bot开启\s*(?P<name>.+)",
|
|
command="bot_manage",
|
|
arguments=["plugin", "enable", "{name}"],
|
|
prefix=True,
|
|
)
|
|
|
|
bot_manage.shortcut(
|
|
r"bot关闭\s*(?P<name>.+)",
|
|
command="bot_manage",
|
|
arguments=["plugin", "disable", "{name}"],
|
|
prefix=True,
|
|
)
|
|
|
|
bot_manage.shortcut(
|
|
r"bot休眠\s*(?P<bot_id>.+)?",
|
|
command="bot_manage",
|
|
arguments=["bot_switch", "disable", "{bot_id}"],
|
|
prefix=True,
|
|
)
|
|
|
|
bot_manage.shortcut(
|
|
r"bot醒来\s*(?P<bot_id>.+)?",
|
|
command="bot_manage",
|
|
arguments=["bot_switch", "enable", "{bot_id}"],
|
|
prefix=True,
|
|
)
|