mirror of
https://github.com/TriM-Organization/LiteyukiBot-TriM.git
synced 2024-11-11 01:27:29 +08:00
🎇修复liteyuki_pacman在执行disable时因session_id导致的反馈不当
🀄优化文言文翻译,修复翻译漏洞
This commit is contained in:
parent
576d8c23b3
commit
363daf6251
@ -24,7 +24,16 @@ from src.utils.message.tools import clamp
|
|||||||
from .common import *
|
from .common import *
|
||||||
|
|
||||||
require("nonebot_plugin_alconna")
|
require("nonebot_plugin_alconna")
|
||||||
from nonebot_plugin_alconna import on_alconna, Alconna, Args, Arparma, Subcommand, Option, OptionResult, SubcommandResult
|
from nonebot_plugin_alconna import (
|
||||||
|
on_alconna,
|
||||||
|
Alconna,
|
||||||
|
Args,
|
||||||
|
Arparma,
|
||||||
|
Subcommand,
|
||||||
|
Option,
|
||||||
|
OptionResult,
|
||||||
|
SubcommandResult,
|
||||||
|
)
|
||||||
|
|
||||||
# const
|
# const
|
||||||
enable_global = "enable-global"
|
enable_global = "enable-global"
|
||||||
@ -91,8 +100,8 @@ disable = "disable"
|
|||||||
"list",
|
"list",
|
||||||
Args["page", int, 1]["num", int, 10],
|
Args["page", int, 1]["num", int, 10],
|
||||||
alias=["ls", "列表"],
|
alias=["ls", "列表"],
|
||||||
)
|
),
|
||||||
)
|
),
|
||||||
).handle()
|
).handle()
|
||||||
async def _(result: Arparma, event: T_MessageEvent, bot: T_Bot, npm: Matcher):
|
async def _(result: Arparma, event: T_MessageEvent, bot: T_Bot, npm: Matcher):
|
||||||
if not os.path.exists("data/liteyuki/plugins.json"):
|
if not os.path.exists("data/liteyuki/plugins.json"):
|
||||||
@ -111,8 +120,16 @@ async def _(result: Arparma, event: T_MessageEvent, bot: T_Bot, npm: Matcher):
|
|||||||
|
|
||||||
# 判定会话类型
|
# 判定会话类型
|
||||||
# 输入群号
|
# 输入群号
|
||||||
if (group_id := (sc.get("enable", SubcommandResult()).options.get("group", OptionResult()).args.get("group_id") or
|
if (
|
||||||
sc.get("disable", SubcommandResult()).options.get("group", OptionResult()).args.get("group_id"))) and await SUPERUSER(bot, event):
|
group_id := (
|
||||||
|
sc.get("enable", SubcommandResult())
|
||||||
|
.options.get("group", OptionResult())
|
||||||
|
.args.get("group_id")
|
||||||
|
or sc.get("disable", SubcommandResult())
|
||||||
|
.options.get("group", OptionResult())
|
||||||
|
.args.get("group_id")
|
||||||
|
)
|
||||||
|
) and await SUPERUSER(bot, event):
|
||||||
session_id = group_id
|
session_id = group_id
|
||||||
new_event = event.copy()
|
new_event = event.copy()
|
||||||
new_event.group_id = group_id
|
new_event.group_id = group_id
|
||||||
@ -122,25 +139,42 @@ async def _(result: Arparma, event: T_MessageEvent, bot: T_Bot, npm: Matcher):
|
|||||||
session_id = event.user_id
|
session_id = event.user_id
|
||||||
new_event = event
|
new_event = event
|
||||||
else:
|
else:
|
||||||
if await GROUP_ADMIN(bot, event) or await GROUP_OWNER(bot, event) or await SUPERUSER(bot, event):
|
if (
|
||||||
|
await GROUP_ADMIN(bot, event)
|
||||||
|
or await GROUP_OWNER(bot, event)
|
||||||
|
or await SUPERUSER(bot, event)
|
||||||
|
):
|
||||||
session_id = event.group_id
|
session_id = event.group_id
|
||||||
new_event = event
|
new_event = event
|
||||||
else:
|
else:
|
||||||
raise FinishedException(ulang.get("Permission Denied"))
|
raise FinishedException(ulang.get("Permission Denied"))
|
||||||
|
|
||||||
session_enable = get_plugin_session_enable(new_event, plugin_name) # 获取插件当前状态
|
session_enable = get_plugin_session_enable(
|
||||||
|
new_event, plugin_name
|
||||||
|
) # 获取插件当前状态
|
||||||
|
|
||||||
can_be_toggled = get_plugin_can_be_toggle(plugin_name) # 获取插件是否可以被启用/停用
|
can_be_toggled = get_plugin_can_be_toggle(
|
||||||
|
plugin_name
|
||||||
|
) # 获取插件是否可以被启用/停用
|
||||||
|
|
||||||
if not plugin_exist:
|
if not plugin_exist:
|
||||||
await npm.finish(ulang.get("npm.plugin_not_found", NAME=plugin_name))
|
await npm.finish(ulang.get("npm.plugin_not_found", NAME=plugin_name))
|
||||||
|
|
||||||
if not can_be_toggled:
|
if not can_be_toggled:
|
||||||
await npm.finish(ulang.get("npm.plugin_cannot_be_toggled", NAME=plugin_name))
|
await npm.finish(
|
||||||
|
ulang.get("npm.plugin_cannot_be_toggled", NAME=plugin_name)
|
||||||
|
)
|
||||||
|
|
||||||
if session_enable == toggle:
|
if session_enable == toggle:
|
||||||
await npm.finish(
|
await npm.finish(
|
||||||
ulang.get("npm.plugin_already", NAME=plugin_name, STATUS=ulang.get("npm.enable") if toggle else ulang.get("npm.disable")))
|
ulang.get(
|
||||||
|
"npm.plugin_already",
|
||||||
|
NAME=plugin_name,
|
||||||
|
STATUS=(
|
||||||
|
ulang.get("npm.enable") if toggle else ulang.get("npm.disable")
|
||||||
|
),
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
# 键入自定义群号的情况
|
# 键入自定义群号的情况
|
||||||
|
|
||||||
@ -152,18 +186,28 @@ async def _(result: Arparma, event: T_MessageEvent, bot: T_Bot, npm: Matcher):
|
|||||||
ulang.get(
|
ulang.get(
|
||||||
"npm.toggle_failed",
|
"npm.toggle_failed",
|
||||||
NAME=plugin_name,
|
NAME=plugin_name,
|
||||||
STATUS=ulang.get("npm.enable") if toggle else ulang.get("npm.disable"),
|
STATUS=(
|
||||||
ERROR=str(e))
|
ulang.get("npm.enable") if toggle else ulang.get("npm.disable")
|
||||||
|
),
|
||||||
|
ERROR=str(e),
|
||||||
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
await npm.finish(
|
await npm.finish(
|
||||||
ulang.get(
|
ulang.get(
|
||||||
"npm.toggle_success",
|
"npm.toggle_success",
|
||||||
NAME=plugin_name,
|
NAME=plugin_name,
|
||||||
STATUS=(ulang.get("npm.enable") if toggle else ulang.get("npm.disable"))) + session_id
|
STATUS=(
|
||||||
|
ulang.get("npm.enable") if toggle else ulang.get("npm.disable")
|
||||||
|
),
|
||||||
|
) # + str(session_id) 这里应该不需增加一个id,在任何语言文件里,这句话都不是这样翻的,你是不是调试的时候忘删了?
|
||||||
)
|
)
|
||||||
|
|
||||||
elif sc.get(enable_global) or result.subcommands.get(disable_global) and await SUPERUSER(bot, event):
|
elif (
|
||||||
|
sc.get(enable_global)
|
||||||
|
or result.subcommands.get(disable_global)
|
||||||
|
and await SUPERUSER(bot, event)
|
||||||
|
):
|
||||||
plugin_exist = get_plugin_exist(plugin_name)
|
plugin_exist = get_plugin_exist(plugin_name)
|
||||||
|
|
||||||
toggle = result.subcommands.get(enable_global) is not None
|
toggle = result.subcommands.get(enable_global) is not None
|
||||||
@ -174,12 +218,21 @@ async def _(result: Arparma, event: T_MessageEvent, bot: T_Bot, npm: Matcher):
|
|||||||
await npm.finish(ulang.get("npm.plugin_not_found", NAME=plugin_name))
|
await npm.finish(ulang.get("npm.plugin_not_found", NAME=plugin_name))
|
||||||
|
|
||||||
if not can_be_toggled:
|
if not can_be_toggled:
|
||||||
await npm.finish(ulang.get("npm.plugin_cannot_be_toggled", NAME=plugin_name))
|
await npm.finish(
|
||||||
|
ulang.get("npm.plugin_cannot_be_toggled", NAME=plugin_name)
|
||||||
|
)
|
||||||
|
|
||||||
global_enable = get_plugin_global_enable(plugin_name)
|
global_enable = get_plugin_global_enable(plugin_name)
|
||||||
if global_enable == toggle:
|
if global_enable == toggle:
|
||||||
await npm.finish(
|
await npm.finish(
|
||||||
ulang.get("npm.plugin_already", NAME=plugin_name, STATUS=ulang.get("npm.enable") if toggle else ulang.get("npm.disable")))
|
ulang.get(
|
||||||
|
"npm.plugin_already",
|
||||||
|
NAME=plugin_name,
|
||||||
|
STATUS=(
|
||||||
|
ulang.get("npm.enable") if toggle else ulang.get("npm.disable")
|
||||||
|
),
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
set_plugin_global_enable(plugin_name, toggle)
|
set_plugin_global_enable(plugin_name, toggle)
|
||||||
@ -188,15 +241,19 @@ async def _(result: Arparma, event: T_MessageEvent, bot: T_Bot, npm: Matcher):
|
|||||||
ulang.get(
|
ulang.get(
|
||||||
"npm.toggle_failed",
|
"npm.toggle_failed",
|
||||||
NAME=plugin_name,
|
NAME=plugin_name,
|
||||||
STATUS=ulang.get("npm.enable") if toggle else ulang.get("npm.disable"),
|
STATUS=(
|
||||||
ERROR=str(e))
|
ulang.get("npm.enable") if toggle else ulang.get("npm.disable")
|
||||||
|
),
|
||||||
|
ERROR=str(e),
|
||||||
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
await npm.finish(
|
await npm.finish(
|
||||||
ulang.get(
|
ulang.get(
|
||||||
"npm.toggle_success",
|
"npm.toggle_success",
|
||||||
NAME=plugin_name,
|
NAME=plugin_name,
|
||||||
STATUS=ulang.get("npm.enable") if toggle else ulang.get("npm.disable"))
|
STATUS=ulang.get("npm.enable") if toggle else ulang.get("npm.disable"),
|
||||||
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
elif sc.get("update") and perm_s:
|
elif sc.get("update") and perm_s:
|
||||||
@ -212,19 +269,25 @@ async def _(result: Arparma, event: T_MessageEvent, bot: T_Bot, npm: Matcher):
|
|||||||
max_show = 10
|
max_show = 10
|
||||||
if len(rs):
|
if len(rs):
|
||||||
reply = f"{ulang.get('npm.search_result')} | {ulang.get('npm.total', TOTAL=len(rs))}\n***"
|
reply = f"{ulang.get('npm.search_result')} | {ulang.get('npm.total', TOTAL=len(rs))}\n***"
|
||||||
for storePlugin in rs[:min(max_show, len(rs))]:
|
for storePlugin in rs[: min(max_show, len(rs))]:
|
||||||
btn_install_or_update = md.btn_cmd(
|
btn_install_or_update = md.btn_cmd(
|
||||||
ulang.get("npm.update") if get_plugin_exist(storePlugin.module_name) else ulang.get("npm.install"),
|
(
|
||||||
"npm install %s" % storePlugin.module_name
|
ulang.get("npm.update")
|
||||||
|
if get_plugin_exist(storePlugin.module_name)
|
||||||
|
else ulang.get("npm.install")
|
||||||
|
),
|
||||||
|
"npm install %s" % storePlugin.module_name,
|
||||||
)
|
)
|
||||||
link_page = md.btn_link(ulang.get("npm.homepage"), storePlugin.homepage)
|
link_page = md.btn_link(ulang.get("npm.homepage"), storePlugin.homepage)
|
||||||
link_pypi = md.btn_link(ulang.get("npm.pypi"), storePlugin.homepage)
|
link_pypi = md.btn_link(ulang.get("npm.pypi"), storePlugin.homepage)
|
||||||
|
|
||||||
reply += (f"\n# **{storePlugin.name}**\n"
|
reply += (
|
||||||
|
f"\n# **{storePlugin.name}**\n"
|
||||||
f"\n> **{storePlugin.desc}**\n"
|
f"\n> **{storePlugin.desc}**\n"
|
||||||
f"\n> {ulang.get('npm.author')}: {storePlugin.author}"
|
f"\n> {ulang.get('npm.author')}: {storePlugin.author}"
|
||||||
f"\n> *{md.escape(storePlugin.module_name)}*"
|
f"\n> *{md.escape(storePlugin.module_name)}*"
|
||||||
f"\n> {btn_install_or_update} {link_page} {link_pypi}\n\n***\n")
|
f"\n> {btn_install_or_update} {link_page} {link_pypi}\n\n***\n"
|
||||||
|
)
|
||||||
if len(rs) > max_show:
|
if len(rs) > max_show:
|
||||||
reply += f"\n{ulang.get('npm.too_many_results', HIDE_NUM=len(rs) - max_show)}"
|
reply += f"\n{ulang.get('npm.too_many_results', HIDE_NUM=len(rs) - max_show)}"
|
||||||
else:
|
else:
|
||||||
@ -245,40 +308,41 @@ async def _(result: Arparma, event: T_MessageEvent, bot: T_Bot, npm: Matcher):
|
|||||||
homepage_btn = md.btn_cmd(ulang.get("npm.homepage"), store_plugin.homepage)
|
homepage_btn = md.btn_cmd(ulang.get("npm.homepage"), store_plugin.homepage)
|
||||||
if r:
|
if r:
|
||||||
r_load = nonebot.load_plugin(plugin_name) # 加载插件
|
r_load = nonebot.load_plugin(plugin_name) # 加载插件
|
||||||
installed_plugin = InstalledPlugin(module_name=plugin_name) # 构造插件信息模型
|
installed_plugin = InstalledPlugin(
|
||||||
found_in_db_plugin = plugin_db.where_one(InstalledPlugin(), "module_name = ?", plugin_name) # 查询数据库中是否已经安装
|
module_name=plugin_name
|
||||||
|
) # 构造插件信息模型
|
||||||
|
found_in_db_plugin = plugin_db.where_one(
|
||||||
|
InstalledPlugin(), "module_name = ?", plugin_name
|
||||||
|
) # 查询数据库中是否已经安装
|
||||||
if r_load:
|
if r_load:
|
||||||
if found_in_db_plugin is None:
|
if found_in_db_plugin is None:
|
||||||
plugin_db.save(installed_plugin)
|
plugin_db.save(installed_plugin)
|
||||||
info = md.escape(ulang.get("npm.install_success", NAME=store_plugin.name)) # markdown转义
|
info = md.escape(
|
||||||
await md.send_md(
|
ulang.get("npm.install_success", NAME=store_plugin.name)
|
||||||
f"{info}\n\n"
|
) # markdown转义
|
||||||
f"```\n{log}\n```",
|
await md.send_md(f"{info}\n\n" f"```\n{log}\n```", bot, event=event)
|
||||||
bot,
|
else:
|
||||||
event=event
|
await npm.finish(
|
||||||
|
ulang.get(
|
||||||
|
"npm.plugin_already_installed", NAME=store_plugin.name
|
||||||
|
)
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
await npm.finish(ulang.get("npm.plugin_already_installed", NAME=store_plugin.name))
|
info = ulang.get(
|
||||||
|
"npm.load_failed", NAME=plugin_name, HOMEPAGE=homepage_btn
|
||||||
|
).replace("_", r"\\_")
|
||||||
|
await md.send_md(f"{info}\n\n" f"```\n{log}\n```\n", bot, event=event)
|
||||||
else:
|
else:
|
||||||
info = ulang.get("npm.load_failed", NAME=plugin_name, HOMEPAGE=homepage_btn).replace("_", r"\\_")
|
info = ulang.get(
|
||||||
await md.send_md(
|
"npm.install_failed", NAME=plugin_name, HOMEPAGE=homepage_btn
|
||||||
f"{info}\n\n"
|
).replace("_", r"\\_")
|
||||||
f"```\n{log}\n```\n",
|
await md.send_md(f"{info}\n\n" f"```\n{log}\n```", bot, event=event)
|
||||||
bot,
|
|
||||||
event=event
|
|
||||||
)
|
|
||||||
else:
|
|
||||||
info = ulang.get("npm.install_failed", NAME=plugin_name, HOMEPAGE=homepage_btn).replace("_", r"\\_")
|
|
||||||
await md.send_md(
|
|
||||||
f"{info}\n\n"
|
|
||||||
f"```\n{log}\n```",
|
|
||||||
bot,
|
|
||||||
event=event
|
|
||||||
)
|
|
||||||
|
|
||||||
elif sc.get("uninstall") and perm_s:
|
elif sc.get("uninstall") and perm_s:
|
||||||
plugin_name: str = result.subcommands["uninstall"].args.get("plugin_name") # type: ignore
|
plugin_name: str = result.subcommands["uninstall"].args.get("plugin_name") # type: ignore
|
||||||
found_installed_plugin: InstalledPlugin = plugin_db.where_one(InstalledPlugin(), "module_name = ?", plugin_name)
|
found_installed_plugin: InstalledPlugin = plugin_db.where_one(
|
||||||
|
InstalledPlugin(), "module_name = ?", plugin_name
|
||||||
|
)
|
||||||
if found_installed_plugin:
|
if found_installed_plugin:
|
||||||
plugin_db.delete(InstalledPlugin(), "module_name = ?", plugin_name)
|
plugin_db.delete(InstalledPlugin(), "module_name = ?", plugin_name)
|
||||||
reply = f"{ulang.get('npm.uninstall_success', NAME=found_installed_plugin.module_name)}"
|
reply = f"{ulang.get('npm.uninstall_success', NAME=found_installed_plugin.module_name)}"
|
||||||
@ -289,23 +353,36 @@ async def _(result: Arparma, event: T_MessageEvent, bot: T_Bot, npm: Matcher):
|
|||||||
elif sc.get("list"):
|
elif sc.get("list"):
|
||||||
loaded_plugin_list = sorted(nonebot.get_loaded_plugins(), key=lambda x: x.name)
|
loaded_plugin_list = sorted(nonebot.get_loaded_plugins(), key=lambda x: x.name)
|
||||||
num_per_page = result.subcommands.get("list").args.get("num")
|
num_per_page = result.subcommands.get("list").args.get("num")
|
||||||
total = len(loaded_plugin_list) // num_per_page + (1 if len(loaded_plugin_list) % num_per_page else 0)
|
total = len(loaded_plugin_list) // num_per_page + (
|
||||||
|
1 if len(loaded_plugin_list) % num_per_page else 0
|
||||||
|
)
|
||||||
|
|
||||||
page = clamp(result.subcommands.get("list").args.get("page"), 1, total)
|
page = clamp(result.subcommands.get("list").args.get("page"), 1, total)
|
||||||
|
|
||||||
# 已加载插件 | 总计10 | 第1/3页
|
# 已加载插件 | 总计10 | 第1/3页
|
||||||
reply = (f"# {ulang.get('npm.loaded_plugins')} | "
|
reply = (
|
||||||
|
f"# {ulang.get('npm.loaded_plugins')} | "
|
||||||
f"{ulang.get('npm.total', TOTAL=len(nonebot.get_loaded_plugins()))} | "
|
f"{ulang.get('npm.total', TOTAL=len(nonebot.get_loaded_plugins()))} | "
|
||||||
f"{ulang.get('npm.page', PAGE=page, TOTAL=total)} \n***\n")
|
f"{ulang.get('npm.page', PAGE=page, TOTAL=total)} \n***\n"
|
||||||
|
)
|
||||||
|
|
||||||
permission_oas = await GROUP_ADMIN(bot, event) or await GROUP_OWNER(bot, event) or await SUPERUSER(bot, event)
|
permission_oas = (
|
||||||
|
await GROUP_ADMIN(bot, event)
|
||||||
|
or await GROUP_OWNER(bot, event)
|
||||||
|
or await SUPERUSER(bot, event)
|
||||||
|
)
|
||||||
permission_s = await SUPERUSER(bot, event)
|
permission_s = await SUPERUSER(bot, event)
|
||||||
|
|
||||||
for storePlugin in loaded_plugin_list[(page - 1) * num_per_page: min(page * num_per_page, len(loaded_plugin_list))]:
|
for storePlugin in loaded_plugin_list[
|
||||||
|
(page - 1)
|
||||||
|
* num_per_page : min(page * num_per_page, len(loaded_plugin_list))
|
||||||
|
]:
|
||||||
# 检查是否有 metadata 属性
|
# 检查是否有 metadata 属性
|
||||||
# 添加帮助按钮
|
# 添加帮助按钮
|
||||||
|
|
||||||
btn_usage = md.btn_cmd(ulang.get("npm.usage"), f"help {storePlugin.name}", False)
|
btn_usage = md.btn_cmd(
|
||||||
|
ulang.get("npm.usage"), f"help {storePlugin.name}", False
|
||||||
|
)
|
||||||
store_plugin = await get_store_plugin(storePlugin.name)
|
store_plugin = await get_store_plugin(storePlugin.name)
|
||||||
session_enable = get_plugin_session_enable(event, storePlugin.name)
|
session_enable = get_plugin_session_enable(event, storePlugin.name)
|
||||||
if store_plugin:
|
if store_plugin:
|
||||||
@ -332,41 +409,92 @@ async def _(result: Arparma, event: T_MessageEvent, bot: T_Bot, npm: Matcher):
|
|||||||
if permission_oas:
|
if permission_oas:
|
||||||
# 添加启用/停用插件按钮
|
# 添加启用/停用插件按钮
|
||||||
cmd_toggle = f"npm {'disable' if session_enable else 'enable'} {storePlugin.name}"
|
cmd_toggle = f"npm {'disable' if session_enable else 'enable'} {storePlugin.name}"
|
||||||
text_toggle = ulang.get("npm.disable" if session_enable else "npm.enable")
|
text_toggle = ulang.get(
|
||||||
|
"npm.disable" if session_enable else "npm.enable"
|
||||||
|
)
|
||||||
can_be_toggle = get_plugin_can_be_toggle(storePlugin.name)
|
can_be_toggle = get_plugin_can_be_toggle(storePlugin.name)
|
||||||
btn_toggle = text_toggle if not can_be_toggle else md.btn_cmd(text_toggle, cmd_toggle)
|
btn_toggle = (
|
||||||
|
text_toggle
|
||||||
|
if not can_be_toggle
|
||||||
|
else md.btn_cmd(text_toggle, cmd_toggle)
|
||||||
|
)
|
||||||
reply += f" {btn_toggle}"
|
reply += f" {btn_toggle}"
|
||||||
|
|
||||||
if permission_s:
|
if permission_s:
|
||||||
plugin_in_database = plugin_db.where_one(InstalledPlugin(), "module_name = ?", storePlugin.name)
|
plugin_in_database = plugin_db.where_one(
|
||||||
|
InstalledPlugin(), "module_name = ?", storePlugin.name
|
||||||
|
)
|
||||||
# 添加移除插件和全局切换按钮
|
# 添加移除插件和全局切换按钮
|
||||||
global_enable = get_plugin_global_enable(storePlugin.name)
|
global_enable = get_plugin_global_enable(storePlugin.name)
|
||||||
btn_uninstall = (
|
btn_uninstall = (
|
||||||
md.btn_cmd(ulang.get("npm.uninstall"), f'npm uninstall {storePlugin.name}')) if plugin_in_database else ulang.get(
|
(
|
||||||
'npm.uninstall')
|
md.btn_cmd(
|
||||||
btn_toggle_global_text = ulang.get("npm.disable_global" if global_enable else "npm.enable_global")
|
ulang.get("npm.uninstall"),
|
||||||
|
f"npm uninstall {storePlugin.name}",
|
||||||
|
)
|
||||||
|
)
|
||||||
|
if plugin_in_database
|
||||||
|
else ulang.get("npm.uninstall")
|
||||||
|
)
|
||||||
|
btn_toggle_global_text = ulang.get(
|
||||||
|
"npm.disable_global" if global_enable else "npm.enable_global"
|
||||||
|
)
|
||||||
cmd_toggle_global = f"npm {'disable' if global_enable else 'enable'}-global {storePlugin.name}"
|
cmd_toggle_global = f"npm {'disable' if global_enable else 'enable'}-global {storePlugin.name}"
|
||||||
btn_toggle_global = btn_toggle_global_text if not can_be_toggle else md.btn_cmd(btn_toggle_global_text, cmd_toggle_global)
|
btn_toggle_global = (
|
||||||
|
btn_toggle_global_text
|
||||||
|
if not can_be_toggle
|
||||||
|
else md.btn_cmd(btn_toggle_global_text, cmd_toggle_global)
|
||||||
|
)
|
||||||
|
|
||||||
reply += f" {btn_uninstall} {btn_toggle_global}"
|
reply += f" {btn_uninstall} {btn_toggle_global}"
|
||||||
reply += "\n\n***\n"
|
reply += "\n\n***\n"
|
||||||
# 根据页数添加翻页按钮。第一页显示上一页文本而不是按钮,最后一页显示下一页文本而不是按钮
|
# 根据页数添加翻页按钮。第一页显示上一页文本而不是按钮,最后一页显示下一页文本而不是按钮
|
||||||
btn_prev = md.btn_cmd(ulang.get("npm.prev_page"), f"npm list {page - 1} {num_per_page}") if page > 1 else ulang.get("npm.prev_page")
|
btn_prev = (
|
||||||
btn_next = md.btn_cmd(ulang.get("npm.next_page"), f"npm list {page + 1} {num_per_page}") if page < total else ulang.get("npm.next_page")
|
md.btn_cmd(
|
||||||
|
ulang.get("npm.prev_page"), f"npm list {page - 1} {num_per_page}"
|
||||||
|
)
|
||||||
|
if page > 1
|
||||||
|
else ulang.get("npm.prev_page")
|
||||||
|
)
|
||||||
|
btn_next = (
|
||||||
|
md.btn_cmd(
|
||||||
|
ulang.get("npm.next_page"), f"npm list {page + 1} {num_per_page}"
|
||||||
|
)
|
||||||
|
if page < total
|
||||||
|
else ulang.get("npm.next_page")
|
||||||
|
)
|
||||||
reply += f"\n{btn_prev} {page}/{total} {btn_next}"
|
reply += f"\n{btn_prev} {page}/{total} {btn_next}"
|
||||||
await md.send_md(reply, bot, event=event)
|
await md.send_md(reply, bot, event=event)
|
||||||
|
|
||||||
else:
|
else:
|
||||||
if await SUPERUSER(bot, event):
|
if await SUPERUSER(bot, event):
|
||||||
btn_enable_global = md.btn_cmd(ulang.get("npm.enable_global"), "npm enable-global", False, False)
|
btn_enable_global = md.btn_cmd(
|
||||||
btn_disable_global = md.btn_cmd(ulang.get("npm.disable_global"), "npm disable-global", False, False)
|
ulang.get("npm.enable_global"), "npm enable-global", False, False
|
||||||
btn_search = md.btn_cmd(ulang.get("npm.search"), "npm search ", False, False)
|
)
|
||||||
btn_uninstall_ = md.btn_cmd(ulang.get("npm.uninstall"), "npm uninstall ", False, False)
|
btn_disable_global = md.btn_cmd(
|
||||||
btn_install_ = md.btn_cmd(ulang.get("npm.install"), "npm install ", False, False)
|
ulang.get("npm.disable_global"), "npm disable-global", False, False
|
||||||
btn_update = md.btn_cmd(ulang.get("npm.update_index"), "npm update", False, True)
|
)
|
||||||
btn_list = md.btn_cmd(ulang.get("npm.list_plugins"), "npm list ", False, False)
|
btn_search = md.btn_cmd(
|
||||||
btn_disable = md.btn_cmd(ulang.get("npm.disable_session"), "npm disable ", False, False)
|
ulang.get("npm.search"), "npm search ", False, False
|
||||||
btn_enable = md.btn_cmd(ulang.get("npm.enable_session"), "npm enable ", False, False)
|
)
|
||||||
|
btn_uninstall_ = md.btn_cmd(
|
||||||
|
ulang.get("npm.uninstall"), "npm uninstall ", False, False
|
||||||
|
)
|
||||||
|
btn_install_ = md.btn_cmd(
|
||||||
|
ulang.get("npm.install"), "npm install ", False, False
|
||||||
|
)
|
||||||
|
btn_update = md.btn_cmd(
|
||||||
|
ulang.get("npm.update_index"), "npm update", False, True
|
||||||
|
)
|
||||||
|
btn_list = md.btn_cmd(
|
||||||
|
ulang.get("npm.list_plugins"), "npm list ", False, False
|
||||||
|
)
|
||||||
|
btn_disable = md.btn_cmd(
|
||||||
|
ulang.get("npm.disable_session"), "npm disable ", False, False
|
||||||
|
)
|
||||||
|
btn_enable = md.btn_cmd(
|
||||||
|
ulang.get("npm.enable_session"), "npm enable ", False, False
|
||||||
|
)
|
||||||
reply = (
|
reply = (
|
||||||
f"\n# **{ulang.get('npm.help')}**"
|
f"\n# **{ulang.get('npm.help')}**"
|
||||||
f"\n{btn_update}"
|
f"\n{btn_update}"
|
||||||
@ -392,9 +520,15 @@ async def _(result: Arparma, event: T_MessageEvent, bot: T_Bot, npm: Matcher):
|
|||||||
await md.send_md(reply, bot, event=event)
|
await md.send_md(reply, bot, event=event)
|
||||||
else:
|
else:
|
||||||
|
|
||||||
btn_list = md.btn_cmd(ulang.get("npm.list_plugins"), "npm list ", False, False)
|
btn_list = md.btn_cmd(
|
||||||
btn_disable = md.btn_cmd(ulang.get("npm.disable_session"), "npm disable ", False, False)
|
ulang.get("npm.list_plugins"), "npm list ", False, False
|
||||||
btn_enable = md.btn_cmd(ulang.get("npm.enable_session"), "npm enable ", False, False)
|
)
|
||||||
|
btn_disable = md.btn_cmd(
|
||||||
|
ulang.get("npm.disable_session"), "npm disable ", False, False
|
||||||
|
)
|
||||||
|
btn_enable = md.btn_cmd(
|
||||||
|
ulang.get("npm.enable_session"), "npm enable ", False, False
|
||||||
|
)
|
||||||
reply = (
|
reply = (
|
||||||
f"\n# **{ulang.get('npm.help')}**"
|
f"\n# **{ulang.get('npm.help')}**"
|
||||||
f"\n{btn_disable}"
|
f"\n{btn_disable}"
|
||||||
@ -423,7 +557,7 @@ async def _(result: Arparma, event: T_MessageEvent, bot: T_Bot, npm: Matcher):
|
|||||||
alias=["d", "停用"],
|
alias=["d", "停用"],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
permission=SUPERUSER | GROUP_OWNER | GROUP_ADMIN
|
permission=SUPERUSER | GROUP_OWNER | GROUP_ADMIN,
|
||||||
).handle()
|
).handle()
|
||||||
async def _(bot: T_Bot, event: T_MessageEvent, gm: Matcher, result: Arparma):
|
async def _(bot: T_Bot, event: T_MessageEvent, gm: Matcher, result: Arparma):
|
||||||
ulang = get_user_lang(str(event.user_id))
|
ulang = get_user_lang(str(event.user_id))
|
||||||
@ -432,7 +566,9 @@ async def _(bot: T_Bot, event: T_MessageEvent, gm: Matcher, result: Arparma):
|
|||||||
group_id = None
|
group_id = None
|
||||||
if await SUPERUSER(bot, event):
|
if await SUPERUSER(bot, event):
|
||||||
# 仅超级用户可以自定义群号
|
# 仅超级用户可以自定义群号
|
||||||
group_id = result.subcommands.get(enable, result.subcommands.get(disable)).args.get("group_id")
|
group_id = result.subcommands.get(
|
||||||
|
enable, result.subcommands.get(disable)
|
||||||
|
).args.get("group_id")
|
||||||
if group_id is None and event.message_type == "group":
|
if group_id is None and event.message_type == "group":
|
||||||
group_id = str(event.group_id)
|
group_id = str(event.group_id)
|
||||||
|
|
||||||
@ -441,13 +577,27 @@ async def _(bot: T_Bot, event: T_MessageEvent, gm: Matcher, result: Arparma):
|
|||||||
|
|
||||||
enabled = get_group_enable(group_id)
|
enabled = get_group_enable(group_id)
|
||||||
if enabled == to_enable:
|
if enabled == to_enable:
|
||||||
await gm.finish(ulang.get("liteyuki.group_already", STATUS=ulang.get("npm.enable") if to_enable else ulang.get("npm.disable"), GROUP=group_id),
|
await gm.finish(
|
||||||
liteyuki_pass=True)
|
ulang.get(
|
||||||
|
"liteyuki.group_already",
|
||||||
|
STATUS=(
|
||||||
|
ulang.get("npm.enable") if to_enable else ulang.get("npm.disable")
|
||||||
|
),
|
||||||
|
GROUP=group_id,
|
||||||
|
),
|
||||||
|
liteyuki_pass=True,
|
||||||
|
)
|
||||||
else:
|
else:
|
||||||
set_group_enable(group_id, to_enable)
|
set_group_enable(group_id, to_enable)
|
||||||
await gm.finish(
|
await gm.finish(
|
||||||
ulang.get("liteyuki.group_success", STATUS=ulang.get("npm.enable") if to_enable else ulang.get("npm.disable"), GROUP=group_id),
|
ulang.get(
|
||||||
liteyuki_pass=True
|
"liteyuki.group_success",
|
||||||
|
STATUS=(
|
||||||
|
ulang.get("npm.enable") if to_enable else ulang.get("npm.disable")
|
||||||
|
),
|
||||||
|
GROUP=group_id,
|
||||||
|
),
|
||||||
|
liteyuki_pass=True,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@ -456,7 +606,7 @@ async def _(bot: T_Bot, event: T_MessageEvent, gm: Matcher, result: Arparma):
|
|||||||
command=Alconna(
|
command=Alconna(
|
||||||
"help",
|
"help",
|
||||||
Args["plugin_name", str, None],
|
Args["plugin_name", str, None],
|
||||||
)
|
),
|
||||||
).handle()
|
).handle()
|
||||||
async def _(result: Arparma, matcher: Matcher, event: T_MessageEvent, bot: T_Bot):
|
async def _(result: Arparma, matcher: Matcher, event: T_MessageEvent, bot: T_Bot):
|
||||||
ulang = get_user_lang(str(event.user_id))
|
ulang = get_user_lang(str(event.user_id))
|
||||||
@ -470,7 +620,9 @@ async def _(result: Arparma, matcher: Matcher, event: T_MessageEvent, bot: T_Bot
|
|||||||
|
|
||||||
if loaded_plugin:
|
if loaded_plugin:
|
||||||
if loaded_plugin.metadata is None:
|
if loaded_plugin.metadata is None:
|
||||||
loaded_plugin.metadata = PluginMetadata(name=plugin_name, description="", usage="")
|
loaded_plugin.metadata = PluginMetadata(
|
||||||
|
name=plugin_name, description="", usage=""
|
||||||
|
)
|
||||||
# 从商店获取详细信息
|
# 从商店获取详细信息
|
||||||
store_plugin = await get_store_plugin(plugin_name)
|
store_plugin = await get_store_plugin(plugin_name)
|
||||||
if loaded_plugin.metadata.extra.get("liteyuki"):
|
if loaded_plugin.metadata.extra.get("liteyuki"):
|
||||||
@ -479,7 +631,7 @@ async def _(result: Arparma, matcher: Matcher, event: T_MessageEvent, bot: T_Bot
|
|||||||
desc=loaded_plugin.metadata.description,
|
desc=loaded_plugin.metadata.description,
|
||||||
author="SnowyKami",
|
author="SnowyKami",
|
||||||
module_name=plugin_name,
|
module_name=plugin_name,
|
||||||
homepage="https://github.com/snowykami/LiteyukiBot"
|
homepage="https://github.com/snowykami/LiteyukiBot",
|
||||||
)
|
)
|
||||||
elif store_plugin is None:
|
elif store_plugin is None:
|
||||||
store_plugin = StorePlugin(
|
store_plugin = StorePlugin(
|
||||||
@ -487,7 +639,7 @@ async def _(result: Arparma, matcher: Matcher, event: T_MessageEvent, bot: T_Bot
|
|||||||
desc=loaded_plugin.metadata.description,
|
desc=loaded_plugin.metadata.description,
|
||||||
author="",
|
author="",
|
||||||
module_name=plugin_name,
|
module_name=plugin_name,
|
||||||
homepage=""
|
homepage="",
|
||||||
)
|
)
|
||||||
|
|
||||||
if store_plugin:
|
if store_plugin:
|
||||||
@ -500,12 +652,32 @@ async def _(result: Arparma, matcher: Matcher, event: T_MessageEvent, bot: T_Bot
|
|||||||
reply = [
|
reply = [
|
||||||
mdc.heading(escape_md(store_plugin.name)),
|
mdc.heading(escape_md(store_plugin.name)),
|
||||||
mdc.quote(store_plugin.module_name),
|
mdc.quote(store_plugin.module_name),
|
||||||
mdc.quote(mdc.bold(ulang.get("npm.author")) + " " +
|
mdc.quote(
|
||||||
(mdc.link(store_plugin.author, f"https://github.com/{store_plugin.author}") if store_plugin.author else "Unknown")),
|
mdc.bold(ulang.get("npm.author"))
|
||||||
mdc.quote(mdc.bold(ulang.get("npm.description")) + " " + mdc.paragraph(max(loaded_plugin.metadata.description, store_plugin.desc))),
|
+ " "
|
||||||
|
+ (
|
||||||
|
mdc.link(
|
||||||
|
store_plugin.author,
|
||||||
|
f"https://github.com/{store_plugin.author}",
|
||||||
|
)
|
||||||
|
if store_plugin.author
|
||||||
|
else "Unknown"
|
||||||
|
)
|
||||||
|
),
|
||||||
|
mdc.quote(
|
||||||
|
mdc.bold(ulang.get("npm.description"))
|
||||||
|
+ " "
|
||||||
|
+ mdc.paragraph(
|
||||||
|
max(loaded_plugin.metadata.description, store_plugin.desc)
|
||||||
|
)
|
||||||
|
),
|
||||||
mdc.heading(ulang.get("npm.usage"), 2),
|
mdc.heading(ulang.get("npm.usage"), 2),
|
||||||
mdc.paragraph(loaded_plugin.metadata.usage.replace("\n", "\n\n")),
|
mdc.paragraph(loaded_plugin.metadata.usage.replace("\n", "\n\n")),
|
||||||
mdc.link(ulang.get("npm.homepage"), link) if link else mdc.paragraph(ulang.get("npm.homepage"))
|
(
|
||||||
|
mdc.link(ulang.get("npm.homepage"), link)
|
||||||
|
if link
|
||||||
|
else mdc.paragraph(ulang.get("npm.homepage"))
|
||||||
|
),
|
||||||
]
|
]
|
||||||
await md.send_md(compile_md(reply), bot, event=event)
|
await md.send_md(compile_md(reply), bot, event=event)
|
||||||
else:
|
else:
|
||||||
@ -576,17 +748,19 @@ async def npm_search(keywords: list[str]) -> list[StorePlugin]:
|
|||||||
|
|
||||||
results = []
|
results = []
|
||||||
async with aiofiles.open("data/liteyuki/plugins.json", "r", encoding="utf-8") as f:
|
async with aiofiles.open("data/liteyuki/plugins.json", "r", encoding="utf-8") as f:
|
||||||
plugins: list[StorePlugin] = [StorePlugin(**pobj) for pobj in json.loads(await f.read())]
|
plugins: list[StorePlugin] = [
|
||||||
|
StorePlugin(**pobj) for pobj in json.loads(await f.read())
|
||||||
|
]
|
||||||
for plugin in plugins:
|
for plugin in plugins:
|
||||||
if plugin.module_name in plugin_blacklist:
|
if plugin.module_name in plugin_blacklist:
|
||||||
continue
|
continue
|
||||||
plugin_text = ' '.join(
|
plugin_text = " ".join(
|
||||||
[
|
[
|
||||||
plugin.name,
|
plugin.name,
|
||||||
plugin.desc,
|
plugin.desc,
|
||||||
plugin.author,
|
plugin.author,
|
||||||
plugin.module_name,
|
plugin.module_name,
|
||||||
' '.join([tag.label for tag in plugin.tags])
|
" ".join([tag.label for tag in plugin.tags]),
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
if all([keyword in plugin_text for keyword in keywords]):
|
if all([keyword in plugin_text for keyword in keywords]):
|
||||||
@ -625,7 +799,9 @@ def npm_install(plugin_package_name) -> tuple[bool, str]:
|
|||||||
try:
|
try:
|
||||||
nonebot.logger.info(f"pip install try mirror: {mirror}")
|
nonebot.logger.info(f"pip install try mirror: {mirror}")
|
||||||
if update:
|
if update:
|
||||||
result = pip.main(["install", "--upgrade", plugin_package_name, "-i", mirror])
|
result = pip.main(
|
||||||
|
["install", "--upgrade", plugin_package_name, "-i", mirror]
|
||||||
|
)
|
||||||
else:
|
else:
|
||||||
result = pip.main(["install", plugin_package_name, "-i", mirror])
|
result = pip.main(["install", plugin_package_name, "-i", mirror])
|
||||||
success = result == 0
|
success = result == 0
|
||||||
@ -659,7 +835,12 @@ def search_loaded_plugin(keyword: str) -> list[Plugin]:
|
|||||||
results = []
|
results = []
|
||||||
for plugin in nonebot.get_loaded_plugins():
|
for plugin in nonebot.get_loaded_plugins():
|
||||||
if plugin.metadata is None:
|
if plugin.metadata is None:
|
||||||
plugin.metadata = PluginMetadata(name=plugin.name, description="", usage="")
|
plugin.metadata = PluginMetadata(
|
||||||
if keyword in plugin.name + plugin.metadata.name + plugin.metadata.description:
|
name=plugin.name, description="", usage=""
|
||||||
|
)
|
||||||
|
if (
|
||||||
|
keyword
|
||||||
|
in plugin.name + plugin.metadata.name + plugin.metadata.description
|
||||||
|
):
|
||||||
results.append(plugin)
|
results.append(plugin)
|
||||||
return results
|
return results
|
||||||
|
@ -84,7 +84,7 @@ npm.install_success={NAME} 方置
|
|||||||
npm.install_failed={NAME} 无以置,求讯文观其始末,未解则取 {HOMEPAGE} 而从师
|
npm.install_failed={NAME} 无以置,求讯文观其始末,未解则取 {HOMEPAGE} 而从师
|
||||||
npm.uninstall_success={NAME} 方消,次复启以毕功
|
npm.uninstall_success={NAME} 方消,次复启以毕功
|
||||||
npm.uninstall_failed={NAME} 无以消
|
npm.uninstall_failed={NAME} 无以消
|
||||||
npm.load_failed={NAME} 无以誊,或求讯文观始末,或查所依偏离否,未解则取{HOMEPAGE} 而从师
|
npm.load_failed={NAME} 无以誊,或求讯文观始末,或查所依偏离否,未解则取 {HOMEPAGE} 而从师
|
||||||
npm.plugin_not_found=阁内无件曰 {NAME} 者
|
npm.plugin_not_found=阁内无件曰 {NAME} 者
|
||||||
npm.plugin_not_installed={NAME} 未置
|
npm.plugin_not_installed={NAME} 未置
|
||||||
npm.plugin_already_installed={NAME} 已置,勿复行
|
npm.plugin_already_installed={NAME} 已置,勿复行
|
||||||
@ -95,9 +95,9 @@ npm.next_page=进
|
|||||||
npm.prev_page=返
|
npm.prev_page=返
|
||||||
npm.update=新
|
npm.update=新
|
||||||
npm.plugin_cannot_be_toggled=不可变易件曰 {NAME} 者
|
npm.plugin_cannot_be_toggled=不可变易件曰 {NAME} 者
|
||||||
npm.plugin_already=件曰 {NAME} 者,乃 {STATUS} ,勿复行
|
npm.plugin_already=件曰 {NAME} 者,乃{STATUS},勿复行
|
||||||
npm.toggle_failed=因 {ERROR} 所误,良机尽失,{NAME} 无以 {STATUS}
|
npm.toggle_failed=因 {ERROR} 所误,良机尽失,{NAME} 无以{STATUS}
|
||||||
npm.toggle_success=件曰 {NAME} 者,方 {STATUS} 成
|
npm.toggle_success=件曰 {NAME} 者,方{STATUS}成
|
||||||
npm.page=页第 {PAGE} 之于 {TOTAL}
|
npm.page=页第 {PAGE} 之于 {TOTAL}
|
||||||
npm.update_index=阁引
|
npm.update_index=阁引
|
||||||
npm.list_plugins=件目
|
npm.list_plugins=件目
|
||||||
|
Loading…
Reference in New Issue
Block a user