2024-08-19 23:07:43 +08:00
|
|
|
|
from nonebot.adapters import Bot
|
|
|
|
|
|
from nonebot.permission import SUPERUSER
|
|
|
|
|
|
from nonebot.plugin import PluginMetadata
|
2024-12-10 19:49:11 +08:00
|
|
|
|
from nonebot.rule import to_me
|
2025-01-06 11:32:56 +08:00
|
|
|
|
from nonebot_plugin_alconna import (
|
|
|
|
|
|
Alconna,
|
|
|
|
|
|
Args,
|
|
|
|
|
|
Match,
|
|
|
|
|
|
Option,
|
|
|
|
|
|
Query,
|
|
|
|
|
|
on_alconna,
|
|
|
|
|
|
store_true,
|
|
|
|
|
|
)
|
2025-07-11 10:11:14 +08:00
|
|
|
|
from nonebot_plugin_uninfo import Uninfo
|
2024-08-19 23:07:43 +08:00
|
|
|
|
|
2025-01-06 11:32:56 +08:00
|
|
|
|
from zhenxun.configs.utils import PluginExtraData
|
2024-08-19 23:07:43 +08:00
|
|
|
|
from zhenxun.services.log import logger
|
|
|
|
|
|
from zhenxun.utils.enum import PluginType
|
|
|
|
|
|
from zhenxun.utils.message import MessageUtils
|
|
|
|
|
|
|
2025-07-11 10:11:14 +08:00
|
|
|
|
from ._data_source import UpdateManager
|
2024-08-19 23:07:43 +08:00
|
|
|
|
|
|
|
|
|
|
__plugin_meta__ = PluginMetadata(
|
|
|
|
|
|
name="自动更新",
|
|
|
|
|
|
description="就算是真寻也会成长的",
|
|
|
|
|
|
usage="""
|
|
|
|
|
|
usage:
|
|
|
|
|
|
检查更新真寻最新版本,包括了自动更新
|
2025-01-06 11:32:56 +08:00
|
|
|
|
资源文件大小一般在130mb左右,除非必须更新一般仅更新代码文件
|
2024-08-19 23:07:43 +08:00
|
|
|
|
指令:
|
2025-08-05 17:49:23 +08:00
|
|
|
|
检查更新 [main|release|resource|webui] ?[-r] ?[-f] ?[-z] ?[-t]
|
2025-01-06 11:32:56 +08:00
|
|
|
|
main: main分支
|
|
|
|
|
|
release: 最新release
|
|
|
|
|
|
resource: 资源文件
|
2025-07-11 10:11:14 +08:00
|
|
|
|
webui: webui文件
|
2025-01-06 11:32:56 +08:00
|
|
|
|
-r: 下载资源文件,一般在更新main或release时使用
|
2025-08-05 17:49:23 +08:00
|
|
|
|
-f: 强制更新,一般用于更新main时使用(仅git更新时有效)
|
|
|
|
|
|
-s: 更新源,为 git 或 ali(默认使用ali)
|
|
|
|
|
|
-z: 下载zip文件进行更新(仅git有效)
|
|
|
|
|
|
-t: 更新方式,git或download(默认使用git)
|
|
|
|
|
|
git: 使用git pull(推荐)
|
|
|
|
|
|
download: 通过commit hash比较文件后下载更新(仅git有效)
|
|
|
|
|
|
|
2025-01-06 11:32:56 +08:00
|
|
|
|
示例:
|
|
|
|
|
|
检查更新 main
|
|
|
|
|
|
检查更新 main -r
|
2025-08-05 17:49:23 +08:00
|
|
|
|
检查更新 main -f
|
2025-01-06 11:32:56 +08:00
|
|
|
|
检查更新 release -r
|
|
|
|
|
|
检查更新 resource
|
2025-07-11 10:11:14 +08:00
|
|
|
|
检查更新 webui
|
2024-08-19 23:07:43 +08:00
|
|
|
|
""".strip(),
|
|
|
|
|
|
extra=PluginExtraData(
|
|
|
|
|
|
author="HibiKier",
|
|
|
|
|
|
version="0.1",
|
|
|
|
|
|
plugin_type=PluginType.SUPERUSER,
|
2025-01-07 14:20:30 +08:00
|
|
|
|
).to_dict(),
|
2024-08-19 23:07:43 +08:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
_matcher = on_alconna(
|
2025-01-06 11:32:56 +08:00
|
|
|
|
Alconna(
|
|
|
|
|
|
"检查更新",
|
2025-07-11 10:11:14 +08:00
|
|
|
|
Args["ver_type?", ["main", "release", "resource", "webui"]],
|
2025-01-06 11:32:56 +08:00
|
|
|
|
Option("-r|--resource", action=store_true, help_text="下载资源文件"),
|
2025-08-05 17:49:23 +08:00
|
|
|
|
Option("-f|--force", action=store_true, help_text="强制更新"),
|
|
|
|
|
|
Option("-s", Args["source?", ["git", "ali"]], help_text="更新源"),
|
|
|
|
|
|
Option("-z|--zip", action=store_true, help_text="下载zip文件"),
|
2025-01-06 11:32:56 +08:00
|
|
|
|
),
|
2024-08-19 23:07:43 +08:00
|
|
|
|
priority=1,
|
|
|
|
|
|
block=True,
|
|
|
|
|
|
permission=SUPERUSER,
|
2024-08-24 12:30:49 +08:00
|
|
|
|
rule=to_me(),
|
2024-08-19 23:07:43 +08:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@_matcher.handle()
|
2025-01-06 11:32:56 +08:00
|
|
|
|
async def _(
|
|
|
|
|
|
bot: Bot,
|
2025-07-11 10:11:14 +08:00
|
|
|
|
session: Uninfo,
|
2025-01-06 11:32:56 +08:00
|
|
|
|
ver_type: Match[str],
|
|
|
|
|
|
resource: Query[bool] = Query("resource", False),
|
2025-08-05 17:49:23 +08:00
|
|
|
|
force: Query[bool] = Query("force", False),
|
|
|
|
|
|
source: Query[str] = Query("source", "ali"),
|
|
|
|
|
|
zip: Query[bool] = Query("zip", False),
|
2025-01-06 11:32:56 +08:00
|
|
|
|
):
|
|
|
|
|
|
result = ""
|
2025-07-11 10:11:14 +08:00
|
|
|
|
await MessageUtils.build_message("正在进行检查更新...").send(reply_to=True)
|
2025-09-12 17:38:41 +08:00
|
|
|
|
|
|
|
|
|
|
if not ver_type.available:
|
|
|
|
|
|
result += await UpdateManager.check_version()
|
|
|
|
|
|
logger.info("查看当前版本...", "检查更新", session=session)
|
|
|
|
|
|
await MessageUtils.build_message(result).finish()
|
|
|
|
|
|
return
|
|
|
|
|
|
|
2025-08-05 17:49:23 +08:00
|
|
|
|
ver_type_str = ver_type.result
|
|
|
|
|
|
source_str = source.result
|
|
|
|
|
|
if ver_type_str in {"main", "release"}:
|
2025-01-06 11:32:56 +08:00
|
|
|
|
try:
|
2025-08-05 17:49:23 +08:00
|
|
|
|
result += await UpdateManager.update_zhenxun(
|
|
|
|
|
|
bot,
|
|
|
|
|
|
session.user.id,
|
|
|
|
|
|
ver_type_str, # type: ignore
|
|
|
|
|
|
force.result,
|
|
|
|
|
|
source_str, # type: ignore
|
|
|
|
|
|
zip.result,
|
|
|
|
|
|
)
|
2025-01-06 11:32:56 +08:00
|
|
|
|
except Exception as e:
|
|
|
|
|
|
logger.error("版本更新失败...", "检查更新", session=session, e=e)
|
|
|
|
|
|
await MessageUtils.build_message(f"更新版本失败...e: {e}").finish()
|
2025-07-11 10:11:14 +08:00
|
|
|
|
elif ver_type.result == "webui":
|
2025-08-05 17:49:23 +08:00
|
|
|
|
if zip.result:
|
|
|
|
|
|
source_str = None
|
|
|
|
|
|
try:
|
|
|
|
|
|
result += await UpdateManager.update_webui(
|
|
|
|
|
|
source_str, # type: ignore
|
|
|
|
|
|
"test",
|
|
|
|
|
|
True,
|
|
|
|
|
|
)
|
|
|
|
|
|
except Exception as e:
|
|
|
|
|
|
logger.error("WebUI更新失败...", "检查更新", session=session, e=e)
|
|
|
|
|
|
result += "\nWebUI更新错误..."
|
2025-01-06 11:32:56 +08:00
|
|
|
|
if resource.result or ver_type.result == "resource":
|
|
|
|
|
|
try:
|
2025-08-05 17:49:23 +08:00
|
|
|
|
if zip.result:
|
|
|
|
|
|
source_str = None
|
|
|
|
|
|
result += await UpdateManager.update_resources(
|
|
|
|
|
|
source_str, # type: ignore
|
|
|
|
|
|
"main",
|
|
|
|
|
|
force.result,
|
|
|
|
|
|
)
|
2025-01-06 11:32:56 +08:00
|
|
|
|
except Exception as e:
|
|
|
|
|
|
logger.error("资源更新下载失败...", "检查更新", session=session, e=e)
|
2025-08-05 17:49:23 +08:00
|
|
|
|
result += "\n资源更新错误..."
|
2024-08-19 23:07:43 +08:00
|
|
|
|
if result:
|
2025-01-06 11:32:56 +08:00
|
|
|
|
await MessageUtils.build_message(result.strip()).finish()
|
2024-08-19 23:07:43 +08:00
|
|
|
|
await MessageUtils.build_message("更新版本失败...").finish()
|