mirror of
https://github.com/EasyTier/EasytierGame.git
synced 2025-05-19 10:27:56 +00:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
efee636180 | ||
|
|
4e3f1cbd89 | ||
|
|
c23191fe45 | ||
|
|
0776b074d2 | ||
|
|
cdd3fada1f | ||
|
|
fe785f6066 | ||
|
|
37fd7b6fb0 | ||
|
|
096d5f03da | ||
|
|
1813240378 | ||
|
|
2d4a44740a | ||
|
|
f0633761a0 | ||
|
|
4bedec63ca | ||
|
|
ab67ba94a3 | ||
|
|
8e6f8d602e | ||
|
|
92d25ab907 | ||
|
|
1c8314c6fa | ||
|
|
b352d49e0b |
+2
-4
@@ -10,7 +10,5 @@ dist
|
|||||||
.idea
|
.idea
|
||||||
.vscode
|
.vscode
|
||||||
release
|
release
|
||||||
src-tauri/easytier-cli.exe
|
|
||||||
src-tauri/easytier-core.exe
|
src-tauri/easytier/logs
|
||||||
src-tauri/Packet.dll
|
|
||||||
src-tauri/wintun.dll
|
|
||||||
@@ -28,7 +28,7 @@ Releases: [https://github.com/EasyTier/EasytierGame/releases](https://github.c
|
|||||||
- 如果还是无法满足您的需求,可以使用配置文件进行启动,具体如何配置,可以查看文档[配置文件](/guide/network/config-file.html)
|
- 如果还是无法满足您的需求,可以使用配置文件进行启动,具体如何配置,可以查看文档[配置文件](/guide/network/config-file.html)
|
||||||

|

|
||||||
|
|
||||||
- easytier内核升级后,可以点击更新插件按钮就可以进行更新,但是需要出国,如果无法更新,可以在群里获取
|
- easytier内核升级后,可以点击内核管理按钮就可以进行内核切换和更新,但是需要出国或者github加速链接,如果无法更新,可以在群里获取
|
||||||

|

|
||||||
|
|
||||||
- 1.1.4更新了 配置分享功能 可以与朋友之间分享配置,方便联机
|
- 1.1.4更新了 配置分享功能 可以与朋友之间分享配置,方便联机
|
||||||
@@ -41,6 +41,14 @@ Releases: [https://github.com/EasyTier/EasytierGame/releases](https://github.c
|
|||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
- 1.1.8 新增了 生成 easytier/config.json 的功能 会将一部分配置写入到 config.json 文件中,方便用户自定义配置,你可以在高级设置里启用和关闭这个功能(默认关闭)
|
||||||
|
**需要注意的是,如果config.json存在,每次启动easytierGame默认按照config.json的配置为准**
|
||||||
|
**解压zip后你可以查看 easytier/config_template.json 里的注释进行配置**
|
||||||
|

|
||||||
|
|
||||||
|
- 1.2.3新增了帮助.txt 位于“easytier/帮助.txt" 内含 无法打开界面和卸载EasytierGame的办法,新增 "easytier/clear_local_data.bat" 用于清除easytierGame的本地缓存数据(需要管理员模式运行)
|
||||||
|

|
||||||
|
|
||||||
## 特性
|
## 特性
|
||||||
|
|
||||||
- 基于easytier组网工具开发,界面清晰简单
|
- 基于easytier组网工具开发,界面清晰简单
|
||||||
|
|||||||
@@ -6,6 +6,30 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import useMainStore from "@/stores/index";
|
import useMainStore from "@/stores/index";
|
||||||
import { initTheme } from "@/composables/theme";
|
import { initTheme } from "@/composables/theme";
|
||||||
|
import { warn, debug, trace, info, error } from "@tauri-apps/plugin-log";
|
||||||
|
function forwardConsole(fnName: "log" | "debug" | "info" | "warn" | "error", logger: (message: string) => Promise<void>) {
|
||||||
|
const original = console[fnName];
|
||||||
|
console[fnName] = (message) => {
|
||||||
|
original(message);
|
||||||
|
if (import.meta.env.PROD) {
|
||||||
|
try {
|
||||||
|
if (typeof message === "string") {
|
||||||
|
logger(message);
|
||||||
|
} else {
|
||||||
|
logger(JSON.stringify(message));
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
logger(`${message}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
forwardConsole("log", info);
|
||||||
|
forwardConsole("debug", debug);
|
||||||
|
forwardConsole("info", info);
|
||||||
|
forwardConsole("warn", warn);
|
||||||
|
forwardConsole("error", error);
|
||||||
|
|
||||||
const mainStore = useMainStore();
|
const mainStore = useMainStore();
|
||||||
// console.log(mainStore.theme)
|
// console.log(mainStore.theme)
|
||||||
initTheme(mainStore.theme);
|
initTheme(mainStore.theme);
|
||||||
|
|||||||
@@ -32,3 +32,8 @@ html.dark body {
|
|||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
padding: 3px 5px;
|
padding: 3px 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.full-label .el-form-item__label {
|
||||||
|
width: 100%;
|
||||||
|
padding-right: 0;
|
||||||
|
}
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 29 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 19 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 23 KiB |
@@ -0,0 +1,45 @@
|
|||||||
|
import { BaseDirectory, writeTextFile } from "@tauri-apps/plugin-fs";
|
||||||
|
import useMainStore from "@/stores/index";
|
||||||
|
import { ElMessage } from "element-plus";
|
||||||
|
import { uniq, intersection, isNil } from "lodash-es";
|
||||||
|
export const updateConfigJson = async (configJsonSeverUrl: Array<string> | string | null | undefined) => {
|
||||||
|
const mainStore = useMainStore();
|
||||||
|
const path = import.meta.env.VITE_CONFIG_FILE_NAME;
|
||||||
|
if (isNil(configJsonSeverUrl)) {
|
||||||
|
configJsonSeverUrl = [];
|
||||||
|
}
|
||||||
|
const isArray = Array.isArray(configJsonSeverUrl);
|
||||||
|
const isString = typeof configJsonSeverUrl === "string";
|
||||||
|
try {
|
||||||
|
const {
|
||||||
|
proxyNetworks,
|
||||||
|
autoStart,
|
||||||
|
relayAllPeerrpc,
|
||||||
|
connectAfterStart,
|
||||||
|
multiThread,
|
||||||
|
enablExitNode,
|
||||||
|
useSmoltcp,
|
||||||
|
saveErrorLog,
|
||||||
|
logLevel,
|
||||||
|
serverUrl,
|
||||||
|
...otherConfig
|
||||||
|
} = mainStore.config;
|
||||||
|
let writeServerUrl: Array<string> | string = serverUrl;
|
||||||
|
if (isArray) {
|
||||||
|
writeServerUrl = intersection(
|
||||||
|
uniq([serverUrl, ...configJsonSeverUrl]).filter(boolean => boolean),
|
||||||
|
mainStore.basePeers
|
||||||
|
);
|
||||||
|
}
|
||||||
|
if (isString && configJsonSeverUrl) {
|
||||||
|
writeServerUrl = intersection(
|
||||||
|
uniq([serverUrl, ...(configJsonSeverUrl as string).split(",")]).filter(boolean => boolean),
|
||||||
|
mainStore.basePeers
|
||||||
|
).join(",");
|
||||||
|
}
|
||||||
|
await writeTextFile(path, JSON.stringify({ serverUrl: writeServerUrl, ...otherConfig }, null, 4), { baseDir: BaseDirectory.Resource });
|
||||||
|
} catch (err) {
|
||||||
|
console.error(err);
|
||||||
|
ElMessage.error(`更新config.json失败`);
|
||||||
|
}
|
||||||
|
};
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
// const infoDialog = new WebviewWindow("log", {
|
|
||||||
// title: "日志",
|
|
||||||
// resizable: false,
|
|
||||||
// width: 600,
|
|
||||||
// height: 400,
|
|
||||||
// parent: appWindow,
|
|
||||||
// url: "/log"
|
|
||||||
// });
|
|
||||||
+12
-4
@@ -2,6 +2,8 @@ import { invoke } from "@tauri-apps/api/core";
|
|||||||
import { Command } from "@tauri-apps/plugin-shell";
|
import { Command } from "@tauri-apps/plugin-shell";
|
||||||
import { ElMessage, type TabPaneName } from "element-plus";
|
import { ElMessage, type TabPaneName } from "element-plus";
|
||||||
import useMainStore from "@/stores/index";
|
import useMainStore from "@/stores/index";
|
||||||
|
import { BaseDirectory } from "@tauri-apps/api/path";
|
||||||
|
import { exists } from "@tauri-apps/plugin-fs";
|
||||||
|
|
||||||
const getWinIpBroadcastPid = async () => {
|
const getWinIpBroadcastPid = async () => {
|
||||||
const mainStore = useMainStore();
|
const mainStore = useMainStore();
|
||||||
@@ -19,17 +21,23 @@ export const handleWinipBcStart = async () => {
|
|||||||
if (!mainStore.winipBcStart) {
|
if (!mainStore.winipBcStart) {
|
||||||
try {
|
try {
|
||||||
await invoke("stop_command", { child_id: mainStore.winipBcPid || 0 });
|
await invoke("stop_command", { child_id: mainStore.winipBcPid || 0 });
|
||||||
|
const isExists = await exists("easytier/tool/WinIPBroadcast.exe", { baseDir: BaseDirectory.Resource });
|
||||||
|
if(!isExists) {
|
||||||
|
ElMessage.error(`WinipBc不存在`);
|
||||||
|
console.error(`WinipBc不存在`);
|
||||||
|
return;
|
||||||
|
}
|
||||||
const child = await Command.create("WinIPBroadcast", ["run"]).spawn();
|
const child = await Command.create("WinIPBroadcast", ["run"]).spawn();
|
||||||
mainStore.winipBcPid = child.pid || 0;
|
mainStore.winipBcPid = child.pid || 0;
|
||||||
if (mainStore.winipBcPid) {
|
if (mainStore.winipBcPid) {
|
||||||
mainStore.winipBcStart = true;
|
mainStore.winipBcStart = true;
|
||||||
mainStore.winIpBcAutoStart = true;
|
mainStore.winIpBcAutoStart = true;
|
||||||
} else {
|
} else {
|
||||||
ElMessage.error(`启动失败`);
|
ElMessage.error(`WinipBc失败`);
|
||||||
}
|
}
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
ElMessage.error(`启动失败`);
|
ElMessage.error(`WinipBc失败`);
|
||||||
console.log(err);
|
console.error(err);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
mainStore.winIpBcAutoStart = false;
|
mainStore.winIpBcAutoStart = false;
|
||||||
@@ -41,7 +49,7 @@ export const handleWinipBcStart = async () => {
|
|||||||
export const initStartWinIpBroadcast = async () => {
|
export const initStartWinIpBroadcast = async () => {
|
||||||
const mainStore = useMainStore();
|
const mainStore = useMainStore();
|
||||||
await getWinIpBroadcastPid();
|
await getWinIpBroadcastPid();
|
||||||
// console.log(mainStore.winipBcStart, mainStore.winIpBcAutoStart)
|
// console.error(mainStore.winipBcStart, mainStore.winIpBcAutoStart)
|
||||||
if (mainStore.winIpBcAutoStart && !mainStore.winipBcStart) {
|
if (mainStore.winIpBcAutoStart && !mainStore.winipBcStart) {
|
||||||
await handleWinipBcStart();
|
await handleWinipBcStart();
|
||||||
}
|
}
|
||||||
|
|||||||
+22
-6
@@ -4,6 +4,7 @@ import { getCurrentWindow } from "@tauri-apps/api/window";
|
|||||||
import pkg from "@/package.json";
|
import pkg from "@/package.json";
|
||||||
import { setTheme } from "~/composables/theme";
|
import { setTheme } from "~/composables/theme";
|
||||||
import useMainStore from "@/stores/index";
|
import useMainStore from "@/stores/index";
|
||||||
|
import { resourceDir as getResourceDir, join } from "@tauri-apps/api/path";
|
||||||
|
|
||||||
const DEFAULT_TRAY_NAME = "main";
|
const DEFAULT_TRAY_NAME = "main";
|
||||||
|
|
||||||
@@ -16,7 +17,7 @@ async function toggleVisibility() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function useTray(init: boolean = false, beforExit: Function) {
|
export async function useTray(init: boolean = false, beforExit: Function, handleConnection: Function) {
|
||||||
let tray;
|
let tray;
|
||||||
try {
|
try {
|
||||||
tray = await TrayIcon.getById(DEFAULT_TRAY_NAME);
|
tray = await TrayIcon.getById(DEFAULT_TRAY_NAME);
|
||||||
@@ -27,7 +28,7 @@ export async function useTray(init: boolean = false, beforExit: Function) {
|
|||||||
id: DEFAULT_TRAY_NAME,
|
id: DEFAULT_TRAY_NAME,
|
||||||
menu: await Menu.new({
|
menu: await Menu.new({
|
||||||
id: "main",
|
id: "main",
|
||||||
items: await generateMenuItem(beforExit),
|
items: await generateMenuItem(beforExit, handleConnection),
|
||||||
}),
|
}),
|
||||||
action: async (e) => {
|
action: async (e) => {
|
||||||
toggleVisibility();
|
toggleVisibility();
|
||||||
@@ -35,7 +36,7 @@ export async function useTray(init: boolean = false, beforExit: Function) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.warn("Error while creating tray icon:", error);
|
console.error("Error while creating tray icon:", error);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -45,7 +46,7 @@ export async function useTray(init: boolean = false, beforExit: Function) {
|
|||||||
tray.setMenu(
|
tray.setMenu(
|
||||||
await Menu.new({
|
await Menu.new({
|
||||||
id: "main",
|
id: "main",
|
||||||
items: await generateMenuItem(beforExit),
|
items: await generateMenuItem(beforExit, handleConnection),
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -53,9 +54,10 @@ export async function useTray(init: boolean = false, beforExit: Function) {
|
|||||||
return tray;
|
return tray;
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function generateMenuItem(beforExit: Function) {
|
export async function generateMenuItem(beforExit: Function, handleConnection:Function) {
|
||||||
return [
|
return [
|
||||||
await MenuItemShow("显示 / 隐藏"),
|
await MenuItemShow("显示 / 隐藏"),
|
||||||
|
await MenuItemExchangeConnection("联机 / 断开", handleConnection),
|
||||||
await MenuItemTheme(),
|
await MenuItemTheme(),
|
||||||
await PredefinedMenuItem.new({ item: "Separator" }),
|
await PredefinedMenuItem.new({ item: "Separator" }),
|
||||||
await MenuItemExit("退出", beforExit),
|
await MenuItemExit("退出", beforExit),
|
||||||
@@ -85,6 +87,17 @@ export async function MenuItemShow(text: string) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export async function MenuItemExchangeConnection(text: string, handleConnection:Function) {
|
||||||
|
const menutItem = await MenuItem.new({
|
||||||
|
id: "exchangeConnection",
|
||||||
|
text,
|
||||||
|
action: async () => {
|
||||||
|
const isStart = await handleConnection();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
return menutItem;
|
||||||
|
}
|
||||||
|
|
||||||
export async function MenuItemTheme() {
|
export async function MenuItemTheme() {
|
||||||
return await MenuItem.new({
|
return await MenuItem.new({
|
||||||
id: "theme",
|
id: "theme",
|
||||||
@@ -113,7 +126,10 @@ export async function MenuItemTheme() {
|
|||||||
|
|
||||||
export async function setTrayRunState(tray: TrayIcon | null, isRunning: boolean = false) {
|
export async function setTrayRunState(tray: TrayIcon | null, isRunning: boolean = false) {
|
||||||
if (!tray) return;
|
if (!tray) return;
|
||||||
await tray.setIcon(isRunning ? "easytier/icons/icon-inactive.ico" : "easytier/icons/icon.ico");
|
const resourceDir = await getResourceDir();
|
||||||
|
const path = await join(resourceDir, isRunning ? "easytier/icons/icon-inactive.ico" : "easytier/icons/icon.ico");
|
||||||
|
// "easytier/icons/icon-inactive.ico", { baseDir: BaseDirectory.Resource }
|
||||||
|
await tray.setIcon(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function setTrayTooltip(tray: TrayIcon | null, tooltip?: string | null) {
|
export async function setTrayTooltip(tray: TrayIcon | null, tooltip?: string | null) {
|
||||||
|
|||||||
+27
-23
@@ -1,38 +1,42 @@
|
|||||||
import { type UnlistenFn } from "@tauri-apps/api/event";
|
import { type UnlistenFn } from "@tauri-apps/api/event";
|
||||||
import { getCurrentWindow, PhysicalPosition, type WindowOptions, Window } from "@tauri-apps/api/window";
|
import { getCurrentWindow, PhysicalPosition, type WindowOptions, Window, currentMonitor } from "@tauri-apps/api/window";
|
||||||
import { WebviewWindow } from "@tauri-apps/api/webviewWindow";
|
import { WebviewWindow } from "@tauri-apps/api/webviewWindow";
|
||||||
import type { WebviewLabel, WebviewOptions, } from "@tauri-apps/api/webview";
|
import type { WebviewLabel, WebviewOptions } from "@tauri-apps/api/webview";
|
||||||
export default async (
|
export default async (
|
||||||
label: WebviewLabel,
|
label: WebviewLabel,
|
||||||
options?: Omit<WebviewOptions, "x" | "y" | "width" | "height"> & WindowOptions,
|
options?: Omit<WebviewOptions, "x" | "y" | "width" | "height"> & WindowOptions,
|
||||||
afterCreatedFunc?: (webviewWindow: WebviewWindow, appWindow: Window) => void | null,
|
afterCreatedFunc?: (webviewWindow: WebviewWindow, appWindow: Window) => void | null,
|
||||||
beforeCloseFunc?: () => void | null
|
beforeCloseFunc?: () => void | null
|
||||||
) => {
|
) => {
|
||||||
let defaultOpts = {
|
|
||||||
parent: undefined,
|
|
||||||
closable: true,
|
|
||||||
resizable: true,
|
|
||||||
decorations: true,
|
|
||||||
maximizable: false,
|
|
||||||
minimizable: false,
|
|
||||||
x: 0,
|
|
||||||
y: 0
|
|
||||||
};
|
|
||||||
const appWindow = getCurrentWindow();
|
|
||||||
if (appWindow) {
|
|
||||||
const appSize = await appWindow.outerSize();
|
|
||||||
const factor = await appWindow.scaleFactor();
|
|
||||||
const appPosition = await appWindow.outerPosition();
|
|
||||||
const logicalPosition = new PhysicalPosition(appPosition.x + appSize.width, appPosition.y).toLogical(factor);
|
|
||||||
defaultOpts.parent = appWindow as any;
|
|
||||||
defaultOpts.x = logicalPosition.x;
|
|
||||||
defaultOpts.y = logicalPosition.y;
|
|
||||||
}
|
|
||||||
let unListenlogClose: UnlistenFn | null = null;
|
let unListenlogClose: UnlistenFn | null = null;
|
||||||
let unlistenLogCreated: UnlistenFn | null = null;
|
let unlistenLogCreated: UnlistenFn | null = null;
|
||||||
let dialog = await WebviewWindow.getByLabel(label);
|
let dialog = await WebviewWindow.getByLabel(label);
|
||||||
if (!dialog) {
|
if (!dialog) {
|
||||||
dialog = new WebviewWindow(label, {...defaultOpts, ...options});
|
let defaultOpts: {[key:string]: any, parent: Window | undefined} = {
|
||||||
|
parent: undefined,
|
||||||
|
closable: true,
|
||||||
|
resizable: true,
|
||||||
|
decorations: true,
|
||||||
|
maximizable: false,
|
||||||
|
minimizable: false,
|
||||||
|
x: 0,
|
||||||
|
y: 0
|
||||||
|
};
|
||||||
|
const appWindow = getCurrentWindow();
|
||||||
|
if (appWindow) {
|
||||||
|
const appSize = await appWindow.outerSize();
|
||||||
|
// const monitor = await currentMonitor();
|
||||||
|
// console.error(monitor)
|
||||||
|
const factor = await appWindow.scaleFactor();
|
||||||
|
const appPosition = await appWindow.outerPosition();
|
||||||
|
// console.error((appPosition.x + appSize.width) / 1.25);
|
||||||
|
const logicalPosition = new PhysicalPosition(appPosition.x + appSize.width, appPosition.y).toLogical(factor);
|
||||||
|
defaultOpts.parent = appWindow;
|
||||||
|
// console.error(logicalPosition);
|
||||||
|
defaultOpts.x = logicalPosition.x;
|
||||||
|
defaultOpts.y = logicalPosition.y;
|
||||||
|
}
|
||||||
|
dialog = new WebviewWindow(label, { ...defaultOpts, ...options });
|
||||||
unlistenLogCreated = await dialog.once("tauri://webview-created", async () => {
|
unlistenLogCreated = await dialog.once("tauri://webview-created", async () => {
|
||||||
if (dialog) {
|
if (dialog) {
|
||||||
afterCreatedFunc && (await afterCreatedFunc(dialog, appWindow));
|
afterCreatedFunc && (await afterCreatedFunc(dialog, appWindow));
|
||||||
|
|||||||
Vendored
+1
@@ -1,3 +1,4 @@
|
|||||||
VITE_CONFIG_PATH=easytier/config/
|
VITE_CONFIG_PATH=easytier/config/
|
||||||
|
VITE_CONFIG_FILE_NAME=easytier/config.json
|
||||||
VITE_LOG_PATH=easytier/logs/
|
VITE_LOG_PATH=easytier/logs/
|
||||||
VITE_AUTO_START_SERVICE_NAME=easytierGameAutoStart
|
VITE_AUTO_START_SERVICE_NAME=easytierGameAutoStart
|
||||||
Vendored
+1
@@ -1,3 +1,4 @@
|
|||||||
VITE_CONFIG_PATH=easytier/config/
|
VITE_CONFIG_PATH=easytier/config/
|
||||||
|
VITE_CONFIG_FILE_NAME=easytier/config.json
|
||||||
VITE_LOG_PATH=easytier/logs/
|
VITE_LOG_PATH=easytier/logs/
|
||||||
VITE_AUTO_START_SERVICE_NAME=easytierGameAutoStart
|
VITE_AUTO_START_SERVICE_NAME=easytierGameAutoStart
|
||||||
+19
-18
@@ -1,16 +1,7 @@
|
|||||||
import { defineNuxtConfig } from "nuxt/config";
|
import { defineNuxtConfig } from "nuxt/config";
|
||||||
import fs from "fs";
|
|
||||||
import path from "path";
|
import path from "path";
|
||||||
import vueJSX from "@vitejs/plugin-vue-jsx";
|
import vueJSX from "@vitejs/plugin-vue-jsx";
|
||||||
const isDev = process?.argv?.[2] == "_dev" || process?.argv?.[2] == "dev";
|
|
||||||
const optimizeDepsElementPlusIncludes = ["element-plus/es"];
|
|
||||||
fs.readdirSync("node_modules/element-plus/es/components").map(dirname => {
|
|
||||||
fs.access(`node_modules/element-plus/es/components/${dirname}/style/css.mjs`, err => {
|
|
||||||
if (!err) {
|
|
||||||
optimizeDepsElementPlusIncludes.push(`element-plus/es/components/${dirname}/style/css`);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
export default defineNuxtConfig({
|
export default defineNuxtConfig({
|
||||||
ssr: false,
|
ssr: false,
|
||||||
|
|
||||||
@@ -22,8 +13,19 @@ export default defineNuxtConfig({
|
|||||||
autoImport: false
|
autoImport: false
|
||||||
},
|
},
|
||||||
|
|
||||||
css: ["~/assets/css/main.css", 'element-plus/theme-chalk/dark/css-vars.css'],
|
css: ["~/assets/css/main.css", "element-plus/theme-chalk/dark/css-vars.css"],
|
||||||
modules: ["@element-plus/nuxt", "@pinia/nuxt", "@pinia-plugin-persistedstate/nuxt", "@nuxtjs/tailwindcss"],
|
modules: [
|
||||||
|
"@element-plus/nuxt",
|
||||||
|
"@pinia/nuxt",
|
||||||
|
[
|
||||||
|
"pinia-plugin-persistedstate/nuxt",
|
||||||
|
{
|
||||||
|
key: "__glj_persisted_%id",
|
||||||
|
storage: "localStorage"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"@nuxtjs/tailwindcss"
|
||||||
|
],
|
||||||
|
|
||||||
alias: {
|
alias: {
|
||||||
"@": path.resolve(__dirname, "./")
|
"@": path.resolve(__dirname, "./")
|
||||||
@@ -44,12 +46,10 @@ export default defineNuxtConfig({
|
|||||||
},
|
},
|
||||||
|
|
||||||
vite: {
|
vite: {
|
||||||
plugins: [
|
plugins: [vueJSX({})],
|
||||||
vueJSX({}),
|
|
||||||
],
|
|
||||||
envDir: "env",
|
envDir: "env",
|
||||||
optimizeDeps: {
|
optimizeDeps: {
|
||||||
include: [...optimizeDepsElementPlusIncludes]
|
// include: [...optimizeDepsElementPlusIncludes]
|
||||||
},
|
},
|
||||||
// prevent vite from obscuring rust errors
|
// prevent vite from obscuring rust errors
|
||||||
clearScreen: false,
|
clearScreen: false,
|
||||||
@@ -84,7 +84,7 @@ export default defineNuxtConfig({
|
|||||||
|
|
||||||
app: {
|
app: {
|
||||||
rootId: "__easytier",
|
rootId: "__easytier",
|
||||||
cdnURL: "./",
|
cdnURL: "./",
|
||||||
buildAssetsDir: "__easytier/",
|
buildAssetsDir: "__easytier/",
|
||||||
head: {
|
head: {
|
||||||
meta: [
|
meta: [
|
||||||
@@ -102,5 +102,6 @@ export default defineNuxtConfig({
|
|||||||
// script: [],
|
// script: [],
|
||||||
// noscript: []
|
// noscript: []
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
compatibilityDate: "2024-11-12"
|
||||||
});
|
});
|
||||||
|
|||||||
+18
-25
@@ -3,44 +3,37 @@
|
|||||||
"private": true,
|
"private": true,
|
||||||
"author": "leizi97",
|
"author": "leizi97",
|
||||||
"description": "A simple network initiator based on Easytier",
|
"description": "A simple network initiator based on Easytier",
|
||||||
"version": "1.1.7",
|
"version": "1.2.4",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "nuxt dev --dotenv env/.env.dev --host 0.0.0.0",
|
"dev": "nuxt dev --dotenv env/.env.dev --host 0.0.0.0",
|
||||||
"build": "nuxt generate --dotenv env/.env.prod"
|
"build": "nuxt generate --dotenv env/.env.prod"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@element-plus/icons-vue": "^2.3.1",
|
"@element-plus/icons-vue": "^2.3.1",
|
||||||
"@element-plus/nuxt": "^1.0.9",
|
"@element-plus/nuxt": "^1.1.0",
|
||||||
"@nuxtjs/tailwindcss": "^6.12.0",
|
"@nuxtjs/tailwindcss": "^6.12.0",
|
||||||
"@pinia-plugin-persistedstate/nuxt": "^1.2.0",
|
"@pinia/nuxt": "^0.7.0",
|
||||||
"@pinia/nuxt": "^0.5.1",
|
"@tauri-apps/api": "^2.1.1",
|
||||||
"@tauri-apps/api": "^2.0.2",
|
"@tauri-apps/cli": "^2.1.0",
|
||||||
"@tauri-apps/cli": "^2.0.2",
|
"@tauri-apps/plugin-autostart": "~2",
|
||||||
"@tauri-apps/plugin-cli": "^2.0.0",
|
"@tauri-apps/plugin-cli": "^2.0.0",
|
||||||
"@tauri-apps/plugin-http": "^2.0.0",
|
"@tauri-apps/plugin-clipboard-manager": "^2.0.0",
|
||||||
|
"@tauri-apps/plugin-fs": "~2",
|
||||||
|
"@tauri-apps/plugin-http": "^2.0.1",
|
||||||
|
"@tauri-apps/plugin-log": "^2.0.0",
|
||||||
"@tauri-apps/plugin-shell": "~2",
|
"@tauri-apps/plugin-shell": "~2",
|
||||||
"@tinymce/tinymce-vue": "^5.1.1",
|
"@tauri-apps/plugin-window-state": "~2",
|
||||||
"@types/lodash-es": "^4.17.12",
|
"@types/lodash-es": "^4.17.12",
|
||||||
"@types/qs": "^6.9.15",
|
"@vitejs/plugin-vue-jsx": "^4.1.0",
|
||||||
"@vitejs/plugin-vue-jsx": "^3.1.0",
|
|
||||||
"@vueuse/core": "^11.2.0",
|
"@vueuse/core": "^11.2.0",
|
||||||
"dayjs": "^1.11.10",
|
"element-plus": "^2.8.7",
|
||||||
"defu": "^6.1.4",
|
|
||||||
"element-plus": "^2.8.6",
|
|
||||||
"less": "^4.2.0",
|
"less": "^4.2.0",
|
||||||
"lodash-es": "^4.17.21",
|
"lodash-es": "^4.17.21",
|
||||||
"nuxt": "^3.11.2",
|
"nuxt": "^3.13.2",
|
||||||
"pinia": "^2.1.7",
|
"pinia": "^2.2.6",
|
||||||
|
"pinia-plugin-persistedstate": "^4.1.3",
|
||||||
"postcss": "^8.4.38",
|
"postcss": "^8.4.38",
|
||||||
"qs": "^6.12.0",
|
"typescript": "^5.6.3",
|
||||||
"typescript": "^5.4.5",
|
"vue-clipboard3": "^2.0.0"
|
||||||
"vue": "^3.4.24",
|
|
||||||
"vue-clipboard3": "^2.0.0",
|
|
||||||
"xlsx": "^0.18.5"
|
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"@tauri-apps/plugin-autostart": "~2",
|
|
||||||
"@tauri-apps/plugin-clipboard-manager": "^2.0.0",
|
|
||||||
"@tauri-apps/plugin-fs": "~2"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+75
-13
@@ -1,38 +1,85 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="h-full overflow-auto flex flex-col items-start px-[25px]">
|
<div class="h-full overflow-auto flex flex-col items-start px-[25px]">
|
||||||
<div><ElCheckbox v-model="mainStore.config.disableIpv6">不使用IPv6</ElCheckbox></div>
|
<div><ElCheckbox v-model="mainStore.config.disableIpv6">不使用IPv6</ElCheckbox></div>
|
||||||
<div class="flex items-center gap-[10px]">
|
|
||||||
<ElCheckbox v-model="mainStore.config.devName">自定义网卡名</ElCheckbox>
|
|
||||||
<ElInput maxlength="10" v-model="mainStore.config.devNameValue" placeholder="请输入网卡名"/>
|
|
||||||
</div>
|
|
||||||
<div><ElCheckbox v-model="mainStore.config.disbleListenner">不监听任何端口,只连接到对等节点</ElCheckbox></div>
|
<div><ElCheckbox v-model="mainStore.config.disbleListenner">不监听任何端口,只连接到对等节点</ElCheckbox></div>
|
||||||
<div><ElCheckbox v-model="mainStore.config.coonectAfterStart">软件启动后,自动"启动联机"(搭配开机自启,无感联机)</ElCheckbox></div>
|
|
||||||
<div class="flex items-center gap-[15px] flex-nowrap">
|
<div class="flex items-center gap-[15px] flex-nowrap">
|
||||||
<ElCheckbox v-model="mainStore.config.saveErrorLog">输出日志到本地</ElCheckbox>
|
<ElCheckbox v-model="mainStore.config.saveErrorLog">输出日志到本地</ElCheckbox>
|
||||||
<div class="w-[140px]">
|
<div class="w-[140px]">
|
||||||
<ElSelect
|
<ElSelect
|
||||||
|
size="small"
|
||||||
v-model="mainStore.config.logLevel"
|
v-model="mainStore.config.logLevel"
|
||||||
placeholder="请选择日志等级"
|
placeholder="请选择日志等级"
|
||||||
class="ml-[5px]">
|
class="ml-[5px]"
|
||||||
|
>
|
||||||
<ElOption
|
<ElOption
|
||||||
v-for="item in data"
|
v-for="item in data"
|
||||||
:key="item"
|
:key="item"
|
||||||
:label="`level - ${item}`"
|
:label="`level - ${item}`"
|
||||||
:value="item"></ElOption>
|
:value="item"
|
||||||
|
></ElOption>
|
||||||
</ElSelect>
|
</ElSelect>
|
||||||
</div>
|
</div>
|
||||||
<ElButton
|
<ElButton
|
||||||
@click="openLogDir"
|
@click="openLogDir"
|
||||||
size="small">
|
size="small"
|
||||||
|
>
|
||||||
打开日志目录
|
打开日志目录
|
||||||
</ElButton>
|
</ElButton>
|
||||||
</div>
|
</div>
|
||||||
|
<div><ElCheckbox v-model="mainStore.config.connectAfterStart">软件启动后,自动"启动联机"(搭配开机自启,无感联机)</ElCheckbox></div>
|
||||||
|
<div class="flex items-center gap-[15px] flex-nowrap">
|
||||||
|
<ElCheckbox v-model="mainStore.createConfigInEasytier">自动生成界面配置文件easytier/config.json</ElCheckbox>
|
||||||
|
<ElButton
|
||||||
|
@click="openConfigJsonDir"
|
||||||
|
size="small"
|
||||||
|
>
|
||||||
|
打开config.json目录
|
||||||
|
</ElButton>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<ElDivider />
|
||||||
|
<div class="flex items-center gap-[10px]">
|
||||||
|
<ElCheckbox v-model="mainStore.config.devName">自定义网卡名</ElCheckbox>
|
||||||
|
<ElInput
|
||||||
|
size="small"
|
||||||
|
maxlength="10"
|
||||||
|
v-model="mainStore.config.devNameValue"
|
||||||
|
placeholder="请输入网卡名"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="flex items-center gap-[10px]">
|
||||||
|
<ElCheckbox v-model="mainStore.config.enableNetCardMetric">自定义easytier网卡跃点</ElCheckbox>
|
||||||
|
<ElInputNumber
|
||||||
|
controls-position="right"
|
||||||
|
:min="1"
|
||||||
|
:value-on-clear="1"
|
||||||
|
:max="9999"
|
||||||
|
:step="1"
|
||||||
|
:precision="0"
|
||||||
|
size="small"
|
||||||
|
v-model="mainStore.config.netCardMetricValue"
|
||||||
|
placeholder="请选择跃点数"
|
||||||
|
/>
|
||||||
|
<ElTooltip content="设置easytier网卡的跃点,提升网卡优先级,跃点越小,网卡优先级越高">
|
||||||
|
<ElIcon><QuestionFilled /></ElIcon>
|
||||||
|
</ElTooltip>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<ElText
|
||||||
|
size="small"
|
||||||
|
type="warning"
|
||||||
|
>
|
||||||
|
(不使用自定义网卡名,那么联机时默认会生成一个名为 "et_xxx" 的网卡,也可以使用 “设置跃点” 功能,除非你启用了下面的功能)
|
||||||
|
</ElText>
|
||||||
|
</div>
|
||||||
|
<div><ElCheckbox v-model="mainStore.config.noTun">不创建TUN设备(网卡),可以使用子网代理访问节点</ElCheckbox></div>
|
||||||
|
|
||||||
<ElDivider />
|
<ElDivider />
|
||||||
<div><ElCheckbox v-model="mainStore.config.enablExitNode">允许此节点成为出口节点</ElCheckbox></div>
|
<div><ElCheckbox v-model="mainStore.config.enablExitNode">允许此节点成为出口节点</ElCheckbox></div>
|
||||||
<div><ElCheckbox v-model="mainStore.config.disableEncryption">禁用对等节点通信的加密,默认为false,必须与对等节点相同</ElCheckbox></div>
|
<div><ElCheckbox v-model="mainStore.config.disableEncryption">禁用对等节点通信的加密,默认为启用,必须与对等节点相同</ElCheckbox></div>
|
||||||
<div><ElCheckbox v-model="mainStore.config.multiThread">使用多线程运行时,默认为单线程</ElCheckbox></div>
|
<div><ElCheckbox v-model="mainStore.config.multiThread">使用多线程运行时,默认为单线程</ElCheckbox></div>
|
||||||
<ElDivider />
|
<ElDivider />
|
||||||
<div><ElCheckbox v-model="mainStore.config.noTun">不创建TUN设备,可以使用子网代理访问节点</ElCheckbox></div>
|
|
||||||
<div><ElCheckbox v-model="mainStore.config.useSmoltcp">为子网代理启用smoltcp堆栈</ElCheckbox></div>
|
<div><ElCheckbox v-model="mainStore.config.useSmoltcp">为子网代理启用smoltcp堆栈</ElCheckbox></div>
|
||||||
<div><ElCheckbox v-model="mainStore.config.latencyfirst">延迟优先模式,将尝试使用最低延迟路径转发流量,默认使用最短路径</ElCheckbox></div>
|
<div><ElCheckbox v-model="mainStore.config.latencyfirst">延迟优先模式,将尝试使用最低延迟路径转发流量,默认使用最短路径</ElCheckbox></div>
|
||||||
<div><ElCheckbox v-model="mainStore.config.disableUdpHolePunching">禁用UDP打洞功能</ElCheckbox></div>
|
<div><ElCheckbox v-model="mainStore.config.disableUdpHolePunching">禁用UDP打洞功能</ElCheckbox></div>
|
||||||
@@ -43,10 +90,12 @@
|
|||||||
</template>
|
</template>
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import useMainStore from "@/stores/index";
|
import useMainStore from "@/stores/index";
|
||||||
|
import { QuestionFilled } from "@element-plus/icons-vue";
|
||||||
import { getCurrentWindow } from "@tauri-apps/api/window";
|
import { getCurrentWindow } from "@tauri-apps/api/window";
|
||||||
import { resourceDir as getResourceDir, join } from "@tauri-apps/api/path";
|
import { resourceDir as getResourceDir, join } from "@tauri-apps/api/path";
|
||||||
import { Command } from "@tauri-apps/plugin-shell";
|
import { Command } from "@tauri-apps/plugin-shell";
|
||||||
import { exists, mkdir, BaseDirectory } from "@tauri-apps/plugin-fs";
|
import { exists, mkdir, BaseDirectory } from "@tauri-apps/plugin-fs";
|
||||||
|
import { ElMessage } from "element-plus";
|
||||||
|
|
||||||
const mainStore = useMainStore();
|
const mainStore = useMainStore();
|
||||||
const appWindow = getCurrentWindow();
|
const appWindow = getCurrentWindow();
|
||||||
@@ -63,8 +112,21 @@
|
|||||||
}
|
}
|
||||||
await Command.create("explorer", [logDirPath]).execute();
|
await Command.create("explorer", [logDirPath]).execute();
|
||||||
};
|
};
|
||||||
mainStore.$subscribe((...a) => {
|
const openConfigJsonDir = async () => {
|
||||||
// console.log("subscribe", a);
|
const resourceDir = await getResourceDir();
|
||||||
appWindow.emitTo("main", "config", { config: { ...mainStore.config } });
|
const easytierDir = await join(resourceDir, "easytier/");
|
||||||
|
const isExists = await exists("easytier/", { baseDir: BaseDirectory.Resource });
|
||||||
|
if (isExists) {
|
||||||
|
await Command.create("explorer", [easytierDir]).execute();
|
||||||
|
} else {
|
||||||
|
ElMessage.error("config.json的目录不存在");
|
||||||
|
}
|
||||||
|
};
|
||||||
|
mainStore.$subscribe(async (...a) => {
|
||||||
|
// console.error("subscribe", a);
|
||||||
|
await appWindow.emitTo("main", "config", { config: { ...mainStore.config }, createConfigInEasytier: mainStore.createConfigInEasytier });
|
||||||
|
// if(mainStore.createConfigInEasytier) {
|
||||||
|
// updateConfigJson();
|
||||||
|
// }
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
+497
-223
@@ -9,87 +9,100 @@
|
|||||||
:element-loading-spinner="'<path />'"
|
:element-loading-spinner="'<path />'"
|
||||||
element-loading-text="-------已经启用配置文件,界面配置不再生效-------" -->
|
element-loading-text="-------已经启用配置文件,界面配置不再生效-------" -->
|
||||||
<!-- <div> -->
|
<!-- <div> -->
|
||||||
<ElFormItem
|
<ElFormItem
|
||||||
label="服务器"
|
label="服务器"
|
||||||
prop="serverUrl"
|
prop="serverUrl"
|
||||||
>
|
class="full-label"
|
||||||
<template #label>
|
>
|
||||||
<div class="flex items-center gap-[0_5px]">
|
<template #label>
|
||||||
<div>服务器</div>
|
<div class="flex items-center flex-nowrap gap-[0_5px]">
|
||||||
<span>-</span>
|
<div>服务器</div>
|
||||||
<ElTag
|
<span>-</span>
|
||||||
effect="dark"
|
<ElTag
|
||||||
:type="data.isSuccessGetIp ? 'success' : 'info'"
|
effect="dark"
|
||||||
>
|
:type="data.isSuccessGetIp ? 'success' : 'info'"
|
||||||
{{ data.isSuccessGetIp ? "联机成功" : data.isStart && !data.isSuccessGetIp ? "联机中" : "未联机" }}
|
>
|
||||||
</ElTag>
|
{{ data.isSuccessGetIp ? "联机成功" : data.isStart && !data.isSuccessGetIp ? "联机中" : "未联机" }}
|
||||||
<ElButton
|
</ElTag>
|
||||||
v-if="!data.coreVersion"
|
<ElButton
|
||||||
@click="getCoreVersion(true)"
|
v-if="!data.coreVersion"
|
||||||
>
|
@click="getCoreVersion(true)"
|
||||||
获取内核版本
|
>
|
||||||
</ElButton>
|
获取内核版本
|
||||||
<ElTag
|
</ElButton>
|
||||||
v-else
|
<div
|
||||||
type="info"
|
v-else
|
||||||
>
|
class="flex-1 truncate"
|
||||||
{{ data.coreVersion }}
|
>
|
||||||
</ElTag>
|
<ElTooltip :content="data.coreVersion">
|
||||||
<ElPopconfirm
|
<ElTag type="info">
|
||||||
width="325"
|
{{ data.coreVersion }}
|
||||||
cancel-button-text="取消"
|
</ElTag>
|
||||||
confirm-button-text="继续"
|
</ElTooltip>
|
||||||
title="内核从github下载,需要出国工具,可能下载缓慢或失败,是否继续?
|
</div>
|
||||||
|
|
||||||
|
<!-- <ElPopconfirm
|
||||||
|
width="325"
|
||||||
|
cancel-button-text="取消"
|
||||||
|
confirm-button-text="继续"
|
||||||
|
title="内核从github下载,需要出国工具,可能下载缓慢或失败,是否继续?
|
||||||
也可以从官方群里手动下载后解压到easytier-game.exe同级目录下的easytier目录里,全部覆盖即可"
|
也可以从官方群里手动下载后解压到easytier-game.exe同级目录下的easytier目录里,全部覆盖即可"
|
||||||
@confirm="handleUpdateCore"
|
@confirm="handleCoreManagement"
|
||||||
|
>
|
||||||
|
<template #reference> -->
|
||||||
|
<ElButton
|
||||||
|
class="ml-auto"
|
||||||
|
:disabled="data.isStart"
|
||||||
|
@click="handleCoreManagement"
|
||||||
|
:loading="data.update"
|
||||||
|
type="primary"
|
||||||
|
size="small"
|
||||||
|
>
|
||||||
|
内核管理
|
||||||
|
<!-- {{ data.coreVersion ? "更新内核" : "下载内核" }} -->
|
||||||
|
</ElButton>
|
||||||
|
<!-- </template>
|
||||||
|
</ElPopconfirm> -->
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<ElSelect
|
||||||
|
allow-create
|
||||||
|
filterable
|
||||||
|
placeholder="请选择服务器地址"
|
||||||
|
default-first-option
|
||||||
|
v-model="config.serverUrl"
|
||||||
|
@change="handleServerUrlChange"
|
||||||
|
>
|
||||||
|
<template #prefix>
|
||||||
|
<div :class="config.protocol && config.protocol.length > 1 ? 'w-[120px]' : 'w-[80px]'">
|
||||||
|
<ElSelect
|
||||||
|
placeholder="协议"
|
||||||
|
multiple
|
||||||
|
collapse-tags
|
||||||
|
@click.stop
|
||||||
|
v-model="config.protocol"
|
||||||
|
@change="handleServerUrlChange"
|
||||||
>
|
>
|
||||||
<template #reference>
|
<ElOption
|
||||||
<ElButton
|
v-for="item in protocols"
|
||||||
:disabled="data.isStart"
|
:key="item"
|
||||||
:loading="data.update"
|
:label="item"
|
||||||
type="warning"
|
:value="item"
|
||||||
size="small"
|
></ElOption>
|
||||||
>
|
</ElSelect>
|
||||||
{{ data.coreVersion ? "更新内核" : "下载内核" }}
|
|
||||||
</ElButton>
|
|
||||||
</template>
|
|
||||||
</ElPopconfirm>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<ElSelect
|
<ElOption
|
||||||
allow-create
|
v-for="item in mainStore.basePeers"
|
||||||
filterable
|
:key="item"
|
||||||
default-first-option
|
:label="item"
|
||||||
v-model="config.serverUrl"
|
:value="item"
|
||||||
@change="handleServerUrlChange"
|
|
||||||
>
|
>
|
||||||
<template #prefix>
|
<div class="flex items-center gap-[20px] overflow-hidden flex-nowrap max-w-[calc(100vw-62px)]">
|
||||||
<div :class="config.protocol && config.protocol.length > 1 ? 'w-[120px]' : 'w-[80px]'">
|
<ElTooltip :content="item">
|
||||||
<ElSelect
|
<p class="truncate">{{ item }}</p>
|
||||||
placeholder="协议"
|
</ElTooltip>
|
||||||
multiple
|
<div class="flex-shrink-0 ml-auto">
|
||||||
collapse-tags
|
|
||||||
@click.stop
|
|
||||||
v-model="config.protocol"
|
|
||||||
@change="handleServerUrlChange"
|
|
||||||
>
|
|
||||||
<ElOption
|
|
||||||
v-for="item in protocols"
|
|
||||||
:key="item"
|
|
||||||
:label="item"
|
|
||||||
:value="item"
|
|
||||||
></ElOption>
|
|
||||||
</ElSelect>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
<ElOption
|
|
||||||
v-for="item in mainStore.basePeers"
|
|
||||||
:key="item"
|
|
||||||
:label="item"
|
|
||||||
:value="item"
|
|
||||||
>
|
|
||||||
<div class="flex items-center justify-between">
|
|
||||||
<span style="float: left">{{ item }}</span>
|
|
||||||
<ElButton
|
<ElButton
|
||||||
@click.stop="handleDeleteServerUrl(item)"
|
@click.stop="handleDeleteServerUrl(item)"
|
||||||
round
|
round
|
||||||
@@ -97,91 +110,92 @@
|
|||||||
type="danger"
|
type="danger"
|
||||||
></ElButton>
|
></ElButton>
|
||||||
</div>
|
</div>
|
||||||
</ElOption>
|
</div>
|
||||||
</ElSelect>
|
</ElOption>
|
||||||
</ElFormItem>
|
</ElSelect>
|
||||||
<div class="flex flex-wrap gap-[0_10px] items-center">
|
</ElFormItem>
|
||||||
<div class="flex-1">
|
<div class="flex flex-wrap gap-[0_10px] items-center">
|
||||||
<ElFormItem label="网络名">
|
<div class="flex-1">
|
||||||
<template #label>
|
<ElFormItem label="网络名">
|
||||||
<div class="flex items-center">
|
|
||||||
网络名
|
|
||||||
<ElTooltip content="对应命令行参数 --network-name">
|
|
||||||
<ElIcon><QuestionFilled /></ElIcon>
|
|
||||||
</ElTooltip>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
<ElInput
|
|
||||||
maxlength="100"
|
|
||||||
placeholder="请输入网络名"
|
|
||||||
v-model="config.networkName"
|
|
||||||
></ElInput>
|
|
||||||
</ElFormItem>
|
|
||||||
</div>
|
|
||||||
<div class="flex-1">
|
|
||||||
<ElFormItem label="网络密码">
|
|
||||||
<template #label>
|
|
||||||
<div class="flex items-center">
|
|
||||||
网络密码
|
|
||||||
<ElTooltip content="对应命令行参数 --network-secret">
|
|
||||||
<ElIcon><QuestionFilled /></ElIcon>
|
|
||||||
</ElTooltip>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
<ElInput
|
|
||||||
show-password
|
|
||||||
maxlength="100"
|
|
||||||
placeholder="请输入网络密码"
|
|
||||||
v-model="config.networkPassword"
|
|
||||||
type="password"
|
|
||||||
></ElInput>
|
|
||||||
</ElFormItem>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="flex gap-[0_10px]">
|
|
||||||
<ElFormItem label="主机名">
|
|
||||||
<template #label>
|
<template #label>
|
||||||
<div class="flex items-center">
|
<div class="flex items-center">
|
||||||
主机名
|
网络名
|
||||||
<ElTooltip content="对应命令行参数 --hostname">
|
<ElTooltip content="对应命令行参数 --network-name">
|
||||||
<ElIcon><QuestionFilled /></ElIcon>
|
<ElIcon><QuestionFilled /></ElIcon>
|
||||||
</ElTooltip>
|
</ElTooltip>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<ElInput
|
<ElInput
|
||||||
maxlength="100"
|
maxlength="100"
|
||||||
placeholder="例如: Player1"
|
placeholder="请输入网络名"
|
||||||
v-model="config.hostname"
|
v-model="config.networkName"
|
||||||
></ElInput>
|
|
||||||
</ElFormItem>
|
|
||||||
<ElFormItem
|
|
||||||
class="w-[70%]"
|
|
||||||
label="局域网IP"
|
|
||||||
>
|
|
||||||
<template #label>
|
|
||||||
<div class="flex items-center h-[20px]">
|
|
||||||
虚拟网IP
|
|
||||||
<ElTooltip content="对应命令行参数 --ipv4">
|
|
||||||
<ElIcon><QuestionFilled /></ElIcon>
|
|
||||||
</ElTooltip>
|
|
||||||
<ElSwitch
|
|
||||||
v-model="config.dhcp"
|
|
||||||
class="ml-[5px]"
|
|
||||||
inline-prompt
|
|
||||||
inactive-text="固定IP"
|
|
||||||
active-text="动态获取IP"
|
|
||||||
size="small"
|
|
||||||
></ElSwitch>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
<ElInput
|
|
||||||
maxlength="100"
|
|
||||||
:disabled="config.dhcp"
|
|
||||||
:placeholder="data.isStart && config.dhcp ? '等待动态分配IP...' : '例如: 10.126.126.1'"
|
|
||||||
v-model="config.ipv4"
|
|
||||||
></ElInput>
|
></ElInput>
|
||||||
</ElFormItem>
|
</ElFormItem>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="flex-1">
|
||||||
|
<ElFormItem label="网络密码">
|
||||||
|
<template #label>
|
||||||
|
<div class="flex items-center">
|
||||||
|
网络密码
|
||||||
|
<ElTooltip content="对应命令行参数 --network-secret">
|
||||||
|
<ElIcon><QuestionFilled /></ElIcon>
|
||||||
|
</ElTooltip>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<ElInput
|
||||||
|
show-password
|
||||||
|
maxlength="100"
|
||||||
|
placeholder="请输入网络密码"
|
||||||
|
v-model="config.networkPassword"
|
||||||
|
type="password"
|
||||||
|
></ElInput>
|
||||||
|
</ElFormItem>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="flex gap-[0_10px]">
|
||||||
|
<ElFormItem label="主机名">
|
||||||
|
<template #label>
|
||||||
|
<div class="flex items-center">
|
||||||
|
主机名
|
||||||
|
<ElTooltip content="对应命令行参数 --hostname">
|
||||||
|
<ElIcon><QuestionFilled /></ElIcon>
|
||||||
|
</ElTooltip>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<ElInput
|
||||||
|
maxlength="100"
|
||||||
|
placeholder="例如: Player1"
|
||||||
|
v-model="config.hostname"
|
||||||
|
></ElInput>
|
||||||
|
</ElFormItem>
|
||||||
|
<ElFormItem
|
||||||
|
class="w-[70%]"
|
||||||
|
label="局域网IP"
|
||||||
|
>
|
||||||
|
<template #label>
|
||||||
|
<div class="flex items-center h-[20px]">
|
||||||
|
虚拟网IP
|
||||||
|
<ElTooltip content="对应命令行参数 --ipv4">
|
||||||
|
<ElIcon><QuestionFilled /></ElIcon>
|
||||||
|
</ElTooltip>
|
||||||
|
<ElSwitch
|
||||||
|
v-model="config.dhcp"
|
||||||
|
class="ml-[5px]"
|
||||||
|
inline-prompt
|
||||||
|
inactive-text="固定IP"
|
||||||
|
active-text="动态获取IP"
|
||||||
|
size="small"
|
||||||
|
></ElSwitch>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<ElInput
|
||||||
|
maxlength="100"
|
||||||
|
:disabled="config.dhcp"
|
||||||
|
:placeholder="data.isStart && config.dhcp ? '等待动态分配IP...' : '例如: 10.126.126.1'"
|
||||||
|
v-model="config.ipv4"
|
||||||
|
></ElInput>
|
||||||
|
</ElFormItem>
|
||||||
|
</div>
|
||||||
<!-- </div> -->
|
<!-- </div> -->
|
||||||
<div class="flex items-start">
|
<div class="flex items-start">
|
||||||
<div>
|
<div>
|
||||||
@@ -189,6 +203,7 @@
|
|||||||
<ElDropdown
|
<ElDropdown
|
||||||
@command="handleStartCommand"
|
@command="handleStartCommand"
|
||||||
split-button
|
split-button
|
||||||
|
trigger="click"
|
||||||
size="default"
|
size="default"
|
||||||
:type="!data.isStart ? 'primary' : 'danger'"
|
:type="!data.isStart ? 'primary' : 'danger'"
|
||||||
:disabled="data.startLoading || !data.coreVersion || data.update"
|
:disabled="data.startLoading || !data.coreVersion || data.update"
|
||||||
@@ -254,13 +269,18 @@
|
|||||||
>
|
>
|
||||||
强制中转
|
强制中转
|
||||||
</ElCheckbox>
|
</ElCheckbox>
|
||||||
<ElCheckbox
|
<ElTooltip
|
||||||
@change="handleAutoStart"
|
placement="top-start"
|
||||||
:model-value="config.autoStart"
|
content="自启后隐藏于托盘,不显示界面"
|
||||||
size="small"
|
|
||||||
>
|
>
|
||||||
开机自启
|
<ElCheckbox
|
||||||
</ElCheckbox>
|
@change="handleAutoStartByTask"
|
||||||
|
:model-value="config.autoStart"
|
||||||
|
size="small"
|
||||||
|
>
|
||||||
|
开机自启
|
||||||
|
</ElCheckbox>
|
||||||
|
</ElTooltip>
|
||||||
<div>
|
<div>
|
||||||
<ElButton
|
<ElButton
|
||||||
@click="handleShowCidrDialog"
|
@click="handleShowCidrDialog"
|
||||||
@@ -302,6 +322,81 @@
|
|||||||
<ElDialog
|
<ElDialog
|
||||||
width="95%"
|
width="95%"
|
||||||
top="10px"
|
top="10px"
|
||||||
|
append-to-body
|
||||||
|
:z-index="10"
|
||||||
|
class="!mb-0"
|
||||||
|
v-model="coreManagementData.visible"
|
||||||
|
:close-on-press-escape="false"
|
||||||
|
title="内核管理"
|
||||||
|
>
|
||||||
|
<div>
|
||||||
|
<ElText>当前版本: {{ data.coreVersion || "-" }}</ElText>
|
||||||
|
</div>
|
||||||
|
<div class="mt-[10px] pb-[5px]">
|
||||||
|
<ElText class="!mr-[10px]">选择一个内核版本安装</ElText>
|
||||||
|
<ElButton
|
||||||
|
:loading="coreManagementData.loading"
|
||||||
|
@click="getReleaseList"
|
||||||
|
size="small"
|
||||||
|
>
|
||||||
|
刷新
|
||||||
|
</ElButton>
|
||||||
|
</div>
|
||||||
|
<ElSelect
|
||||||
|
placeholder="请选择内核版本"
|
||||||
|
no-data-text="正在获取中..."
|
||||||
|
popper-class="!h-[120px]"
|
||||||
|
v-model="coreManagementData.data"
|
||||||
|
>
|
||||||
|
<ElOption
|
||||||
|
v-for="(release, idx) in data.releaseList"
|
||||||
|
:key="`${idx}-ray`"
|
||||||
|
:label="release[0]"
|
||||||
|
:value="`${release[2]}<>${release[1]}`"
|
||||||
|
>
|
||||||
|
{{ release ? release[0] : "" }}
|
||||||
|
</ElOption>
|
||||||
|
</ElSelect>
|
||||||
|
<div class="pb-[5px] mt-[10px]">
|
||||||
|
<ElTooltip content="不使用出国软件也能告诉下载github Release包的地址,可自行搜索替换使用">
|
||||||
|
<ElText>github下载加速地址</ElText>
|
||||||
|
</ElTooltip>
|
||||||
|
</div>
|
||||||
|
<ElInput
|
||||||
|
v-model="mainStore.githubFastUrl"
|
||||||
|
placeholder="请输入github加速地址"
|
||||||
|
></ElInput>
|
||||||
|
<template #footer>
|
||||||
|
<div class="text-right">
|
||||||
|
<ElButton
|
||||||
|
size="small"
|
||||||
|
:loading="data.update"
|
||||||
|
@click="handleInstallCore"
|
||||||
|
type="primary"
|
||||||
|
>
|
||||||
|
安装选中内核
|
||||||
|
</ElButton>
|
||||||
|
<ElButton
|
||||||
|
size="small"
|
||||||
|
type="warning"
|
||||||
|
@click="addQQGroup"
|
||||||
|
>
|
||||||
|
加群获取
|
||||||
|
</ElButton>
|
||||||
|
<ElButton
|
||||||
|
size="small"
|
||||||
|
@click="coreManagementData.visible = false"
|
||||||
|
>
|
||||||
|
取消
|
||||||
|
</ElButton>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</ElDialog>
|
||||||
|
<ElDialog
|
||||||
|
width="95%"
|
||||||
|
top="10px"
|
||||||
|
append-to-body
|
||||||
|
:z-index="10"
|
||||||
class="!mb-0"
|
class="!mb-0"
|
||||||
v-model="importConfigData.visible"
|
v-model="importConfigData.visible"
|
||||||
:close-on-press-escape="false"
|
:close-on-press-escape="false"
|
||||||
@@ -315,7 +410,7 @@
|
|||||||
></ElInput>
|
></ElInput>
|
||||||
<template #footer>
|
<template #footer>
|
||||||
<div>
|
<div>
|
||||||
<el-text type="danger">导入成功后,您当前的配置将被完全替换</el-text>
|
<el-text type="danger">导入成功后,您当前的部分配置将被替换</el-text>
|
||||||
</div>
|
</div>
|
||||||
<div class="text-right">
|
<div class="text-right">
|
||||||
<ElButton
|
<ElButton
|
||||||
@@ -331,6 +426,8 @@
|
|||||||
<ElDialog
|
<ElDialog
|
||||||
width="95%"
|
width="95%"
|
||||||
top="30px"
|
top="30px"
|
||||||
|
append-to-body
|
||||||
|
:z-index="10"
|
||||||
class="!mb-0"
|
class="!mb-0"
|
||||||
v-model="configStart.visible"
|
v-model="configStart.visible"
|
||||||
:close-on-press-escape="false"
|
:close-on-press-escape="false"
|
||||||
@@ -393,14 +490,17 @@
|
|||||||
import { useTray, setTrayRunState, setTrayTooltip } from "~/composables/tray";
|
import { useTray, setTrayRunState, setTrayTooltip } from "~/composables/tray";
|
||||||
import { initStartWinIpBroadcast } from "~/composables/netcard";
|
import { initStartWinIpBroadcast } from "~/composables/netcard";
|
||||||
import useMainStore from "@/stores/index";
|
import useMainStore from "@/stores/index";
|
||||||
import { ElDropdownMenu, ElMessage, ElMessageBox } from "element-plus";
|
import { ElMessage, ElMessageBox } from "element-plus";
|
||||||
import { getCurrentWindow } from "@tauri-apps/api/window";
|
import { getCurrentWindow } from "@tauri-apps/api/window";
|
||||||
import { getAllWebviewWindows } from "@tauri-apps/api/webviewWindow";
|
import { getAllWebviewWindows } from "@tauri-apps/api/webviewWindow";
|
||||||
import etWindows from "@/composables/windows";
|
import etWindows from "@/composables/windows";
|
||||||
import * as tauriAutoStart from "@tauri-apps/plugin-autostart";
|
import * as tauriAutoStart from "@tauri-apps/plugin-autostart";
|
||||||
import { resourceDir as getResourceDir, join } from "@tauri-apps/api/path";
|
import { resourceDir as getResourceDir, join } from "@tauri-apps/api/path";
|
||||||
import { readDir, exists, mkdir, BaseDirectory } from "@tauri-apps/plugin-fs";
|
import { readDir, exists, mkdir, BaseDirectory, readTextFile } from "@tauri-apps/plugin-fs";
|
||||||
|
import { updateConfigJson } from "~/composables/configJson";
|
||||||
import { writeText, readText } from "@tauri-apps/plugin-clipboard-manager";
|
import { writeText, readText } from "@tauri-apps/plugin-clipboard-manager";
|
||||||
|
import { sortedUniq, uniq } from "lodash-es";
|
||||||
|
import { bounce, addQQGroup } from "~/utils";
|
||||||
|
|
||||||
let is_close = false;
|
let is_close = false;
|
||||||
|
|
||||||
@@ -408,13 +508,16 @@
|
|||||||
is_close = true;
|
is_close = true;
|
||||||
await invoke("stop_command", { child_id: listenObj.thread_id || 0 });
|
await invoke("stop_command", { child_id: listenObj.thread_id || 0 });
|
||||||
await invoke("stop_command", { child_id: data.winipBcPid || 0 });
|
await invoke("stop_command", { child_id: data.winipBcPid || 0 });
|
||||||
|
}, async () => {
|
||||||
|
await handleConnection();
|
||||||
|
return data.isStart
|
||||||
});
|
});
|
||||||
|
|
||||||
const mainStore = useMainStore();
|
const mainStore = useMainStore();
|
||||||
const config = mainStore.config;
|
const config = mainStore.config;
|
||||||
// console.log(config);
|
// console.error(config);
|
||||||
const protocols = ["tcp", "udp", "ws", "wss", "wg"];
|
const protocols = ["tcp", "udp", "ws", "wss", "wg", "quic"];
|
||||||
const data = reactive({
|
const data = reactive<{ [key: string]: any; releaseList: Array<Array<string>> }>({
|
||||||
logVisible: false,
|
logVisible: false,
|
||||||
cidrVisible: false,
|
cidrVisible: false,
|
||||||
advanceVisible: false,
|
advanceVisible: false,
|
||||||
@@ -425,11 +528,12 @@
|
|||||||
log: "",
|
log: "",
|
||||||
update: false,
|
update: false,
|
||||||
releaseList: [],
|
releaseList: [],
|
||||||
coreVersion: "",
|
coreVersion: "-",
|
||||||
isSuccessGetIp: false,
|
isSuccessGetIp: false,
|
||||||
startLoading: false,
|
startLoading: false,
|
||||||
isStart: false,
|
isStart: false,
|
||||||
connectionSuccess: false
|
connectionSuccess: false,
|
||||||
|
configJsonSeverUrl: "" // 本地保存一次,用于回填config.json
|
||||||
});
|
});
|
||||||
|
|
||||||
const configStart = reactive<{ list: Array<{ path: string; name: string }>; [key: string]: any }>({
|
const configStart = reactive<{ list: Array<{ path: string; name: string }>; [key: string]: any }>({
|
||||||
@@ -444,13 +548,19 @@
|
|||||||
data: ""
|
data: ""
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const coreManagementData = reactive<{ data: ""; [key: string]: any }>({
|
||||||
|
visible: false,
|
||||||
|
loading: false,
|
||||||
|
data: ""
|
||||||
|
});
|
||||||
|
|
||||||
const closePrevent = async () => {
|
const closePrevent = async () => {
|
||||||
const appWindow = getCurrentWindow();
|
const appWindow = getCurrentWindow();
|
||||||
if (appWindow.label == "main") {
|
if (appWindow.label == "main") {
|
||||||
appWindow.onCloseRequested(async event => {
|
appWindow.onCloseRequested(async event => {
|
||||||
// console.log(appWindow.label);
|
// console.error(appWindow.label);
|
||||||
if (!is_close) {
|
if (!is_close) {
|
||||||
// console.log(1);
|
// console.error(1);
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
appWindow.hide();
|
appWindow.hide();
|
||||||
}
|
}
|
||||||
@@ -467,11 +577,25 @@
|
|||||||
}
|
}
|
||||||
newBasePeers.splice(idx, 1);
|
newBasePeers.splice(idx, 1);
|
||||||
}
|
}
|
||||||
mainStore.basePeers = [...new Set([...newBasePeers])];
|
mainStore.basePeers = uniq([...newBasePeers]);
|
||||||
|
if (mainStore.basePeers.length > 0) {
|
||||||
|
mainStore.config.serverUrl = mainStore.basePeers[0];
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleServerUrlChange = () => {
|
const handleServerUrlChange = () => {
|
||||||
mainStore.basePeers = [...new Set([config.serverUrl, ...mainStore.basePeers])];
|
let inputProtocols: string | null = null;
|
||||||
|
for (const p of protocols) {
|
||||||
|
if (config.serverUrl.toLowerCase().startsWith(`${p}://`)) {
|
||||||
|
inputProtocols = p;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (inputProtocols) {
|
||||||
|
mainStore.config.protocol = [inputProtocols];
|
||||||
|
mainStore.config.serverUrl = mainStore.config.serverUrl.slice(inputProtocols.length + 3);
|
||||||
|
}
|
||||||
|
mainStore.basePeers = uniq([mainStore.config.serverUrl, ...mainStore.basePeers]);
|
||||||
};
|
};
|
||||||
|
|
||||||
const listenObj: { [key: string]: any } = {
|
const listenObj: { [key: string]: any } = {
|
||||||
@@ -483,9 +607,11 @@
|
|||||||
// const appWindow = getCurrentWindow();
|
// const appWindow = getCurrentWindow();
|
||||||
const unListen = await listen("command-output", async event => {
|
const unListen = await listen("command-output", async event => {
|
||||||
data.isStart = true;
|
data.isStart = true;
|
||||||
|
// console.error(event.payload);
|
||||||
if (event.payload) {
|
if (event.payload) {
|
||||||
data.startLoading = false;
|
data.startLoading = false;
|
||||||
let ipv4 = /dhcp ip changed. old: None, new: Some\((\d+\.\d+\.\d+\.\d+).*\)/g.exec(event.payload as string)?.[1];
|
let ipv4 = /dhcp ip changed. old: None, new: Some\((\d+\.\d+\.\d+\.\d+).*\)/g.exec(event.payload as string)?.[1];
|
||||||
|
let devName = /tun device ready. dev: (.*)/g.exec(event.payload as string)?.[1];
|
||||||
if (config.dhcp || mainStore.configStartEnable) {
|
if (config.dhcp || mainStore.configStartEnable) {
|
||||||
if (ipv4) {
|
if (ipv4) {
|
||||||
config.ipv4 = ipv4;
|
config.ipv4 = ipv4;
|
||||||
@@ -494,18 +620,37 @@
|
|||||||
await setTrayTooltip(tray, `IP: ${ipv4}`);
|
await setTrayTooltip(tray, `IP: ${ipv4}`);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if ((event.payload as string).includes("new peer connection added")) {
|
if ((event.payload as string).includes("new peer connection added") && !data.isSuccessGetIp) {
|
||||||
await setTrayRunState(tray, true);
|
await setTrayRunState(tray, true);
|
||||||
data.isSuccessGetIp = true;
|
data.isSuccessGetIp = true;
|
||||||
await setTrayTooltip(tray, `IP: ${config.ipv4}`);
|
await setTrayTooltip(tray, `IP: ${config.ipv4}`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (
|
||||||
|
devName &&
|
||||||
|
mainStore.config.enableNetCardMetric &&
|
||||||
|
mainStore.config.netCardMetricValue &&
|
||||||
|
mainStore.config.netCardMetricValue >= 1 &&
|
||||||
|
mainStore.config.netCardMetricValue <= 9999
|
||||||
|
) {
|
||||||
|
try {
|
||||||
|
const output = await Command.create(
|
||||||
|
"netsh",
|
||||||
|
["interface", "ipv4", "set", "interface", devName, "metric=", `${mainStore.config.netCardMetricValue}`],
|
||||||
|
{
|
||||||
|
encoding: "gb2312"
|
||||||
|
}
|
||||||
|
).execute();
|
||||||
|
} catch (err) {
|
||||||
|
console.error(err);
|
||||||
|
ElMessage.error("跃点设置失败");
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
const logArr = data.log.split("\n");
|
const logArr = data.log.split("\n");
|
||||||
const start = logArr.length > 1000 ? logArr.length - 1000 : 0;
|
const start = logArr.length > 1000 ? logArr.length - 1000 : 0;
|
||||||
data.log = logArr.slice(start).join("\n");
|
data.log = logArr.slice(start).join("\n");
|
||||||
data.log += (event.payload as string) + "\n";
|
data.log += (event.payload as string) + "\n";
|
||||||
|
|
||||||
});
|
});
|
||||||
this.unListenOutPut = unListen;
|
this.unListenOutPut = unListen;
|
||||||
},
|
},
|
||||||
@@ -519,7 +664,7 @@
|
|||||||
},
|
},
|
||||||
async listenConfigStart() {
|
async listenConfigStart() {
|
||||||
const unListen = await listen("config", event => {
|
const unListen = await listen("config", event => {
|
||||||
// console.log("config", event.payload);
|
// console.error("config", event.payload);
|
||||||
const ipv4 = config.ipv4;
|
const ipv4 = config.ipv4;
|
||||||
mainStore.$patch(event.payload as any);
|
mainStore.$patch(event.payload as any);
|
||||||
config.ipv4 = ipv4;
|
config.ipv4 = ipv4;
|
||||||
@@ -543,19 +688,23 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
const checkUpdate = async () => {
|
const checkUpdate = async () => {
|
||||||
await getReleaseList();
|
// const latestVersionFileName = data.releaseList?.[0]?.[0]?.[1] as string;
|
||||||
const latestVersionFileName = data.releaseList?.[0]?.[0]?.[1] as string;
|
let [downloadUrl, versionFileName] = (coreManagementData.data as string).split("<>");
|
||||||
if (latestVersionFileName) {
|
if (mainStore.githubFastUrl) {
|
||||||
// console.log(latestVersionFileName, /\-v(\d+\.\d+\.\d+)/g.exec(latestVersionFileName));
|
let fastUrl = mainStore.githubFastUrl.replace(/\\/g, "/").replace(/\/{2,}/g, "/");
|
||||||
const latestVersion = /\-v(\d+\.\d+\.\d+)/g.exec(latestVersionFileName)?.[1];
|
if (!fastUrl.endsWith("/")) fastUrl += "/";
|
||||||
|
downloadUrl = fastUrl + downloadUrl;
|
||||||
|
}
|
||||||
|
if (versionFileName) {
|
||||||
|
// console.error(latestVersionFileName, /\-v(\d+\.\d+\.\d+)/g.exec(latestVersionFileName));
|
||||||
|
const version = /\-v(\d+\.\d+\.\d+)/g.exec(versionFileName)?.[1];
|
||||||
const currentVersion = /(\d+\.\d+\.\d+)/g.exec(data.coreVersion || "")?.[1];
|
const currentVersion = /(\d+\.\d+\.\d+)/g.exec(data.coreVersion || "")?.[1];
|
||||||
if (latestVersion && currentVersion != latestVersion) {
|
if (version && currentVersion != version) {
|
||||||
// console.log({ currentVersion, latestVersion });
|
// console.error({ currentVersion, latestVersion });
|
||||||
ElMessage.success(`更新 -> ${latestVersion}`);
|
ElMessage.success(`更新 -> ${version}`);
|
||||||
const downloadUrl = data.releaseList?.[0]?.[0]?.[2];
|
return [true, downloadUrl, versionFileName];
|
||||||
return [true, downloadUrl, latestVersionFileName];
|
} else if (currentVersion === version) {
|
||||||
} else if (currentVersion === latestVersion) {
|
ElMessage.success(`当前版本无需安装`);
|
||||||
ElMessage.success(`当前是最新版`);
|
|
||||||
return [false, null, null];
|
return [false, null, null];
|
||||||
} else {
|
} else {
|
||||||
ElMessage.error(`获取版本失败`);
|
ElMessage.error(`获取版本失败`);
|
||||||
@@ -567,22 +716,44 @@
|
|||||||
return [false, null, null];
|
return [false, null, null];
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleUpdateCore = async () => {
|
const handleCoreManagement = async () => {
|
||||||
data.update = true;
|
coreManagementData.visible = true;
|
||||||
await getCoreVersion();
|
await getReleaseList();
|
||||||
const [isNeedUpdate, downloadUrl, latestVersionFileName] = await checkUpdate();
|
};
|
||||||
if (isNeedUpdate) {
|
|
||||||
await reset();
|
const handleInstallCore = async () => {
|
||||||
// console.log(downloadUrl);
|
try {
|
||||||
await invoke("download_easytier_zip", { download_url: downloadUrl, file_name: latestVersionFileName });
|
if (!coreManagementData.data) {
|
||||||
|
return ElMessage.error("请选择一个内核");
|
||||||
|
}
|
||||||
|
data.update = true;
|
||||||
|
await getCoreVersion();
|
||||||
|
const [isNeedUpdate, downloadUrl, latestVersionFileName] = await checkUpdate();
|
||||||
|
|
||||||
|
if (isNeedUpdate) {
|
||||||
|
await reset();
|
||||||
|
// console.error(downloadUrl);
|
||||||
|
await invoke("download_easytier_zip", { download_url: downloadUrl, file_name: latestVersionFileName });
|
||||||
|
}
|
||||||
|
await getCoreVersion();
|
||||||
|
} catch (err) {
|
||||||
|
console.error(err);
|
||||||
|
} finally {
|
||||||
|
data.update = false;
|
||||||
}
|
}
|
||||||
await getCoreVersion();
|
|
||||||
data.update = false;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const getReleaseList = async () => {
|
const getReleaseList = async () => {
|
||||||
const list = await invoke("fetch_easytier_list");
|
coreManagementData.loading = true;
|
||||||
data.releaseList = list as never[];
|
const list = await invoke<string[][][]>("fetch_easytier_list");
|
||||||
|
data.releaseList = [
|
||||||
|
...list.flat().filter(el => {
|
||||||
|
// console.log(el, el[0], el[2]);
|
||||||
|
return el && el[0] && el[2] && !el[2].includes("gui");
|
||||||
|
})
|
||||||
|
];
|
||||||
|
coreManagementData.loading = false;
|
||||||
|
// console.log(data.releaseList);
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleAutoStart = async () => {
|
const handleAutoStart = async () => {
|
||||||
@@ -629,31 +800,93 @@
|
|||||||
|
|
||||||
const compatibleInitAutoStart = async () => {
|
const compatibleInitAutoStart = async () => {
|
||||||
try {
|
try {
|
||||||
const is_enable_by_task = (await invoke("autostart_is_enabled")) as boolean;
|
|
||||||
if (is_enable_by_task) {
|
|
||||||
await tauriAutoStart.enable();
|
|
||||||
await invoke("spawn_autostart", { enabled: false });
|
|
||||||
}
|
|
||||||
const is_enable = await tauriAutoStart.isEnabled();
|
const is_enable = await tauriAutoStart.isEnabled();
|
||||||
config.autoStart = is_enable;
|
if (is_enable) {
|
||||||
|
await invoke("spawn_autostart", { enabled: true });
|
||||||
|
await tauriAutoStart.disable();
|
||||||
|
}
|
||||||
|
let is_enable_by_task = (await invoke("autostart_is_enabled")) as boolean;
|
||||||
|
if (is_enable_by_task) {
|
||||||
|
// 每次打开Exe重新加载一次开机自启,因为可能路径变了
|
||||||
|
await invoke("spawn_autostart", { enabled: false });
|
||||||
|
await invoke("spawn_autostart", { enabled: true });
|
||||||
|
}
|
||||||
|
is_enable_by_task = (await invoke("autostart_is_enabled")) as boolean;
|
||||||
|
config.autoStart = is_enable_by_task;
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
|
console.error(err);
|
||||||
await invoke("spawn_autostart", { enabled: false });
|
await invoke("spawn_autostart", { enabled: false });
|
||||||
await tauriAutoStart.disable();
|
const is_enable_by_task = (await invoke("autostart_is_enabled")) as boolean;
|
||||||
config.autoStart = false;
|
config.autoStart = is_enable_by_task;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const initConnectAfterStart = async () => {
|
const initConnectAfterStart = async () => {
|
||||||
if (config.coonectAfterStart && data.coreVersion) {
|
if (config.connectAfterStart && data.coreVersion) {
|
||||||
await reset();
|
await reset();
|
||||||
await handleConnection();
|
await handleConnection();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const initGuiJson = async () => {
|
||||||
|
const path = import.meta.env.VITE_CONFIG_FILE_NAME;
|
||||||
|
const isExists = await exists(path, { baseDir: BaseDirectory.Resource });
|
||||||
|
if (isExists) {
|
||||||
|
const guiJsonStr = await readTextFile(path, { baseDir: BaseDirectory.Resource });
|
||||||
|
if (guiJsonStr) {
|
||||||
|
try {
|
||||||
|
const regex = /^(\s*\/\/.*)/gm;
|
||||||
|
const regex2 = /(,?)\s*\/\/.*(?=\n|$|\r\n)/gm;
|
||||||
|
const resultStr = guiJsonStr.replace(regex, "").replace(regex2, "$1");
|
||||||
|
const guiJson = JSON.parse(resultStr);
|
||||||
|
let saveServerUrl = "";
|
||||||
|
if (guiJson.serverUrl) {
|
||||||
|
if (Array.isArray(guiJson.serverUrl)) {
|
||||||
|
mainStore.basePeers = uniq([...guiJson.serverUrl, ...mainStore.basePeers]);
|
||||||
|
}
|
||||||
|
if (typeof guiJson.serverUrl === "string") {
|
||||||
|
mainStore.basePeers = uniq([...guiJson.serverUrl.split(","), ...mainStore.basePeers]);
|
||||||
|
}
|
||||||
|
saveServerUrl = mainStore.basePeers[0] || "";
|
||||||
|
} else {
|
||||||
|
saveServerUrl = mainStore.basePeers.length > 0 ? mainStore.basePeers[0] || "" : "";
|
||||||
|
}
|
||||||
|
data.configJsonSeverUrl = guiJson.serverUrl;
|
||||||
|
mainStore.$patch({
|
||||||
|
config: {
|
||||||
|
...mainStore.config,
|
||||||
|
...guiJson,
|
||||||
|
serverUrl: saveServerUrl
|
||||||
|
}
|
||||||
|
});
|
||||||
|
if (mainStore.createConfigInEasytier) {
|
||||||
|
await updateConfigJson(data.configJsonSeverUrl);
|
||||||
|
}
|
||||||
|
} catch (err) {
|
||||||
|
console.error(err);
|
||||||
|
ElMessage.error(`config.json格式错误`);
|
||||||
|
} finally {
|
||||||
|
mainStore.$patch({
|
||||||
|
createConfigInEasytier: true // 发现本地存在config.json 默认启用该功能
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
const b = bounce(600);
|
||||||
|
mainStore.$subscribe((...a) => {
|
||||||
|
if (mainStore.createConfigInEasytier) {
|
||||||
|
b(async () => {
|
||||||
|
await updateConfigJson(data.configJsonSeverUrl);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
let logsTimer: NodeJS.Timeout | null = null;
|
let logsTimer: NodeJS.Timeout | null = null;
|
||||||
|
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
// await handleUpdateCore(); //默认不自动更新
|
// await handleUpdateCore(); //默认不自动更新
|
||||||
|
await initGuiJson();
|
||||||
await compatibleInitAutoStart();
|
await compatibleInitAutoStart();
|
||||||
// await initAutoStart();
|
// await initAutoStart();
|
||||||
await initStartWinIpBroadcast();
|
await initStartWinIpBroadcast();
|
||||||
@@ -673,15 +906,33 @@
|
|||||||
});
|
});
|
||||||
|
|
||||||
const getArgs = async () => {
|
const getArgs = async () => {
|
||||||
// console.log(config.proxyNetworks);
|
// console.error(config.proxyNetworks);
|
||||||
const args = [];
|
const args = [];
|
||||||
if (mainStore.configStartEnable && mainStore.configPath) {
|
if (mainStore.configStartEnable) {
|
||||||
// const resourceDir = await getResourceDir();
|
if (mainStore.configPath) {
|
||||||
// const configPath = await join(resourceDir, mainStore.configPath);
|
const isExists = await exists(mainStore.configPath, { baseDir: BaseDirectory.Resource });
|
||||||
// args.push("-c", configPath);
|
if (isExists) {
|
||||||
|
const resourceDir = await getResourceDir();
|
||||||
args.push("-c", mainStore.configPath);
|
const configPath = await join(resourceDir, mainStore.configPath);
|
||||||
return args;
|
args.push("-c", configPath);
|
||||||
|
return args;
|
||||||
|
} else {
|
||||||
|
const appWindow = getCurrentWindow();
|
||||||
|
const isVisible = await appWindow.isVisible();
|
||||||
|
if (!isVisible) {
|
||||||
|
await appWindow.show();
|
||||||
|
await appWindow.setFocus();
|
||||||
|
}
|
||||||
|
mainStore.configPath = "";
|
||||||
|
ElMessage.error(`配置文件不存在 请重新选择`);
|
||||||
|
await handleStartCommand("toml"); // 配置文件不存在,显示配置文件弹窗
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
ElMessage.warning(`配置文件不存在 请选择`);
|
||||||
|
await handleStartCommand("toml"); // 配置文件不存在,显示配置文件弹窗
|
||||||
|
return [];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (config.dhcp) {
|
if (config.dhcp) {
|
||||||
args.push("-d");
|
args.push("-d");
|
||||||
@@ -712,7 +963,7 @@
|
|||||||
args.push("--no-listener");
|
args.push("--no-listener");
|
||||||
}
|
}
|
||||||
if (mainStore.cidrEnable && config.proxyNetworks) {
|
if (mainStore.cidrEnable && config.proxyNetworks) {
|
||||||
// console.log(config.proxyNetworks);
|
// console.error(config.proxyNetworks);
|
||||||
const reg = /\d+\.\d+\.\d+\.\d+\/\d+/g;
|
const reg = /\d+\.\d+\.\d+\.\d+\/\d+/g;
|
||||||
const formatProxyNetworks = config.proxyNetworks
|
const formatProxyNetworks = config.proxyNetworks
|
||||||
.split("\n")
|
.split("\n")
|
||||||
@@ -780,14 +1031,16 @@
|
|||||||
if (data.isStart) {
|
if (data.isStart) {
|
||||||
await reset();
|
await reset();
|
||||||
} else {
|
} else {
|
||||||
|
await setTrayTooltip(tray, "请求联机中...");
|
||||||
const args = await getArgs();
|
const args = await getArgs();
|
||||||
if (!args || args.length <= 0) {
|
if (!args || args.length <= 0) {
|
||||||
return ElMessage.error("无配置");
|
await reset();
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
if(args[0] === "-c") {
|
if (args[0] === "-c") {
|
||||||
ElMessage.warning({
|
ElMessage.warning({
|
||||||
message: "使用配置文件中.",
|
message: "使用配置文件中.",
|
||||||
duration: 5000,
|
duration: 5000
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
data.log = ""; //清空日志
|
data.log = ""; //清空日志
|
||||||
@@ -825,11 +1078,24 @@
|
|||||||
}
|
}
|
||||||
if (command === "share_config") {
|
if (command === "share_config") {
|
||||||
try {
|
try {
|
||||||
const WT = btoa(encodeURIComponent(JSON.stringify({ config: mainStore.config })))
|
const {
|
||||||
|
proxyNetworks,
|
||||||
|
autoStart,
|
||||||
|
connectAfterStart,
|
||||||
|
multiThread,
|
||||||
|
hostname,
|
||||||
|
enablExitNode,
|
||||||
|
useSmoltcp,
|
||||||
|
saveErrorLog,
|
||||||
|
logLevel,
|
||||||
|
ipv4,
|
||||||
|
...otherConfig
|
||||||
|
} = mainStore.config;
|
||||||
|
const WT = btoa(encodeURIComponent(JSON.stringify({ config: otherConfig })));
|
||||||
await writeText(WT);
|
await writeText(WT);
|
||||||
ElMessage.success("配置已复制");
|
ElMessage.success("配置已复制");
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.log(err);
|
console.error(err);
|
||||||
ElMessage.error("分享失败");
|
ElMessage.error("分享失败");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -846,11 +1112,17 @@
|
|||||||
cancelButtonText: "取消"
|
cancelButtonText: "取消"
|
||||||
});
|
});
|
||||||
const payload = JSON.parse(decodeURIComponent(atob(importConfigData.data)));
|
const payload = JSON.parse(decodeURIComponent(atob(importConfigData.data)));
|
||||||
mainStore.$patch(payload);
|
mainStore.$patch({
|
||||||
|
config: {
|
||||||
|
...mainStore.config,
|
||||||
|
...payload.config
|
||||||
|
}
|
||||||
|
});
|
||||||
ElMessage.success("导入成功");
|
ElMessage.success("导入成功");
|
||||||
importConfigData.visible = false;
|
importConfigData.visible = false;
|
||||||
mainStore.basePeers = [...new Set([config.serverUrl, ...mainStore.basePeers])];
|
mainStore.basePeers = uniq([config.serverUrl, ...mainStore.basePeers]);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
|
console.error(err);
|
||||||
if (err !== "cancel") {
|
if (err !== "cancel") {
|
||||||
ElMessage.error("导入失败");
|
ElMessage.error("导入失败");
|
||||||
}
|
}
|
||||||
@@ -865,14 +1137,16 @@
|
|||||||
mainStore.configPath = "";
|
mainStore.configPath = "";
|
||||||
try {
|
try {
|
||||||
await mkdir(path, { baseDir: BaseDirectory.Resource });
|
await mkdir(path, { baseDir: BaseDirectory.Resource });
|
||||||
} catch (err) {}
|
} catch (err) {
|
||||||
|
console.error(err);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const openConfigDir = async () => {
|
const openConfigDir = async () => {
|
||||||
const resourceDir = await getResourceDir();
|
const resourceDir = await getResourceDir();
|
||||||
const configPath = await join(resourceDir, import.meta.env.VITE_CONFIG_PATH);
|
const configPath = await join(resourceDir, import.meta.env.VITE_CONFIG_PATH);
|
||||||
// console.log(configPath);
|
// console.error(configPath);
|
||||||
await Command.create("explorer", [configPath]).execute();
|
await Command.create("explorer", [configPath]).execute();
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -888,7 +1162,7 @@
|
|||||||
"member",
|
"member",
|
||||||
{
|
{
|
||||||
title: "成员列表",
|
title: "成员列表",
|
||||||
width: 470,
|
width: 875,
|
||||||
height: 380,
|
height: 380,
|
||||||
url: "#/member"
|
url: "#/member"
|
||||||
},
|
},
|
||||||
|
|||||||
+75
-17
@@ -8,24 +8,55 @@
|
|||||||
:data="data.member"
|
:data="data.member"
|
||||||
v-else>
|
v-else>
|
||||||
<ElTableColumn
|
<ElTableColumn
|
||||||
v-for="prop in showTableHeader"
|
|
||||||
sortable
|
sortable
|
||||||
:prop="prop[0]"
|
width="140"
|
||||||
:label="prop[1]"
|
label="主机名"
|
||||||
:key="prop[0]">
|
prop="hostname"></ElTableColumn>
|
||||||
|
<ElTableColumn
|
||||||
|
sortable
|
||||||
|
width="90"
|
||||||
|
prop="cost"
|
||||||
|
label="路由">
|
||||||
<template #default="{ row }">
|
<template #default="{ row }">
|
||||||
<span v-if="prop[0] == 'loss_rate'">
|
|
||||||
{{ row[prop[0]] && row[prop[0]] != "-" ? Number(row[prop[0]] * 100).toFixed(2) + "%" : row[prop[0]] }}
|
|
||||||
</span>
|
|
||||||
<span v-else-if="prop[0] != 'cost'">{{ row[prop[0]] }}</span>
|
|
||||||
<ElTag
|
<ElTag
|
||||||
v-else
|
|
||||||
effect="dark"
|
effect="dark"
|
||||||
:type="row[prop[0]] == 'p2p' ? 'success' : 'info'">
|
:type="row.cost == 'p2p' ? 'success' : 'info'">
|
||||||
{{ row[prop[0]] }}
|
{{ row.cost }}
|
||||||
</ElTag>
|
</ElTag>
|
||||||
</template>
|
</template>
|
||||||
</ElTableColumn>
|
</ElTableColumn>
|
||||||
|
<ElTableColumn
|
||||||
|
sortable
|
||||||
|
width="120"
|
||||||
|
prop="ipv4"
|
||||||
|
label="虚拟网IP"></ElTableColumn>
|
||||||
|
<ElTableColumn
|
||||||
|
sortable
|
||||||
|
prop="lat_ms"
|
||||||
|
width="130"
|
||||||
|
label="延迟/ms"></ElTableColumn>
|
||||||
|
<ElTableColumn
|
||||||
|
sortable
|
||||||
|
width="120"
|
||||||
|
prop="loss_rate"
|
||||||
|
label="丢包率">
|
||||||
|
<template #default="{ row }">
|
||||||
|
{{ row.loss_rate && row.loss_rate != "-" ? Number(row.loss_rate * 100).toFixed(2) + "%" : row.loss_rate }}
|
||||||
|
</template>
|
||||||
|
</ElTableColumn>
|
||||||
|
<ElTableColumn
|
||||||
|
sortable
|
||||||
|
width="120"
|
||||||
|
label="nat_type"
|
||||||
|
prop="NAT类型">
|
||||||
|
<template #default="{ row }">
|
||||||
|
{{ natMaps[row.nat_type.toLowerCase() as natKyes] || row.nat_type || "-" }}
|
||||||
|
</template>
|
||||||
|
</ElTableColumn>
|
||||||
|
<ElTableColumn
|
||||||
|
sortable
|
||||||
|
prop="version"
|
||||||
|
label="版本"></ElTableColumn>
|
||||||
</ElTable>
|
</ElTable>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -34,23 +65,50 @@
|
|||||||
import { invoke } from "@tauri-apps/api/core";
|
import { invoke } from "@tauri-apps/api/core";
|
||||||
import { reactive, onMounted, onBeforeUnmount } from "vue";
|
import { reactive, onMounted, onBeforeUnmount } from "vue";
|
||||||
import { parsePeerInfo } from "@/utils";
|
import { parsePeerInfo } from "@/utils";
|
||||||
|
// enum NatType {
|
||||||
|
// // has NAT; but own a single public IP, port is not changed
|
||||||
|
// Unknown = 0;
|
||||||
|
// OpenInternet = 1;
|
||||||
|
// NoPAT = 2;
|
||||||
|
// FullCone = 3;
|
||||||
|
// Restricted = 4;
|
||||||
|
// PortRestricted = 5;
|
||||||
|
// Symmetric = 6;
|
||||||
|
// SymUdpFirewall = 7;
|
||||||
|
// SymmetricEasyInc = 8;
|
||||||
|
// SymmetricEasyDec = 9;
|
||||||
|
// }
|
||||||
|
const natMaps = {
|
||||||
|
unknown: "未知",
|
||||||
|
OpenInternet: "nat0-openinternet",
|
||||||
|
nopat: "nat0-nopat",
|
||||||
|
fullcone: "nat1",
|
||||||
|
restricted: "nat2",
|
||||||
|
portrestricted: "nat3",
|
||||||
|
symmetric: "nat4",
|
||||||
|
SymmetricEasyDec: "nat4-easydec",
|
||||||
|
SymmetricEasyInc: "nat4-easyinc",
|
||||||
|
SymUdpFirewall: "nat4-udpfirewall",
|
||||||
|
};
|
||||||
|
type natKyes = keyof typeof natMaps;
|
||||||
|
|
||||||
const data = reactive<{ member: any[] }>({
|
const data = reactive<{ member: any[] }>({
|
||||||
member: [],
|
member: [],
|
||||||
});
|
});
|
||||||
|
|
||||||
const showTableHeader = [
|
const _showTableHeader = [
|
||||||
["hostname", "主机名"],
|
["hostname", "主机名"],
|
||||||
["lat_ms", "延迟/ms"],
|
|
||||||
["ipv4", "虚拟网IP"],
|
|
||||||
["cost", "路由"],
|
["cost", "路由"],
|
||||||
|
["ipv4", "虚拟网IP"],
|
||||||
|
["lat_ms", "延迟/ms"],
|
||||||
["loss_rate", "丢包率"],
|
["loss_rate", "丢包率"],
|
||||||
["nat_type", "NAT类型"],
|
["nat_type", "NAT类型"],
|
||||||
["version", "版本"],
|
["version", "版本"],
|
||||||
];
|
];
|
||||||
|
|
||||||
const listenOutput = async () => {
|
const listenOutput = async () => {
|
||||||
const member = await invoke("get_members_by_cli");
|
const member = await invoke<string>("get_members_by_cli");
|
||||||
const peerInfo = parsePeerInfo(member as string);
|
const peerInfo = parsePeerInfo(member);
|
||||||
peerInfo.forEach((value) => {
|
peerInfo.forEach((value) => {
|
||||||
if (value.cost === "Local") {
|
if (value.cost === "Local") {
|
||||||
value.cost = "本机";
|
value.cost = "本机";
|
||||||
@@ -59,7 +117,7 @@
|
|||||||
value.ipv4 = value.ipv4.split("/")[0];
|
value.ipv4 = value.ipv4.split("/")[0];
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
// console.log(peerInfo);
|
// console.error(peerInfo);
|
||||||
data.member = peerInfo;
|
data.member = peerInfo;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
+5
-5
@@ -226,7 +226,7 @@
|
|||||||
ElMessage.success("设置成功");
|
ElMessage.success("设置成功");
|
||||||
await initNetCardInfo();
|
await initNetCardInfo();
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.log(err);
|
console.error(err);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@@ -260,7 +260,7 @@
|
|||||||
data.pingLog += '完毕'
|
data.pingLog += '完毕'
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
ElMessage.error("Ping发生错误");
|
ElMessage.error("Ping发生错误");
|
||||||
console.log(err);
|
console.error(err);
|
||||||
} finally {
|
} finally {
|
||||||
data.isPing = false;
|
data.isPing = false;
|
||||||
}
|
}
|
||||||
@@ -291,7 +291,7 @@
|
|||||||
}) as any;
|
}) as any;
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
ElMessage.error("网卡获取失败");
|
ElMessage.error("网卡获取失败");
|
||||||
console.log(err);
|
console.error(err);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -324,13 +324,13 @@
|
|||||||
} catch (err) {
|
} catch (err) {
|
||||||
// netsh advfirewall firewall add rule name="EXE名称" dir=out action=allow program="EXE绝对路径"
|
// netsh advfirewall firewall add rule name="EXE名称" dir=out action=allow program="EXE绝对路径"
|
||||||
ElMessage.error("获取防火墙状态失败");
|
ElMessage.error("获取防火墙状态失败");
|
||||||
console.log(err);
|
console.error(err);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const appWindow = getCurrentWindow();
|
const appWindow = getCurrentWindow();
|
||||||
mainStore.$subscribe((...a) => {
|
mainStore.$subscribe((...a) => {
|
||||||
// console.log("subscribe", a);
|
// console.error("subscribe", a);
|
||||||
appWindow.emitTo("main", "config", { winIpBcAutoStart: mainStore.winIpBcAutoStart, config: { ...mainStore.config } });
|
appWindow.emitTo("main", "config", { winIpBcAutoStart: mainStore.winIpBcAutoStart, config: { ...mainStore.config } });
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -1,10 +0,0 @@
|
|||||||
import { createPersistedState } from "pinia-plugin-persistedstate";
|
|
||||||
import { defineNuxtPlugin } from "nuxt/app";
|
|
||||||
export default defineNuxtPlugin((nuxtApp: any) => {
|
|
||||||
nuxtApp.$pinia.use(
|
|
||||||
createPersistedState({
|
|
||||||
storage: localStorage,
|
|
||||||
key: id => `__glj_persisted_${id}`
|
|
||||||
})
|
|
||||||
);
|
|
||||||
});
|
|
||||||
Generated
+2458
-3859
File diff suppressed because it is too large
Load Diff
@@ -2,4 +2,5 @@
|
|||||||
# will have compiled files and executables
|
# will have compiled files and executables
|
||||||
/target/
|
/target/
|
||||||
/gen/schemas
|
/gen/schemas
|
||||||
/easytier/
|
/easytier/logs
|
||||||
|
/easytier/logs/*.*
|
||||||
Generated
+17
-1
@@ -1176,7 +1176,7 @@ checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "easytier-game"
|
name = "easytier-game"
|
||||||
version = "1.1.7"
|
version = "1.2.4"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"log",
|
"log",
|
||||||
"planif",
|
"planif",
|
||||||
@@ -1192,6 +1192,7 @@ dependencies = [
|
|||||||
"tauri-plugin-log",
|
"tauri-plugin-log",
|
||||||
"tauri-plugin-shell",
|
"tauri-plugin-shell",
|
||||||
"tauri-plugin-single-instance",
|
"tauri-plugin-single-instance",
|
||||||
|
"tauri-plugin-window-state",
|
||||||
"whoami",
|
"whoami",
|
||||||
"windows 0.58.0",
|
"windows 0.58.0",
|
||||||
"zip",
|
"zip",
|
||||||
@@ -4543,6 +4544,21 @@ dependencies = [
|
|||||||
"zbus",
|
"zbus",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "tauri-plugin-window-state"
|
||||||
|
version = "2.0.2"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "683c8764751fbbcebf3a594bcee24cf84c62773fa0080d1b40fc80698472421e"
|
||||||
|
dependencies = [
|
||||||
|
"bitflags 2.6.0",
|
||||||
|
"log",
|
||||||
|
"serde",
|
||||||
|
"serde_json",
|
||||||
|
"tauri",
|
||||||
|
"tauri-plugin",
|
||||||
|
"thiserror 1.0.64",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tauri-runtime"
|
name = "tauri-runtime"
|
||||||
version = "2.2.0"
|
version = "2.2.0"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "easytier-game"
|
name = "easytier-game"
|
||||||
version = "1.1.7"
|
version = "1.2.4"
|
||||||
homepage = "https://github.com/EasyTier/EasyTier"
|
homepage = "https://github.com/EasyTier/EasyTier"
|
||||||
repository = "https://github.com/EasyTier/EasytierGame"
|
repository = "https://github.com/EasyTier/EasytierGame"
|
||||||
description = "A simple network initiator based on Easytier"
|
description = "A simple network initiator based on Easytier"
|
||||||
@@ -50,3 +50,4 @@ features = ["Win32_System_TaskScheduler"]
|
|||||||
[target."cfg(not(any(target_os = \"android\", target_os = \"ios\")))".dependencies]
|
[target."cfg(not(any(target_os = \"android\", target_os = \"ios\")))".dependencies]
|
||||||
tauri-plugin-autostart = "2.0.1"
|
tauri-plugin-autostart = "2.0.1"
|
||||||
tauri-plugin-single-instance = "2.0.1"
|
tauri-plugin-single-instance = "2.0.1"
|
||||||
|
tauri-plugin-window-state = "2"
|
||||||
|
|||||||
@@ -15,6 +15,8 @@
|
|||||||
"core:window:allow-minimize",
|
"core:window:allow-minimize",
|
||||||
"core:window:allow-hide",
|
"core:window:allow-hide",
|
||||||
"core:window:allow-close",
|
"core:window:allow-close",
|
||||||
|
"core:window:allow-set-focus",
|
||||||
|
"core:window:allow-is-visible",
|
||||||
"shell:allow-open",
|
"shell:allow-open",
|
||||||
"core:window:allow-show",
|
"core:window:allow-show",
|
||||||
"core:window:allow-create",
|
"core:window:allow-create",
|
||||||
@@ -41,7 +43,7 @@
|
|||||||
"args": [
|
"args": [
|
||||||
"run"
|
"run"
|
||||||
],
|
],
|
||||||
"cmd": "easytier/tool/WinIPBroadcast",
|
"cmd": "$RESOURCE/easytier/tool/WinIPBroadcast",
|
||||||
"name": "WinIPBroadcast"
|
"name": "WinIPBroadcast"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -53,12 +55,12 @@
|
|||||||
"args": [
|
"args": [
|
||||||
"run"
|
"run"
|
||||||
],
|
],
|
||||||
"cmd": "easytier/tool/WinIPBroadcast",
|
"cmd": "$RESOURCE/easytier/tool/WinIPBroadcast",
|
||||||
"name": "WinIPBroadcast"
|
"name": "WinIPBroadcast"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"args": true,
|
"args": true,
|
||||||
"cmd": "easytier/tool/nssm",
|
"cmd": "$RESOURCE/easytier/tool/nssm",
|
||||||
"name": "nssm"
|
"name": "nssm"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -84,8 +86,17 @@
|
|||||||
"fs:allow-open",
|
"fs:allow-open",
|
||||||
"fs:allow-resource-read",
|
"fs:allow-resource-read",
|
||||||
"fs:allow-resource-read-recursive",
|
"fs:allow-resource-read-recursive",
|
||||||
|
"fs:allow-resource-write",
|
||||||
|
"fs:allow-resource-write-recursive",
|
||||||
"clipboard-manager:allow-clear",
|
"clipboard-manager:allow-clear",
|
||||||
"clipboard-manager:allow-read-text",
|
"clipboard-manager:allow-read-text",
|
||||||
"clipboard-manager:allow-write-text"
|
"clipboard-manager:allow-write-text",
|
||||||
|
|
||||||
|
"window-state:default",
|
||||||
|
"window-state:allow-save-window-state",
|
||||||
|
"window-state:allow-restore-state",
|
||||||
|
|
||||||
|
"log:default",
|
||||||
|
"log:allow-log"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,57 @@
|
|||||||
|
@echo off
|
||||||
|
chcp 65001 >nul
|
||||||
|
setlocal
|
||||||
|
|
||||||
|
REM 检查是否具有管理员权限
|
||||||
|
openfiles >nul 2>&1
|
||||||
|
if %errorlevel% neq 0 (
|
||||||
|
echo 当前没有管理员权限,鼠标右键clear_data.bat,选择使用管理员模式运行...
|
||||||
|
pause
|
||||||
|
exit /b
|
||||||
|
)
|
||||||
|
|
||||||
|
REM 获取当前用户的 Local 目录路径
|
||||||
|
set "local_dir=%LOCALAPPDATA%"
|
||||||
|
|
||||||
|
REM 设置要删除的任务计划程序文件夹名称
|
||||||
|
set "folder_name=\easytierGame"
|
||||||
|
set "task_name=auto start"
|
||||||
|
|
||||||
|
REM 设置要删除的目标文件夹
|
||||||
|
set "target_data_dir=%local_dir%\com.tauri.easytier-game"
|
||||||
|
echo ---
|
||||||
|
REM 打印 Local 目录路径
|
||||||
|
echo 当前数据目录: %target_data_dir%
|
||||||
|
echo ---
|
||||||
|
echo 您确定要清除EasytierGame的本地数据吗? (y/n)
|
||||||
|
echo ---
|
||||||
|
|
||||||
|
REM 等待用户输入
|
||||||
|
set /p confirm=输入'y/n'进行确认:
|
||||||
|
|
||||||
|
if /i "%confirm%"=="y" (
|
||||||
|
echo 清除数据中,请稍后...
|
||||||
|
echo ---
|
||||||
|
@REM REM 删除任务计划程序文件夹
|
||||||
|
echo delete auto_start task ...
|
||||||
|
echo ---
|
||||||
|
|
||||||
|
echo ---
|
||||||
|
schtasks /delete /tn "%folder_name%\%task_name%" /f
|
||||||
|
schtasks /delete /tn "%folder_name%" /f
|
||||||
|
echo ---
|
||||||
|
echo 开始清除本地缓存数据,没有使用开机自启上面就会报错,不影响数据清理...
|
||||||
|
|
||||||
|
if exist "%target_data_dir%" (
|
||||||
|
REM 删除目标文件夹及其内容
|
||||||
|
rd /s /q "%target_data_dir%"
|
||||||
|
)
|
||||||
|
echo 清除本地缓存数据完毕.
|
||||||
|
echo ---
|
||||||
|
echo 您可以手动删除EasytierGame目录下所有文件,即可完成卸载.
|
||||||
|
) else (
|
||||||
|
echo 取消清理数据
|
||||||
|
)
|
||||||
|
|
||||||
|
pause
|
||||||
|
endlocal
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
// 如果您的配置过于复杂,可以参考 使用配置文件进行联机的办法,以下是基础的界面配置,用于快速分享联机
|
||||||
|
"protocol": [
|
||||||
|
"tcp",
|
||||||
|
"udp"
|
||||||
|
], // 协议类型
|
||||||
|
|
||||||
|
// easytier服务地址 - 可填写多个 方式1,逗号分隔,"xxxx.cn,yyyy.com" 方式2,数组 ["xxxx.cn","yyyy.com"] (默认选中第一个)
|
||||||
|
"serverUrl": "public.easytier.top:11010",
|
||||||
|
"networkName": "", // 网络名
|
||||||
|
"networkPassword": "", // 网络密码
|
||||||
|
"hostname": "configTest", // 主机名
|
||||||
|
"ipv4": "10.126.126.1", // IP地址(选填,下面有dhcp)
|
||||||
|
"disableIpv6": false, // 禁用ipv6
|
||||||
|
"disbleListenner": true, // 禁用端口监听
|
||||||
|
"disableEncryption": false, // 禁用加密
|
||||||
|
"noTun": false, // 禁用tun
|
||||||
|
"latencyfirst": false, // 延迟优先
|
||||||
|
"disableUdpHolePunching": false, // 禁用udp打洞
|
||||||
|
"disbleP2p": false, // 禁用p2p, 强制中转
|
||||||
|
"dhcp": false, // 动态分配IP
|
||||||
|
"devName": false, // 是否启用自定义网卡名
|
||||||
|
"devNameValue": "", // 网卡名(启用devName之后才生效)
|
||||||
|
"enableNetCardMetric": false, // 自定义easytier每次生成的网卡跃点
|
||||||
|
"netCardMetricValue": 1 // 网卡跃点数量(1-9999)
|
||||||
|
}
|
||||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,16 @@
|
|||||||
|
[如果界面无法打开]
|
||||||
|
|
||||||
|
1. 如果您已经启动easytier-game.exe,那它可能会在后台运行,打开任务管理器关闭easytier-game.exe
|
||||||
|
|
||||||
|
2. 使用easytier-game安装目录下的 easytier/tool/MicrosoftEdgeWebview2Setup.exe 安装webview2
|
||||||
|
|
||||||
|
3. 再次启用easytier-game.exe
|
||||||
|
|
||||||
|
|
||||||
|
[如果想彻底删除easytierGame]
|
||||||
|
|
||||||
|
1. 关闭easytierGame
|
||||||
|
|
||||||
|
2. 运行easytier-game安装目录下的 easytier/clear_local_data.bat (需要管理员权限) 输入y确认,清除本地存储数据
|
||||||
|
|
||||||
|
3. 删除easytierGame文件夹
|
||||||
+81
-39
@@ -60,7 +60,8 @@ pub async fn fetch_releases() -> Result<Vec<Release>, Error> {
|
|||||||
|
|
||||||
#[tauri::command(rename_all = "snake_case")]
|
#[tauri::command(rename_all = "snake_case")]
|
||||||
fn get_core_version() -> String {
|
fn get_core_version() -> String {
|
||||||
match Command::new("easytier/easytier-core.exe")
|
let core_path = get_tool_exe_path(String::from("\\easytier\\easytier-core.exe"));
|
||||||
|
match Command::new(&core_path)
|
||||||
.arg("--version")
|
.arg("--version")
|
||||||
.creation_flags(0x08000000)
|
.creation_flags(0x08000000)
|
||||||
.output()
|
.output()
|
||||||
@@ -69,23 +70,34 @@ fn get_core_version() -> String {
|
|||||||
let output_str = String::from_utf8_lossy(&output.stdout);
|
let output_str = String::from_utf8_lossy(&output.stdout);
|
||||||
return output_str.trim().to_string();
|
return output_str.trim().to_string();
|
||||||
}
|
}
|
||||||
Err(_e) => return "".to_string(),
|
Err(_e) => {
|
||||||
|
log::error!("{}", _e.to_string());
|
||||||
|
return "".to_string();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[tauri::command(rename_all = "snake_case")]
|
// #[tauri::command(rename_all = "snake_case")]
|
||||||
fn get_cli_version() -> String {
|
// #[warn(dead_code)]
|
||||||
match Command::new("easytier/easytier-cli.exe")
|
// fn get_cli_version() -> String {
|
||||||
.arg("--version")
|
// let cli_path = get_tool_exe_path(String::from("\\easytier\\easytier-cli.exe"));
|
||||||
.creation_flags(0x08000000)
|
// match Command::new(&cli_path)
|
||||||
.output()
|
// .arg("--version")
|
||||||
{
|
// .creation_flags(0x08000000)
|
||||||
Ok(output) => {
|
// .output()
|
||||||
let output_str = String::from_utf8_lossy(&output.stdout);
|
// {
|
||||||
return output_str.trim().to_string();
|
// Ok(output) => {
|
||||||
}
|
// let output_str = String::from_utf8_lossy(&output.stdout);
|
||||||
Err(_e) => return "".to_string(),
|
// return output_str.trim().to_string();
|
||||||
}
|
// }
|
||||||
|
// Err(_e) => return "".to_string(),
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
|
fn get_tool_exe_path(path: String) -> String {
|
||||||
|
let cur_vec = get_exe_directory();
|
||||||
|
let tool_path = cur_vec[1].to_string() + &path.to_string();
|
||||||
|
return tool_path;
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug)]
|
#[derive(Serialize, Deserialize, Debug)]
|
||||||
@@ -122,7 +134,8 @@ struct MyResponse {
|
|||||||
|
|
||||||
#[tauri::command(rename_all = "snake_case")]
|
#[tauri::command(rename_all = "snake_case")]
|
||||||
fn get_members_by_cli() -> String {
|
fn get_members_by_cli() -> String {
|
||||||
match Command::new("easytier/easytier-cli.exe")
|
let cli_path = get_tool_exe_path(String::from("\\easytier\\easytier-cli.exe"));
|
||||||
|
match Command::new(&cli_path)
|
||||||
.arg("peer")
|
.arg("peer")
|
||||||
.arg("list")
|
.arg("list")
|
||||||
.creation_flags(0x08000000)
|
.creation_flags(0x08000000)
|
||||||
@@ -142,14 +155,17 @@ async fn download_easytier_zip(download_url: String, file_name: String) {
|
|||||||
let response = reqwest::get(target)
|
let response = reqwest::get(target)
|
||||||
.await
|
.await
|
||||||
.expect("error to download easytier url");
|
.expect("error to download easytier url");
|
||||||
let file_path = format!("./easytier/{}", file_name);
|
let easytier_path = get_tool_exe_path(String::from("\\easytier"));
|
||||||
|
let file_path = format!("{}\\{}", easytier_path, file_name);
|
||||||
|
println!("download easytier to {}", file_path);
|
||||||
|
|
||||||
let easytier_dir = path::Path::new("./easytier");
|
let easytier_dir = path::Path::new(&easytier_path);
|
||||||
if !easytier_dir.exists() {
|
if !easytier_dir.exists() {
|
||||||
fs::create_dir_all(&easytier_dir).unwrap();
|
fs::create_dir_all(&easytier_dir).unwrap();
|
||||||
}
|
}
|
||||||
|
|
||||||
let path = path::Path::new(&file_path);
|
let path = path::Path::new(&file_path);
|
||||||
|
println!("download easytier to {}", path.display());
|
||||||
|
|
||||||
let mut file = match File::create(&path) {
|
let mut file = match File::create(&path) {
|
||||||
Err(why) => panic!("couldn't create {}", why),
|
Err(why) => panic!("couldn't create {}", why),
|
||||||
@@ -163,7 +179,7 @@ async fn download_easytier_zip(download_url: String, file_name: String) {
|
|||||||
unzip(path);
|
unzip(path);
|
||||||
match fs::remove_file(path) {
|
match fs::remove_file(path) {
|
||||||
Ok(_) => println!("删除zip文件成功"),
|
Ok(_) => println!("删除zip文件成功"),
|
||||||
Err(_) => println!("删除zip文件失败"),
|
Err(_) => log::error!("删除zip文件失败"),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -197,8 +213,8 @@ fn unzip(fname: &path::Path) {
|
|||||||
// fs::create_dir_all(p).unwrap();
|
// fs::create_dir_all(p).unwrap();
|
||||||
// }
|
// }
|
||||||
// }
|
// }
|
||||||
|
let easytier_path = get_tool_exe_path(String::from("\\easytier"));
|
||||||
let easytier_dir = path::Path::new("./easytier");
|
let easytier_dir = path::Path::new(&easytier_path);
|
||||||
// if !easytier_dir.exists() {
|
// if !easytier_dir.exists() {
|
||||||
// fs::create_dir_all(&easytier_dir).unwrap();
|
// fs::create_dir_all(&easytier_dir).unwrap();
|
||||||
// }
|
// }
|
||||||
@@ -225,8 +241,9 @@ fn run_command(
|
|||||||
let stop_signal2 = Arc::clone(&stop_signal);
|
let stop_signal2 = Arc::clone(&stop_signal);
|
||||||
let args2 = args.clone();
|
let args2 = args.clone();
|
||||||
thread::spawn(move || {
|
thread::spawn(move || {
|
||||||
|
let core_path = get_tool_exe_path(String::from("\\easytier\\easytier-core.exe"));
|
||||||
// trace, debug, info, warn, error, off
|
// trace, debug, info, warn, error, off
|
||||||
let mut child = Command::new("easytier/easytier-core.exe")
|
let mut child = Command::new(&core_path)
|
||||||
.args(args)
|
.args(args)
|
||||||
.creation_flags(0x08000000)
|
.creation_flags(0x08000000)
|
||||||
.stdout(Stdio::piped())
|
.stdout(Stdio::piped())
|
||||||
@@ -249,7 +266,7 @@ fn run_command(
|
|||||||
tx.send(line).expect("failed to send line");
|
tx.send(line).expect("failed to send line");
|
||||||
}
|
}
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
eprintln!("error reading line: {}", e);
|
log::error!("error reading line: {}", e);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -355,7 +372,7 @@ fn get_exe_directory() -> Vec<String> {
|
|||||||
let mut ret_vec: Vec<String> = Vec::new();
|
let mut ret_vec: Vec<String> = Vec::new();
|
||||||
match std::env::current_exe() {
|
match std::env::current_exe() {
|
||||||
Ok(exe_path) => {
|
Ok(exe_path) => {
|
||||||
println!("Path of this executable is: {}", exe_path.display());
|
// println!("Path of this executable is: {}", exe_path.display());
|
||||||
ret_vec.push(exe_path.display().to_string());
|
ret_vec.push(exe_path.display().to_string());
|
||||||
ret_vec.push(exe_path.parent().unwrap().display().to_string());
|
ret_vec.push(exe_path.parent().unwrap().display().to_string());
|
||||||
return ret_vec;
|
return ret_vec;
|
||||||
@@ -378,7 +395,7 @@ fn spawn_autostart(enabled: bool) {
|
|||||||
let _ = tx.send(true);
|
let _ = tx.send(true);
|
||||||
}
|
}
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
println!("Error: {}", e);
|
log::error!("Error: {}", e);
|
||||||
let _ = tx.send(false);
|
let _ = tx.send(false);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@@ -430,12 +447,14 @@ fn autostart_is_enabled() -> bool {
|
|||||||
return enabled;
|
return enabled;
|
||||||
}
|
}
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
println!("autostart enabled: false -> {}", e);
|
log::error!("autostart enabled: false -> {}", e);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub const AUTOSTART_ARG: &str = "--autostart";
|
||||||
|
pub const TASKAUTOSTART_ARG: &str = "--task-auto-start";
|
||||||
fn autostart(enabled: bool) -> std::result::Result<(), Box<dyn std::error::Error>> {
|
fn autostart(enabled: bool) -> std::result::Result<(), Box<dyn std::error::Error>> {
|
||||||
if !enabled {
|
if !enabled {
|
||||||
unsafe {
|
unsafe {
|
||||||
@@ -486,7 +505,7 @@ fn autostart(enabled: bool) -> std::result::Result<(), Box<dyn std::error::Error
|
|||||||
sb.create_logon()
|
sb.create_logon()
|
||||||
.author("heixiansen")?
|
.author("heixiansen")?
|
||||||
.trigger("trigger", enabled)?
|
.trigger("trigger", enabled)?
|
||||||
.action(Action::new("auto start", exe, "", ""))?
|
.action(Action::new("auto start", exe, "", &TASKAUTOSTART_ARG))?
|
||||||
.in_folder("easytierGame")?
|
.in_folder("easytierGame")?
|
||||||
.principal(settings)?
|
.principal(settings)?
|
||||||
.delay(Duration {
|
.delay(Duration {
|
||||||
@@ -499,14 +518,20 @@ fn autostart(enabled: bool) -> std::result::Result<(), Box<dyn std::error::Error
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
pub const AUTOSTART_ARG: &str = "--autostart";
|
|
||||||
|
|
||||||
#[cfg_attr(mobile, tauri::mobile_entry_point)]
|
#[cfg_attr(mobile, tauri::mobile_entry_point)]
|
||||||
pub fn run() {
|
pub fn run() {
|
||||||
|
// 获取命令行参数
|
||||||
|
let args: Vec<String> = std::env::args().collect();
|
||||||
|
|
||||||
let stop_signal = Arc::new(AtomicBool::new(false)); // 创建一个原子布尔值,用于控制命令的停止
|
let stop_signal = Arc::new(AtomicBool::new(false)); // 创建一个原子布尔值,用于控制命令的停止
|
||||||
let stop_signal_clone = Arc::clone(&stop_signal); // 创建一个原子布尔值的克隆,用于传递给命令
|
let stop_signal_clone = Arc::clone(&stop_signal); // 创建一个原子布尔值的克隆,用于传递给命令
|
||||||
let context = tauri::generate_context!();
|
let context = tauri::generate_context!();
|
||||||
tauri::Builder::default()
|
tauri::Builder::default()
|
||||||
|
.plugin(
|
||||||
|
tauri_plugin_window_state::Builder::new()
|
||||||
|
.with_state_flags(tauri_plugin_window_state::StateFlags::SIZE)
|
||||||
|
.build(),
|
||||||
|
)
|
||||||
.plugin(tauri_plugin_clipboard_manager::init())
|
.plugin(tauri_plugin_clipboard_manager::init())
|
||||||
.plugin(tauri_plugin_fs::init())
|
.plugin(tauri_plugin_fs::init())
|
||||||
.plugin(tauri_plugin_autostart::init(
|
.plugin(tauri_plugin_autostart::init(
|
||||||
@@ -518,16 +543,26 @@ pub fn run() {
|
|||||||
let _ = app
|
let _ = app
|
||||||
.get_webview_window("main")
|
.get_webview_window("main")
|
||||||
.expect("no main window")
|
.expect("no main window")
|
||||||
.set_focus();
|
.set_focus()
|
||||||
|
.expect("failed to set focus");
|
||||||
}))
|
}))
|
||||||
.setup(|app| {
|
.setup(move |app| {
|
||||||
if cfg!(debug_assertions) {
|
let args = args.clone();
|
||||||
app.handle().plugin(
|
// if cfg!(debug_assertions) {
|
||||||
tauri_plugin_log::Builder::default()
|
let log_path = get_tool_exe_path(String::from("\\easytier\\guiLogs"));
|
||||||
.level(log::LevelFilter::Info)
|
app.handle().plugin(
|
||||||
.build(),
|
tauri_plugin_log::Builder::default()
|
||||||
)?;
|
.target(tauri_plugin_log::Target::new(
|
||||||
}
|
tauri_plugin_log::TargetKind::Folder {
|
||||||
|
path: std::path::PathBuf::from(log_path),
|
||||||
|
file_name: None,
|
||||||
|
},
|
||||||
|
))
|
||||||
|
.max_file_size(50_000 /* bytes */)
|
||||||
|
.level(log::LevelFilter::Error)
|
||||||
|
.build(),
|
||||||
|
)?;
|
||||||
|
// }
|
||||||
#[cfg(not(target_os = "android"))]
|
#[cfg(not(target_os = "android"))]
|
||||||
let _tray_menu = TrayIconBuilder::with_id("main")
|
let _tray_menu = TrayIconBuilder::with_id("main")
|
||||||
.menu_on_left_click(false)
|
.menu_on_left_click(false)
|
||||||
@@ -547,6 +582,14 @@ pub fn run() {
|
|||||||
))?)
|
))?)
|
||||||
.icon_as_template(false)
|
.icon_as_template(false)
|
||||||
.build(app)?;
|
.build(app)?;
|
||||||
|
|
||||||
|
// 开机自启隐藏到托盘或者显示主窗口
|
||||||
|
if !args.contains(&String::from(TASKAUTOSTART_ARG)) {
|
||||||
|
let main_window = app.get_webview_window("main").unwrap();
|
||||||
|
main_window.show().expect("failed to show window");
|
||||||
|
main_window.set_focus().expect("failed to set focus");
|
||||||
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
})
|
})
|
||||||
.manage(stop_signal_clone)
|
.manage(stop_signal_clone)
|
||||||
@@ -556,7 +599,6 @@ pub fn run() {
|
|||||||
get_core_version,
|
get_core_version,
|
||||||
fetch_easytier_list,
|
fetch_easytier_list,
|
||||||
download_easytier_zip,
|
download_easytier_zip,
|
||||||
get_cli_version,
|
|
||||||
get_members_by_cli,
|
get_members_by_cli,
|
||||||
search_pid_by_pname,
|
search_pid_by_pname,
|
||||||
get_exe_directory,
|
get_exe_directory,
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
|
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
|
||||||
"productName": "easytier-game",
|
"productName": "easytier-game",
|
||||||
"version": "1.1.7",
|
"version": "1.2.4",
|
||||||
"identifier": "com.tauri.easytier-game",
|
"identifier": "com.tauri.easytier-game",
|
||||||
|
|
||||||
"build": {
|
"build": {
|
||||||
@@ -13,7 +13,8 @@
|
|||||||
"app": {
|
"app": {
|
||||||
"windows": [
|
"windows": [
|
||||||
{
|
{
|
||||||
"title": "easytier-game 1.1.7",
|
"title": "easytier-game 1.2.4",
|
||||||
|
"label": "main",
|
||||||
"minWidth": 340,
|
"minWidth": 340,
|
||||||
"width": 340,
|
"width": 340,
|
||||||
"height": 305,
|
"height": 305,
|
||||||
@@ -24,6 +25,7 @@
|
|||||||
"fullscreen": false,
|
"fullscreen": false,
|
||||||
"decorations": true,
|
"decorations": true,
|
||||||
"center": true,
|
"center": true,
|
||||||
|
"visible": false,
|
||||||
"maximizable": false,
|
"maximizable": false,
|
||||||
"transparent": false
|
"transparent": false
|
||||||
}
|
}
|
||||||
@@ -39,11 +41,15 @@
|
|||||||
"resources": [
|
"resources": [
|
||||||
"easytier/config/",
|
"easytier/config/",
|
||||||
"easytier/icons/",
|
"easytier/icons/",
|
||||||
|
"easytier/config_template.json",
|
||||||
"easytier/tool/WinIPBroadcast.exe",
|
"easytier/tool/WinIPBroadcast.exe",
|
||||||
|
"easytier/tool/MicrosoftEdgeWebview2Setup.exe",
|
||||||
"easytier/easytier-cli.exe",
|
"easytier/easytier-cli.exe",
|
||||||
"easytier/easytier-core.exe",
|
"easytier/easytier-core.exe",
|
||||||
"easytier/Packet.dll",
|
"easytier/Packet.dll",
|
||||||
"easytier/wintun.dll"
|
"easytier/wintun.dll",
|
||||||
|
"easytier/clear_local_data.bat",
|
||||||
|
"easytier/帮助.txt"
|
||||||
],
|
],
|
||||||
"windows": {
|
"windows": {
|
||||||
"webviewInstallMode": {
|
"webviewInstallMode": {
|
||||||
|
|||||||
+32
-19
@@ -11,7 +11,7 @@ export default defineStore("main", {
|
|||||||
ipv4: "",
|
ipv4: "",
|
||||||
proxyNetworks: "", // 子网代理
|
proxyNetworks: "", // 子网代理
|
||||||
autoStart: false, // 是否自动启动
|
autoStart: false, // 是否自动启动
|
||||||
coonectAfterStart: false, //软件打开后,是否自动连接
|
connectAfterStart: false, //软件打开后,是否自动连接
|
||||||
disableIpv6: false, // 是否禁用IPv6
|
disableIpv6: false, // 是否禁用IPv6
|
||||||
disbleListenner: false, // 是否禁用监听
|
disbleListenner: false, // 是否禁用监听
|
||||||
disableEncryption: false, // 是否禁用加密
|
disableEncryption: false, // 是否禁用加密
|
||||||
@@ -28,33 +28,34 @@ export default defineStore("main", {
|
|||||||
logLevel: "error", //日志等级
|
logLevel: "error", //日志等级
|
||||||
devName: false, //自定义网卡名
|
devName: false, //自定义网卡名
|
||||||
devNameValue: "", //自定义网卡名
|
devNameValue: "", //自定义网卡名
|
||||||
|
enableNetCardMetric: false, //启用网卡自定义跃点
|
||||||
|
netCardMetricValue: 1 //自定义网卡跃点值
|
||||||
},
|
},
|
||||||
|
cidrEnable: false,
|
||||||
|
basePeers: ["public.easytier.top:11010"],
|
||||||
theme: false, //主题 false light true dark
|
theme: false, //主题 false light true dark
|
||||||
configStartEnable: false, //使用配置文件启动
|
configStartEnable: false, //使用配置文件启动
|
||||||
configPath: "", //配置文件路径
|
configPath: "", //配置文件路径
|
||||||
cidrEnable: false,
|
|
||||||
winipBcPid: 0,
|
|
||||||
winipBcStart: false,
|
|
||||||
winIpBcAutoStart: true,
|
winIpBcAutoStart: true,
|
||||||
basePeers: ["public.easytier.top:11010"],
|
createConfigInEasytier: false, //在easytier目录生成config.json文件吗
|
||||||
|
githubFastUrl: "https://ghproxy.cc/",
|
||||||
|
|
||||||
|
winipBcPid: 0,
|
||||||
|
winipBcStart: false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
persist: {
|
persist: {
|
||||||
paths: [
|
// 防止持久化保存 用户使用config.json输入的无用的字段
|
||||||
"basePeers",
|
pick: [
|
||||||
"cidrEnable",
|
"config.protocol",
|
||||||
"theme",
|
|
||||||
"configStartEnable",
|
|
||||||
"configPath",
|
|
||||||
"winIpBcAutoStart",
|
|
||||||
"config.proxyNetworks",
|
|
||||||
"config.serverUrl",
|
"config.serverUrl",
|
||||||
"config.networkName",
|
"config.networkName",
|
||||||
"config.protocol",
|
|
||||||
"config.networkPassword",
|
"config.networkPassword",
|
||||||
"config.disbleP2p",
|
"config.hostname",
|
||||||
|
"config.ipv4",
|
||||||
|
"config.proxyNetworks",
|
||||||
"config.autoStart",
|
"config.autoStart",
|
||||||
"config.coonectAfterStart",
|
"config.connectAfterStart",
|
||||||
"config.disableIpv6",
|
"config.disableIpv6",
|
||||||
"config.disbleListenner",
|
"config.disbleListenner",
|
||||||
"config.disableEncryption",
|
"config.disableEncryption",
|
||||||
@@ -65,13 +66,25 @@ export default defineStore("main", {
|
|||||||
"config.useSmoltcp",
|
"config.useSmoltcp",
|
||||||
"config.disableUdpHolePunching",
|
"config.disableUdpHolePunching",
|
||||||
"config.relayAllPeerrpc",
|
"config.relayAllPeerrpc",
|
||||||
"config.hostname",
|
"config.disbleP2p",
|
||||||
"config.ipv4",
|
|
||||||
"config.dhcp",
|
"config.dhcp",
|
||||||
"config.saveErrorLog",
|
"config.saveErrorLog",
|
||||||
"config.logLevel",
|
"config.logLevel",
|
||||||
"config.devName",
|
"config.devName",
|
||||||
"config.devNameValue",
|
"config.devNameValue",
|
||||||
|
"config.enableNetCardMetric",
|
||||||
|
"config.netCardMetricValue",
|
||||||
|
|
||||||
|
"cidrEnable",
|
||||||
|
"basePeers",
|
||||||
|
"theme",
|
||||||
|
"configStartEnable",
|
||||||
|
"configPath",
|
||||||
|
"winIpBcAutoStart",
|
||||||
|
"createConfigInEasytier",
|
||||||
|
"githubFastUrl"
|
||||||
],
|
],
|
||||||
},
|
// // 除了这些,其他都要存下来
|
||||||
|
// omit: ["winipBcPid", "winipBcStart"]
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
+4
-3
@@ -6,6 +6,7 @@
|
|||||||
"components/**/*.ts",
|
"components/**/*.ts",
|
||||||
"components/**/*.js",
|
"components/**/*.js",
|
||||||
"components/**/*.vue",
|
"components/**/*.vue",
|
||||||
|
"composables/**/*.ts",
|
||||||
"app.vue",
|
"app.vue",
|
||||||
"pages/**/*.ts",
|
"pages/**/*.ts",
|
||||||
"pages/**/*.js",
|
"pages/**/*.js",
|
||||||
@@ -28,16 +29,16 @@
|
|||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"target": "ESNext",
|
"target": "ESNext",
|
||||||
"module": "ESNext",
|
"module": "ESNext",
|
||||||
|
"moduleResolution": "Node",
|
||||||
// "types": ["element-plus/global"]
|
// "types": ["element-plus/global"]
|
||||||
"resolveJsonModule": true,
|
"resolveJsonModule": true,
|
||||||
// 从 Vue 3.4 开始,Vue 不再隐式注册全局 JSX 命名空间。要指示 TypeScript 使用 Vue 的 JSX 类型定义,请确保在你的 tsconfig.json 中包含以下内容
|
// 从 Vue 3.4 开始,Vue 不再隐式注册全局 JSX 命名空间。要指示 TypeScript 使用 Vue 的 JSX 类型定义,请确保在你的 tsconfig.json 中包含以下内容
|
||||||
"jsx": "preserve",
|
"jsx": "preserve",
|
||||||
"jsxImportSource": "vue",
|
"jsxImportSource": "vue",
|
||||||
"types": ["@pinia/nuxt", "vite/client", "element-plus/global"],
|
"types": ["@pinia/nuxt", "vite/client", "element-plus/global", "pinia-plugin-persistedstate"],
|
||||||
"allowJs": true, // 允许编译器编译JS,JSX文件
|
"allowJs": true, // 允许编译器编译JS,JSX文件
|
||||||
"checkJs": true, // 允许在JS文件中报错,通常与allowJS一起使用
|
"checkJs": false, // 允许在JS文件中报错,通常与allowJS一起使用
|
||||||
"esModuleInterop": true, // 允许export=导出,由import from 导入
|
"esModuleInterop": true, // 允许export=导出,由import from 导入
|
||||||
|
|
||||||
"lib": ["DOM", "ESNext"],
|
"lib": ["DOM", "ESNext"],
|
||||||
"allowSyntheticDefaultImports": true
|
"allowSyntheticDefaultImports": true
|
||||||
}
|
}
|
||||||
|
|||||||
Vendored
+1
@@ -1,5 +1,6 @@
|
|||||||
interface ImportMetaEnv {
|
interface ImportMetaEnv {
|
||||||
readonly VITE_CONFIG_PATH: string;
|
readonly VITE_CONFIG_PATH: string;
|
||||||
|
readonly VITE_CONFIG_FILE_NAME: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface ImportMeta {
|
interface ImportMeta {
|
||||||
|
|||||||
+9
-17
@@ -1,18 +1,6 @@
|
|||||||
import { ElMessage } from "element-plus";
|
import { open } from "@tauri-apps/plugin-shell";
|
||||||
import Clipboard from "vue-clipboard3";
|
|
||||||
|
|
||||||
export const ENV = import.meta.env;
|
export const ENV = import.meta.env;
|
||||||
|
|
||||||
export const clipBoardCopy = async (text: string) => {
|
|
||||||
const { toClipboard } = Clipboard();
|
|
||||||
try {
|
|
||||||
await toClipboard(text);
|
|
||||||
ElMessage.success("复制成功");
|
|
||||||
} catch (e) {
|
|
||||||
ElMessage.error("复制失败");
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
//防抖
|
//防抖
|
||||||
export const bounce = (time = 3000) => {
|
export const bounce = (time = 3000) => {
|
||||||
let bounceTimer: NodeJS.Timeout | null = null;
|
let bounceTimer: NodeJS.Timeout | null = null;
|
||||||
@@ -62,8 +50,8 @@ export const numRemoveZero = (num: Number) => {
|
|||||||
// await-to-js
|
// await-to-js
|
||||||
export const ATJ = (promise: Promise<any>, errorExt: string | undefined = undefined) => {
|
export const ATJ = (promise: Promise<any>, errorExt: string | undefined = undefined) => {
|
||||||
return promise
|
return promise
|
||||||
.then(data => [null, data])
|
.then((data) => [null, data])
|
||||||
.catch(err => {
|
.catch((err) => {
|
||||||
if (errorExt) {
|
if (errorExt) {
|
||||||
if (typeof errorExt !== "object") {
|
if (typeof errorExt !== "object") {
|
||||||
return [errorExt, undefined];
|
return [errorExt, undefined];
|
||||||
@@ -84,7 +72,7 @@ export const parsePeerInfo = (content: string) => {
|
|||||||
const headers = lines[1]
|
const headers = lines[1]
|
||||||
.split("│")
|
.split("│")
|
||||||
.slice(1, -1)
|
.slice(1, -1)
|
||||||
.map(h => h.trim());
|
.map((h) => h.trim());
|
||||||
|
|
||||||
// 初始化结果数组
|
// 初始化结果数组
|
||||||
const result: any[] = [];
|
const result: any[] = [];
|
||||||
@@ -97,7 +85,7 @@ export const parsePeerInfo = (content: string) => {
|
|||||||
const values = lines[i]
|
const values = lines[i]
|
||||||
.split("│")
|
.split("│")
|
||||||
.slice(1, -1)
|
.slice(1, -1)
|
||||||
.map(v => v.trim());
|
.map((v) => v.trim());
|
||||||
|
|
||||||
// 创建对象并添加到结果数组
|
// 创建对象并添加到结果数组
|
||||||
const obj: any = {};
|
const obj: any = {};
|
||||||
@@ -112,6 +100,10 @@ export const parsePeerInfo = (content: string) => {
|
|||||||
return result;
|
return result;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const addQQGroup = () => {
|
||||||
|
open("https://qm.qq.com/q/Yo3HmaEIWC");
|
||||||
|
};
|
||||||
|
|
||||||
export function isValidIP(ip: string) {
|
export function isValidIP(ip: string) {
|
||||||
const ipv4Pattern =
|
const ipv4Pattern =
|
||||||
/^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/;
|
/^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/;
|
||||||
|
|||||||
Reference in New Issue
Block a user