2023-01-05 15:41:13 +08:00
|
|
|
|
import datetime
|
2023-03-05 11:56:40 +08:00
|
|
|
|
import logging
|
|
|
|
|
import os.path
|
|
|
|
|
|
|
|
|
|
import requests
|
|
|
|
|
import json
|
2023-01-05 15:34:14 +08:00
|
|
|
|
|
2023-03-05 12:26:51 +08:00
|
|
|
|
import pkg.utils.constants
|
2023-01-05 21:00:17 +08:00
|
|
|
|
|
2023-01-02 12:54:38 +08:00
|
|
|
|
|
2023-01-17 12:30:45 +08:00
|
|
|
|
def check_dulwich_closure():
|
2023-01-16 21:34:35 +08:00
|
|
|
|
try:
|
|
|
|
|
import pkg.utils.pkgmgr
|
|
|
|
|
pkg.utils.pkgmgr.ensure_dulwich()
|
|
|
|
|
except:
|
|
|
|
|
pass
|
|
|
|
|
|
2023-01-02 13:37:28 +08:00
|
|
|
|
try:
|
|
|
|
|
import dulwich
|
|
|
|
|
except ModuleNotFoundError:
|
|
|
|
|
raise Exception("dulwich模块未安装,请查看 https://github.com/RockChinQ/QChatGPT/issues/77")
|
2023-01-17 12:30:45 +08:00
|
|
|
|
|
|
|
|
|
|
2023-01-17 12:35:40 +08:00
|
|
|
|
def pull_latest(repo_path: str) -> bool:
|
|
|
|
|
"""拉取最新代码"""
|
|
|
|
|
check_dulwich_closure()
|
|
|
|
|
|
|
|
|
|
from dulwich import porcelain
|
|
|
|
|
|
|
|
|
|
repo = porcelain.open_repo(repo_path)
|
|
|
|
|
porcelain.pull(repo)
|
|
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
2023-03-05 12:09:44 +08:00
|
|
|
|
def get_release_list() -> list:
|
|
|
|
|
"""获取发行列表"""
|
|
|
|
|
rls_list_resp = requests.get(
|
|
|
|
|
url="https://api.github.com/repos/RockChinQ/QChatGPT/releases"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
rls_list = rls_list_resp.json()
|
|
|
|
|
|
|
|
|
|
return rls_list
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def get_current_tag() -> str:
|
|
|
|
|
"""获取当前tag"""
|
2023-03-05 12:26:51 +08:00
|
|
|
|
current_tag = pkg.utils.constants.semantic_version
|
2023-03-05 11:56:40 +08:00
|
|
|
|
if os.path.exists("current_tag"):
|
|
|
|
|
with open("current_tag", "r") as f:
|
|
|
|
|
current_tag = f.read()
|
|
|
|
|
|
2023-03-05 12:09:44 +08:00
|
|
|
|
return current_tag
|
2023-03-05 11:56:40 +08:00
|
|
|
|
|
2023-03-05 12:09:44 +08:00
|
|
|
|
|
2023-03-06 11:18:31 +08:00
|
|
|
|
def update_all(cli: bool = False) -> bool:
|
2023-03-05 12:09:44 +08:00
|
|
|
|
"""检查更新并下载源码"""
|
|
|
|
|
current_tag = get_current_tag()
|
|
|
|
|
|
|
|
|
|
rls_list = get_release_list()
|
2023-03-05 11:56:40 +08:00
|
|
|
|
|
|
|
|
|
latest_rls = {}
|
|
|
|
|
rls_notes = []
|
|
|
|
|
for rls in rls_list:
|
|
|
|
|
rls_notes.append(rls['name']) # 使用发行名称作为note
|
|
|
|
|
if rls['tag_name'] == current_tag:
|
|
|
|
|
break
|
|
|
|
|
|
|
|
|
|
if latest_rls == {}:
|
|
|
|
|
latest_rls = rls
|
2023-03-06 11:18:31 +08:00
|
|
|
|
if not cli:
|
|
|
|
|
logging.info("更新日志: {}".format(rls_notes))
|
|
|
|
|
else:
|
|
|
|
|
print("更新日志: {}".format(rls_notes))
|
|
|
|
|
|
2023-03-05 11:56:40 +08:00
|
|
|
|
if latest_rls == {}: # 没有新版本
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
# 下载最新版本的zip到temp目录
|
2023-03-06 11:18:31 +08:00
|
|
|
|
if not cli:
|
|
|
|
|
logging.info("开始下载最新版本: {}".format(latest_rls['zipball_url']))
|
|
|
|
|
else:
|
|
|
|
|
print("开始下载最新版本: {}".format(latest_rls['zipball_url']))
|
2023-03-05 11:56:40 +08:00
|
|
|
|
zip_url = latest_rls['zipball_url']
|
|
|
|
|
zip_resp = requests.get(url=zip_url)
|
|
|
|
|
zip_data = zip_resp.content
|
|
|
|
|
|
|
|
|
|
# 检查temp/updater目录
|
|
|
|
|
if not os.path.exists("temp"):
|
|
|
|
|
os.mkdir("temp")
|
|
|
|
|
if not os.path.exists("temp/updater"):
|
|
|
|
|
os.mkdir("temp/updater")
|
|
|
|
|
with open("temp/updater/{}.zip".format(latest_rls['tag_name']), "wb") as f:
|
|
|
|
|
f.write(zip_data)
|
|
|
|
|
|
2023-03-06 11:18:31 +08:00
|
|
|
|
if not cli:
|
|
|
|
|
logging.info("下载最新版本完成: {}".format("temp/updater/{}.zip".format(latest_rls['tag_name'])))
|
|
|
|
|
else:
|
|
|
|
|
print("下载最新版本完成: {}".format("temp/updater/{}.zip".format(latest_rls['tag_name'])))
|
2023-03-05 11:56:40 +08:00
|
|
|
|
|
|
|
|
|
# 解压zip到temp/updater/<tag_name>/
|
|
|
|
|
import zipfile
|
|
|
|
|
# 检查目标文件夹
|
|
|
|
|
if os.path.exists("temp/updater/{}".format(latest_rls['tag_name'])):
|
|
|
|
|
import shutil
|
|
|
|
|
shutil.rmtree("temp/updater/{}".format(latest_rls['tag_name']))
|
|
|
|
|
os.mkdir("temp/updater/{}".format(latest_rls['tag_name']))
|
|
|
|
|
with zipfile.ZipFile("temp/updater/{}.zip".format(latest_rls['tag_name']), 'r') as zip_ref:
|
|
|
|
|
zip_ref.extractall("temp/updater/{}".format(latest_rls['tag_name']))
|
|
|
|
|
|
|
|
|
|
# 覆盖源码
|
|
|
|
|
source_root = ""
|
|
|
|
|
# 找到temp/updater/<tag_name>/中的第一个子目录路径
|
|
|
|
|
for root, dirs, files in os.walk("temp/updater/{}".format(latest_rls['tag_name'])):
|
|
|
|
|
if root != "temp/updater/{}".format(latest_rls['tag_name']):
|
|
|
|
|
source_root = root
|
|
|
|
|
break
|
|
|
|
|
|
|
|
|
|
# 覆盖源码
|
|
|
|
|
import shutil
|
|
|
|
|
for root, dirs, files in os.walk(source_root):
|
|
|
|
|
# 覆盖所有子文件子目录
|
|
|
|
|
for file in files:
|
|
|
|
|
src = os.path.join(root, file)
|
|
|
|
|
dst = src.replace(source_root, ".")
|
|
|
|
|
if os.path.exists(dst):
|
|
|
|
|
os.remove(dst)
|
|
|
|
|
shutil.copy(src, dst)
|
|
|
|
|
|
|
|
|
|
# 把current_tag写入文件
|
|
|
|
|
current_tag = latest_rls['tag_name']
|
|
|
|
|
with open("current_tag", "w") as f:
|
|
|
|
|
f.write(current_tag)
|
|
|
|
|
|
|
|
|
|
# 通知管理员
|
2023-03-06 11:04:25 +08:00
|
|
|
|
if not cli:
|
|
|
|
|
import pkg.utils.context
|
|
|
|
|
pkg.utils.context.get_qqbot_manager().notify_admin("已更新到最新版本: {}\n更新日志:\n{}\n新功能通常可以在config-template.py中看到,完整的更新日志请前往 https://github.com/RockChinQ/QChatGPT/releases 查看".format(current_tag, "\n".join(rls_notes)))
|
|
|
|
|
else:
|
|
|
|
|
print("已更新到最新版本: {}\n更新日志:\n{}\n新功能通常可以在config-template.py中看到,完整的更新日志请前往 https://github.com/RockChinQ/QChatGPT/releases 查看".format(current_tag, "\n".join(rls_notes)))
|
2023-03-05 11:56:40 +08:00
|
|
|
|
return True
|
2023-01-05 15:34:14 +08:00
|
|
|
|
|
|
|
|
|
|
2023-01-17 12:30:45 +08:00
|
|
|
|
def is_repo(path: str) -> bool:
|
|
|
|
|
"""检查是否是git仓库"""
|
|
|
|
|
check_dulwich_closure()
|
|
|
|
|
|
|
|
|
|
from dulwich import porcelain
|
2023-01-16 21:34:35 +08:00
|
|
|
|
try:
|
2023-01-17 12:30:45 +08:00
|
|
|
|
porcelain.open_repo(path)
|
|
|
|
|
return True
|
2023-01-16 21:34:35 +08:00
|
|
|
|
except:
|
2023-01-17 12:30:45 +08:00
|
|
|
|
return False
|
2023-01-16 21:34:35 +08:00
|
|
|
|
|
2023-01-17 12:30:45 +08:00
|
|
|
|
|
|
|
|
|
def get_remote_url(repo_path: str) -> str:
|
|
|
|
|
"""获取远程仓库地址"""
|
|
|
|
|
check_dulwich_closure()
|
|
|
|
|
|
|
|
|
|
from dulwich import porcelain
|
|
|
|
|
repo = porcelain.open_repo(repo_path)
|
|
|
|
|
return str(porcelain.get_remote_repo(repo, "origin")[1])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def get_current_version_info() -> str:
|
|
|
|
|
"""获取当前版本信息"""
|
2023-03-05 20:07:08 +08:00
|
|
|
|
rls_list = get_release_list()
|
|
|
|
|
current_tag = get_current_tag()
|
|
|
|
|
for rls in rls_list:
|
|
|
|
|
if rls['tag_name'] == current_tag:
|
|
|
|
|
return rls['name'] + "\n" + rls['body']
|
|
|
|
|
return "未知版本"
|
2023-01-05 15:50:45 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def get_commit_id_and_time_and_msg() -> str:
|
|
|
|
|
"""获取当前提交id和时间和提交信息"""
|
2023-01-17 12:30:45 +08:00
|
|
|
|
check_dulwich_closure()
|
2023-01-05 15:50:45 +08:00
|
|
|
|
|
|
|
|
|
from dulwich import porcelain
|
|
|
|
|
|
|
|
|
|
repo = porcelain.open_repo('.')
|
|
|
|
|
|
|
|
|
|
for entry in repo.get_walker():
|
|
|
|
|
tz = datetime.timezone(datetime.timedelta(hours=entry.commit.commit_timezone // 3600))
|
|
|
|
|
dt = datetime.datetime.fromtimestamp(entry.commit.commit_time, tz)
|
|
|
|
|
return str(entry.commit.id)[2:9] + " " + dt.strftime('%Y-%m-%d %H:%M:%S') + " [" + str(entry.commit.message, encoding="utf-8").strip()+"]"
|
|
|
|
|
|
2023-01-05 20:52:59 +08:00
|
|
|
|
|
2023-01-05 21:00:17 +08:00
|
|
|
|
def get_current_commit_id() -> str:
|
2023-01-05 20:52:59 +08:00
|
|
|
|
"""检查是否有新版本"""
|
2023-01-17 12:30:45 +08:00
|
|
|
|
check_dulwich_closure()
|
2023-01-05 20:52:59 +08:00
|
|
|
|
|
|
|
|
|
from dulwich import porcelain
|
|
|
|
|
|
|
|
|
|
repo = porcelain.open_repo('.')
|
|
|
|
|
current_commit_id = ""
|
|
|
|
|
for entry in repo.get_walker():
|
2023-01-05 21:00:17 +08:00
|
|
|
|
current_commit_id = str(entry.commit.id)[2:-1]
|
2023-01-05 20:52:59 +08:00
|
|
|
|
break
|
|
|
|
|
|
2023-01-05 21:00:17 +08:00
|
|
|
|
return current_commit_id
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def is_new_version_available() -> bool:
|
|
|
|
|
"""检查是否有新版本"""
|
2023-03-05 12:09:44 +08:00
|
|
|
|
# 从github获取release列表
|
|
|
|
|
rls_list = get_release_list()
|
|
|
|
|
if rls_list is None:
|
|
|
|
|
return False
|
2023-01-05 21:00:17 +08:00
|
|
|
|
|
2023-03-05 12:09:44 +08:00
|
|
|
|
# 获取当前版本
|
|
|
|
|
current_tag = get_current_tag()
|
2023-01-05 21:00:17 +08:00
|
|
|
|
|
2023-03-05 12:09:44 +08:00
|
|
|
|
# 检查是否有新版本
|
|
|
|
|
for rls in rls_list:
|
|
|
|
|
if rls['tag_name'] == current_tag:
|
|
|
|
|
return False
|
|
|
|
|
else:
|
|
|
|
|
return True
|
2023-01-05 21:00:17 +08:00
|
|
|
|
|
|
|
|
|
|
2023-03-05 12:09:44 +08:00
|
|
|
|
def get_rls_notes() -> list:
|
|
|
|
|
"""获取更新日志"""
|
|
|
|
|
# 从github获取release列表
|
|
|
|
|
rls_list = get_release_list()
|
|
|
|
|
if rls_list is None:
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
# 获取当前版本
|
|
|
|
|
current_tag = get_current_tag()
|
|
|
|
|
|
|
|
|
|
# 检查是否有新版本
|
|
|
|
|
rls_notes = []
|
|
|
|
|
for rls in rls_list:
|
|
|
|
|
if rls['tag_name'] == current_tag:
|
|
|
|
|
break
|
|
|
|
|
|
|
|
|
|
rls_notes.append(rls['name'])
|
2023-01-05 20:52:59 +08:00
|
|
|
|
|
2023-03-05 12:09:44 +08:00
|
|
|
|
return rls_notes
|
2023-03-05 11:56:40 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
|
update_all()
|