2022-07-10 07:50:49 +08:00
|
|
|
|
#!/usr/bin/env python3
|
2022-08-01 16:11:46 +08:00
|
|
|
|
# 使用系统默认的 python3 运行
|
|
|
|
|
###########################################################################################
|
|
|
|
|
# 作者:gfdgd xi、为什么您不喜欢熊出没和阿布呢
|
2022-08-25 21:47:42 +08:00
|
|
|
|
# 版本:2.1.0
|
|
|
|
|
# 更新时间:2022年08月25日
|
2022-08-01 16:11:46 +08:00
|
|
|
|
# 感谢:感谢 wine 以及 deepin-wine 团队,提供了 wine 和 deepin-wine 给大家使用,让我能做这个程序
|
|
|
|
|
# 基于 Python3 构建
|
|
|
|
|
###########################################################################################
|
|
|
|
|
#################
|
|
|
|
|
# 引入所需的库
|
|
|
|
|
#################
|
2022-07-10 07:50:49 +08:00
|
|
|
|
import os
|
|
|
|
|
import sys
|
2022-08-24 16:13:47 +08:00
|
|
|
|
import json
|
2023-04-05 16:53:09 +08:00
|
|
|
|
import updatekiller
|
2022-09-24 19:54:08 +08:00
|
|
|
|
import req as requests
|
2022-08-25 21:47:42 +08:00
|
|
|
|
try:
|
2022-11-06 17:35:41 +08:00
|
|
|
|
sourcesList = [
|
|
|
|
|
"https://code.gitlink.org.cn/gfdgd_xi/wine-runner-list/raw/branch/master/msxml/list.json",
|
|
|
|
|
"http://gfdgdxi.msns.cn/wine-runner-list/msxml/list.json"
|
|
|
|
|
]
|
|
|
|
|
msxmlList = json.loads(requests.get(sourcesList[0]).text)
|
2022-08-25 21:47:42 +08:00
|
|
|
|
except:
|
|
|
|
|
msxmlList = [
|
|
|
|
|
["MSXML 4.0 SP2", "https://www.gitlink.org.cn/api/attachments/390679?gfdgd_xi", "msxml6.0.msi"],
|
|
|
|
|
["MSXML 4.0 SP3", "https://www.gitlink.org.cn/api/attachments/390678?gfdgd_xi", "msxml4.0SP3.msi"],
|
|
|
|
|
["MSXML 6.0", "https://www.gitlink.org.cn/api/attachments/390681?gfdgd_xi", "msxml6_x64.msi"]
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
def Download(wineBotton: str, id: int, wine: str):
|
|
|
|
|
os.system(f"aria2c -x 16 -s 16 -d \"/tmp/deepin-wine-runner-msxml/\" -o \"{msxmlList[id][2]}\" \"{msxmlList[id][1]}\"")
|
2022-11-06 17:35:41 +08:00
|
|
|
|
return os.system(f"WINEPREFIX='{wineBotton}' {wine} msiexec /i \"/tmp/deepin-wine-runner-msxml/{msxmlList[id][2]}\"")
|
2022-07-10 07:50:49 +08:00
|
|
|
|
|
2022-08-25 21:47:42 +08:00
|
|
|
|
if __name__ == "__main__":
|
|
|
|
|
if "--help" in sys.argv:
|
|
|
|
|
print("作者:gfdgd xi、为什么您不喜欢熊出没和阿布呢")
|
|
|
|
|
print("版本:1.0.0")
|
|
|
|
|
print("本程序可以更方便的在 wine 容器中安装 MSXML")
|
|
|
|
|
sys.exit()
|
|
|
|
|
if len(sys.argv) <= 2 or sys.argv[1] == "" or sys.argv[2] == "":
|
|
|
|
|
print("您未指定需要安装 MSXML 的容器和使用的 wine,无法继续")
|
|
|
|
|
print("参数:")
|
|
|
|
|
print("XXX 参数一 参数二 参数三(可略)")
|
|
|
|
|
print("参数一为需要安装的容器,参数二为需要使用的wine,参数三为是否缓存(可略),三个参数位置不能颠倒")
|
|
|
|
|
sys.exit()
|
2022-07-10 07:50:49 +08:00
|
|
|
|
|
2022-08-25 21:47:42 +08:00
|
|
|
|
homePath = os.path.expanduser('~')
|
|
|
|
|
print('''
|
2022-08-20 13:35:31 +08:00
|
|
|
|
m m mmmm m m m m m
|
|
|
|
|
## ## #" " # # ## ## #
|
|
|
|
|
# ## # "#mmm ## # ## # #
|
|
|
|
|
# "" # "# m""m # "" # #
|
|
|
|
|
# # "mmm#" m" "m # # #mmmmm
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
''')
|
2022-08-25 21:47:42 +08:00
|
|
|
|
|
|
|
|
|
print("请选择以下的 MSXML 进行安装(不保证能正常安装运行)")
|
|
|
|
|
for i in range(0, len(msxmlList)):
|
|
|
|
|
print(f"{i}、{msxmlList[i][0]}")
|
|
|
|
|
while True:
|
|
|
|
|
try:
|
|
|
|
|
choose = input("请输入要选择要安装的 MSXML(输入“exit”退出):")
|
|
|
|
|
if choose.lower() == "exit":
|
|
|
|
|
break
|
|
|
|
|
choose = int(choose)
|
|
|
|
|
except:
|
|
|
|
|
print("输入错误,请重新输入")
|
|
|
|
|
continue
|
|
|
|
|
if 0 <= choose and choose < len(msxmlList):
|
|
|
|
|
break
|
2022-07-10 07:50:49 +08:00
|
|
|
|
try:
|
2022-08-08 15:49:59 +08:00
|
|
|
|
if choose.lower() == "exit":
|
2022-08-25 21:47:42 +08:00
|
|
|
|
exit()
|
2022-07-10 07:50:49 +08:00
|
|
|
|
except:
|
2022-08-25 21:47:42 +08:00
|
|
|
|
pass
|
|
|
|
|
print(f"您选择了 {msxmlList[choose][0]}")
|
|
|
|
|
if len(sys.argv) <= 3:
|
|
|
|
|
choice = True
|
|
|
|
|
else:
|
|
|
|
|
choice = (sys.argv[3] == "1")
|
|
|
|
|
if os.path.exists(f"{homePath}/.config/deepin-wine-runner/MSXML/{msxmlList[choose][2]}") and choice:
|
|
|
|
|
print("已经缓存,使用本地版本")
|
2022-09-22 21:24:02 +08:00
|
|
|
|
os.system(f"WINEPREFIX='{sys.argv[1]}' {sys.argv[2]} msiexec /i \"{homePath}/.config/deepin-wine-runner/MSXML/{msxmlList[choose][2]}\"")
|
2022-08-25 21:47:42 +08:00
|
|
|
|
input("安装结束,按回车键退出")
|
2022-08-08 15:49:59 +08:00
|
|
|
|
exit()
|
2022-08-25 21:47:42 +08:00
|
|
|
|
print("开始下载")
|
|
|
|
|
os.system(f"rm -rfv \"{homePath}/.config/deepin-wine-runner/MSXML/{msxmlList[choose][2]}\"")
|
|
|
|
|
os.system(f"mkdir -p \"{homePath}/.config/deepin-wine-runner/MSXML/\"")
|
|
|
|
|
os.system(f"aria2c -x 16 -s 16 -d \"{homePath}/.config/deepin-wine-runner/MSXML\" -o \"{msxmlList[choose][2]}\" \"{msxmlList[choose][1]}\"")
|
|
|
|
|
print("开始安装")
|
2022-09-22 21:24:02 +08:00
|
|
|
|
os.system(f"WINEPREFIX='{sys.argv[1]}' {sys.argv[2]} msiexec /i \"{homePath}/.config/deepin-wine-runner/MSXML/{msxmlList[choose][2]}\"")
|
2022-08-25 21:47:42 +08:00
|
|
|
|
input("安装结束,按回车键退出")
|