Archived
1
0
Fork 0
This repository has been archived on 2024-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
akari-bot/modules/core/alias.py
2023-02-05 22:33:33 +08:00

39 lines
1.7 KiB
Python

from core.builtins import Bot
from core.component import on_command
ali = on_command('alias', required_admin=True, base=True)
@ali.handle('add <alias> <command> {添加自定义命令别名}', 'remove <alias> {移除自定义命令别名}',
'reset {重置自定义命令别名}')
async def set_alias(msg: Bot.MessageSession):
alias = msg.options.get('command_alias')
arg1 = msg.parsed_msg.get('<alias>', False)
arg2 = msg.parsed_msg.get('<command>', False)
if alias is None:
alias = {}
if 'add' in msg.parsed_msg:
if arg1 not in alias:
has_prefix = False
for prefixes in msg.prefixes:
if arg2.startswith(prefixes):
has_prefix = True
break
if not has_prefix:
await msg.sendMessage(f'添加的别名对应的命令必须以命令前缀开头,请检查。')
return
alias[arg1] = arg2
msg.data.edit_option('command_alias', alias)
await msg.sendMessage(f'已添加自定义命令别名:{arg1} -> {arg2}')
else:
await msg.sendMessage(f'[{arg1}]别名已存在于自定义别名列表。')
elif 'remove' in msg.parsed_msg:
if arg1 in alias:
del alias[arg1]
msg.data.edit_option('command_alias', alias)
await msg.sendMessage(f'已移除自定义命令别名:{arg1}')
else:
await msg.sendMessage(f'[{arg1}]别名不存在于自定义别名列表。')
elif 'reset' in msg.parsed_msg:
msg.data.edit_option('command_alias', {})
await msg.sendMessage('已重置自定义命令别名列表。')