2024-03-22 12:41:38 +08:00
|
|
|
import os
|
|
|
|
|
2024-03-18 18:21:56 +08:00
|
|
|
import nonebot.plugin
|
2024-03-26 22:33:17 +08:00
|
|
|
from nonebot import require
|
|
|
|
from nonebot.exception import FinishedException, IgnoredException
|
|
|
|
from nonebot.internal.adapter import Event
|
2024-03-22 07:44:41 +08:00
|
|
|
from nonebot.internal.matcher import Matcher
|
2024-03-26 22:33:17 +08:00
|
|
|
from nonebot.adapters import Bot
|
2024-03-22 07:44:41 +08:00
|
|
|
from nonebot.message import run_preprocessor
|
2024-03-19 00:27:40 +08:00
|
|
|
from nonebot.permission import SUPERUSER
|
2024-03-26 22:33:17 +08:00
|
|
|
from nonebot.plugin import Plugin
|
2024-03-19 00:27:40 +08:00
|
|
|
|
2024-03-26 22:33:17 +08:00
|
|
|
from liteyuki.utils.data_manager import GlobalPlugin, Group, InstalledPlugin, User, group_db, plugin_db, user_db
|
|
|
|
from liteyuki.utils.language import get_user_lang
|
|
|
|
from liteyuki.utils.ly_typing import T_Bot, T_MessageEvent
|
2024-03-24 09:43:34 +08:00
|
|
|
from liteyuki.utils.message import Markdown as md, send_markdown
|
|
|
|
from liteyuki.utils.permission import GROUP_ADMIN, GROUP_OWNER
|
2024-03-26 22:33:17 +08:00
|
|
|
from .common import get_plugin_can_be_toggle, get_plugin_default_enable, get_plugin_global_enable, get_plugin_session_enable
|
2024-03-22 12:41:38 +08:00
|
|
|
from .installer import get_store_plugin, npm_update
|
2024-03-18 18:21:56 +08:00
|
|
|
|
2024-03-24 22:04:51 +08:00
|
|
|
require("nonebot_plugin_alconna")
|
|
|
|
from nonebot_plugin_alconna import on_alconna, Alconna, Args, Arparma
|
|
|
|
|
2024-03-24 09:43:34 +08:00
|
|
|
list_plugins = on_alconna(
|
|
|
|
Alconna(
|
2024-03-26 17:14:41 +08:00
|
|
|
["list-plugins", "插件列表", "列出插件"],
|
2024-03-24 09:43:34 +08:00
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2024-03-22 07:44:41 +08:00
|
|
|
toggle_plugin = on_alconna(
|
|
|
|
Alconna(
|
2024-03-26 21:33:40 +08:00
|
|
|
["enable", "disable"],
|
2024-03-26 17:14:41 +08:00
|
|
|
Args["plugin_name", str],
|
2024-03-22 07:44:41 +08:00
|
|
|
)
|
|
|
|
)
|
2024-03-18 18:21:56 +08:00
|
|
|
|
2024-03-26 21:33:40 +08:00
|
|
|
toggle_plugin_global = on_alconna(
|
|
|
|
Alconna(
|
|
|
|
["enable-global", "disable-global"],
|
|
|
|
Args["plugin_name", str],
|
|
|
|
),
|
|
|
|
permission=SUPERUSER
|
|
|
|
)
|
|
|
|
|
2024-03-24 09:43:34 +08:00
|
|
|
global_toggle = on_alconna(
|
|
|
|
Alconna(
|
2024-03-26 17:14:41 +08:00
|
|
|
["toggle-global"],
|
|
|
|
Args["plugin_name", str],
|
2024-03-24 09:43:34 +08:00
|
|
|
),
|
|
|
|
permission=SUPERUSER
|
|
|
|
)
|
|
|
|
|
2024-03-18 18:21:56 +08:00
|
|
|
|
|
|
|
@list_plugins.handle()
|
2024-03-20 18:27:49 +08:00
|
|
|
async def _(event: T_MessageEvent, bot: T_Bot):
|
2024-03-22 12:41:38 +08:00
|
|
|
if not os.path.exists("data/liteyuki/plugins.json"):
|
|
|
|
await npm_update()
|
2024-03-19 00:27:40 +08:00
|
|
|
lang = get_user_lang(str(event.user_id))
|
2024-03-22 07:44:41 +08:00
|
|
|
reply = f"# {lang.get('npm.loaded_plugins')} | {lang.get('npm.total', TOTAL=len(nonebot.get_loaded_plugins()))} \n***\n"
|
2024-03-18 18:21:56 +08:00
|
|
|
for plugin in nonebot.get_loaded_plugins():
|
2024-03-19 00:27:40 +08:00
|
|
|
# 检查是否有 metadata 属性
|
2024-03-22 07:44:41 +08:00
|
|
|
# 添加帮助按钮
|
2024-03-26 17:14:41 +08:00
|
|
|
btn_usage = md.button(lang.get("npm.usage"), f"help {plugin.module_name}", False)
|
2024-03-22 07:44:41 +08:00
|
|
|
store_plugin = await get_store_plugin(plugin.module_name)
|
|
|
|
|
2024-03-24 09:43:34 +08:00
|
|
|
session_enable = get_plugin_session_enable(event, plugin.module_name)
|
|
|
|
default_enable = get_plugin_default_enable(plugin.module_name)
|
2024-03-24 19:15:49 +08:00
|
|
|
|
2024-03-22 07:44:41 +08:00
|
|
|
if store_plugin:
|
2024-03-26 17:14:41 +08:00
|
|
|
btn_homepage = md.link(lang.get("npm.homepage"), store_plugin.homepage)
|
2024-03-24 09:43:34 +08:00
|
|
|
show_name = store_plugin.name
|
|
|
|
show_desc = store_plugin.desc
|
|
|
|
elif plugin.metadata:
|
2024-03-26 17:14:41 +08:00
|
|
|
if plugin.metadata.extra.get("liteyuki"):
|
|
|
|
btn_homepage = md.link(lang.get("npm.homepage"), "https://github.com/snowykami/LiteyukiBot")
|
2024-03-24 09:43:34 +08:00
|
|
|
else:
|
2024-03-26 17:14:41 +08:00
|
|
|
btn_homepage = lang.get("npm.homepage")
|
2024-03-24 09:43:34 +08:00
|
|
|
show_name = plugin.metadata.name
|
|
|
|
show_desc = plugin.metadata.description
|
2024-03-22 07:44:41 +08:00
|
|
|
else:
|
2024-03-26 17:14:41 +08:00
|
|
|
btn_homepage = lang.get("npm.homepage")
|
2024-03-24 09:43:34 +08:00
|
|
|
show_name = plugin.name
|
2024-03-26 17:14:41 +08:00
|
|
|
show_desc = lang.get("npm.no_description")
|
2024-03-22 07:44:41 +08:00
|
|
|
|
2024-03-19 00:27:40 +08:00
|
|
|
if plugin.metadata:
|
2024-03-24 09:43:34 +08:00
|
|
|
reply += (f"\n**{md.escape(show_name)}**\n"
|
|
|
|
f"\n > {md.escape(show_desc)}")
|
2024-03-19 00:27:40 +08:00
|
|
|
else:
|
2024-03-24 09:43:34 +08:00
|
|
|
reply += (f"**{md.escape(show_name)}**\n"
|
|
|
|
f"\n > {md.escape(show_desc)}")
|
2024-03-22 07:44:41 +08:00
|
|
|
|
|
|
|
reply += f"\n > {btn_usage} {btn_homepage}"
|
|
|
|
|
2024-03-21 14:52:02 +08:00
|
|
|
if await GROUP_ADMIN(bot, event) or await GROUP_OWNER(bot, event) or await SUPERUSER(bot, event):
|
2024-03-22 07:44:41 +08:00
|
|
|
# 添加启用/停用插件按钮
|
2024-03-26 21:33:40 +08:00
|
|
|
cmd_toggle = f"{'disable' if session_enable else 'enable'} {plugin.module_name}"
|
2024-03-26 17:14:41 +08:00
|
|
|
text_toggle = lang.get("npm.disable" if session_enable else "npm.enable")
|
2024-03-24 09:43:34 +08:00
|
|
|
can_be_toggle = get_plugin_can_be_toggle(plugin.module_name)
|
|
|
|
btn_toggle = text_toggle if not can_be_toggle else md.button(text_toggle, cmd_toggle)
|
|
|
|
|
2024-03-22 07:44:41 +08:00
|
|
|
reply += f" {btn_toggle}"
|
|
|
|
|
2024-03-21 14:52:02 +08:00
|
|
|
if await SUPERUSER(bot, event):
|
2024-03-26 21:33:40 +08:00
|
|
|
plugin_in_database = plugin_db.first(InstalledPlugin(), "module_name = ?", plugin.module_name)
|
2024-03-24 09:43:34 +08:00
|
|
|
# 添加移除插件和全局切换按钮
|
|
|
|
global_enable = get_plugin_global_enable(plugin.module_name)
|
2024-03-23 19:55:12 +08:00
|
|
|
btn_uninstall = (
|
2024-03-26 17:14:41 +08:00
|
|
|
md.button(lang.get("npm.uninstall"), f'npm uninstall {plugin.module_name}')) if plugin_in_database else lang.get(
|
2024-03-21 14:52:02 +08:00
|
|
|
'npm.uninstall')
|
2024-03-24 09:43:34 +08:00
|
|
|
|
2024-03-26 17:14:41 +08:00
|
|
|
btn_toggle_global_text = lang.get("npm.disable_global" if global_enable else "npm.enable_global")
|
2024-03-26 21:33:40 +08:00
|
|
|
cmd_toggle_global = f"{'disable-global' if global_enable else 'enable-global'} {plugin.module_name}"
|
2024-03-24 09:43:34 +08:00
|
|
|
btn_toggle_global = btn_toggle_global_text if not can_be_toggle else md.button(btn_toggle_global_text, cmd_toggle_global)
|
|
|
|
|
2024-03-23 19:55:12 +08:00
|
|
|
reply += f" {btn_uninstall} {btn_toggle_global}"
|
2024-03-22 07:44:41 +08:00
|
|
|
|
2024-03-21 14:52:02 +08:00
|
|
|
reply += "\n\n***\n"
|
2024-03-20 18:27:49 +08:00
|
|
|
await send_markdown(reply, bot, event=event)
|
2024-03-22 07:44:41 +08:00
|
|
|
|
|
|
|
|
|
|
|
@toggle_plugin.handle()
|
|
|
|
async def _(result: Arparma, event: T_MessageEvent, bot: T_Bot):
|
2024-03-22 12:41:38 +08:00
|
|
|
if not os.path.exists("data/liteyuki/plugins.json"):
|
|
|
|
await npm_update()
|
2024-03-22 07:44:41 +08:00
|
|
|
# 判断会话类型
|
|
|
|
ulang = get_user_lang(str(event.user_id))
|
|
|
|
plugin_module_name = result.args.get("plugin_name")
|
|
|
|
|
2024-03-26 17:14:41 +08:00
|
|
|
toggle = result.header_result == "enable-plugin" # 判断是启用还是停用
|
2024-03-24 19:15:49 +08:00
|
|
|
|
|
|
|
session_enable = get_plugin_session_enable(event, plugin_module_name) # 获取插件当前状态
|
2024-03-22 07:44:41 +08:00
|
|
|
|
|
|
|
default_enable = get_plugin_default_enable(plugin_module_name) # 获取插件默认状态
|
2024-03-24 09:43:34 +08:00
|
|
|
|
2024-03-22 07:44:41 +08:00
|
|
|
can_be_toggled = get_plugin_can_be_toggle(plugin_module_name) # 获取插件是否可以被启用/停用
|
|
|
|
|
|
|
|
if not can_be_toggled:
|
|
|
|
await toggle_plugin.finish(ulang.get("npm.plugin_cannot_be_toggled", NAME=plugin_module_name))
|
|
|
|
|
2024-03-24 19:15:49 +08:00
|
|
|
if session_enable == toggle:
|
2024-03-22 07:44:41 +08:00
|
|
|
await toggle_plugin.finish(
|
|
|
|
ulang.get("npm.plugin_already", NAME=plugin_module_name, STATUS=ulang.get("npm.enable") if toggle else ulang.get("npm.disable")))
|
|
|
|
|
|
|
|
if event.message_type == "private":
|
2024-03-26 21:33:40 +08:00
|
|
|
session = user_db.first(User(), "user_id = ?", event.user_id, default=User(user_id=event.user_id))
|
2024-03-22 07:44:41 +08:00
|
|
|
else:
|
|
|
|
if await GROUP_ADMIN(bot, event) or await GROUP_OWNER(bot, event) or await SUPERUSER(bot, event):
|
2024-03-26 21:33:40 +08:00
|
|
|
session = group_db.first(Group(), "group_id = ?", event.group_id, default=Group(group_id=str(event.group_id)))
|
2024-03-22 07:44:41 +08:00
|
|
|
else:
|
2024-03-23 19:55:12 +08:00
|
|
|
raise FinishedException(ulang.get("Permission Denied"))
|
2024-03-22 07:44:41 +08:00
|
|
|
try:
|
|
|
|
if toggle:
|
|
|
|
if default_enable:
|
|
|
|
session.disabled_plugins.remove(plugin_module_name)
|
|
|
|
else:
|
|
|
|
session.enabled_plugins.append(plugin_module_name)
|
|
|
|
else:
|
|
|
|
if default_enable:
|
|
|
|
session.disabled_plugins.append(plugin_module_name)
|
|
|
|
else:
|
|
|
|
session.enabled_plugins.remove(plugin_module_name)
|
2024-03-24 19:15:49 +08:00
|
|
|
if event.message_type == "private":
|
|
|
|
user_db.upsert(session)
|
|
|
|
else:
|
|
|
|
group_db.upsert(session)
|
2024-03-22 07:44:41 +08:00
|
|
|
except Exception as e:
|
2024-03-24 19:15:49 +08:00
|
|
|
print(e)
|
2024-03-22 07:44:41 +08:00
|
|
|
await toggle_plugin.finish(
|
|
|
|
ulang.get(
|
|
|
|
"npm.toggle_failed",
|
|
|
|
NAME=plugin_module_name,
|
|
|
|
STATUS=ulang.get("npm.enable") if toggle else ulang.get("npm.disable"),
|
|
|
|
ERROR=str(e))
|
|
|
|
)
|
|
|
|
|
2024-03-24 09:43:34 +08:00
|
|
|
await toggle_plugin.finish(
|
|
|
|
ulang.get(
|
|
|
|
"npm.toggle_success",
|
|
|
|
NAME=plugin_module_name,
|
|
|
|
STATUS=ulang.get("npm.enable") if toggle else ulang.get("npm.disable"))
|
|
|
|
)
|
|
|
|
|
2024-03-22 07:44:41 +08:00
|
|
|
|
2024-03-26 21:33:40 +08:00
|
|
|
@toggle_plugin_global.handle()
|
|
|
|
async def _(result: Arparma, event: T_MessageEvent, bot: T_Bot):
|
|
|
|
if not os.path.exists("data/liteyuki/plugins.json"):
|
|
|
|
await npm_update()
|
|
|
|
# 判断会话类型
|
|
|
|
ulang = get_user_lang(str(event.user_id))
|
|
|
|
plugin_module_name = result.args.get("plugin_name")
|
|
|
|
|
|
|
|
toggle = result.header_result == "enable-global"
|
|
|
|
can_be_toggled = get_plugin_can_be_toggle(plugin_module_name)
|
|
|
|
if not can_be_toggled:
|
|
|
|
await toggle_plugin_global.finish(ulang.get("npm.plugin_cannot_be_toggled", NAME=plugin_module_name))
|
|
|
|
|
|
|
|
global_enable = get_plugin_global_enable(plugin_module_name)
|
|
|
|
if global_enable == toggle:
|
|
|
|
await toggle_plugin_global.finish(
|
|
|
|
ulang.get("npm.plugin_already", NAME=plugin_module_name, STATUS=ulang.get("npm.enable") if toggle else ulang.get("npm.disable")))
|
|
|
|
|
|
|
|
try:
|
2024-03-26 22:33:17 +08:00
|
|
|
plugin = plugin_db.first(GlobalPlugin(), "module_name = ?", plugin_module_name, default=GlobalPlugin(module_name=plugin_module_name))
|
2024-03-26 21:33:40 +08:00
|
|
|
if toggle:
|
|
|
|
plugin.enabled = True
|
|
|
|
else:
|
|
|
|
plugin.enabled = False
|
|
|
|
plugin_db.upsert(plugin)
|
|
|
|
except Exception as e:
|
|
|
|
print(e)
|
|
|
|
await toggle_plugin_global.finish(
|
|
|
|
ulang.get(
|
|
|
|
"npm.toggle_failed",
|
|
|
|
NAME=plugin_module_name,
|
|
|
|
STATUS=ulang.get("npm.enable") if toggle else ulang.get("npm.disable"),
|
|
|
|
ERROR=str(e))
|
|
|
|
)
|
|
|
|
|
|
|
|
await toggle_plugin_global.finish(
|
|
|
|
ulang.get(
|
|
|
|
"npm.toggle_success",
|
|
|
|
NAME=plugin_module_name,
|
|
|
|
STATUS=ulang.get("npm.enable") if toggle else ulang.get("npm.disable"))
|
|
|
|
)
|
|
|
|
|
2024-03-26 22:33:17 +08:00
|
|
|
|
2024-03-22 07:44:41 +08:00
|
|
|
@run_preprocessor
|
2024-03-26 22:33:17 +08:00
|
|
|
async def pre_handle(event: Event, matcher: Matcher):
|
|
|
|
plugin: Plugin = matcher.plugin
|
|
|
|
plugin_global_enable = get_plugin_global_enable(plugin.module_name)
|
|
|
|
if not plugin_global_enable:
|
|
|
|
raise IgnoredException("Plugin disabled globally")
|
|
|
|
if event.get_type() == "message":
|
|
|
|
plugin_session_enable = get_plugin_session_enable(event, plugin.module_name)
|
|
|
|
if not plugin_session_enable:
|
|
|
|
raise IgnoredException("Plugin disabled in session")
|
|
|
|
|
|
|
|
|
|
|
|
@Bot.on_calling_api
|
|
|
|
async def _(bot: Bot, api: str, data: dict[str, any]):
|
2024-03-23 19:55:12 +08:00
|
|
|
# TODO 插件启用/停用检查hook
|
2024-03-26 22:33:17 +08:00
|
|
|
nonebot.logger.info(f"Plugin Callapi: {api}: {data}")
|