diff --git a/.gitignore b/.gitignore
index 3eab2be..7ccfbfe 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,7 @@
-/launcher.json
+/conf.yml
+/conf.json
/dist
+/instances/
# Byte-compiled / optimized / DLL files
__pycache__/
@@ -65,7 +67,6 @@ db.sqlite3
db.sqlite3-journal
# Flask stuff:
-instance/
.webassets-cache
# Scrapy stuff:
@@ -162,4 +163,10 @@ cython_debug/
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
-#.idea/
+.idea/
+launcher.iml
+
+# Mower-ng
+git/
+python/
+mower-ng/
diff --git a/README.md b/README.md
index a330caa..c49916e 100644
--- a/README.md
+++ b/README.md
@@ -2,12 +2,29 @@
## 开发环境
-目前只有 `pywebview` 一个依赖。
+安装 `pip-tools`
+
+```bash
+pip install pip-tools
+```
+
+安装依赖
+
+```bash
+pip-sync requirements.txt
+```
## 打包
前端运行 `npm run build` 生成 `ui/dist`,之后安装 PyInstaller,运行
```bash
-pyinstaller -w -F --add-data ui/dist:ui/dist main.py
+pyinstaller -w --add-data "ui/dist:ui/dist" --add-data "launcher/sys_config/config_dist.json:launcher/sys_config" launcher.py
+```
+
+在dist文件夹生成launcher文件夹
+
+```bash
+cd dist
+py7zr c launcher.7z launcher
```
diff --git a/launcher.py b/launcher.py
new file mode 100644
index 0000000..5e92a69
--- /dev/null
+++ b/launcher.py
@@ -0,0 +1,17 @@
+import mimetypes
+import shutil
+from pathlib import Path
+
+from launcher.constants import update_tmp_folder
+from launcher.webview import start_webview
+
+mimetypes.add_type("text/html", ".html")
+mimetypes.add_type("text/css", ".css")
+mimetypes.add_type("application/javascript", ".js")
+
+if __name__ == "__main__":
+ # 如果当前路径存在临时文件夹,则删除
+ if Path(update_tmp_folder).exists():
+ shutil.rmtree(update_tmp_folder)
+
+ start_webview()
diff --git a/launcher/__init__.py b/launcher/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/launcher/config/__init__.py b/launcher/config/__init__.py
new file mode 100644
index 0000000..01d7c22
--- /dev/null
+++ b/launcher/config/__init__.py
@@ -0,0 +1,30 @@
+import json
+import os
+from pathlib import Path
+
+from launcher.config.conf import Conf
+
+conf_path = Path(os.path.join(os.getcwd(), "conf.json"))
+
+
+def save_conf():
+ with conf_path.open("w", encoding="utf8") as f:
+ json.dump(conf.model_dump(), f, ensure_ascii=False, indent=4)
+
+
+def load_conf():
+ global conf
+ if not conf_path.is_file():
+ conf_path.parent.mkdir(exist_ok=True)
+ conf = Conf()
+ save_conf()
+ return
+ with conf_path.open("r", encoding="utf-8") as file:
+ data = json.load(file)
+ if data is None:
+ data = {}
+ conf = Conf(**data)
+
+
+conf: Conf
+load_conf()
diff --git a/launcher/config/conf.py b/launcher/config/conf.py
new file mode 100644
index 0000000..cfeca5c
--- /dev/null
+++ b/launcher/config/conf.py
@@ -0,0 +1,83 @@
+from typing import List, Literal, get_args, get_origin
+
+from pydantic import BaseModel, model_validator
+from pydantic_core import PydanticUndefined
+
+
+class ConfModel(BaseModel):
+ @model_validator(mode="before")
+ @classmethod
+ def nested_defaults(cls, data):
+ for name, field in cls.model_fields.items():
+ expected_type = field.annotation
+ if name not in data:
+ if field.default is PydanticUndefined:
+ data[name] = expected_type
+ else:
+ data[name] = field.default
+ value = data[name]
+
+ # 检查 Literal 类型并修正
+ if get_origin(expected_type) is Literal:
+ valid_literals = get_args(expected_type)
+ if value not in valid_literals:
+ # 修正为默认值
+ data[name] = (
+ field.default
+ if field.default is not PydanticUndefined
+ else None
+ )
+ return data
+
+
+class Total(ConfModel):
+ """整体"""
+
+ # 所在页面
+ page: str = "init"
+ # 是否已展示帮助文档
+ is_already_show_doc: bool = False
+
+
+class UpdatePart(ConfModel):
+ """更新代码"""
+
+ # mower-ng 代码分支
+ branch: str = "slow"
+ # PyPI 仓库镜像
+ mirror: str = "aliyun"
+
+
+class LaunchPart(ConfModel):
+ """启动程序"""
+
+ class Instance(ConfModel):
+ """实例"""
+
+ # 是否选中
+ checked: bool = False
+ # 实例名
+ name: str = ""
+ # 实例路径
+ path: str = ""
+
+ # 实例列表
+ instances: List[Instance] = []
+ # 是否展示日志窗口
+ is_show_log: bool = False
+
+
+class OtherPart(ConfModel):
+ """其他配置"""
+
+ # xx.zhaozuohong.vip镜像 (访问xx.zhaozuohong.vip url时,0=原路径 1=在.zhaozuohong.vip前添加-cf前缀)
+ base_mirror: Literal["0", "1"] = "0"
+
+
+class Conf(
+ Total,
+ UpdatePart,
+ LaunchPart,
+ OtherPart,
+):
+ pass
diff --git a/launcher/constants.py b/launcher/constants.py
new file mode 100644
index 0000000..10766e8
--- /dev/null
+++ b/launcher/constants.py
@@ -0,0 +1,47 @@
+"""
+constants.py
+
+该模块定义了应用程序中使用的各种常量。这些常量包括API URL和其他配置参数。
+"""
+
+# 更新临时文件夹名
+update_tmp_folder = "download_tmp"
+# 更新脚本名
+upgrade_script_name = "upgrade.bat"
+# 下载新版本压缩包名
+file_name = "launcher.7z"
+
+# 获取最新版本发布信息
+get_new_version_url = (
+ "https://git-cf.zhaozuohong.vip/api/v1/repos/mower-ng/launcher/releases/latest"
+)
+
+# 下载地址
+download_git_url = "https://list.zhaozuohong.vip/mower-ng/git.7z"
+download_python_url = "https://list.zhaozuohong.vip/mower-ng/python.7z"
+
+# mower-ng git链接
+mower_ng_git_url = "https://git-cf.zhaozuohong.vip/mower-ng/mower-ng.git"
+
+# pip镜像地址
+mirror_list = {
+ "pypi": "https://pypi.org/simple",
+ "aliyun": "https://mirrors.aliyun.com/pypi/simple/",
+ "tuna": "https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple",
+ "sjtu": "https://mirror.sjtu.edu.cn/pypi/web/simple",
+}
+
+# 实例文件夹名
+instances_folder_name = "instances"
+
+# cli命令
+cli_command = {
+ "status": "获取mower-ng实例状态",
+ "launch": "启动mower-ng进程",
+ "exit": "停止mower-ng进程",
+ "kill": "强制退出mower-ng进程",
+ "start": "开始运行调度器",
+ "stop": "停止运行调度器",
+ "webui": "在浏览器中打开网页面板",
+ "log": "通过WebSocket获取日志",
+}
diff --git a/launcher/file/__init__.py b/launcher/file/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/launcher/file/download.py b/launcher/file/download.py
new file mode 100644
index 0000000..03825f8
--- /dev/null
+++ b/launcher/file/download.py
@@ -0,0 +1,108 @@
+import os
+import time
+
+import requests
+
+from launcher.file.extract import extract_7z_file
+from launcher.file.utils import format_size
+from launcher.webview.events import custom_event, LogType
+
+
+def download_file(download_name, download_url, destination_folder):
+ """
+ 下载文件到指定文件夹
+ :param download_name: 下载内容名
+ :param download_url: 文件的下载 URL
+ :param destination_folder: 保存下载文件的目标文件夹
+ :return: 下载是否成功
+ """
+ if not os.path.exists(destination_folder):
+ os.makedirs(destination_folder)
+
+ filename = os.path.basename(download_url)
+ download_path = os.path.join(destination_folder, filename)
+ custom_event(LogType.info, f"开始下载: {download_name}")
+
+ response = requests.get(download_url, stream=True)
+ if response.status_code == 200:
+ total_size = int(response.headers.get("content-length", 0))
+ downloaded_size = 0
+ start_time = time.time()
+ last_update_time = time.time() # 记录上次更新时间
+ block_size = 4096 # 每次读取的数据块大小
+
+ with open(download_path, "wb") as file:
+ for data in response.iter_content(chunk_size=block_size):
+ file.write(data)
+ downloaded_size += len(data)
+ current_time = time.time()
+ elapsed_time = current_time - start_time
+
+ if elapsed_time > 0:
+ download_speed = downloaded_size / elapsed_time # 字节/秒
+ else:
+ download_speed = 0
+
+ progress_percent = (
+ (downloaded_size / total_size) * 100 if total_size != 0 else 0
+ )
+
+ # 检查是否需要更新进度信息,每1秒更新一次
+ if current_time - last_update_time >= 1:
+ # 格式化输出
+ formatted_downloaded_size = format_size(downloaded_size)
+ formatted_total_size = format_size(total_size)
+ formatted_speed = format_size(download_speed) + "/s"
+
+ custom_event(
+ LogType.info,
+ f"下载进度: {progress_percent:.2f}% ({formatted_downloaded_size}/{formatted_total_size}), 下载速度: {formatted_speed}",
+ )
+ last_update_time = current_time # 更新上次更新时间
+
+ end_time = time.time()
+ total_elapsed_time = end_time - start_time
+ average_download_speed = (
+ downloaded_size / total_elapsed_time if total_elapsed_time != 0 else 0
+ )
+ # 格式化输出
+ formatted_total_elapsed_time = f"{total_elapsed_time:.2f} 秒"
+ formatted_average_download_speed = format_size(average_download_speed) + "/s"
+
+ custom_event(
+ LogType.info,
+ f"下载完成: {filename}, 耗时: {formatted_total_elapsed_time}, 下载速度: {formatted_average_download_speed}",
+ )
+ else:
+ custom_event(LogType.error, f"下载失败: {response.status_code}")
+ return False
+
+ return True
+
+
+def init_download(download_name, download_url, destination_folder):
+ """
+ 初始化中的下载任务,返回一个函数,用于执行下载任务
+ :param download_name: 下载任务的名称,用于在日志中记录
+ :param download_url: 下载文件的 URL
+ :param destination_folder: 下载文件的目标文件夹
+ :return: 一个函数,用于执行下载任务
+ """
+
+ def download():
+ target_folder = os.path.join(download_name)
+ if os.path.exists(target_folder):
+ custom_event(LogType.info, f"{download_name} 文件夹已存在,跳过下载")
+ return True
+
+ filename = os.path.basename(download_url)
+ if not download_file(filename, download_url, destination_folder):
+ return False
+ download_path = os.path.join(destination_folder, filename)
+
+ if not extract_7z_file(filename, download_path, destination_folder, True):
+ return False
+
+ return True
+
+ return download
diff --git a/launcher/file/extract.py b/launcher/file/extract.py
new file mode 100644
index 0000000..a1c523c
--- /dev/null
+++ b/launcher/file/extract.py
@@ -0,0 +1,78 @@
+import os
+import time
+
+from py7zr import py7zr
+from py7zr.callbacks import ExtractCallback
+
+from launcher.file.utils import format_size
+from launcher.webview.events import custom_event, LogType
+
+
+class MyExtractCallback(ExtractCallback):
+ def __init__(self):
+ super().__init__()
+ self.total_size = 0
+ self.last_print_time = time.time()
+
+ def report_start(self, archive_name, archive_format):
+ pass
+
+ def report_start_preparation(self):
+ pass
+
+ def report_end(self, processing_file_path, wrote_bytes):
+ self.total_size += int(wrote_bytes)
+ current_time = time.time()
+ if current_time - self.last_print_time >= 1.0: # 至少每隔1秒输出一次
+ custom_event(LogType.info, f"已解压: {format_size(self.total_size)}")
+ self.last_print_time = current_time
+
+ def report_postprocess(self):
+ pass
+
+ def report_update(self, message):
+ pass
+
+ def report_warning(self, message):
+ pass
+
+
+def extract_7z_file(
+ file_name, file_path, destination_folder, delete_after_extract=True
+):
+ """
+ 解压7z文件到指定文件夹
+ :param file_name: 7z文件的名称
+ :param file_path: 7z文件的路径
+ :param destination_folder: 解压目标文件夹
+ :param delete_after_extract: 解压后删除压缩文件,默认删除
+ :return: 解压是否成功
+ """
+ if not os.path.exists(destination_folder):
+ os.makedirs(destination_folder)
+
+ custom_event(LogType.info, f"开始解压文件: {file_name}")
+ try:
+ start_time = time.time()
+ with py7zr.SevenZipFile(file_path, mode="r") as z:
+ callback = MyExtractCallback()
+ z.extractall(path=destination_folder, callback=callback)
+ end_time = time.time()
+ total_elapsed_time = end_time - start_time
+ formatted_total_elapsed_time = f"{total_elapsed_time:.2f} 秒"
+ custom_event(
+ LogType.info,
+ f"解压完成: {file_name}, 总大小: {format_size(callback.total_size)}, 耗时: {formatted_total_elapsed_time}",
+ )
+ except Exception as e:
+ custom_event(LogType.error, f"解压失败: {repr(e)}")
+ return False
+
+ if delete_after_extract:
+ try:
+ os.remove(file_path)
+ custom_event(LogType.info, f"删除{file_path}成功")
+ except OSError as e:
+ custom_event(LogType.error, f"删除{file_path}失败: {repr(e)}")
+
+ return True
diff --git a/launcher/file/utils.py b/launcher/file/utils.py
new file mode 100644
index 0000000..b9dd968
--- /dev/null
+++ b/launcher/file/utils.py
@@ -0,0 +1,33 @@
+import os
+
+
+def format_size(size_bytes):
+ """格式化文件大小为人类可读的形式"""
+ for unit in ["B", "KB", "MB", "GB", "TB"]:
+ if size_bytes < 1024:
+ return f"{size_bytes:.2f} {unit}"
+ size_bytes /= 1024
+ return f"{size_bytes:.2f} PB"
+
+
+def ensure_directory_exists(directory):
+ """确保目录存在,如果不存在则创建"""
+ if not os.path.exists(directory):
+ os.makedirs(directory)
+
+
+def check_command_path(command, cwd=None):
+ """检查命令路径是否存在exe文件
+ :return 是否存在,命令exe文件全路径
+ """
+ command_name = command.split(" ")[0]
+ system_command = ["start", "explorer"]
+ if command_name in system_command:
+ return True, None
+ exec_command_path = os.getcwd()
+ if cwd:
+ exec_command_path = os.path.join(exec_command_path, cwd)
+ full_command_path = (
+ os.path.abspath(os.path.join(exec_command_path, command_name)) + ".exe"
+ )
+ return os.path.exists(full_command_path), full_command_path
diff --git a/launcher/instances/__init__.py b/launcher/instances/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/launcher/instances/manager.py b/launcher/instances/manager.py
new file mode 100644
index 0000000..f0ff759
--- /dev/null
+++ b/launcher/instances/manager.py
@@ -0,0 +1,129 @@
+import json
+import os
+import shutil
+import uuid
+
+from launcher import config
+from launcher.config.conf import LaunchPart
+from launcher.constants import instances_folder_name
+from launcher.webview.events import custom_event, LogType
+
+
+def add_instance():
+ instances_path = os.path.join(os.getcwd(), instances_folder_name)
+ if not os.path.exists(instances_path):
+ os.makedirs(instances_path)
+ instance_folder_name = str(uuid.uuid4())
+ instance_folder_path = os.path.join(instances_path, instance_folder_name)
+ if os.path.exists(instance_folder_path):
+ raise Exception("创建实例目录失败")
+ os.makedirs(instance_folder_path)
+ custom_event(LogType.info, f"创建实例目录成功: {instance_folder_path}")
+ return instance_folder_path
+
+
+def migrate_instance(source_folder):
+ """通用配置迁移方法
+ Args:
+ source_folder: 源配置目录路径
+ target_folder: 目标配置目录路径
+ """
+ try:
+ if not os.path.exists(source_folder):
+ custom_event(LogType.error, f"源配置目录不存在: {source_folder}")
+ return {"status": False, "message": f"源配置目录不存在{source_folder}"}
+
+ target_folder = add_instance()
+
+ # 需要复制的目录和文件列表
+ copy_items = [("tmp", True), ("conf.yml", False), ("plan.json", False)]
+
+ for item, is_dir in copy_items:
+ src = os.path.join(source_folder, item)
+ dst = os.path.join(target_folder, item)
+
+ if is_dir:
+ if os.path.exists(src):
+ shutil.copytree(src, dst, dirs_exist_ok=True)
+ else:
+ if os.path.exists(src):
+ shutil.copy2(src, dst)
+
+ custom_event(LogType.info, f"{source_folder} 配置成功迁移至 {target_folder}")
+ return {"status": True, "data": target_folder, "message": "配置迁移成功"}
+
+ except Exception as e:
+ custom_event(LogType.error, f"配置迁移失败: {str(e)}")
+ return {"status": False, "message": str(e)}
+
+
+def migrate_instances_config():
+ try:
+ config_path = os.path.join(os.getcwd(), "mower-ng", "instances.json")
+
+ if not os.path.exists(config_path):
+ custom_event(LogType.error, f"多开配置文件不存在{config_path}")
+ return {"status": False, "message": "多开配置文件不存在"}
+
+ with open(config_path, "r", encoding="utf-8") as f:
+ instances_data = json.loads(f.read())
+ custom_event(LogType.info, f"读取多开配置: {instances_data}")
+
+ valid_instances = []
+ error_messages = []
+
+ for index, item in enumerate(instances_data, 1):
+ try:
+ # 基础结构验证
+ if not isinstance(item, dict):
+ raise ValueError("配置项必须是字典类型")
+
+ # 必填字段检查
+ required_fields = ["name", "path"]
+ for field in required_fields:
+ if field not in item:
+ raise ValueError(f"缺少必要字段: {field}")
+
+ # 路径有效性验证
+ if not os.path.exists(item["path"]):
+ raise ValueError(f"配置路径不存在{item['path']}")
+
+ # 执行配置迁移
+ migration_result = migrate_instance(item["path"])
+
+ if not migration_result["status"]:
+ raise Exception(f"路径迁移失败: {migration_result['message']}")
+
+ # 转换为实例模型
+ instance = LaunchPart.Instance(
+ name=item["name"].strip(), path=migration_result["data"]
+ )
+
+ valid_instances.append(instance)
+
+ except Exception as e:
+ error_msg = f"第{index}项: {str(e)}"
+ error_messages.append(error_msg)
+ custom_event(LogType.error, error_msg)
+
+ # 保存有效配置
+ if valid_instances:
+ config.conf.instances.extend(valid_instances)
+ config.save_conf()
+
+ message = f"成功导入{len(valid_instances)}个实例" + (
+ f",存在{len(error_messages)}个错误项" if error_messages else ""
+ )
+ custom_event(LogType.info, message)
+ return {
+ "status": not bool(error_messages),
+ "data": len(valid_instances),
+ "message": message,
+ }
+
+ except json.JSONDecodeError as e:
+ custom_event(LogType.error, f"JSON解析失败: {str(e)}")
+ return {"status": False, "message": "配置文件格式错误"}
+ except Exception as e:
+ custom_event(LogType.error, f"迁移多开配置失败: {str(e)}")
+ return {"status": False, "message": str(e)}
diff --git a/launcher/log.py b/launcher/log.py
new file mode 100644
index 0000000..7588b05
--- /dev/null
+++ b/launcher/log.py
@@ -0,0 +1,44 @@
+import io
+import logging
+import os
+import sys
+from logging.handlers import RotatingFileHandler
+
+from launcher.sys_config import sys_config
+
+
+# 配置日志
+def setup_logger():
+ log_level = sys_config.get("log_level")
+
+ logger = logging.getLogger("launcher.log")
+ logger.setLevel(log_level)
+
+ # 设置标准输出编码为 UTF-8
+ sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding="utf-8")
+
+ # 控制台输出
+ console_handler = logging.StreamHandler()
+ console_handler.setLevel(log_level)
+
+ # 文件输出
+ file_path = os.path.join(os.getcwd(), "launcher.log")
+ file_handler = RotatingFileHandler(
+ file_path, maxBytes=5 * 1024 * 1024, backupCount=3, encoding="utf-8"
+ )
+ file_handler.setLevel(logging.INFO)
+
+ # 设置格式化器
+ formatter = logging.Formatter("%(asctime)s [%(levelname)s] - %(message)s")
+ console_handler.setFormatter(formatter)
+ file_handler.setFormatter(formatter)
+
+ # 添加 Handler
+ logger.addHandler(console_handler)
+ logger.addHandler(file_handler)
+
+ return logger
+
+
+# 创建全局 Logger 实例
+logger = setup_logger()
diff --git a/launcher/sys_config/__init__.py b/launcher/sys_config/__init__.py
new file mode 100644
index 0000000..b7be326
--- /dev/null
+++ b/launcher/sys_config/__init__.py
@@ -0,0 +1,58 @@
+import json
+import os
+import sys
+
+
+class SysConfig:
+ """
+ 读取系统配置文件
+ """
+
+ # 版本
+ version: str
+ # ui路径
+ url: str
+ # 日志输出级别
+ log_level: str
+ # 是否开启ui调试
+ debug: bool
+
+ def __init__(self):
+ self.config = {}
+ self.config_path = self.get_config_path()
+ self.load_config()
+
+ def get_config_path(self):
+ if getattr(sys, "frozen", False):
+ # logger.error("打包配置")
+ # 如果是打包后的可执行文件
+ base_path = sys._MEIPASS
+ config_subdir = "launcher/sys_config" # 添加子目录
+ config_filename = "config_dist.json"
+ else:
+ # logger.error("本地配置")
+ # 如果是本地开发环境
+ base_path = os.path.dirname(__file__)
+ config_subdir = "" # 本地开发环境不需要子目录
+ config_filename = "config_local.json"
+
+ config_path = os.path.join(base_path, config_subdir, config_filename)
+ return config_path
+
+ def load_config(self):
+ try:
+ with open(self.config_path, "r", encoding="utf-8") as file:
+ self.config = json.load(file)
+ except FileNotFoundError:
+ pass
+ # logger.error(f"配置文件未找到: {self.config_path}")
+ except Exception:
+ pass
+ # logger.error(f"加载配置文件时出错: {repr(e)}")
+
+ def get(self, key):
+ return self.config.get(key)
+
+
+# 创建一个全局配置实例
+sys_config = SysConfig()
diff --git a/launcher/sys_config/config_dist.json b/launcher/sys_config/config_dist.json
new file mode 100644
index 0000000..499fad5
--- /dev/null
+++ b/launcher/sys_config/config_dist.json
@@ -0,0 +1,6 @@
+{
+ "version": "v0.7.1",
+ "url": "ui/dist/index.html",
+ "log_level": "INFO",
+ "debug": false
+}
\ No newline at end of file
diff --git a/launcher/sys_config/config_local.json b/launcher/sys_config/config_local.json
new file mode 100644
index 0000000..e42e05a
--- /dev/null
+++ b/launcher/sys_config/config_local.json
@@ -0,0 +1,6 @@
+{
+ "version": "dev",
+ "url": "http://localhost:5173/",
+ "log_level": "DEBUG",
+ "debug": true
+}
\ No newline at end of file
diff --git a/launcher/utils.py b/launcher/utils.py
new file mode 100644
index 0000000..bb56ecc
--- /dev/null
+++ b/launcher/utils.py
@@ -0,0 +1,12 @@
+from launcher import config
+
+
+def build_base_url(url: str) -> str:
+ """
+ 构建xx.zhaozuohong.vip,如果配置base_mirror是1,在.zhaozuohong.vip前添加-cf前缀
+ :param url: 带有xx.zhaozuohong.vip的url字符串
+ :return: 构建完成的url
+ """
+ if config.conf.base_mirror == "1":
+ url = url.replace(".zhaozuohong.vip", "-cf.zhaozuohong.vip")
+ return url
diff --git a/launcher/webview/__init__.py b/launcher/webview/__init__.py
new file mode 100644
index 0000000..09ae4d6
--- /dev/null
+++ b/launcher/webview/__init__.py
@@ -0,0 +1,18 @@
+import webview
+
+from launcher.sys_config import sys_config
+from launcher.webview.api import Api
+
+window = None
+
+
+def start_webview():
+ global window
+ window = webview.create_window(
+ f"mower-ng launcher {sys_config.get('version')}",
+ sys_config.get("url"),
+ js_api=Api(),
+ width=850,
+ height=600,
+ )
+ webview.start(debug=sys_config.get("debug"))
diff --git a/launcher/webview/api.py b/launcher/webview/api.py
new file mode 100644
index 0000000..8bb62a3
--- /dev/null
+++ b/launcher/webview/api.py
@@ -0,0 +1,307 @@
+import io
+import os
+import shutil
+import subprocess
+import time
+from _winapi import CREATE_NO_WINDOW
+from pathlib import Path
+from shutil import rmtree
+from subprocess import Popen
+
+import requests
+
+from launcher import config
+from launcher.constants import (
+ download_git_url,
+ download_python_url,
+ get_new_version_url,
+ upgrade_script_name,
+ mirror_list,
+ file_name,
+ instances_folder_name,
+ mower_ng_git_url,
+ cli_command,
+)
+from launcher.file.download import init_download, download_file
+from launcher.file.extract import extract_7z_file
+from launcher.file.utils import ensure_directory_exists, check_command_path
+from launcher.instances import manager
+from launcher.log import logger
+from launcher.sys_config import sys_config
+from launcher.utils import build_base_url
+from launcher.webview.events import custom_event, LogType
+
+command_list = {
+ "download_git": lambda: init_download(
+ "git", build_base_url(download_git_url), os.getcwd()
+ ),
+ "download_python": lambda: init_download(
+ "python", build_base_url(download_python_url), os.getcwd()
+ ),
+ "lfs": "git\\bin\\git lfs install",
+ "ensurepip": "python\\python -m ensurepip --default-pip",
+ "clone": lambda: f"git\\bin\\git -c lfs.concurrenttransfers=100 clone {build_base_url(mower_ng_git_url)} --branch slow",
+ "set_remote": lambda: f"..\\git\\bin\\git remote set-url origin {build_base_url(mower_ng_git_url)}",
+ "set_lfs": lambda: f"..\\git\\bin\\git config lfs.url {build_base_url(mower_ng_git_url)}/info/lfs",
+ "fetch": lambda: f"..\\git\\bin\\git fetch origin {config.conf.branch} --progress",
+ "switch": lambda: f"..\\git\\bin\\git -c lfs.concurrenttransfers=100 switch -f {config.conf.branch} --progress",
+ "reset": lambda: f"..\\git\\bin\\git -c lfs.concurrenttransfers=200 reset --hard origin/{config.conf.branch}",
+ "pip_tools_install": lambda: f"..\\python\\Scripts\\pip install --no-cache-dir -i {mirror_list[config.conf.mirror]} pip-tools --no-warn-script-location",
+ "pip_sync": lambda: f"..\\python\\Scripts\\pip-sync -i {mirror_list[config.conf.mirror]} requirements.txt",
+ "webview": lambda instance_path="": f'..\\python\\pythonw -X utf8 webview_ui.py "{instance_path}"',
+ "cli": lambda path,
+ command: f'..\\python\\pythonw -X utf8 cli.py -p "{path}" {command}',
+}
+
+
+def parse_stderr(stderr_output):
+ error_keywords = {
+ "fatal: destination path 'mower-ng' already exists and is not an empty directory.": "mower-ng文件夹已存在并且非空。",
+ "index.lock': File exists": "上一个git命令正在执行,请等待执行结束或在任务管理器中杀掉git进程,并确保上方提示的index.lock文件删除后再次运行。",
+ "Could not resolve host": "网络出现错误,请检查网络是否通畅。",
+ "ReadTimeoutError": "网络连接超时,请检查网络连接或尝试更换镜像源。",
+ "No space left on device": "磁盘空间不足。",
+ }
+ for keyword, message in error_keywords.items():
+ if keyword in stderr_output:
+ return message
+ return "未定义的错误"
+
+
+def check_command_end(command_key, output):
+ end_keywords = {"webview": {"WebSocket客户端建立连接": "mower_ng已成功运行"}}
+ if command_key in end_keywords:
+ keywords = end_keywords[command_key]
+ for keyword in keywords:
+ if keyword in output:
+ custom_event(LogType.info, keywords[keyword])
+ return True
+ return False
+
+
+class Api:
+ def load_config(self):
+ logger.debug("读取配置文件")
+ return config.conf.model_dump()
+
+ def save_config(self, conf):
+ logger.debug(f"更新配置文件{conf}")
+ config.conf = config.Conf(**conf)
+ config.save_conf()
+
+ def get_version(self):
+ return sys_config.get("version")
+
+ def get_new_version(self):
+ logger.info("获取最新版本号")
+ response = requests.get(build_base_url(get_new_version_url))
+ return response.json()
+
+ # 更新启动器本身
+ def update_self(self, download_url):
+ download_url = build_base_url(download_url)
+ logger.info(f"开始更新启动器 {download_url}")
+ current_path = os.getcwd()
+ download_tmp_folder = os.path.join(current_path, "download_tmp")
+ # 确保 download_tmp 文件夹存在
+ ensure_directory_exists(download_tmp_folder)
+ if not download_file("launcher", download_url, download_tmp_folder):
+ return "下载新版本失败"
+
+ download_path = os.path.join(download_tmp_folder, file_name)
+ if not extract_7z_file("launcher", download_path, download_tmp_folder, True):
+ return "解压新版本失败"
+
+ exe_path = os.path.join(current_path, "launcher.exe")
+ folder_path = os.path.join(current_path, "_internal")
+ new_exe_path = os.path.join(download_tmp_folder, "launcher", "launcher.exe")
+ new_folder_path = os.path.join(download_tmp_folder, "launcher", "_internal")
+ script_path = os.path.join(download_tmp_folder, upgrade_script_name)
+ with open(script_path, "w") as b:
+ temp_list = "@echo off\n"
+ temp_list += "timeout /t 3 /nobreak\n" # 等待进程退出
+ temp_list += f"rmdir {folder_path}\n" # 删除_internal
+ temp_list += f"del {exe_path}\n" # 删除exe
+ temp_list += f"xcopy /e /i /y {new_folder_path} {folder_path}\n"
+ temp_list += f"move {new_exe_path} {exe_path}\n"
+ temp_list += "timeout /t 1 /nobreak\n" # 等待操作完成
+ temp_list += f"start {exe_path}\n" # 启动新程序
+ temp_list += "exit"
+ b.write(temp_list)
+ # 不显示cmd窗口
+ Popen([script_path], creationflags=CREATE_NO_WINDOW)
+ os._exit(0)
+
+ def rm_site_packages(self):
+ try:
+ site_packages_path = Path("./python/Lib/site-packages")
+ if site_packages_path.exists():
+ rmtree(site_packages_path)
+ return "site-packages目录移除成功"
+ return "python\\Lib\\site-packages目录不存在"
+ except Exception as e:
+ return repr(e)
+
+ def rm_python_scripts(self):
+ try:
+ python_scripts_path = Path("./python/Scripts")
+ if python_scripts_path.exists():
+ rmtree(python_scripts_path)
+ return "Scripts目录移除成功"
+ return "python\\Scripts目录不存在"
+ except Exception as e:
+ return repr(e)
+
+ def run(self, command_key, cwd=None, params={}):
+ command = command_list[command_key]
+ if callable(command):
+ try:
+ command = command(**params)
+ except TypeError:
+ command = command()
+ if callable(command):
+ return "success" if command() else "failed"
+ if cwd is not None:
+ custom_event(LogType.info, f"命令执行目录:{cwd}")
+ custom_event(LogType.execute_command, command)
+ # 执行命令前先判断命令路径是否存在
+ exist, command_path = check_command_path(command, cwd)
+ if not exist:
+ custom_event(
+ LogType.error,
+ f"命令路径不存在:{command_path} 请尝试依赖修复并重新初始化。",
+ )
+ return "failed"
+ try:
+ stdout_stderr = []
+ with subprocess.Popen(
+ command,
+ stdout=subprocess.PIPE,
+ stderr=subprocess.STDOUT,
+ shell=True,
+ cwd=cwd,
+ bufsize=0,
+ universal_newlines=False,
+ ) as p:
+
+ def process_lines(text_io):
+ for line in iter(text_io.readline, ""):
+ text = line.rstrip("\n").strip()
+ custom_event(LogType.command_out, text)
+ if stdout_stderr is not None:
+ stdout_stderr.append(text)
+ if check_command_end(command_key, text):
+ break
+
+ detected_encoding = "utf-8"
+ text_io = io.TextIOWrapper(
+ p.stdout, encoding=detected_encoding, errors="replace"
+ )
+ try:
+ process_lines(text_io)
+ except UnicodeDecodeError:
+ p.stdout.seek(0) # 重新将流指针重置到开头
+ text_io = io.TextIOWrapper(
+ p.stdout, encoding="gbk", errors="replace"
+ )
+ process_lines(text_io)
+ finally:
+ text_io.close()
+
+ if p.returncode == 0:
+ return "success"
+ else:
+ error_message = parse_stderr("\n".join(stdout_stderr))
+ custom_event(LogType.error, f"命令执行失败,{error_message}")
+ return "failed"
+ except Exception as e:
+ logger.exception(e)
+ custom_event(LogType.error, str(e))
+ return "failed"
+
+ def add_instance(self):
+ return manager.add_instance()
+
+ def delete_instance(self, path):
+ instances_dir = os.path.join(os.getcwd(), instances_folder_name)
+ abs_path = os.path.abspath(path)
+ if os.path.commonpath(
+ [abs_path, instances_dir]
+ ) == instances_dir and os.path.exists(abs_path):
+ shutil.rmtree(abs_path)
+
+ def migrate_default_instance(self):
+ """迁移默认实例文件到新实例"""
+ source_path = os.path.join(os.getcwd(), "mower-ng")
+ return manager.migrate_instance(source_path)
+
+ def migrate_instances_config(self):
+ """迁移多开配置"""
+ return manager.migrate_instances_config()
+
+ def open_folder(self, path):
+ if not os.path.exists(path):
+ custom_event(LogType.error, f"路径不存在:{path}")
+ else:
+ os.startfile(path)
+ custom_event(LogType.info, f"成功打开文件夹:{path}")
+
+ def test_base_url_connect(self):
+ url = build_base_url(get_new_version_url)
+ custom_event(LogType.info, f"开始测试URL连接:{url}")
+ try:
+ start_time = time.time()
+ response = requests.get(url)
+ end_time = time.time()
+ if response.status_code == 200:
+ elapsed_time_ms = (end_time - start_time) * 1000
+ custom_event(
+ LogType.info, f"测试成功,响应时间为 {elapsed_time_ms:.2f} 毫秒"
+ )
+ else:
+ custom_event(
+ LogType.error, f"测试失败: HTTP状态码 {response.status_code}"
+ )
+ except requests.exceptions.RequestException as e:
+ custom_event(LogType.error, f"发生错误: {e}")
+
+ def cli_control(self, command: str, path: str):
+ """
+ 统一的CLI控制接口,用于执行指定命令并可选地指定工作目录。
+
+ :param command_str: 要执行的命令字符串或命令键(如 "status", "launch" 等)
+ :param path: 实例路径
+ """
+ if command not in cli_command:
+ custom_event(
+ LogType.error,
+ f"无效的命令字符串或命令键:{command},请检查输入。",
+ )
+ return
+ try:
+ ret = self.run("cli", "mower-ng", {"command": command, "path": path})
+ if command == "launch" and ret == "success":
+ self.run("cli", "mower-ng", {"command": "webui", "path": path})
+ except Exception as e:
+ custom_event(LogType.error, f"{cli_command[command]} 失败 {repr(e)}")
+
+ def batch_cli_control(self, command):
+ checked_instances = [
+ instance for instance in config.conf.instances if instance.checked
+ ]
+ if not checked_instances:
+ custom_event(LogType.warning, "没有选中的实例")
+ return [{"status": False, "message": "No checked instances"}]
+
+ for instance in checked_instances:
+ try:
+ custom_event(LogType.info, f"{instance.name} {cli_command[command]}")
+ self.cli_control(command, instance.path)
+ custom_event(
+ LogType.info, f"{instance.name} {cli_command[command]} 完成"
+ )
+ except Exception as e:
+ custom_event(
+ LogType.error,
+ f"{instance.name} {cli_command[command]} 失败 {repr(e)}",
+ )
diff --git a/launcher/webview/events.py b/launcher/webview/events.py
new file mode 100644
index 0000000..cb4d714
--- /dev/null
+++ b/launcher/webview/events.py
@@ -0,0 +1,32 @@
+import json
+from enum import Enum
+
+import launcher
+from launcher.log import logger
+
+
+class LogType(Enum):
+ info = "信息"
+ error = "错误"
+ execute_command = "执行命令"
+ command_out = "命令输出"
+
+
+def custom_event(log_type, data):
+ data = f"[{log_type.value}] {data}"
+
+ match log_type:
+ case LogType.info:
+ logger.info(data)
+ case LogType.error:
+ logger.error(data)
+ case LogType.execute_command:
+ logger.info(data)
+ case LogType.command_out:
+ logger.info(data)
+ case _:
+ logger.info(data)
+
+ data = json.dumps({"log": data + "\n"})
+ js = f"var event = new CustomEvent('log', {{detail: {data}}}); window.dispatchEvent(event);"
+ launcher.webview.window.evaluate_js(js)
diff --git a/main.py b/main.py
deleted file mode 100644
index bea2394..0000000
--- a/main.py
+++ /dev/null
@@ -1,110 +0,0 @@
-import json
-import mimetypes
-from pathlib import Path
-from shutil import rmtree
-from subprocess import PIPE, STDOUT, Popen
-
-import webview
-
-mimetypes.add_type("text/html", ".html")
-mimetypes.add_type("text/css", ".css")
-mimetypes.add_type("application/javascript", ".js")
-
-version = "2024-10-10"
-
-config = {
- "page": "init",
- "branch": "slow",
- "mirror": "tuna",
-}
-config_path = Path("launcher.json")
-
-try:
- with config_path.open("r") as f:
- user_config = json.load(f)
- config.update(user_config)
-except Exception:
- pass
-
-
-def custom_event(data):
- data = json.dumps({"log": data})
- js = f"var event = new CustomEvent('log', {{detail: {data}}}); window.dispatchEvent(event);"
- window.evaluate_js(js)
-
-
-mirror_list = {
- "pypi": "https://pypi.org/simple",
- "tuna": "https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple",
- "sjtu": "https://mirror.sjtu.edu.cn/pypi/web/simple",
-}
-
-
-command_list = {
- "lfs": "git\\bin\\git lfs install",
- "ensurepip": "python\\python -m ensurepip --default-pip",
- "clone": "git\\bin\\git clone https://git-cf.zhaozuohong.vip/mower-ng/mower-ng.git --branch slow",
- "fetch": lambda: f"..\\git\\bin\\git fetch origin {config['branch']}",
- "switch": lambda: f"..\\git\\bin\\git switch -f {config['branch']}",
- "reset": lambda: f"..\\git\\bin\\git reset --hard origin/{config['branch']}",
- "pip_install": lambda: f"..\\python\\Scripts\\pip install --no-cache-dir -i {mirror_list[config['mirror']]} -r requirements.txt --no-warn-script-location",
- "webview": "start ..\\python\\pythonw webview_ui.py",
- "manager": "start ..\\python\\pythonw manager.py",
-}
-
-
-class Api:
- def get_branch(self):
- return config["branch"]
-
- def set_branch(self, branch):
- config["branch"] = branch
-
- def get_page(self):
- return config["page"]
-
- def set_page(self, page):
- config["page"] = page
-
- def get_mirror(self):
- return config["mirror"]
-
- def set_mirror(self, mirror):
- config["mirror"] = mirror
-
- def rm_site_packages(self):
- site_packages_path = Path("./python/Lib/site-packages")
- if site_packages_path.exists():
- rmtree(site_packages_path)
- return "移除成功"
- return "python\\Lib\\site-packages目录不存在"
-
- def run(self, command, cwd=None):
- command = command_list[command]
- if callable(command):
- command = command()
- custom_event(command + "\n")
- try:
- with Popen(
- command, stdout=PIPE, stderr=STDOUT, shell=True, cwd=cwd, bufsize=0
- ) as p:
- for data in p.stdout:
- try:
- text = data.decode("utf-8")
- except Exception:
- text = data.decode("gbk")
- custom_event(text)
- if p.returncode == 0:
- return "success"
- except Exception as e:
- custom_event(str(e))
- return "failed"
-
-
-window = webview.create_window(
- f"mower-ng launcher {version}", "ui/dist/index.html", js_api=Api()
-)
-webview.start()
-
-with config_path.open("w") as f:
- json.dump(config, f)
diff --git a/requirements.in b/requirements.in
new file mode 100644
index 0000000..e8f09e4
--- /dev/null
+++ b/requirements.in
@@ -0,0 +1,5 @@
+pywebview==5.1
+requests==2.32.3
+py7zr==0.22.0
+pydantic==2.10.3
+pyinstaller==6.11.1
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 0000000..7dbbb07
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1,80 @@
+#
+# This file is autogenerated by pip-compile with Python 3.12
+# by the following command:
+#
+# pip-compile requirements.in
+#
+--index-url https://pypi.tuna.tsinghua.edu.cn/simple
+
+altgraph==0.17.4
+ # via pyinstaller
+annotated-types==0.7.0
+ # via pydantic
+bottle==0.13.2
+ # via pywebview
+brotli==1.1.0
+ # via py7zr
+certifi==2024.12.14
+ # via requests
+cffi==1.17.1
+ # via clr-loader
+charset-normalizer==3.4.0
+ # via requests
+clr-loader==0.2.7.post0
+ # via pythonnet
+idna==3.10
+ # via requests
+inflate64==1.0.0
+ # via py7zr
+multivolumefile==0.2.3
+ # via py7zr
+packaging==24.2
+ # via
+ # pyinstaller
+ # pyinstaller-hooks-contrib
+pefile==2023.2.7
+ # via pyinstaller
+proxy-tools==0.1.0
+ # via pywebview
+psutil==6.1.0
+ # via py7zr
+py7zr==0.22.0
+ # via -r requirements.in
+pybcj==1.0.2
+ # via py7zr
+pycparser==2.22
+ # via cffi
+pycryptodomex==3.21.0
+ # via py7zr
+pydantic==2.10.3
+ # via -r requirements.in
+pydantic-core==2.27.1
+ # via pydantic
+pyinstaller==6.11.1
+ # via -r requirements.in
+pyinstaller-hooks-contrib==2024.11
+ # via pyinstaller
+pyppmd==1.1.0
+ # via py7zr
+pythonnet==3.0.5
+ # via pywebview
+pywebview==5.1
+ # via -r requirements.in
+pywin32-ctypes==0.2.3
+ # via pyinstaller
+pyzstd==0.16.2
+ # via py7zr
+requests==2.32.3
+ # via -r requirements.in
+texttable==1.7.0
+ # via py7zr
+typing-extensions==4.12.2
+ # via
+ # pydantic
+ # pydantic-core
+ # pywebview
+urllib3==2.2.3
+ # via requests
+
+# The following packages are considered to be unsafe in a requirements file:
+# setuptools
diff --git a/ui/package-lock.json b/ui/package-lock.json
index bc18944..7010b68 100644
--- a/ui/package-lock.json
+++ b/ui/package-lock.json
@@ -8,6 +8,8 @@
"name": "ui",
"version": "0.0.0",
"dependencies": {
+ "highlight.js": "^11.11.1",
+ "pinia": "^2.2.8",
"vue": "^3.5.11"
},
"devDependencies": {
@@ -1131,6 +1133,11 @@
"@vue/shared": "3.5.11"
}
},
+ "node_modules/@vue/devtools-api": {
+ "version": "6.6.4",
+ "resolved": "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.6.4.tgz",
+ "integrity": "sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g=="
+ },
"node_modules/@vue/eslint-config-prettier": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/@vue/eslint-config-prettier/-/eslint-config-prettier-10.0.0.tgz",
@@ -2069,11 +2076,9 @@
}
},
"node_modules/highlight.js": {
- "version": "11.10.0",
- "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-11.10.0.tgz",
- "integrity": "sha512-SYVnVFswQER+zu1laSya563s+F8VDGt7o35d4utbamowvUNLLMovFqwCLSocpZTz3MgaSRA1IbqRWZv97dtErQ==",
- "dev": true,
- "license": "BSD-3-Clause",
+ "version": "11.11.1",
+ "resolved": "https://registry.npmmirror.com/highlight.js/-/highlight.js-11.11.1.tgz",
+ "integrity": "sha512-Xwwo44whKBVCYoliBQwaPvtd/2tYFkRQtXDWj1nackaV2JPXx3L0+Jvd8/qCJ2p+ML0/XVkJ2q+Mr+UVdpJK5w==",
"engines": {
"node": ">=12.0.0"
}
@@ -2534,6 +2539,56 @@
"url": "https://github.com/sponsors/jonschlinkert"
}
},
+ "node_modules/pinia": {
+ "version": "2.2.8",
+ "resolved": "https://registry.npmmirror.com/pinia/-/pinia-2.2.8.tgz",
+ "integrity": "sha512-NRTYy2g+kju5tBRe0oNlriZIbMNvma8ZJrpHsp3qudyiMEA8jMmPPKQ2QMHg0Oc4BkUyQYWagACabrwriCK9HQ==",
+ "dependencies": {
+ "@vue/devtools-api": "^6.6.3",
+ "vue-demi": "^0.14.10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/posva"
+ },
+ "peerDependencies": {
+ "@vue/composition-api": "^1.4.0",
+ "typescript": ">=4.4.4",
+ "vue": "^2.6.14 || ^3.5.11"
+ },
+ "peerDependenciesMeta": {
+ "@vue/composition-api": {
+ "optional": true
+ },
+ "typescript": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/pinia/node_modules/vue-demi": {
+ "version": "0.14.10",
+ "resolved": "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.10.tgz",
+ "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==",
+ "hasInstallScript": true,
+ "bin": {
+ "vue-demi-fix": "bin/vue-demi-fix.js",
+ "vue-demi-switch": "bin/vue-demi-switch.js"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ },
+ "peerDependencies": {
+ "@vue/composition-api": "^1.0.0-rc.1",
+ "vue": "^3.0.0-0 || ^2.6.0"
+ },
+ "peerDependenciesMeta": {
+ "@vue/composition-api": {
+ "optional": true
+ }
+ }
+ },
"node_modules/pkg-types": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.2.0.tgz",
diff --git a/ui/package.json b/ui/package.json
index cec47a3..ccf202c 100644
--- a/ui/package.json
+++ b/ui/package.json
@@ -11,6 +11,8 @@
"format": "prettier --write src/"
},
"dependencies": {
+ "highlight.js": "^11.11.1",
+ "pinia": "^2.2.8",
"vue": "^3.5.11"
},
"devDependencies": {
diff --git a/ui/src/App.vue b/ui/src/App.vue
index 5d09561..eb2e815 100644
--- a/ui/src/App.vue
+++ b/ui/src/App.vue
@@ -4,41 +4,68 @@ import Launch from '@/pages/Launch.vue'
import Update from '@/pages/Update.vue'
import Fix from '@/pages/Fix.vue'
import { dateZhCN, zhCN } from 'naive-ui'
+import Settings from '@/pages/Settings.vue'
+import { useConfigStore } from '@/stores/config.js'
+const configStore = useConfigStore()
const loading = ref(true)
const page = ref(null)
+let conf
-function load_config() {
- pywebview.api.get_page().then((value) => {
- page.value = value
- loading.value = false
- })
+function show_doc() {
+ window.open('https://hedgedoc.zhaozuohong.vip/s/LfSzK2n0K', '_blank')
}
-const log = ref('')
+async function init_version() {
+ version.value = await pywebview.api.get_version()
+ new_version.value = await pywebview.api.get_new_version()
+ if (new_version.value.tag_name > version.value) {
+ update_able.value = true
+ }
+}
+async function initialize_config() {
+ await configStore.load_config()
+ conf = configStore.config
+ loading.value = false
+ if (!conf.is_already_show_doc) {
+ show_doc()
+ conf.is_already_show_doc = true
+ }
+ await init_version()
+}
+
+const log = ref([])
provide('log', log)
const log_ele = ref(null)
provide('log_ele', log_ele)
-watch(log, () => {
- nextTick(() => {
- log_ele.value?.scrollTo({ position: 'bottom' })
- })
-})
+watch(
+ log,
+ () => {
+ nextTick(() => {
+ log_ele.value?.scrollTo({ position: 'bottom' })
+ })
+ },
+ { deep: true }
+)
onMounted(() => {
if (window.pywebview && pywebview.api) {
- load_config()
+ initialize_config()
} else {
- window.addEventListener('pywebviewready', load_config)
+ window.addEventListener('pywebviewready', () => {
+ initialize_config()
+ })
}
window.addEventListener('log', (e) => {
- log.value += e.detail.log
+ log.value.push(e.detail.log)
+ if (log.value.length > 200) {
+ log.value.shift()
+ }
})
})
function set_page(value) {
- log.value = ''
- pywebview.api.set_page(value)
+ log.value.splice(0)
}
const running = ref(false)
@@ -46,6 +73,15 @@ provide('running', running)
const steps = ref([])
provide('steps', steps)
+
+const update_able = ref(false)
+provide('update_able', update_able)
+
+const version = ref('')
+provide('version', version)
+
+const new_version = ref({})
+provide('new_version', new_version)
@@ -58,13 +94,28 @@ provide('steps', steps)
type="card"
placement="left"
class="container"
- :default-value="page"
+ v-model:value="conf.page"
@update:value="set_page"
+ justify-content="center"
>
+
+
+
+ 设置
+ 新
+
+
+
+
+
+
+ 帮助文档
+
+
@@ -76,4 +127,17 @@ provide('steps', steps)
width: 100vw;
height: 100vh;
}
+.suffix-container {
+ margin: 0 4px 6px 4px;
+}
+.tab-content {
+ position: relative;
+}
+.tag {
+ margin-left: 4px;
+ position: absolute;
+ top: 50%;
+ left: 100%;
+ transform: translateY(-50%);
+}
diff --git a/ui/src/components/BaseMirrorOption.vue b/ui/src/components/BaseMirrorOption.vue
new file mode 100644
index 0000000..8d1037d
--- /dev/null
+++ b/ui/src/components/BaseMirrorOption.vue
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+ 默认模式
+ 镜像模式(-cf后缀)
+
+
+ 测试连接
+
+
+
+
diff --git a/ui/src/components/FloatButton.vue b/ui/src/components/FloatButton.vue
index 06f16c1..de0ff86 100644
--- a/ui/src/components/FloatButton.vue
+++ b/ui/src/components/FloatButton.vue
@@ -11,7 +11,7 @@ const current_state = inject('current_state')
const notification = useNotification()
async function start() {
- log.value = ''
+ log.value = []
running.value = true
for (const [i, step] of steps.value.entries()) {
current_step.value = i + 1
diff --git a/ui/src/components/LogComponent.vue b/ui/src/components/LogComponent.vue
index 8b19c0d..b16c676 100644
--- a/ui/src/components/LogComponent.vue
+++ b/ui/src/components/LogComponent.vue
@@ -1,14 +1,57 @@
-
+
-
+
@@ -23,10 +66,8 @@ const log_ele = inject('log_ele')
height: 100% !important;
box-sizing: border-box;
}
-
-
diff --git a/ui/src/main.js b/ui/src/main.js
index 1877952..647f8a5 100644
--- a/ui/src/main.js
+++ b/ui/src/main.js
@@ -1,7 +1,11 @@
-import 'vfonts/Lato.css'
import 'vfonts/FiraCode.css'
+import './styles/global.css'
import { createApp } from 'vue'
+import { createPinia } from 'pinia'
import App from './App.vue'
+
const app = createApp(App)
+const pinia = createPinia()
+app.use(pinia)
app.mount('#app')
diff --git a/ui/src/pages/Fix.vue b/ui/src/pages/Fix.vue
index 1f97086..50190e8 100644
--- a/ui/src/pages/Fix.vue
+++ b/ui/src/pages/Fix.vue
@@ -1,11 +1,12 @@
@@ -30,15 +37,21 @@ async function rm_site_packages() {
align-items: center;
"
>
-
- 移除 site-packages
+
+ 移除 site-packages 和 python/Scripts 目录
diff --git a/ui/src/pages/Init.vue b/ui/src/pages/Init.vue
index 77a5892..0120bfe 100644
--- a/ui/src/pages/Init.vue
+++ b/ui/src/pages/Init.vue
@@ -1,13 +1,18 @@
-
-
- 单开运行
-
-
- 多开器
-
+
+
+
+
+
+
+
+ 添加实例
+
+
+
+
+
+ 启动所选实例
+
+
+
+
+
+ 停止所选实例
+
+
+
+
+
+
+ 迁移配置
+
+
+
+
+
+
+ 显示日志
+
+
+
+
+
+ 全选
+
+
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 删除操作将导致实例配置丢失,请谨慎操作。
+
+
+
+
+
+
diff --git a/ui/src/pages/Settings.vue b/ui/src/pages/Settings.vue
new file mode 100644
index 0000000..89c3209
--- /dev/null
+++ b/ui/src/pages/Settings.vue
@@ -0,0 +1,103 @@
+
+
+
+
+
+
+
+
+ {{ version }}
+
+
+
+
+ 检查更新
+
+
+
+
+
+ 最新版本:{{ `${new_version.tag_name} ${new_version.name}` }}
+
+ 了解此版本
+
+
+
+
+ 立即更新
+
+
+
+
+
+
+
diff --git a/ui/src/pages/Update.vue b/ui/src/pages/Update.vue
index 567b794..5228906 100644
--- a/ui/src/pages/Update.vue
+++ b/ui/src/pages/Update.vue
@@ -1,32 +1,22 @@