mirror of
https://github.com/EasyTier/EasytierGame.git
synced 2025-05-19 10:27:56 +00:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3aa90dbb67 | ||
|
|
02b53098e8 | ||
|
|
c9fcc40ee3 | ||
|
|
5e418bd6e5 | ||
|
|
779f5cecf1 | ||
|
|
8373efa3ba | ||
|
|
73ae6b90db | ||
|
|
55c6e49d4a | ||
|
|
5fc931f94e | ||
|
|
8120b65c9b | ||
|
|
7af0683775 | ||
|
|
4191a0a12d | ||
|
|
66d8bff8b4 | ||
|
|
c740039325 | ||
|
|
589511e356 | ||
|
|
c2d060b202 | ||
|
|
d2cd72fed9 | ||
|
|
efee636180 | ||
|
|
4e3f1cbd89 | ||
|
|
c23191fe45 |
@@ -29,6 +29,7 @@ Releases: [https://github.com/EasyTier/EasytierGame/releases](https://github.c
|
|||||||

|

|
||||||
|
|
||||||
- easytier内核升级后,可以点击内核管理按钮就可以进行内核切换和更新,但是需要出国或者github加速链接,如果无法更新,可以在群里获取
|
- easytier内核升级后,可以点击内核管理按钮就可以进行内核切换和更新,但是需要出国或者github加速链接,如果无法更新,可以在群里获取
|
||||||
|
- 1.2.6内核管理下载的内核 保存于easytier/cache目录,下次切换不用二次下载
|
||||||

|

|
||||||
|
|
||||||
- 1.1.4更新了 配置分享功能 可以与朋友之间分享配置,方便联机
|
- 1.1.4更新了 配置分享功能 可以与朋友之间分享配置,方便联机
|
||||||
@@ -49,6 +50,12 @@ Releases: [https://github.com/EasyTier/EasytierGame/releases](https://github.c
|
|||||||
- 1.2.3新增了帮助.txt 位于“easytier/帮助.txt" 内含 无法打开界面和卸载EasytierGame的办法,新增 "easytier/clear_local_data.bat" 用于清除easytierGame的本地缓存数据(需要管理员模式运行)
|
- 1.2.3新增了帮助.txt 位于“easytier/帮助.txt" 内含 无法打开界面和卸载EasytierGame的办法,新增 "easytier/clear_local_data.bat" 用于清除easytierGame的本地缓存数据(需要管理员模式运行)
|
||||||

|

|
||||||
|
|
||||||
|
- 1.2.5新增 自建服务器功能,可以自行搭建服务器,但是需要一些网络知识,具体可以查看文档[自建服务器](https://www.easytier.top/guide/network/host-public-server.html)
|
||||||
|

|
||||||
|
|
||||||
|
- 1.2.6重写 自建服务器功能,可以自行搭建服务器,但是需要一些网络知识,具体可以查看文档[自建服务器](https://www.easytier.top/guide/network/host-public-server.html),也可查看帮助.txt
|
||||||
|

|
||||||
|
|
||||||
## 特性
|
## 特性
|
||||||
|
|
||||||
- 基于easytier组网工具开发,界面清晰简单
|
- 基于easytier组网工具开发,界面清晰简单
|
||||||
@@ -62,6 +69,13 @@ Releases: [https://github.com/EasyTier/EasytierGame/releases](https://github.c
|
|||||||
|
|
||||||
支持Windows 11 、Windows 10 、 Windows 7
|
支持Windows 11 、Windows 10 、 Windows 7
|
||||||
|
|
||||||
|
## 群聊交流
|
||||||
|
- 主群 EasyTier 支持
|
||||||
|
### 949700262
|
||||||
|
|
||||||
|
- EasyTier游戏联机交流群
|
||||||
|
### 596667137
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## 请不要将本程序和仓库代码用于任何违法用途,由此产生的一切后果,仓库所有者和参与开发的人员不承担任何责任
|
## 请不要将本程序和仓库代码用于任何违法用途,由此产生的一切后果,仓库所有者和参与开发的人员不承担任何责任
|
||||||
|
|||||||
@@ -27,6 +27,9 @@ html.dark body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#__easytier {
|
#__easytier {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
flex-wrap: nowrap;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
@@ -37,3 +40,10 @@ html.dark body {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.full-content .el-form-item__content {
|
||||||
|
/* height: 100%; */
|
||||||
|
align-items: flex-start;
|
||||||
|
overflow: auto;
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 27 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 55 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 130 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 104 KiB |
@@ -0,0 +1,25 @@
|
|||||||
|
import useMainStore from "@/stores/index";
|
||||||
|
export const getServerArgs = () => {
|
||||||
|
const mainStore = useMainStore();
|
||||||
|
const args = [];
|
||||||
|
if (!mainStore.serverConfig.port) {
|
||||||
|
mainStore.serverConfig.port = "11010";
|
||||||
|
}
|
||||||
|
args.push("-l", mainStore.serverConfig.port);
|
||||||
|
if (mainStore.serverConfig.relayAllPeerrpc) {
|
||||||
|
args.push("--relay-all-peer-rpc");
|
||||||
|
}
|
||||||
|
const whiteList = mainStore.serverConfig.serverWhiteList
|
||||||
|
.trim()
|
||||||
|
.split("\n")
|
||||||
|
.map(el => el.trim())
|
||||||
|
.filter(el => el)
|
||||||
|
.join(" ");
|
||||||
|
if (whiteList && mainStore.serverConfig.enableWhiteList) {
|
||||||
|
args.push("--relay-network-whitelist", whiteList);
|
||||||
|
}
|
||||||
|
if (!whiteList && mainStore.serverConfig.enableWhiteList) {
|
||||||
|
args.push("--relay-network-whitelist");
|
||||||
|
}
|
||||||
|
return args;
|
||||||
|
};
|
||||||
+16
-4
@@ -17,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);
|
||||||
@@ -28,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();
|
||||||
@@ -46,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),
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -54,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),
|
||||||
@@ -86,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",
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ export default async (
|
|||||||
defaultOpts.y = logicalPosition.y;
|
defaultOpts.y = logicalPosition.y;
|
||||||
}
|
}
|
||||||
dialog = new WebviewWindow(label, { ...defaultOpts, ...options });
|
dialog = new WebviewWindow(label, { ...defaultOpts, ...options });
|
||||||
unlistenLogCreated = await dialog.once("tauri://webview-created", async () => {
|
unlistenLogCreated = await dialog.listen("tauri://webview-created", async () => {
|
||||||
if (dialog) {
|
if (dialog) {
|
||||||
afterCreatedFunc && (await afterCreatedFunc(dialog, appWindow));
|
afterCreatedFunc && (await afterCreatedFunc(dialog, appWindow));
|
||||||
await dialog.show();
|
await dialog.show();
|
||||||
|
|||||||
Vendored
+1
@@ -1,4 +1,5 @@
|
|||||||
VITE_CONFIG_PATH=easytier/config/
|
VITE_CONFIG_PATH=easytier/config/
|
||||||
VITE_CONFIG_FILE_NAME=easytier/config.json
|
VITE_CONFIG_FILE_NAME=easytier/config.json
|
||||||
VITE_LOG_PATH=easytier/logs/
|
VITE_LOG_PATH=easytier/logs/
|
||||||
|
VITE_CACHE_PATH=easytier/cache/
|
||||||
VITE_AUTO_START_SERVICE_NAME=easytierGameAutoStart
|
VITE_AUTO_START_SERVICE_NAME=easytierGameAutoStart
|
||||||
Vendored
+1
@@ -1,4 +1,5 @@
|
|||||||
VITE_CONFIG_PATH=easytier/config/
|
VITE_CONFIG_PATH=easytier/config/
|
||||||
VITE_CONFIG_FILE_NAME=easytier/config.json
|
VITE_CONFIG_FILE_NAME=easytier/config.json
|
||||||
VITE_LOG_PATH=easytier/logs/
|
VITE_LOG_PATH=easytier/logs/
|
||||||
|
VITE_CACHE_PATH=easytier/cache/
|
||||||
VITE_AUTO_START_SERVICE_NAME=easytierGameAutoStart
|
VITE_AUTO_START_SERVICE_NAME=easytierGameAutoStart
|
||||||
+2
-1
@@ -5,7 +5,8 @@
|
|||||||
<script setup lang="tsx">
|
<script setup lang="tsx">
|
||||||
//屏蔽右键菜单
|
//屏蔽右键菜单
|
||||||
document.addEventListener("contextmenu", (e: MouseEvent) => {
|
document.addEventListener("contextmenu", (e: MouseEvent) => {
|
||||||
if (import.meta.env.PROD) {
|
const el = (e.target as HTMLElement);
|
||||||
|
if (import.meta.env.PROD && !el.classList.contains("el-input__inner") && !el.classList.contains("el-textarea__inner")) { // 所有输入框不禁用右键
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -9,6 +9,8 @@ export default defineNuxtConfig({
|
|||||||
port: 5000
|
port: 5000
|
||||||
},
|
},
|
||||||
|
|
||||||
|
telemetry: false,
|
||||||
|
|
||||||
imports: {
|
imports: {
|
||||||
autoImport: false
|
autoImport: false
|
||||||
},
|
},
|
||||||
|
|||||||
+7
-5
@@ -3,16 +3,17 @@
|
|||||||
"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.2.3",
|
"version": "1.2.8",
|
||||||
"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",
|
||||||
|
"release": "node zip.js"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@element-plus/icons-vue": "^2.3.1",
|
"@element-plus/icons-vue": "^2.3.1",
|
||||||
"@element-plus/nuxt": "^1.1.0",
|
"@element-plus/nuxt": "^1.1.0",
|
||||||
"@nuxtjs/tailwindcss": "^6.12.0",
|
"@nuxtjs/tailwindcss": "^6.12.0",
|
||||||
"@pinia/nuxt": "^0.7.0",
|
"@pinia/nuxt": "0.8.0",
|
||||||
"@tauri-apps/api": "^2.1.1",
|
"@tauri-apps/api": "^2.1.1",
|
||||||
"@tauri-apps/cli": "^2.1.0",
|
"@tauri-apps/cli": "^2.1.0",
|
||||||
"@tauri-apps/plugin-autostart": "~2",
|
"@tauri-apps/plugin-autostart": "~2",
|
||||||
@@ -25,11 +26,12 @@
|
|||||||
"@tauri-apps/plugin-window-state": "~2",
|
"@tauri-apps/plugin-window-state": "~2",
|
||||||
"@types/lodash-es": "^4.17.12",
|
"@types/lodash-es": "^4.17.12",
|
||||||
"@vitejs/plugin-vue-jsx": "^4.1.0",
|
"@vitejs/plugin-vue-jsx": "^4.1.0",
|
||||||
"@vueuse/core": "^11.2.0",
|
"@vueuse/core": "12.0.0",
|
||||||
|
"archiver": "^7.0.1",
|
||||||
"element-plus": "^2.8.7",
|
"element-plus": "^2.8.7",
|
||||||
"less": "^4.2.0",
|
"less": "^4.2.0",
|
||||||
"lodash-es": "^4.17.21",
|
"lodash-es": "^4.17.21",
|
||||||
"nuxt": "^3.13.2",
|
"nuxt": "^3.14.1592",
|
||||||
"pinia": "^2.2.6",
|
"pinia": "^2.2.6",
|
||||||
"pinia-plugin-persistedstate": "^4.1.3",
|
"pinia-plugin-persistedstate": "^4.1.3",
|
||||||
"postcss": "^8.4.38",
|
"postcss": "^8.4.38",
|
||||||
|
|||||||
+1
-1
@@ -77,7 +77,7 @@
|
|||||||
<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">禁用对等节点通信的加密,默认为启用,必须与对等节点相同</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.useSmoltcp">为子网代理启用smoltcp堆栈</ElCheckbox></div>
|
<div><ElCheckbox v-model="mainStore.config.useSmoltcp">为子网代理启用smoltcp堆栈</ElCheckbox></div>
|
||||||
|
|||||||
+326
-131
@@ -2,61 +2,51 @@
|
|||||||
<ElForm
|
<ElForm
|
||||||
size="small"
|
size="small"
|
||||||
label-position="top"
|
label-position="top"
|
||||||
:model="config">
|
:model="config"
|
||||||
<!-- element-loading-custom-class="config-start"
|
>
|
||||||
v-loading="mainStore.configStartEnable"
|
|
||||||
:element-loading-spinner="'<path />'"
|
|
||||||
element-loading-text="-------已经启用配置文件,界面配置不再生效-------" -->
|
|
||||||
<!-- <div> -->
|
|
||||||
<ElFormItem
|
<ElFormItem
|
||||||
label="服务器"
|
label="服务器"
|
||||||
prop="serverUrl"
|
prop="serverUrl"
|
||||||
class="full-label">
|
class="full-label"
|
||||||
|
>
|
||||||
<template #label>
|
<template #label>
|
||||||
<div class="flex items-center flex-nowrap gap-[0_5px]">
|
<div class="flex items-center flex-nowrap gap-[0_5px]">
|
||||||
<div>服务器</div>
|
<div>服务器</div>
|
||||||
<span>-</span>
|
<span>-</span>
|
||||||
<ElTag
|
<ElTag
|
||||||
effect="dark"
|
effect="dark"
|
||||||
:type="data.isSuccessGetIp ? 'success' : 'info'">
|
:type="data.isSuccessGetIp ? 'success' : 'info'"
|
||||||
|
>
|
||||||
{{ data.isSuccessGetIp ? "联机成功" : data.isStart && !data.isSuccessGetIp ? "联机中" : "未联机" }}
|
{{ data.isSuccessGetIp ? "联机成功" : data.isStart && !data.isSuccessGetIp ? "联机中" : "未联机" }}
|
||||||
</ElTag>
|
</ElTag>
|
||||||
<ElButton
|
<ElButton
|
||||||
v-if="!data.coreVersion"
|
v-if="!data.coreVersion"
|
||||||
@click="getCoreVersion(true)">
|
@click="getCoreVersion(true)"
|
||||||
|
>
|
||||||
获取内核版本
|
获取内核版本
|
||||||
</ElButton>
|
</ElButton>
|
||||||
<div
|
<div
|
||||||
v-else
|
v-else
|
||||||
class="flex-1 truncate">
|
class="flex-1 truncate"
|
||||||
|
>
|
||||||
<ElTooltip :content="data.coreVersion">
|
<ElTooltip :content="data.coreVersion">
|
||||||
<ElTag type="info">
|
<ElTag type="info">
|
||||||
{{ data.coreVersion }}
|
{{ data.coreVersion }}
|
||||||
</ElTag>
|
</ElTag>
|
||||||
</ElTooltip>
|
</ElTooltip>
|
||||||
</div>
|
</div>
|
||||||
|
<ElTooltip content="请先停止自建服务和联机后再使用,否则内核被占用的情况下,无法进行内核更换">
|
||||||
<!-- <ElPopconfirm
|
|
||||||
width="325"
|
|
||||||
cancel-button-text="取消"
|
|
||||||
confirm-button-text="继续"
|
|
||||||
title="内核从github下载,需要出国工具,可能下载缓慢或失败,是否继续?
|
|
||||||
也可以从官方群里手动下载后解压到easytier-game.exe同级目录下的easytier目录里,全部覆盖即可"
|
|
||||||
@confirm="handleCoreManagement"
|
|
||||||
>
|
|
||||||
<template #reference> -->
|
|
||||||
<ElButton
|
<ElButton
|
||||||
class="ml-auto"
|
class="ml-auto"
|
||||||
:disabled="data.isStart"
|
:disabled="data.isStart || listenObj.server_thread_id.value"
|
||||||
@click="handleCoreManagement"
|
@click="handleCoreManagement"
|
||||||
:loading="data.update"
|
:loading="data.update"
|
||||||
type="primary"
|
type="primary"
|
||||||
size="small">
|
size="small"
|
||||||
|
>
|
||||||
内核管理
|
内核管理
|
||||||
<!-- {{ data.coreVersion ? "更新内核" : "下载内核" }} -->
|
|
||||||
</ElButton>
|
</ElButton>
|
||||||
<!-- </template>
|
</ElTooltip>
|
||||||
</ElPopconfirm> -->
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<ElSelect
|
<ElSelect
|
||||||
@@ -65,7 +55,8 @@
|
|||||||
placeholder="请选择服务器地址"
|
placeholder="请选择服务器地址"
|
||||||
default-first-option
|
default-first-option
|
||||||
v-model="config.serverUrl"
|
v-model="config.serverUrl"
|
||||||
@change="handleServerUrlChange">
|
@change="handleServerUrlChange"
|
||||||
|
>
|
||||||
<template #prefix>
|
<template #prefix>
|
||||||
<div :class="config.protocol && config.protocol.length > 1 ? 'w-[120px]' : 'w-[80px]'">
|
<div :class="config.protocol && config.protocol.length > 1 ? 'w-[120px]' : 'w-[80px]'">
|
||||||
<ElSelect
|
<ElSelect
|
||||||
@@ -74,12 +65,14 @@
|
|||||||
collapse-tags
|
collapse-tags
|
||||||
@click.stop
|
@click.stop
|
||||||
v-model="config.protocol"
|
v-model="config.protocol"
|
||||||
@change="handleServerUrlChange">
|
@change="handleServerUrlChange"
|
||||||
|
>
|
||||||
<ElOption
|
<ElOption
|
||||||
v-for="item in protocols"
|
v-for="item in protocols"
|
||||||
:key="item"
|
:key="item"
|
||||||
:label="item"
|
:label="item"
|
||||||
:value="item"></ElOption>
|
:value="item"
|
||||||
|
></ElOption>
|
||||||
</ElSelect>
|
</ElSelect>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@@ -87,7 +80,8 @@
|
|||||||
v-for="item in mainStore.basePeers"
|
v-for="item in mainStore.basePeers"
|
||||||
:key="item"
|
:key="item"
|
||||||
:label="item"
|
:label="item"
|
||||||
:value="item">
|
:value="item"
|
||||||
|
>
|
||||||
<div class="flex items-center gap-[20px] overflow-hidden flex-nowrap max-w-[calc(100vw-62px)]">
|
<div class="flex items-center gap-[20px] overflow-hidden flex-nowrap max-w-[calc(100vw-62px)]">
|
||||||
<ElTooltip :content="item">
|
<ElTooltip :content="item">
|
||||||
<p class="truncate">{{ item }}</p>
|
<p class="truncate">{{ item }}</p>
|
||||||
@@ -97,7 +91,8 @@
|
|||||||
@click.stop="handleDeleteServerUrl(item)"
|
@click.stop="handleDeleteServerUrl(item)"
|
||||||
round
|
round
|
||||||
:icon="Delete"
|
:icon="Delete"
|
||||||
type="danger"></ElButton>
|
type="danger"
|
||||||
|
></ElButton>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</ElOption>
|
</ElOption>
|
||||||
@@ -117,7 +112,8 @@
|
|||||||
<ElInput
|
<ElInput
|
||||||
maxlength="100"
|
maxlength="100"
|
||||||
placeholder="请输入网络名"
|
placeholder="请输入网络名"
|
||||||
v-model="config.networkName"></ElInput>
|
v-model="config.networkName"
|
||||||
|
></ElInput>
|
||||||
</ElFormItem>
|
</ElFormItem>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex-1">
|
<div class="flex-1">
|
||||||
@@ -135,7 +131,8 @@
|
|||||||
maxlength="100"
|
maxlength="100"
|
||||||
placeholder="请输入网络密码"
|
placeholder="请输入网络密码"
|
||||||
v-model="config.networkPassword"
|
v-model="config.networkPassword"
|
||||||
type="password"></ElInput>
|
type="password"
|
||||||
|
></ElInput>
|
||||||
</ElFormItem>
|
</ElFormItem>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -152,11 +149,13 @@
|
|||||||
<ElInput
|
<ElInput
|
||||||
maxlength="100"
|
maxlength="100"
|
||||||
placeholder="例如: Player1"
|
placeholder="例如: Player1"
|
||||||
v-model="config.hostname"></ElInput>
|
v-model="config.hostname"
|
||||||
|
></ElInput>
|
||||||
</ElFormItem>
|
</ElFormItem>
|
||||||
<ElFormItem
|
<ElFormItem
|
||||||
class="w-[70%]"
|
class="w-[70%]"
|
||||||
label="局域网IP">
|
label="局域网IP"
|
||||||
|
>
|
||||||
<template #label>
|
<template #label>
|
||||||
<div class="flex items-center h-[20px]">
|
<div class="flex items-center h-[20px]">
|
||||||
虚拟网IP
|
虚拟网IP
|
||||||
@@ -169,18 +168,20 @@
|
|||||||
inline-prompt
|
inline-prompt
|
||||||
inactive-text="固定IP"
|
inactive-text="固定IP"
|
||||||
active-text="动态获取IP"
|
active-text="动态获取IP"
|
||||||
size="small"></ElSwitch>
|
size="small"
|
||||||
|
></ElSwitch>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<ElInput
|
<ElInput
|
||||||
maxlength="100"
|
maxlength="100"
|
||||||
:disabled="config.dhcp"
|
:disabled="config.dhcp"
|
||||||
:placeholder="data.isStart && config.dhcp ? '等待动态分配IP...' : '例如: 10.126.126.1'"
|
:placeholder="data.isStart && config.dhcp ? '等待动态分配IP...' : '例如: 10.126.126.1'"
|
||||||
v-model="config.ipv4"></ElInput>
|
v-model="config.ipv4"
|
||||||
|
></ElInput>
|
||||||
</ElFormItem>
|
</ElFormItem>
|
||||||
</div>
|
</div>
|
||||||
<!-- </div> -->
|
</ElForm>
|
||||||
<div class="flex items-start">
|
<div class="flex items-start mt-auto">
|
||||||
<div>
|
<div>
|
||||||
<div>
|
<div>
|
||||||
<ElDropdown
|
<ElDropdown
|
||||||
@@ -190,24 +191,37 @@
|
|||||||
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"
|
||||||
@click="handleConnection">
|
@click="handleConnection"
|
||||||
|
>
|
||||||
{{ !data.isStart ? "启动联机" : "停止联机" }}
|
{{ !data.isStart ? "启动联机" : "停止联机" }}
|
||||||
<template #dropdown>
|
<template #dropdown>
|
||||||
<ElDropdownMenu>
|
<ElDropdownMenu>
|
||||||
<ElDropdownItem
|
<ElDropdownItem
|
||||||
command="import_config"
|
command="import_config"
|
||||||
:icon="Link">
|
:icon="Link"
|
||||||
|
>
|
||||||
导入配置
|
导入配置
|
||||||
</ElDropdownItem>
|
</ElDropdownItem>
|
||||||
<ElDropdownItem
|
<ElDropdownItem
|
||||||
command="share_config"
|
command="share_config"
|
||||||
:icon="Share">
|
:icon="Share"
|
||||||
分享配置
|
>
|
||||||
|
分享联机相关配置
|
||||||
|
</ElDropdownItem>
|
||||||
|
<ElDropdownItem disabled>
|
||||||
|
<ElDivider class="!h-[2px] !m-0" />
|
||||||
|
</ElDropdownItem>
|
||||||
|
<ElDropdownItem
|
||||||
|
:icon="SetUp"
|
||||||
|
command="create_server"
|
||||||
|
>
|
||||||
|
自建服务器<ElTag size="small" class="ml-[5px]" :type="listenObj.server_thread_id.value ? 'success' : 'info'">{{ listenObj.server_thread_id.value ? "运行中" : "未运行" }}</ElTag>
|
||||||
</ElDropdownItem>
|
</ElDropdownItem>
|
||||||
<ElDropdownItem
|
<ElDropdownItem
|
||||||
:icon="Tools"
|
:icon="Tools"
|
||||||
command="toml"
|
command="toml"
|
||||||
:disabled="data.isStart">
|
:disabled="data.isStart"
|
||||||
|
>
|
||||||
使用外部配置文件
|
使用外部配置文件
|
||||||
</ElDropdownItem>
|
</ElDropdownItem>
|
||||||
</ElDropdownMenu>
|
</ElDropdownMenu>
|
||||||
@@ -217,51 +231,62 @@
|
|||||||
<div class="mt-[6px] pl-[2px]">
|
<div class="mt-[6px] pl-[2px]">
|
||||||
<ElTooltip
|
<ElTooltip
|
||||||
placement="left"
|
placement="left"
|
||||||
content="日志">
|
content="日志"
|
||||||
|
>
|
||||||
<ElButton
|
<ElButton
|
||||||
:type="!data.logVisible ? 'info' : 'warning'"
|
:type="!data.logVisible ? 'info' : 'warning'"
|
||||||
@click="handleShowLogDialog"
|
@click="handleShowLogDialog"
|
||||||
:icon="List"
|
:icon="List"
|
||||||
size="small"
|
size="small"
|
||||||
plain></ElButton>
|
plain
|
||||||
|
></ElButton>
|
||||||
</ElTooltip>
|
</ElTooltip>
|
||||||
<ElTooltip
|
<ElTooltip
|
||||||
placement="left"
|
placement="left"
|
||||||
content="成员">
|
content="成员"
|
||||||
|
>
|
||||||
<ElButton
|
<ElButton
|
||||||
@click="handleShowMemberDialog"
|
@click="handleShowMemberDialog"
|
||||||
:icon="UserFilled"
|
:icon="UserFilled"
|
||||||
plain
|
plain
|
||||||
type="success"
|
type="success"
|
||||||
size="small"></ElButton>
|
size="small"
|
||||||
|
></ElButton>
|
||||||
</ElTooltip>
|
</ElTooltip>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="ml-auto">
|
<div class="ml-auto">
|
||||||
<ElCheckbox
|
<ElCheckbox
|
||||||
v-model="config.disbleP2p"
|
v-model="config.disbleP2p"
|
||||||
size="small">
|
size="small"
|
||||||
|
>
|
||||||
强制中转
|
强制中转
|
||||||
</ElCheckbox>
|
</ElCheckbox>
|
||||||
<ElTooltip
|
<ElTooltip
|
||||||
placement="top-start"
|
placement="top-start"
|
||||||
content="自启后隐藏于托盘,不显示界面">
|
content="自启后隐藏于托盘,不显示界面"
|
||||||
|
>
|
||||||
<ElCheckbox
|
<ElCheckbox
|
||||||
@change="handleAutoStartByTask"
|
@change="handleAutoStartByTask"
|
||||||
:model-value="config.autoStart"
|
:model-value="config.autoStart"
|
||||||
size="small">
|
size="small"
|
||||||
|
>
|
||||||
开机自启
|
开机自启
|
||||||
</ElCheckbox>
|
</ElCheckbox>
|
||||||
</ElTooltip>
|
</ElTooltip>
|
||||||
<div>
|
<div>
|
||||||
<ElButton
|
<ElButton
|
||||||
@click="handleShowCidrDialog"
|
@click="handleShowCidrDialog"
|
||||||
:icon="Share">
|
:icon="Share"
|
||||||
|
size="small"
|
||||||
|
>
|
||||||
子网代理
|
子网代理
|
||||||
</ElButton>
|
</ElButton>
|
||||||
<ElButton
|
<ElButton
|
||||||
@click="handleShowAdvanceDialog"
|
@click="handleShowAdvanceDialog"
|
||||||
:icon="Setting">
|
:icon="Setting"
|
||||||
|
size="small"
|
||||||
|
>
|
||||||
高级选项
|
高级选项
|
||||||
</ElButton>
|
</ElButton>
|
||||||
</div>
|
</div>
|
||||||
@@ -272,7 +297,8 @@
|
|||||||
type="primary"
|
type="primary"
|
||||||
size="small"
|
size="small"
|
||||||
:icon="MagicStick"
|
:icon="MagicStick"
|
||||||
@click="handleShowToolDialog">
|
@click="handleShowToolDialog"
|
||||||
|
>
|
||||||
增强工具
|
增强工具
|
||||||
</ElButton>
|
</ElButton>
|
||||||
</div>
|
</div>
|
||||||
@@ -280,13 +306,13 @@
|
|||||||
class="!text-[9px] pb-[2px] ml-[8px] truncate"
|
class="!text-[9px] pb-[2px] ml-[8px] truncate"
|
||||||
type="info"
|
type="info"
|
||||||
:underline="false"
|
:underline="false"
|
||||||
@click="open('https://github.com/EasyTier/EasytierGame')">
|
@click="open('https://github.com/EasyTier/EasytierGame')"
|
||||||
|
>
|
||||||
EasytierGame主页
|
EasytierGame主页
|
||||||
</ElLink>
|
</ElLink>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</ElForm>
|
|
||||||
<ElDialog
|
<ElDialog
|
||||||
width="95%"
|
width="95%"
|
||||||
top="10px"
|
top="10px"
|
||||||
@@ -295,7 +321,8 @@
|
|||||||
class="!mb-0"
|
class="!mb-0"
|
||||||
v-model="coreManagementData.visible"
|
v-model="coreManagementData.visible"
|
||||||
:close-on-press-escape="false"
|
:close-on-press-escape="false"
|
||||||
title="内核管理">
|
title="内核管理"
|
||||||
|
>
|
||||||
<div>
|
<div>
|
||||||
<ElText>当前版本: {{ data.coreVersion || "-" }}</ElText>
|
<ElText>当前版本: {{ data.coreVersion || "-" }}</ElText>
|
||||||
</div>
|
</div>
|
||||||
@@ -305,19 +332,25 @@
|
|||||||
:loading="coreManagementData.loading"
|
:loading="coreManagementData.loading"
|
||||||
@click="getReleaseList"
|
@click="getReleaseList"
|
||||||
size="small"
|
size="small"
|
||||||
>刷新</ElButton
|
|
||||||
>
|
>
|
||||||
|
刷新
|
||||||
|
</ElButton>
|
||||||
|
<ElTooltip content="打开内核缓存目录">
|
||||||
|
<ElButton :icon="Folder" size="small" @click="handleOpenCache"></ElButton>
|
||||||
|
</ElTooltip>
|
||||||
</div>
|
</div>
|
||||||
<ElSelect
|
<ElSelect
|
||||||
placeholder="请选择内核版本"
|
placeholder="请选择内核版本"
|
||||||
no-data-text="正在获取中..."
|
no-data-text="正在获取中..."
|
||||||
popper-class="!h-[120px]"
|
popper-class="!h-[120px]"
|
||||||
v-model="coreManagementData.data">
|
v-model="coreManagementData.data"
|
||||||
|
>
|
||||||
<ElOption
|
<ElOption
|
||||||
v-for="(release, idx) in data.releaseList"
|
v-for="(release, idx) in data.releaseList"
|
||||||
:key="`${idx}-ray`"
|
:key="`${idx}-ray`"
|
||||||
:label="release[0]"
|
:label="release[0]"
|
||||||
:value="`${release[2]}<>${release[1]}`">
|
:value="`${release[2]}<>${release[1]}`"
|
||||||
|
>
|
||||||
{{ release ? release[0] : "" }}
|
{{ release ? release[0] : "" }}
|
||||||
</ElOption>
|
</ElOption>
|
||||||
</ElSelect>
|
</ElSelect>
|
||||||
@@ -328,25 +361,29 @@
|
|||||||
</div>
|
</div>
|
||||||
<ElInput
|
<ElInput
|
||||||
v-model="mainStore.githubFastUrl"
|
v-model="mainStore.githubFastUrl"
|
||||||
placeholder="请输入github加速地址"></ElInput>
|
placeholder="请输入github加速地址"
|
||||||
|
></ElInput>
|
||||||
<template #footer>
|
<template #footer>
|
||||||
<div class="text-right">
|
<div class="text-right">
|
||||||
<ElButton
|
<ElButton
|
||||||
size="small"
|
size="small"
|
||||||
:loading="data.update"
|
:loading="data.update"
|
||||||
@click="handleInstallCore"
|
@click="handleInstallCore"
|
||||||
type="primary">
|
type="primary"
|
||||||
|
>
|
||||||
安装选中内核
|
安装选中内核
|
||||||
</ElButton>
|
</ElButton>
|
||||||
<ElButton
|
<ElButton
|
||||||
size="small"
|
size="small"
|
||||||
type="warning"
|
type="warning"
|
||||||
@click="addQQGroup"
|
@click="addQQGroup"
|
||||||
>加群获取</ElButton
|
|
||||||
>
|
>
|
||||||
|
加群获取
|
||||||
|
</ElButton>
|
||||||
<ElButton
|
<ElButton
|
||||||
size="small"
|
size="small"
|
||||||
@click="coreManagementData.visible = false">
|
@click="coreManagementData.visible = false"
|
||||||
|
>
|
||||||
取消
|
取消
|
||||||
</ElButton>
|
</ElButton>
|
||||||
</div>
|
</div>
|
||||||
@@ -360,12 +397,14 @@
|
|||||||
class="!mb-0"
|
class="!mb-0"
|
||||||
v-model="importConfigData.visible"
|
v-model="importConfigData.visible"
|
||||||
:close-on-press-escape="false"
|
:close-on-press-escape="false"
|
||||||
title="导入分享">
|
title="导入分享"
|
||||||
|
>
|
||||||
<ElInput
|
<ElInput
|
||||||
type="textarea"
|
type="textarea"
|
||||||
:rows="6"
|
:rows="6"
|
||||||
placeholder="请粘贴分享的配置"
|
placeholder="请粘贴分享的配置"
|
||||||
v-model="importConfigData.data"></ElInput>
|
v-model="importConfigData.data"
|
||||||
|
></ElInput>
|
||||||
<template #footer>
|
<template #footer>
|
||||||
<div>
|
<div>
|
||||||
<el-text type="danger">导入成功后,您当前的部分配置将被替换</el-text>
|
<el-text type="danger">导入成功后,您当前的部分配置将被替换</el-text>
|
||||||
@@ -374,7 +413,8 @@
|
|||||||
<ElButton
|
<ElButton
|
||||||
size="small"
|
size="small"
|
||||||
@click="handleStartImport"
|
@click="handleStartImport"
|
||||||
type="primary">
|
type="primary"
|
||||||
|
>
|
||||||
导入
|
导入
|
||||||
</ElButton>
|
</ElButton>
|
||||||
</div>
|
</div>
|
||||||
@@ -388,7 +428,8 @@
|
|||||||
class="!mb-0"
|
class="!mb-0"
|
||||||
v-model="configStart.visible"
|
v-model="configStart.visible"
|
||||||
:close-on-press-escape="false"
|
:close-on-press-escape="false"
|
||||||
title="配置文件启动">
|
title="配置文件启动"
|
||||||
|
>
|
||||||
<div class="flex items-center gap-[0_4px]">
|
<div class="flex items-center gap-[0_4px]">
|
||||||
<span>启用</span>
|
<span>启用</span>
|
||||||
<ElSwitch v-model="mainStore.configStartEnable"></ElSwitch>
|
<ElSwitch v-model="mainStore.configStartEnable"></ElSwitch>
|
||||||
@@ -397,14 +438,16 @@
|
|||||||
</ElTooltip>
|
</ElTooltip>
|
||||||
<ElButton
|
<ElButton
|
||||||
@click="openConfigDir"
|
@click="openConfigDir"
|
||||||
size="small">
|
size="small"
|
||||||
|
>
|
||||||
打开配置目录
|
打开配置目录
|
||||||
</ElButton>
|
</ElButton>
|
||||||
<ElButton
|
<ElButton
|
||||||
@click="handleStartCommand('toml')"
|
@click="handleStartCommand('toml')"
|
||||||
type="primary"
|
type="primary"
|
||||||
:icon="RefreshRight"
|
:icon="RefreshRight"
|
||||||
size="small">
|
size="small"
|
||||||
|
>
|
||||||
刷新
|
刷新
|
||||||
</ElButton>
|
</ElButton>
|
||||||
</div>
|
</div>
|
||||||
@@ -412,12 +455,14 @@
|
|||||||
<ElSelect
|
<ElSelect
|
||||||
v-model="mainStore.configPath"
|
v-model="mainStore.configPath"
|
||||||
no-data-text="目录没有配置文件"
|
no-data-text="目录没有配置文件"
|
||||||
placeholder="选择配置文件">
|
placeholder="选择配置文件"
|
||||||
|
>
|
||||||
<ElOption
|
<ElOption
|
||||||
v-for="item in configStart.list"
|
v-for="item in configStart.list"
|
||||||
:key="item.path"
|
:key="item.path"
|
||||||
:value="item.path"
|
:value="item.path"
|
||||||
:label="item.name"></ElOption>
|
:label="item.name"
|
||||||
|
></ElOption>
|
||||||
</ElSelect>
|
</ElSelect>
|
||||||
</div>
|
</div>
|
||||||
<template #footer>
|
<template #footer>
|
||||||
@@ -425,7 +470,8 @@
|
|||||||
<ElButton
|
<ElButton
|
||||||
size="small"
|
size="small"
|
||||||
@click="configStart.visible = false"
|
@click="configStart.visible = false"
|
||||||
type="danger">
|
type="danger"
|
||||||
|
>
|
||||||
关闭
|
关闭
|
||||||
</ElButton>
|
</ElButton>
|
||||||
</div>
|
</div>
|
||||||
@@ -436,8 +482,8 @@
|
|||||||
import { invoke } from "@tauri-apps/api/core";
|
import { invoke } from "@tauri-apps/api/core";
|
||||||
import { listen } from "@tauri-apps/api/event";
|
import { listen } from "@tauri-apps/api/event";
|
||||||
import { open, Command } from "@tauri-apps/plugin-shell";
|
import { open, Command } from "@tauri-apps/plugin-shell";
|
||||||
import { QuestionFilled, Delete, List, UserFilled, Setting, Share, RefreshRight, Link, Tools, MagicStick } from "@element-plus/icons-vue";
|
import { QuestionFilled, Delete, List, UserFilled, Setting, Share, RefreshRight, Link, Tools, MagicStick, SetUp, Folder } from "@element-plus/icons-vue";
|
||||||
import { reactive, onBeforeUnmount, onMounted } from "vue";
|
import { reactive, onBeforeUnmount, onMounted, ref } from "vue";
|
||||||
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";
|
||||||
@@ -452,28 +498,40 @@
|
|||||||
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 { sortedUniq, uniq } from "lodash-es";
|
||||||
import { bounce, addQQGroup } from "~/utils";
|
import { bounce, addQQGroup } from "~/utils";
|
||||||
|
import { ElConfirmDanger, ElConfirmPrimary } from "~/utils/element";
|
||||||
|
import { getServerArgs } from "@/composables/server";
|
||||||
|
|
||||||
let is_close = false;
|
let is_close = false;
|
||||||
|
|
||||||
const tray = await useTray(true, async () => {
|
const tray = await useTray(
|
||||||
|
true,
|
||||||
|
async () => {
|
||||||
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 });
|
||||||
});
|
await invoke("stop_command", { child_id: listenObj.server_thread_id.value || 0 });
|
||||||
|
},
|
||||||
|
async () => {
|
||||||
|
await handleConnection();
|
||||||
|
return data.isStart;
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
const mainStore = useMainStore();
|
const mainStore = useMainStore();
|
||||||
const config = mainStore.config;
|
const config = mainStore.config;
|
||||||
// console.error(config);
|
// console.error(config);
|
||||||
const protocols = ["tcp", "udp", "ws", "wss", "wg", "quic"];
|
const protocols = ["tcp", "udp", "ws", "wss", "quic"];
|
||||||
const data = reactive<{ [key: string]: any; releaseList: Array<Array<string>> }>({
|
const data = reactive<{ [key: string]: any; releaseList: Array<Array<string>> }>({
|
||||||
logVisible: false,
|
logVisible: false,
|
||||||
cidrVisible: false,
|
cidrVisible: false,
|
||||||
advanceVisible: false,
|
advanceVisible: false,
|
||||||
toolVisible: false,
|
toolVisible: false,
|
||||||
|
serverVisible: false,
|
||||||
winipBcPid: 0, //WinIPBroadcast进程id
|
winipBcPid: 0, //WinIPBroadcast进程id
|
||||||
winipBcStart: false,
|
winipBcStart: false,
|
||||||
memberVisible: false,
|
memberVisible: false,
|
||||||
log: "",
|
log: "",
|
||||||
|
serverLog: "", //服务端日志
|
||||||
update: false,
|
update: false,
|
||||||
releaseList: [],
|
releaseList: [],
|
||||||
coreVersion: "-",
|
coreVersion: "-",
|
||||||
@@ -481,31 +539,31 @@
|
|||||||
startLoading: false,
|
startLoading: false,
|
||||||
isStart: false,
|
isStart: false,
|
||||||
connectionSuccess: false,
|
connectionSuccess: false,
|
||||||
configJsonSeverUrl: "", // 本地保存一次,用于回填config.json
|
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 }>({
|
||||||
visible: false,
|
visible: false,
|
||||||
loading: false,
|
loading: false,
|
||||||
list: [], //配置文件列表
|
list: [] //配置文件列表
|
||||||
});
|
});
|
||||||
|
|
||||||
const importConfigData = reactive<{ data: ""; [key: string]: any }>({
|
const importConfigData = reactive<{ data: ""; [key: string]: any }>({
|
||||||
visible: false,
|
visible: false,
|
||||||
loading: false,
|
loading: false,
|
||||||
data: "",
|
data: ""
|
||||||
});
|
});
|
||||||
|
|
||||||
const coreManagementData = reactive<{ data: ""; [key: string]: any }>({
|
const coreManagementData = reactive<{ data: ""; [key: string]: any }>({
|
||||||
visible: false,
|
visible: false,
|
||||||
loading: false,
|
loading: false,
|
||||||
data: "",
|
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.error(appWindow.label);
|
// console.error(appWindow.label);
|
||||||
if (!is_close) {
|
if (!is_close) {
|
||||||
// console.error(1);
|
// console.error(1);
|
||||||
@@ -516,6 +574,20 @@
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const handleOpenCache = async () => {
|
||||||
|
const cache_path = import.meta.env.VITE_CACHE_PATH;
|
||||||
|
const resourceDir = await getResourceDir();
|
||||||
|
const configPath = await join(resourceDir, cache_path);
|
||||||
|
const isExists = await exists(cache_path, { baseDir: BaseDirectory.Resource });
|
||||||
|
if (!isExists) {
|
||||||
|
try {
|
||||||
|
await mkdir(cache_path, { baseDir: BaseDirectory.Resource });
|
||||||
|
} catch (err) {}
|
||||||
|
}
|
||||||
|
// console.error(configPath);
|
||||||
|
await Command.create("explorer", [configPath]).execute();
|
||||||
|
}
|
||||||
|
|
||||||
const handleDeleteServerUrl = (url: string) => {
|
const handleDeleteServerUrl = (url: string) => {
|
||||||
const newBasePeers = [...mainStore.basePeers];
|
const newBasePeers = [...mainStore.basePeers];
|
||||||
const idx = newBasePeers.indexOf(url);
|
const idx = newBasePeers.indexOf(url);
|
||||||
@@ -549,31 +621,33 @@
|
|||||||
const listenObj: { [key: string]: any } = {
|
const listenObj: { [key: string]: any } = {
|
||||||
unListenOutPut: null,
|
unListenOutPut: null,
|
||||||
unListenThreadId: null,
|
unListenThreadId: null,
|
||||||
|
unListenServerOutPut: null,
|
||||||
|
unListenServerThreadId: null,
|
||||||
unListenConfigStart: null,
|
unListenConfigStart: null,
|
||||||
|
unListenStartStopServer: null,
|
||||||
thread_id: null,
|
thread_id: null,
|
||||||
|
server_thread_id: ref(null),
|
||||||
async listenOutput() {
|
async listenOutput() {
|
||||||
// const appWindow = getCurrentWindow();
|
// const appWindow = getCurrentWindow();
|
||||||
const unListen = await listen("command-output", async (event) => {
|
const unListen = await listen<string>("command-output", async event => {
|
||||||
data.isStart = true;
|
data.isStart = true;
|
||||||
// console.error(event.payload);
|
// 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];
|
let devName = /tun device ready. dev: (.*)/g.exec(event.payload as string)?.[1];
|
||||||
if (config.dhcp || mainStore.configStartEnable) {
|
if (event.payload.includes("peer connection removed")) {
|
||||||
|
data.isSuccessGetIp = false;
|
||||||
|
}
|
||||||
|
if (event.payload.includes("new peer connection added") && !data.isSuccessGetIp) {
|
||||||
|
await setTrayRunState(tray, true);
|
||||||
|
data.isSuccessGetIp = true;
|
||||||
|
await setTrayTooltip(tray, `IP: ${mainStore.config.ipv4}`);
|
||||||
|
}
|
||||||
if (ipv4) {
|
if (ipv4) {
|
||||||
config.ipv4 = ipv4;
|
mainStore.config.ipv4 = ipv4;
|
||||||
await setTrayRunState(tray, true);
|
|
||||||
data.isSuccessGetIp = true;
|
|
||||||
await setTrayTooltip(tray, `IP: ${ipv4}`);
|
await setTrayTooltip(tray, `IP: ${ipv4}`);
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
if ((event.payload as string).includes("new peer connection added") && !data.isSuccessGetIp) {
|
|
||||||
await setTrayRunState(tray, true);
|
|
||||||
data.isSuccessGetIp = true;
|
|
||||||
await setTrayTooltip(tray, `IP: ${config.ipv4}`);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (
|
if (
|
||||||
devName &&
|
devName &&
|
||||||
mainStore.config.enableNetCardMetric &&
|
mainStore.config.enableNetCardMetric &&
|
||||||
@@ -586,7 +660,7 @@
|
|||||||
"netsh",
|
"netsh",
|
||||||
["interface", "ipv4", "set", "interface", devName, "metric=", `${mainStore.config.netCardMetricValue}`],
|
["interface", "ipv4", "set", "interface", devName, "metric=", `${mainStore.config.netCardMetricValue}`],
|
||||||
{
|
{
|
||||||
encoding: "gb2312",
|
encoding: "gb2312"
|
||||||
}
|
}
|
||||||
).execute();
|
).execute();
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
@@ -603,15 +677,33 @@
|
|||||||
this.unListenOutPut = unListen;
|
this.unListenOutPut = unListen;
|
||||||
},
|
},
|
||||||
async listenThreadId() {
|
async listenThreadId() {
|
||||||
const unListen = await listen("thread-id", (event) => {
|
const unListen = await listen("thread-id", event => {
|
||||||
if (event.payload) {
|
if (event.payload) {
|
||||||
this.thread_id = event.payload;
|
this.thread_id = event.payload;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
this.unListenThreadId = unListen;
|
this.unListenThreadId = unListen;
|
||||||
},
|
},
|
||||||
|
async listenServerOutPut() {
|
||||||
|
const unListen = await listen<string>("server-command-output", async event => {
|
||||||
|
// console.log("server-command-output", event);
|
||||||
|
const logArr = data.serverLog.split("\n");
|
||||||
|
const start = logArr.length > 1000 ? logArr.length - 1000 : 0;
|
||||||
|
data.serverLog = logArr.slice(start).join("\n");
|
||||||
|
data.serverLog += (event.payload || "") + "\n";
|
||||||
|
});
|
||||||
|
this.unListenServerOutPut = unListen;
|
||||||
|
},
|
||||||
|
async listenServerThreadId() {
|
||||||
|
const unListen = await listen("server-thread-id", event => {
|
||||||
|
if (event.payload) {
|
||||||
|
this.server_thread_id.value = event.payload;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
this.unListenServerThreadId = unListen;
|
||||||
|
},
|
||||||
async listenConfigStart() {
|
async listenConfigStart() {
|
||||||
const unListen = await listen("config", (event) => {
|
const unListen = await listen("config", event => {
|
||||||
// console.error("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);
|
||||||
@@ -619,6 +711,23 @@
|
|||||||
});
|
});
|
||||||
this.unListenConfigStart = unListen;
|
this.unListenConfigStart = unListen;
|
||||||
},
|
},
|
||||||
|
async listenStartStopServer() {
|
||||||
|
const unListen = await listen<{ args: Array<string> }>("startStopServer", async event => {
|
||||||
|
await listenObj?.unListenServerOutPut?.();
|
||||||
|
await invoke("stop_command", { child_id: listenObj.server_thread_id.value || 0 });
|
||||||
|
if (listenObj.server_thread_id.value) {
|
||||||
|
listenObj.server_thread_id.value = null;
|
||||||
|
} else {
|
||||||
|
data.serverLog = "";
|
||||||
|
await listenObj.listenServerOutPut();
|
||||||
|
await invoke("run_command", {
|
||||||
|
args: event.payload.args,
|
||||||
|
is_server: true
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
this.unListenStartStopServer = unListen;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const unListenAll = async () => {
|
const unListenAll = async () => {
|
||||||
@@ -695,10 +804,10 @@
|
|||||||
coreManagementData.loading = true;
|
coreManagementData.loading = true;
|
||||||
const list = await invoke<string[][][]>("fetch_easytier_list");
|
const list = await invoke<string[][][]>("fetch_easytier_list");
|
||||||
data.releaseList = [
|
data.releaseList = [
|
||||||
...list.flat().filter((el) => {
|
...list.flat().filter(el => {
|
||||||
// console.log(el, el[0], el[2]);
|
// console.log(el, el[0], el[2]);
|
||||||
return el && el[0] && el[2] && !el[2].includes("gui");
|
return el && el[0] && el[2] && !el[2].includes("gui");
|
||||||
}),
|
})
|
||||||
];
|
];
|
||||||
coreManagementData.loading = false;
|
coreManagementData.loading = false;
|
||||||
// console.log(data.releaseList);
|
// console.log(data.releaseList);
|
||||||
@@ -804,8 +913,8 @@
|
|||||||
config: {
|
config: {
|
||||||
...mainStore.config,
|
...mainStore.config,
|
||||||
...guiJson,
|
...guiJson,
|
||||||
serverUrl: saveServerUrl,
|
serverUrl: saveServerUrl
|
||||||
},
|
}
|
||||||
});
|
});
|
||||||
if (mainStore.createConfigInEasytier) {
|
if (mainStore.createConfigInEasytier) {
|
||||||
await updateConfigJson(data.configJsonSeverUrl);
|
await updateConfigJson(data.configJsonSeverUrl);
|
||||||
@@ -815,7 +924,7 @@
|
|||||||
ElMessage.error(`config.json格式错误`);
|
ElMessage.error(`config.json格式错误`);
|
||||||
} finally {
|
} finally {
|
||||||
mainStore.$patch({
|
mainStore.$patch({
|
||||||
createConfigInEasytier: true, // 发现本地存在config.json 默认启用该功能
|
createConfigInEasytier: true // 发现本地存在config.json 默认启用该功能
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -830,18 +939,35 @@
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const initAutoStartServer = async () => {
|
||||||
|
if (mainStore.serverConfig.autoStart && data.coreVersion) {
|
||||||
|
const args = getServerArgs();
|
||||||
|
await listenObj?.unListenServerOutPut?.();
|
||||||
|
await invoke("stop_command", { child_id: listenObj.server_thread_id.value || 0 });
|
||||||
|
data.serverLog = "";
|
||||||
|
await listenObj.listenServerOutPut();
|
||||||
|
await invoke("run_command", {
|
||||||
|
args,
|
||||||
|
is_server: true
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
let logsTimer: NodeJS.Timeout | null = null;
|
let logsTimer: NodeJS.Timeout | null = null;
|
||||||
|
let serverLogsTimer: NodeJS.Timeout | null = null;
|
||||||
|
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
// await handleUpdateCore(); //默认不自动更新
|
|
||||||
await initGuiJson();
|
await initGuiJson();
|
||||||
await compatibleInitAutoStart();
|
await compatibleInitAutoStart();
|
||||||
// await initAutoStart();
|
// await initAutoStart();
|
||||||
await initStartWinIpBroadcast();
|
await initStartWinIpBroadcast();
|
||||||
await getCoreVersion();
|
await getCoreVersion();
|
||||||
await listenObj.listenThreadId();
|
await listenObj.listenThreadId();
|
||||||
|
await listenObj.listenServerThreadId();
|
||||||
await listenObj.listenConfigStart();
|
await listenObj.listenConfigStart();
|
||||||
|
await listenObj.listenStartStopServer();
|
||||||
await initConfigDir();
|
await initConfigDir();
|
||||||
|
await initAutoStartServer();
|
||||||
await initConnectAfterStart();
|
await initConnectAfterStart();
|
||||||
closePrevent();
|
closePrevent();
|
||||||
});
|
});
|
||||||
@@ -850,20 +976,41 @@
|
|||||||
unListenAll();
|
unListenAll();
|
||||||
listenObj.unListenReleaseList && listenObj.unListenReleaseList();
|
listenObj.unListenReleaseList && listenObj.unListenReleaseList();
|
||||||
listenObj.unListenConfigStart && listenObj.unListenConfigStart();
|
listenObj.unListenConfigStart && listenObj.unListenConfigStart();
|
||||||
|
listenObj.unListenStartStopServer && listenObj.unListenStartStopServer();
|
||||||
logsTimer && clearInterval(logsTimer);
|
logsTimer && clearInterval(logsTimer);
|
||||||
|
serverLogsTimer && clearInterval(serverLogsTimer);
|
||||||
});
|
});
|
||||||
|
|
||||||
const getArgs = async () => {
|
const getArgs = async () => {
|
||||||
// console.error(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);
|
||||||
|
args.push("-c", configPath);
|
||||||
return args;
|
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");
|
||||||
}
|
}
|
||||||
@@ -881,7 +1028,7 @@
|
|||||||
}
|
}
|
||||||
if (config.serverUrl) {
|
if (config.serverUrl) {
|
||||||
const formatUrl = config.serverUrl.replace(/\\/g, "/");
|
const formatUrl = config.serverUrl.replace(/\\/g, "/");
|
||||||
args.push("--peers", ...config.protocol.map((protocol) => `${protocol}://${formatUrl}`));
|
args.push("--peers", ...config.protocol.map(protocol => `${protocol}://${formatUrl}`));
|
||||||
}
|
}
|
||||||
if (config.disbleP2p) {
|
if (config.disbleP2p) {
|
||||||
args.push("--disable-p2p");
|
args.push("--disable-p2p");
|
||||||
@@ -897,8 +1044,8 @@
|
|||||||
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")
|
||||||
.map((item) => item.trim())
|
.map(item => item.trim())
|
||||||
.filter((item) => item && reg.test(item));
|
.filter(item => item && reg.test(item));
|
||||||
args.push("--proxy-networks", ...formatProxyNetworks);
|
args.push("--proxy-networks", ...formatProxyNetworks);
|
||||||
config.proxyNetworks = formatProxyNetworks.join("\n");
|
config.proxyNetworks = formatProxyNetworks.join("\n");
|
||||||
}
|
}
|
||||||
@@ -942,7 +1089,7 @@
|
|||||||
config.ipv4 = "";
|
config.ipv4 = "";
|
||||||
}
|
}
|
||||||
const memberDialog = await getAllWebviewWindows();
|
const memberDialog = await getAllWebviewWindows();
|
||||||
const memberDialogs = memberDialog.filter((item) => item.label === "member");
|
const memberDialogs = memberDialog.filter(item => item.label === "member");
|
||||||
if (memberDialogs && memberDialogs.length > 0) {
|
if (memberDialogs && memberDialogs.length > 0) {
|
||||||
data.memberVisible = false;
|
data.memberVisible = false;
|
||||||
for (const memberDialog of memberDialogs) {
|
for (const memberDialog of memberDialogs) {
|
||||||
@@ -961,14 +1108,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 = ""; //清空日志
|
||||||
@@ -977,7 +1126,7 @@
|
|||||||
await listenObj.listenOutput();
|
await listenObj.listenOutput();
|
||||||
|
|
||||||
await invoke("run_command", {
|
await invoke("run_command", {
|
||||||
args,
|
args
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@@ -991,10 +1140,10 @@
|
|||||||
if (isExists) {
|
if (isExists) {
|
||||||
const entries = await readDir(path, { baseDir: BaseDirectory.Resource });
|
const entries = await readDir(path, { baseDir: BaseDirectory.Resource });
|
||||||
configStart.list = entries
|
configStart.list = entries
|
||||||
.filter((item) => item.isFile)
|
.filter(item => item.isFile)
|
||||||
.map((item) => ({
|
.map(item => ({
|
||||||
name: item.name,
|
name: item.name,
|
||||||
path: `${path}${item.name}`,
|
path: `${path}${item.name}`
|
||||||
})) as any;
|
})) as any;
|
||||||
} else {
|
} else {
|
||||||
mainStore.configStartEnable = false;
|
mainStore.configStartEnable = false;
|
||||||
@@ -1031,25 +1180,44 @@
|
|||||||
importConfigData.data = "";
|
importConfigData.data = "";
|
||||||
importConfigData.visible = true;
|
importConfigData.visible = true;
|
||||||
}
|
}
|
||||||
|
if (command === "create_server") {
|
||||||
|
await handleShowServerDialog();
|
||||||
|
// if (data.isStart) {
|
||||||
|
// const [error] = await ElConfirmDanger("切换会停止{action},是否继续?", "提示", {
|
||||||
|
// action: "`联机/服务`",
|
||||||
|
// confirmButtonText: "继续",
|
||||||
|
// cancelButtonText: "取消"
|
||||||
|
// });
|
||||||
|
// if (!error) await reset();
|
||||||
|
// }
|
||||||
|
// mainStore.enableCreateServer = !mainStore.enableCreateServer;
|
||||||
|
// if (mainStore.config.relayAllPeerrpc && !mainStore.enableCreateServer) {
|
||||||
|
// const [error] = await ElConfirmPrimary("是否关闭RPC流量转发?", "提示", {
|
||||||
|
// confirmButtonText: "关闭",
|
||||||
|
// cancelButtonText: "取消"
|
||||||
|
// });
|
||||||
|
// if (!error) mainStore.config.relayAllPeerrpc = false;
|
||||||
|
// }
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleStartImport = async () => {
|
const handleStartImport = async () => {
|
||||||
try {
|
const [err] = await ElConfirmPrimary("确定导入?", "提示", {
|
||||||
await ElMessageBox.confirm("确定导入?", "提示", {
|
|
||||||
confirmButtonText: "确定",
|
confirmButtonText: "确定",
|
||||||
cancelButtonText: "取消",
|
cancelButtonText: "取消"
|
||||||
});
|
});
|
||||||
|
if (!err) {
|
||||||
const payload = JSON.parse(decodeURIComponent(atob(importConfigData.data)));
|
const payload = JSON.parse(decodeURIComponent(atob(importConfigData.data)));
|
||||||
mainStore.$patch({
|
mainStore.$patch({
|
||||||
config: {
|
config: {
|
||||||
...mainStore.config,
|
...mainStore.config,
|
||||||
...payload.config,
|
...payload.config
|
||||||
},
|
}
|
||||||
});
|
});
|
||||||
ElMessage.success("导入成功");
|
ElMessage.success("导入成功");
|
||||||
importConfigData.visible = false;
|
importConfigData.visible = false;
|
||||||
mainStore.basePeers = uniq([config.serverUrl, ...mainStore.basePeers]);
|
mainStore.basePeers = uniq([config.serverUrl, ...mainStore.basePeers]);
|
||||||
} catch (err) {
|
} else {
|
||||||
console.error(err);
|
console.error(err);
|
||||||
if (err !== "cancel") {
|
if (err !== "cancel") {
|
||||||
ElMessage.error("导入失败");
|
ElMessage.error("导入失败");
|
||||||
@@ -1092,7 +1260,7 @@
|
|||||||
title: "成员列表",
|
title: "成员列表",
|
||||||
width: 875,
|
width: 875,
|
||||||
height: 380,
|
height: 380,
|
||||||
url: "#/member",
|
url: "#/member"
|
||||||
},
|
},
|
||||||
() => {
|
() => {
|
||||||
data.memberVisible = true;
|
data.memberVisible = true;
|
||||||
@@ -1111,16 +1279,17 @@
|
|||||||
width: 600,
|
width: 600,
|
||||||
height: 380,
|
height: 380,
|
||||||
resizable: false,
|
resizable: false,
|
||||||
url: "#/log",
|
url: "#/log"
|
||||||
},
|
},
|
||||||
(_, appWindow) => {
|
(_, appWindow) => {
|
||||||
data.logVisible = true;
|
data.logVisible = true;
|
||||||
logsTimer && clearInterval(logsTimer);
|
logsTimer && clearInterval(logsTimer);
|
||||||
logsTimer = setInterval(() => {
|
logsTimer = setInterval(() => {
|
||||||
appWindow.emitTo("log", "logs", data.log);
|
appWindow.emitTo("log", "logs", data.log);
|
||||||
}, 600);
|
}, 650);
|
||||||
},
|
},
|
||||||
() => {
|
() => {
|
||||||
|
logsTimer && clearInterval(logsTimer);
|
||||||
data.logVisible = false;
|
data.logVisible = false;
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
@@ -1134,7 +1303,7 @@
|
|||||||
width: 600,
|
width: 600,
|
||||||
height: 380,
|
height: 380,
|
||||||
resizable: false,
|
resizable: false,
|
||||||
url: "#/cidr",
|
url: "#/cidr"
|
||||||
},
|
},
|
||||||
(_, appWindow) => {
|
(_, appWindow) => {
|
||||||
data.cidrVisible = true;
|
data.cidrVisible = true;
|
||||||
@@ -1153,7 +1322,7 @@
|
|||||||
width: 600,
|
width: 600,
|
||||||
height: 380,
|
height: 380,
|
||||||
resizable: false,
|
resizable: false,
|
||||||
url: "#/advance",
|
url: "#/advance"
|
||||||
},
|
},
|
||||||
(_, appWindow) => {
|
(_, appWindow) => {
|
||||||
data.advanceVisible = true;
|
data.advanceVisible = true;
|
||||||
@@ -1172,7 +1341,7 @@
|
|||||||
width: 460,
|
width: 460,
|
||||||
height: 480,
|
height: 480,
|
||||||
resizable: true,
|
resizable: true,
|
||||||
url: "#/tool",
|
url: "#/tool"
|
||||||
},
|
},
|
||||||
(_, appWindow) => {
|
(_, appWindow) => {
|
||||||
data.toolVisible = true;
|
data.toolVisible = true;
|
||||||
@@ -1182,4 +1351,30 @@
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const handleShowServerDialog = async () => {
|
||||||
|
await etWindows(
|
||||||
|
"server",
|
||||||
|
{
|
||||||
|
title: "自建服务器",
|
||||||
|
minWidth: 550,
|
||||||
|
minHeight: 460,
|
||||||
|
width: 550,
|
||||||
|
height: 460,
|
||||||
|
resizable: true,
|
||||||
|
url: "#/server"
|
||||||
|
},
|
||||||
|
(_, appWindow) => {
|
||||||
|
data.serverVisible = true;
|
||||||
|
serverLogsTimer && clearInterval(serverLogsTimer);
|
||||||
|
serverLogsTimer = setInterval(() => {
|
||||||
|
appWindow.emitTo("server", "server_logs", { log: data.serverLog, threadId: listenObj.server_thread_id.value });
|
||||||
|
}, 650);
|
||||||
|
},
|
||||||
|
() => {
|
||||||
|
serverLogsTimer && clearInterval(serverLogsTimer);
|
||||||
|
data.serverVisible = false;
|
||||||
|
}
|
||||||
|
);
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
+89
-25
@@ -6,21 +6,29 @@
|
|||||||
stripe
|
stripe
|
||||||
border
|
border
|
||||||
:data="data.member"
|
:data="data.member"
|
||||||
v-else>
|
v-else
|
||||||
|
>
|
||||||
<ElTableColumn
|
<ElTableColumn
|
||||||
sortable
|
sortable
|
||||||
width="140"
|
width="140"
|
||||||
label="主机名"
|
label="主机名"
|
||||||
prop="hostname"></ElTableColumn>
|
prop="hostname"
|
||||||
|
>
|
||||||
|
<template #default="{row}">
|
||||||
|
{{ (row.hostname || "").toLowerCase().includes('publicserver') ? (row.hostname || "").replace("PublicServer", "服务器") : (row.hostname || "-") }}
|
||||||
|
</template>
|
||||||
|
</ElTableColumn>
|
||||||
<ElTableColumn
|
<ElTableColumn
|
||||||
sortable
|
sortable
|
||||||
width="90"
|
width="90"
|
||||||
prop="cost"
|
prop="cost"
|
||||||
label="路由">
|
label="路由"
|
||||||
|
>
|
||||||
<template #default="{ row }">
|
<template #default="{ row }">
|
||||||
<ElTag
|
<ElTag
|
||||||
effect="dark"
|
effect="dark"
|
||||||
:type="row.cost == 'p2p' ? 'success' : 'info'">
|
:type="row.cost == 'p2p' ? 'success' : 'info'"
|
||||||
|
>
|
||||||
{{ row.cost }}
|
{{ row.cost }}
|
||||||
</ElTag>
|
</ElTag>
|
||||||
</template>
|
</template>
|
||||||
@@ -29,17 +37,20 @@
|
|||||||
sortable
|
sortable
|
||||||
width="120"
|
width="120"
|
||||||
prop="ipv4"
|
prop="ipv4"
|
||||||
label="虚拟网IP"></ElTableColumn>
|
label="虚拟网IP"
|
||||||
|
></ElTableColumn>
|
||||||
<ElTableColumn
|
<ElTableColumn
|
||||||
sortable
|
sortable
|
||||||
prop="lat_ms"
|
prop="lat_ms"
|
||||||
width="130"
|
width="130"
|
||||||
label="延迟/ms"></ElTableColumn>
|
label="延迟/ms"
|
||||||
|
></ElTableColumn>
|
||||||
<ElTableColumn
|
<ElTableColumn
|
||||||
sortable
|
sortable
|
||||||
width="120"
|
width="120"
|
||||||
prop="loss_rate"
|
prop="loss_rate"
|
||||||
label="丢包率">
|
label="丢包率"
|
||||||
|
>
|
||||||
<template #default="{ row }">
|
<template #default="{ row }">
|
||||||
{{ row.loss_rate && row.loss_rate != "-" ? Number(row.loss_rate * 100).toFixed(2) + "%" : row.loss_rate }}
|
{{ row.loss_rate && row.loss_rate != "-" ? Number(row.loss_rate * 100).toFixed(2) + "%" : row.loss_rate }}
|
||||||
</template>
|
</template>
|
||||||
@@ -47,16 +58,34 @@
|
|||||||
<ElTableColumn
|
<ElTableColumn
|
||||||
sortable
|
sortable
|
||||||
width="120"
|
width="120"
|
||||||
label="nat_type"
|
label="NAT类型"
|
||||||
prop="NAT类型">
|
prop="nat_type"
|
||||||
|
>
|
||||||
<template #default="{ row }">
|
<template #default="{ row }">
|
||||||
{{ natMaps[row.nat_type.toLowerCase() as natKyes] || row.nat_type || "-" }}
|
{{ natMaps[row.nat_type.toLowerCase() as natKyes] || row.nat_type || "-" }}
|
||||||
</template>
|
</template>
|
||||||
</ElTableColumn>
|
</ElTableColumn>
|
||||||
<ElTableColumn
|
<ElTableColumn
|
||||||
sortable
|
sortable
|
||||||
|
width="120"
|
||||||
prop="version"
|
prop="version"
|
||||||
label="版本"></ElTableColumn>
|
label="版本"
|
||||||
|
></ElTableColumn>
|
||||||
|
<ElTableColumn
|
||||||
|
sortable
|
||||||
|
prop="tunnel_proto"
|
||||||
|
label="隧道协议"
|
||||||
|
></ElTableColumn>
|
||||||
|
<ElTableColumn
|
||||||
|
sortable
|
||||||
|
prop="rx_bytes"
|
||||||
|
label="接收"
|
||||||
|
></ElTableColumn>
|
||||||
|
<ElTableColumn
|
||||||
|
sortable
|
||||||
|
prop="tx_bytes"
|
||||||
|
label="传输"
|
||||||
|
></ElTableColumn>
|
||||||
</ElTable>
|
</ElTable>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -64,7 +93,9 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
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 { ATJ, parsePeerInfo } from "@/utils";
|
||||||
|
import { ElConfirmDanger } from "~/utils/element";
|
||||||
|
import { getCurrentWindow } from "@tauri-apps/api/window";
|
||||||
// enum NatType {
|
// enum NatType {
|
||||||
// // has NAT; but own a single public IP, port is not changed
|
// // has NAT; but own a single public IP, port is not changed
|
||||||
// Unknown = 0;
|
// Unknown = 0;
|
||||||
@@ -86,14 +117,14 @@
|
|||||||
restricted: "nat2",
|
restricted: "nat2",
|
||||||
portrestricted: "nat3",
|
portrestricted: "nat3",
|
||||||
symmetric: "nat4",
|
symmetric: "nat4",
|
||||||
SymmetricEasyDec: "nat4-easydec",
|
symmetriceasydec: "nat4-easydec",
|
||||||
SymmetricEasyInc: "nat4-easyinc",
|
symmetriceasyinc: "nat4-easyinc",
|
||||||
SymUdpFirewall: "nat4-udpfirewall",
|
symUdpfirewall: "nat4-udpfirewall"
|
||||||
};
|
};
|
||||||
type natKyes = keyof typeof natMaps;
|
type natKyes = keyof typeof natMaps;
|
||||||
|
|
||||||
const data = reactive<{ member: any[] }>({
|
const data = reactive<{ member: {hostname: string, cost: string, ipv4: string, lat_msg: string, loss_rate: string, nat_type: string}[] }>({
|
||||||
member: [],
|
member: []
|
||||||
});
|
});
|
||||||
|
|
||||||
const _showTableHeader = [
|
const _showTableHeader = [
|
||||||
@@ -104,12 +135,37 @@
|
|||||||
["loss_rate", "丢包率"],
|
["loss_rate", "丢包率"],
|
||||||
["nat_type", "NAT类型"],
|
["nat_type", "NAT类型"],
|
||||||
["version", "版本"],
|
["version", "版本"],
|
||||||
|
["tunnel_proto", "隧道协议"],
|
||||||
|
['rx_bytes', '接收'],
|
||||||
|
['tx_bytes', '传输']
|
||||||
];
|
];
|
||||||
|
|
||||||
|
let timer: NodeJS.Timeout | null = null;
|
||||||
|
|
||||||
const listenOutput = async () => {
|
const listenOutput = async () => {
|
||||||
const member = await invoke<string>("get_members_by_cli");
|
const [error, member] = await ATJ(invoke<string>("get_members_by_cli"));
|
||||||
|
// if(!member) return;
|
||||||
|
if (error) {
|
||||||
|
data.member = [];
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
if (member === "_EasytierGameCliFailedToConnect_") {
|
||||||
|
data.member = [];
|
||||||
|
stopTimer();
|
||||||
|
const [error] = await ElConfirmDanger("连接已断开,是否重新尝试?", "警告", {
|
||||||
|
confirmButtonText: "重试",
|
||||||
|
cancelButtonText: "关闭窗口"
|
||||||
|
});
|
||||||
|
if (!error) {
|
||||||
|
await listenOutput();
|
||||||
|
} else {
|
||||||
|
const appWindow = getCurrentWindow();
|
||||||
|
await appWindow.close();
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
const peerInfo = parsePeerInfo(member);
|
const peerInfo = parsePeerInfo(member);
|
||||||
peerInfo.forEach((value) => {
|
peerInfo.forEach(value => {
|
||||||
if (value.cost === "Local") {
|
if (value.cost === "Local") {
|
||||||
value.cost = "本机";
|
value.cost = "本机";
|
||||||
}
|
}
|
||||||
@@ -117,20 +173,28 @@
|
|||||||
value.ipv4 = value.ipv4.split("/")[0];
|
value.ipv4 = value.ipv4.split("/")[0];
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
// console.error(peerInfo);
|
// console.log(peerInfo)
|
||||||
data.member = peerInfo;
|
data.member = peerInfo;
|
||||||
|
startTimer();
|
||||||
};
|
};
|
||||||
|
|
||||||
let timer: NodeJS.Timeout | null = null;
|
const startTimer = () => {
|
||||||
|
timer && clearTimeout(timer);
|
||||||
|
timer = setTimeout(() => {
|
||||||
|
listenOutput();
|
||||||
|
}, 1000);
|
||||||
|
};
|
||||||
|
|
||||||
|
const stopTimer = () => {
|
||||||
|
timer && clearTimeout(timer);
|
||||||
|
timer = null;
|
||||||
|
}
|
||||||
|
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
listenOutput();
|
await listenOutput();
|
||||||
timer = setInterval(() => {
|
|
||||||
listenOutput();
|
|
||||||
}, 1000 * 10);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
onBeforeUnmount(() => {
|
onBeforeUnmount(() => {
|
||||||
timer && clearInterval(timer);
|
stopTimer();
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -0,0 +1,128 @@
|
|||||||
|
<template>
|
||||||
|
<div class="flex flex-col gap-[10px] h-full">
|
||||||
|
<ElForm
|
||||||
|
size="small"
|
||||||
|
label-position="top"
|
||||||
|
:model="mainStore.serverConfig"
|
||||||
|
>
|
||||||
|
<ElFormItem
|
||||||
|
label="白名单"
|
||||||
|
prop="ServerWhiteList"
|
||||||
|
class="full-label full-content overflow-hidden !flex flex-col h-full !mb-[0]"
|
||||||
|
>
|
||||||
|
<template #label>
|
||||||
|
<div class="flex items-center gap-[10px]">
|
||||||
|
白名单
|
||||||
|
<ElSwitch
|
||||||
|
v-model="mainStore.serverConfig.enableWhiteList"
|
||||||
|
inline-prompt
|
||||||
|
active-text="启用"
|
||||||
|
inactive-text="禁用"
|
||||||
|
></ElSwitch>
|
||||||
|
|
||||||
|
<div class="ml-auto">
|
||||||
|
<ElTooltip
|
||||||
|
placement="top"
|
||||||
|
content="打开软件的时候,就会开启这个自建服务"
|
||||||
|
>
|
||||||
|
<ElCheckbox v-model="mainStore.serverConfig.autoStart">自动启动</ElCheckbox>
|
||||||
|
</ElTooltip>
|
||||||
|
<ElTooltip
|
||||||
|
placement="top"
|
||||||
|
content="帮助其他虚拟网建立P2P链接"
|
||||||
|
>
|
||||||
|
<ElCheckbox v-model="mainStore.serverConfig.relayAllPeerrpc">转发所有对等节点的RPC数据包</ElCheckbox>
|
||||||
|
</ElTooltip>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<div class="h-full w-full flex flex-col overflow-hidden">
|
||||||
|
<div class="flex-1 overflow-auto">
|
||||||
|
<ElInput
|
||||||
|
:disabled="!mainStore.serverConfig.enableWhiteList"
|
||||||
|
placeholder="一行一个,支持通配符列表,如(ab*)。当该参数的列表为空时,就不会为所有其他网络提供转发服务。"
|
||||||
|
:maxlength="1000"
|
||||||
|
v-model="mainStore.serverConfig.serverWhiteList"
|
||||||
|
type="textarea"
|
||||||
|
:rows="3"
|
||||||
|
resize="none"
|
||||||
|
></ElInput>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</ElFormItem>
|
||||||
|
</ElForm>
|
||||||
|
<div class="flex items-center gap-[10px]">
|
||||||
|
<div class="flex items-center gap-[5px]">
|
||||||
|
<ElText>服务器端口</ElText>
|
||||||
|
<div class="max-w-[100px]">
|
||||||
|
<ElTooltip content="端口号">
|
||||||
|
<ElInput v-model="mainStore.serverConfig.port"></ElInput>
|
||||||
|
</ElTooltip>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<ElButton
|
||||||
|
size="large"
|
||||||
|
:loading="data.loading"
|
||||||
|
:type="data.isStart ? 'danger' : 'primary'"
|
||||||
|
@click="hanldeClickStart"
|
||||||
|
>
|
||||||
|
{{ !data.isStart ? "启动服务器" : "停止服务器" }}
|
||||||
|
</ElButton>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<ElInput
|
||||||
|
placeholder="服务器日志"
|
||||||
|
:model-value="data.log"
|
||||||
|
type="textarea"
|
||||||
|
:rows="14"
|
||||||
|
resize="none"
|
||||||
|
></ElInput>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<script setup lang="ts">
|
||||||
|
import useMainStore from "@/stores/index";
|
||||||
|
import { reactive, onMounted, onBeforeUnmount } from "vue";
|
||||||
|
import { getCurrentWindow } from "@tauri-apps/api/window";
|
||||||
|
import { listen, type UnlistenFn } from "@tauri-apps/api/event";
|
||||||
|
import { getServerArgs } from "@/composables/server";
|
||||||
|
|
||||||
|
const appWindow = getCurrentWindow();
|
||||||
|
const mainStore = useMainStore();
|
||||||
|
const data = reactive({
|
||||||
|
log: "",
|
||||||
|
isStart: false,
|
||||||
|
loading: true
|
||||||
|
});
|
||||||
|
|
||||||
|
const listenStart = async () => {
|
||||||
|
const unListen = await listen<{ log: string; threadId: number | null }>("server_logs", event => {
|
||||||
|
data.log = event.payload.log || "";
|
||||||
|
if (event.payload.threadId) {
|
||||||
|
data.isStart = true;
|
||||||
|
} else {
|
||||||
|
data.isStart = false;
|
||||||
|
}
|
||||||
|
data.loading = false;
|
||||||
|
});
|
||||||
|
return unListen;
|
||||||
|
};
|
||||||
|
|
||||||
|
let unlistenStart: UnlistenFn | null = null;
|
||||||
|
onMounted(async () => {
|
||||||
|
unlistenStart = await listenStart();
|
||||||
|
});
|
||||||
|
|
||||||
|
onBeforeUnmount(() => {
|
||||||
|
unlistenStart && unlistenStart();
|
||||||
|
});
|
||||||
|
|
||||||
|
const hanldeClickStart = async () => {
|
||||||
|
data.loading = true;
|
||||||
|
const args = getServerArgs();
|
||||||
|
await appWindow.emitTo("main", "startStopServer", { args });
|
||||||
|
};
|
||||||
|
|
||||||
|
mainStore.$subscribe(async (...a) => {
|
||||||
|
await appWindow.emitTo("main", "config", { serverConfig: { ...mainStore.serverConfig }});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
Generated
+505
-178
File diff suppressed because it is too large
Load Diff
Generated
+5
-3
@@ -1176,7 +1176,7 @@ checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "easytier-game"
|
name = "easytier-game"
|
||||||
version = "1.2.3"
|
version = "1.2.8"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"log",
|
"log",
|
||||||
"planif",
|
"planif",
|
||||||
@@ -1193,6 +1193,7 @@ dependencies = [
|
|||||||
"tauri-plugin-shell",
|
"tauri-plugin-shell",
|
||||||
"tauri-plugin-single-instance",
|
"tauri-plugin-single-instance",
|
||||||
"tauri-plugin-window-state",
|
"tauri-plugin-window-state",
|
||||||
|
"tokio",
|
||||||
"whoami",
|
"whoami",
|
||||||
"windows 0.58.0",
|
"windows 0.58.0",
|
||||||
"zip",
|
"zip",
|
||||||
@@ -4782,15 +4783,16 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tokio"
|
name = "tokio"
|
||||||
version = "1.40.0"
|
version = "1.41.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "e2b070231665d27ad9ec9b8df639893f46727666c6767db40317fbe920a5d998"
|
checksum = "22cfb5bee7a6a52939ca9224d6ac897bb669134078daa8735560897f69de4d33"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"backtrace",
|
"backtrace",
|
||||||
"bytes",
|
"bytes",
|
||||||
"libc",
|
"libc",
|
||||||
"mio",
|
"mio",
|
||||||
"pin-project-lite",
|
"pin-project-lite",
|
||||||
|
"signal-hook-registry",
|
||||||
"socket2",
|
"socket2",
|
||||||
"windows-sys 0.52.0",
|
"windows-sys 0.52.0",
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "easytier-game"
|
name = "easytier-game"
|
||||||
version = "1.2.3"
|
version = "1.2.8"
|
||||||
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"
|
||||||
@@ -40,6 +40,7 @@ planif = { git = "https://github.com/mattrobineau/planif", tag = "1.0.1" }
|
|||||||
whoami = "1.5.2"
|
whoami = "1.5.2"
|
||||||
tauri-plugin-fs = "2"
|
tauri-plugin-fs = "2"
|
||||||
tauri-plugin-clipboard-manager = "2.0.2"
|
tauri-plugin-clipboard-manager = "2.0.2"
|
||||||
|
tokio = { version = "1.41.1", features = ["process"] }
|
||||||
# prost = "0.13"
|
# prost = "0.13"
|
||||||
# prost-types = "0.13"
|
# prost-types = "0.13"
|
||||||
|
|
||||||
|
|||||||
@@ -8,13 +8,16 @@
|
|||||||
"member",
|
"member",
|
||||||
"cidr",
|
"cidr",
|
||||||
"advance",
|
"advance",
|
||||||
"tool"
|
"tool",
|
||||||
|
"server"
|
||||||
],
|
],
|
||||||
"permissions": [
|
"permissions": [
|
||||||
"core:default",
|
"core:default",
|
||||||
"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",
|
||||||
|
|||||||
@@ -0,0 +1,77 @@
|
|||||||
|
# 实例名称,用于在同一台机器上标识此节点
|
||||||
|
instance_name = ""
|
||||||
|
# 主机名,用于标识此设备的主机名
|
||||||
|
hostname = ""
|
||||||
|
# 实例 ID,一般为 UUID,在同一个虚拟网络中唯一
|
||||||
|
instance_id = ""
|
||||||
|
# 此节点的虚拟网 IPv4 地址,如果为空,则此节点将仅转发数据包,不会创建 TUN 设备
|
||||||
|
ipv4 = ""
|
||||||
|
# 由 Easytier 自动确定并设置IP地址,默认从10.0.0.1开始。警告:在使用 DHCP 时,如果网络中出现 IP 冲突,IP 将自动更改
|
||||||
|
dhcp = false
|
||||||
|
|
||||||
|
# 监听器列表,用于接受连接
|
||||||
|
listeners = [
|
||||||
|
"tcp://0.0.0.0:11010",
|
||||||
|
"udp://0.0.0.0:11010",
|
||||||
|
"wg://0.0.0.0:11011",
|
||||||
|
"ws://0.0.0.0:11011/",
|
||||||
|
"wss://0.0.0.0:11012/",
|
||||||
|
]
|
||||||
|
|
||||||
|
# 退出节点列表
|
||||||
|
exit_nodes = [
|
||||||
|
]
|
||||||
|
|
||||||
|
# 用于管理的 RPC 门户地址
|
||||||
|
rpc_portal = "127.0.0.1:15888"
|
||||||
|
|
||||||
|
[network_identity]
|
||||||
|
# 网络名称,用于标识虚拟网络
|
||||||
|
network_name = ""
|
||||||
|
# 网络密钥,用于验证此节点属于虚拟网络
|
||||||
|
network_secret = ""
|
||||||
|
|
||||||
|
# 这里是对等连接节点配置,可以多段配置
|
||||||
|
[[peer]]
|
||||||
|
uri = "tcp://public.easytier.top:11010"
|
||||||
|
|
||||||
|
[[peer]]
|
||||||
|
uri = "udp://public.easytier.top:11010"
|
||||||
|
|
||||||
|
# 这里是子网代理节点配置,可以有多段配置
|
||||||
|
[[proxy_network]]
|
||||||
|
cidr = "10.0.1.0/24"
|
||||||
|
|
||||||
|
[[proxy_network]]
|
||||||
|
cidr = "10.0.2.0/24"
|
||||||
|
|
||||||
|
# WireGuard 配置信息
|
||||||
|
[vpn_portal_config]
|
||||||
|
# WireGuard 客户端所在的网段,下面为示例
|
||||||
|
client_cidr = "10.14.14.0/24"
|
||||||
|
#wg所监听的端口(请勿和listeners的wg冲突)
|
||||||
|
wireguard_listen = "0.0.0.0:11012"
|
||||||
|
|
||||||
|
[flags]
|
||||||
|
# 连接到对等节点使用的默认协议
|
||||||
|
default_protocol = "tcp"
|
||||||
|
# TUN 设备名称,如果为空,则使用默认名称
|
||||||
|
dev_name = ""
|
||||||
|
# 禁用p2p
|
||||||
|
disable_p2p = false
|
||||||
|
# 是否启用加密
|
||||||
|
enable_encryption = true
|
||||||
|
# 是否启用 IPv6 支持
|
||||||
|
enable_ipv6 = true
|
||||||
|
# TUN 设备的 MTU
|
||||||
|
mtu = 1380
|
||||||
|
# 延迟优先模式,将尝试使用最低延迟路径转发流量,默认使用最短路径
|
||||||
|
latency_first = false
|
||||||
|
# 将本节点配置为退出节点
|
||||||
|
enable_exit_node = false
|
||||||
|
# 禁用 TUN 设备
|
||||||
|
no_tun = false
|
||||||
|
# 为子网代理启用 smoltcp 堆栈
|
||||||
|
use_smoltcp = false
|
||||||
|
# 仅转发白名单网络的流量,支持通配符字符串。多个网络名称间可以使用英文空格间隔。如果该参数为空,则禁用转发。默认允许所有网络。例如:'*'(所有网络),'def*'(以def为前缀的网络),'net1 net2'(只允许net1和net2)
|
||||||
|
foreign_network_whitelist = "*"
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
hostname = "Test1"
|
|
||||||
instance_name = "default"
|
|
||||||
instance_id = "8803362c-e4f1-4df1-93e8-721653945f77"
|
|
||||||
dhcp = true
|
|
||||||
listeners = [
|
|
||||||
"tcp://0.0.0.0:11010",
|
|
||||||
"udp://0.0.0.0:11010",
|
|
||||||
"wg://0.0.0.0:11011",
|
|
||||||
"ws://0.0.0.0:11011/",
|
|
||||||
"wss://0.0.0.0:11012/",
|
|
||||||
]
|
|
||||||
exit_nodes = []
|
|
||||||
rpc_portal = "0.0.0.0:15888"
|
|
||||||
|
|
||||||
[network_identity]
|
|
||||||
network_name = "default"
|
|
||||||
network_secret = ""
|
|
||||||
|
|
||||||
[[peer]]
|
|
||||||
uri = "tcp://public.easytier.top:11010"
|
|
||||||
|
|
||||||
[[peer]]
|
|
||||||
uri = "udp://public.easytier.top:11010"
|
|
||||||
+57
-31
@@ -9,10 +9,7 @@ use std::fs::{self, File};
|
|||||||
use std::io::{BufRead, BufReader, Write};
|
use std::io::{BufRead, BufReader, Write};
|
||||||
use std::os::windows::process::CommandExt;
|
use std::os::windows::process::CommandExt;
|
||||||
use std::process::{Command, Stdio};
|
use std::process::{Command, Stdio};
|
||||||
use std::sync::{
|
use std::sync::mpsc;
|
||||||
atomic::{AtomicBool, Ordering},
|
|
||||||
mpsc, Arc,
|
|
||||||
};
|
|
||||||
use std::{path, thread};
|
use std::{path, thread};
|
||||||
use sysinfo::System;
|
use sysinfo::System;
|
||||||
use tauri::tray::{MouseButton, MouseButtonState, TrayIconBuilder, TrayIconEvent};
|
use tauri::tray::{MouseButton, MouseButtonState, TrayIconBuilder, TrayIconEvent};
|
||||||
@@ -24,6 +21,8 @@ use windows::Win32::Foundation::VARIANT_BOOL;
|
|||||||
use windows::Win32::System::Com::*;
|
use windows::Win32::System::Com::*;
|
||||||
use windows::Win32::System::TaskScheduler::*;
|
use windows::Win32::System::TaskScheduler::*;
|
||||||
|
|
||||||
|
use tokio::process::Command as tokioCommand;
|
||||||
|
|
||||||
// 定义GitHub Release的结构体
|
// 定义GitHub Release的结构体
|
||||||
#[derive(Debug, Deserialize)]
|
#[derive(Debug, Deserialize)]
|
||||||
pub struct Release {
|
pub struct Release {
|
||||||
@@ -133,24 +132,41 @@ struct MyResponse {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[tauri::command(rename_all = "snake_case")]
|
#[tauri::command(rename_all = "snake_case")]
|
||||||
fn get_members_by_cli() -> String {
|
async fn get_members_by_cli() -> String {
|
||||||
let cli_path = get_tool_exe_path(String::from("\\easytier\\easytier-cli.exe"));
|
let cli_path = get_tool_exe_path(String::from("\\easytier\\easytier-cli.exe"));
|
||||||
match Command::new(&cli_path)
|
match tokioCommand::new(&cli_path)
|
||||||
.arg("peer")
|
.arg("peer")
|
||||||
.arg("list")
|
.arg("list")
|
||||||
.creation_flags(0x08000000)
|
.creation_flags(0x08000000)
|
||||||
.output()
|
.output().await
|
||||||
{
|
{
|
||||||
Ok(output) => {
|
Ok(output) => {
|
||||||
|
if output.status.success() {
|
||||||
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();
|
||||||
|
}else {
|
||||||
|
let output_str = String::from_utf8_lossy(&output.stderr);
|
||||||
|
log::error!("{}", output_str.trim().to_string());
|
||||||
|
return "_EasytierGameCliFailedToConnect_".to_string();
|
||||||
}
|
}
|
||||||
Err(_e) => return _e.to_string(),
|
}
|
||||||
|
Err(_e) => {
|
||||||
|
log::error!("get member list error");
|
||||||
|
return "".to_string();
|
||||||
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[tauri::command(rename_all = "snake_case")]
|
#[tauri::command(rename_all = "snake_case")]
|
||||||
async fn download_easytier_zip(download_url: String, file_name: String) {
|
async fn download_easytier_zip(download_url: String, file_name: String) {
|
||||||
|
let cache_dir_path = get_tool_exe_path(String::from("\\easytier\\cache"));
|
||||||
|
let cache_file_name = format!("{}\\{}", cache_dir_path, file_name);
|
||||||
|
let cache_file_name_path = path::Path::new(&cache_file_name);
|
||||||
|
if cache_file_name_path.exists() {
|
||||||
|
unzip(cache_file_name_path);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
let target = format!("{}", download_url);
|
let target = format!("{}", download_url);
|
||||||
let response = reqwest::get(target)
|
let response = reqwest::get(target)
|
||||||
.await
|
.await
|
||||||
@@ -177,10 +193,19 @@ async fn download_easytier_zip(download_url: String, file_name: String) {
|
|||||||
file.write_all(&content).expect("error to write easytier");
|
file.write_all(&content).expect("error to write easytier");
|
||||||
println!("写入完成");
|
println!("写入完成");
|
||||||
unzip(path);
|
unzip(path);
|
||||||
match fs::remove_file(path) {
|
|
||||||
Ok(_) => println!("删除zip文件成功"),
|
let cache_dir_path = path::Path::new(&cache_dir_path);
|
||||||
Err(_) => log::error!("删除zip文件失败"),
|
if !cache_dir_path.exists() {
|
||||||
|
fs::create_dir_all(&cache_dir_path).unwrap();
|
||||||
}
|
}
|
||||||
|
match fs::rename(path, cache_file_name) {
|
||||||
|
Ok(_) => println!("保存zip文件至easytier/cache成功"),
|
||||||
|
Err(_) => log::error!("保存zip文件失败"),
|
||||||
|
}
|
||||||
|
// match fs::remove_file(path) {
|
||||||
|
// Ok(_) => println!("删除zip文件成功"),
|
||||||
|
// Err(_) => log::error!("删除zip文件失败"),
|
||||||
|
// }
|
||||||
}
|
}
|
||||||
|
|
||||||
fn unzip(fname: &path::Path) {
|
fn unzip(fname: &path::Path) {
|
||||||
@@ -228,18 +253,22 @@ fn unzip(fname: &path::Path) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[tauri::command(rename_all = "snake_case")]
|
#[tauri::command(rename_all = "snake_case")]
|
||||||
fn run_command(
|
fn run_command(app_handle: tauri::AppHandle, args: Vec<String>, is_server: Option<bool>) {
|
||||||
app_handle: tauri::AppHandle,
|
let is_server = is_server.unwrap_or(false);
|
||||||
args: Vec<String>,
|
|
||||||
stop_signal: tauri::State<Arc<AtomicBool>>,
|
|
||||||
) {
|
|
||||||
let (tx, rx) = mpsc::channel();
|
let (tx, rx) = mpsc::channel();
|
||||||
stop_signal.store(false, Ordering::Relaxed);
|
|
||||||
let app_handle1 = app_handle.clone();
|
let app_handle1 = app_handle.clone();
|
||||||
let app_handle2 = app_handle.clone();
|
let app_handle2 = app_handle.clone();
|
||||||
let stop_signal1 = Arc::clone(&stop_signal);
|
|
||||||
let stop_signal2 = Arc::clone(&stop_signal);
|
|
||||||
let args2 = args.clone();
|
let args2 = args.clone();
|
||||||
|
let mut thread_id_str = "thread-id";
|
||||||
|
if is_server {
|
||||||
|
thread_id_str = "server-thread-id";
|
||||||
|
}
|
||||||
|
let mut command_output_str = "command-output";
|
||||||
|
if is_server {
|
||||||
|
command_output_str = "server-command-output";
|
||||||
|
}
|
||||||
thread::spawn(move || {
|
thread::spawn(move || {
|
||||||
let core_path = get_tool_exe_path(String::from("\\easytier\\easytier-core.exe"));
|
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
|
||||||
@@ -252,36 +281,36 @@ fn run_command(
|
|||||||
|
|
||||||
println!("child id: {}", child.id());
|
println!("child id: {}", child.id());
|
||||||
app_handle1
|
app_handle1
|
||||||
.emit("thread-id", child.id())
|
.emit(thread_id_str, child.id())
|
||||||
.expect("failed to emit id event");
|
.expect("failed to emit id event");
|
||||||
app_handle1
|
app_handle1
|
||||||
.emit("command-output", args2.join(" "))
|
.emit(command_output_str, args2.join(" "))
|
||||||
.expect("error output args");
|
.expect("error output args");
|
||||||
let stdout = child.stdout.take().expect("failed to capture stdout");
|
let stdout = child.stdout.take().expect("failed to capture stdout");
|
||||||
let reader = BufReader::new(stdout);
|
let reader = BufReader::new(stdout);
|
||||||
|
|
||||||
for line in reader.lines() {
|
for line in reader.lines() {
|
||||||
match line {
|
match line {
|
||||||
Ok(line) => {
|
Ok(line) => match tx.send(line) {
|
||||||
tx.send(line).expect("failed to send line");
|
Ok(_) => {}
|
||||||
|
Err(e) => {
|
||||||
|
log::error!("error sending line: {}", e);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
},
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
log::error!("error reading line: {}", e);
|
log::error!("error reading line: {}", e);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stop_signal1.store(true, Ordering::Relaxed);
|
|
||||||
println!("end");
|
println!("end");
|
||||||
});
|
});
|
||||||
|
|
||||||
thread::spawn(move || {
|
thread::spawn(move || {
|
||||||
while let Ok(line) = rx.recv() {
|
while let Ok(line) = rx.recv() {
|
||||||
if stop_signal2.load(Ordering::Relaxed) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
app_handle2
|
app_handle2
|
||||||
.emit("command-output", line)
|
.emit(command_output_str, line)
|
||||||
.expect("failed to emit event");
|
.expect("failed to emit event");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@@ -523,8 +552,6 @@ pub fn run() {
|
|||||||
// 获取命令行参数
|
// 获取命令行参数
|
||||||
let args: Vec<String> = std::env::args().collect();
|
let args: Vec<String> = std::env::args().collect();
|
||||||
|
|
||||||
let stop_signal = Arc::new(AtomicBool::new(false)); // 创建一个原子布尔值,用于控制命令的停止
|
|
||||||
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(
|
.plugin(
|
||||||
@@ -592,7 +619,6 @@ pub fn run() {
|
|||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
})
|
})
|
||||||
.manage(stop_signal_clone)
|
|
||||||
.invoke_handler(tauri::generate_handler![
|
.invoke_handler(tauri::generate_handler![
|
||||||
run_command,
|
run_command,
|
||||||
stop_command,
|
stop_command,
|
||||||
|
|||||||
@@ -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.2.3",
|
"version": "1.2.8",
|
||||||
"identifier": "com.tauri.easytier-game",
|
"identifier": "com.tauri.easytier-game",
|
||||||
|
|
||||||
"build": {
|
"build": {
|
||||||
@@ -13,7 +13,7 @@
|
|||||||
"app": {
|
"app": {
|
||||||
"windows": [
|
"windows": [
|
||||||
{
|
{
|
||||||
"title": "easytier-game 1.2.3",
|
"title": "easytier-game 1.2.8",
|
||||||
"label": "main",
|
"label": "main",
|
||||||
"minWidth": 340,
|
"minWidth": 340,
|
||||||
"width": 340,
|
"width": 340,
|
||||||
@@ -49,7 +49,7 @@
|
|||||||
"easytier/Packet.dll",
|
"easytier/Packet.dll",
|
||||||
"easytier/wintun.dll",
|
"easytier/wintun.dll",
|
||||||
"easytier/clear_local_data.bat",
|
"easytier/clear_local_data.bat",
|
||||||
"easytier/帮助.txt"
|
"帮助.txt"
|
||||||
],
|
],
|
||||||
"windows": {
|
"windows": {
|
||||||
"webviewInstallMode": {
|
"webviewInstallMode": {
|
||||||
|
|||||||
@@ -14,3 +14,11 @@
|
|||||||
2. 运行easytier-game安装目录下的 easytier/clear_local_data.bat (需要管理员权限) 输入y确认,清除本地存储数据
|
2. 运行easytier-game安装目录下的 easytier/clear_local_data.bat (需要管理员权限) 输入y确认,清除本地存储数据
|
||||||
|
|
||||||
3. 删除easytierGame文件夹
|
3. 删除easytierGame文件夹
|
||||||
|
|
||||||
|
|
||||||
|
[没有服务器,怎么自建服务]
|
||||||
|
1. 点击 启动联机 按钮旁边的箭头 选择自建服务 设置好端口号后 点击启动服务器
|
||||||
|
|
||||||
|
2. 搜索一下 openFrp mossFrp sakurafrp 等 将你的本地服务通过它(们)代理到公网
|
||||||
|
|
||||||
|
3. 将代理之后的地址发给别人,他们就可以通过这个加入你的服务了
|
||||||
+19
-2
@@ -14,7 +14,7 @@ export default defineStore("main", {
|
|||||||
connectAfterStart: false, //软件打开后,是否自动连接
|
connectAfterStart: false, //软件打开后,是否自动连接
|
||||||
disableIpv6: false, // 是否禁用IPv6
|
disableIpv6: false, // 是否禁用IPv6
|
||||||
disbleListenner: false, // 是否禁用监听
|
disbleListenner: false, // 是否禁用监听
|
||||||
disableEncryption: false, // 是否禁用加密
|
disableEncryption: true, // 是否禁用加密
|
||||||
multiThread: false, //使用多线程
|
multiThread: false, //使用多线程
|
||||||
enablExitNode: false, // 是否启用退出节点
|
enablExitNode: false, // 是否启用退出节点
|
||||||
noTun: false, // 是否使用TUN
|
noTun: false, // 是否使用TUN
|
||||||
@@ -31,6 +31,14 @@ export default defineStore("main", {
|
|||||||
enableNetCardMetric: false, //启用网卡自定义跃点
|
enableNetCardMetric: false, //启用网卡自定义跃点
|
||||||
netCardMetricValue: 1 //自定义网卡跃点值
|
netCardMetricValue: 1 //自定义网卡跃点值
|
||||||
},
|
},
|
||||||
|
serverConfig: {
|
||||||
|
enableWhiteList: true, // 是否启用白名单
|
||||||
|
relayAllPeerrpc: false, // 是否启用所有对等RPC
|
||||||
|
serverWhiteList: "", // 服务器流量转发白名单
|
||||||
|
// enableListener: true, // 是否启用监听
|
||||||
|
autoStart: false, //随软件自启
|
||||||
|
port: "11010", // 服务器端口
|
||||||
|
},
|
||||||
cidrEnable: false,
|
cidrEnable: false,
|
||||||
basePeers: ["public.easytier.top:11010"],
|
basePeers: ["public.easytier.top:11010"],
|
||||||
theme: false, //主题 false light true dark
|
theme: false, //主题 false light true dark
|
||||||
@@ -40,6 +48,7 @@ export default defineStore("main", {
|
|||||||
createConfigInEasytier: false, //在easytier目录生成config.json文件吗
|
createConfigInEasytier: false, //在easytier目录生成config.json文件吗
|
||||||
githubFastUrl: "https://ghproxy.cc/",
|
githubFastUrl: "https://ghproxy.cc/",
|
||||||
|
|
||||||
|
|
||||||
winipBcPid: 0,
|
winipBcPid: 0,
|
||||||
winipBcStart: false
|
winipBcStart: false
|
||||||
};
|
};
|
||||||
@@ -75,6 +84,14 @@ export default defineStore("main", {
|
|||||||
"config.enableNetCardMetric",
|
"config.enableNetCardMetric",
|
||||||
"config.netCardMetricValue",
|
"config.netCardMetricValue",
|
||||||
|
|
||||||
|
"serverConfig.autoStart",
|
||||||
|
// 'serverConfig.enableListener',
|
||||||
|
'serverConfig.enableWhiteList',
|
||||||
|
'serverConfig.relayAllPeerrpc',
|
||||||
|
'serverConfig.serverWhiteList',
|
||||||
|
'serverConfig.port',
|
||||||
|
|
||||||
|
|
||||||
"cidrEnable",
|
"cidrEnable",
|
||||||
"basePeers",
|
"basePeers",
|
||||||
"theme",
|
"theme",
|
||||||
@@ -82,7 +99,7 @@ export default defineStore("main", {
|
|||||||
"configPath",
|
"configPath",
|
||||||
"winIpBcAutoStart",
|
"winIpBcAutoStart",
|
||||||
"createConfigInEasytier",
|
"createConfigInEasytier",
|
||||||
"githubFastUrl"
|
"githubFastUrl",
|
||||||
],
|
],
|
||||||
// // 除了这些,其他都要存下来
|
// // 除了这些,其他都要存下来
|
||||||
// omit: ["winipBcPid", "winipBcStart"]
|
// omit: ["winipBcPid", "winipBcStart"]
|
||||||
|
|||||||
@@ -29,6 +29,8 @@ export const ElConfirmDanger = (
|
|||||||
}
|
}
|
||||||
return ATJ(
|
return ATJ(
|
||||||
ElMessageBox.confirm(message, title, {
|
ElMessageBox.confirm(message, title, {
|
||||||
|
closeOnClickModal: false, // 点击遮罩层不关闭弹窗
|
||||||
|
closeOnPressEscape: false, // 按下Esc键不关闭弹窗
|
||||||
cancelButtonText,
|
cancelButtonText,
|
||||||
confirmButtonText,
|
confirmButtonText,
|
||||||
confirmButtonClass: "el-button--danger"
|
confirmButtonClass: "el-button--danger"
|
||||||
@@ -63,6 +65,8 @@ export const ElConfirmSucces = (
|
|||||||
}
|
}
|
||||||
return ATJ(
|
return ATJ(
|
||||||
ElMessageBox.confirm(message, title, {
|
ElMessageBox.confirm(message, title, {
|
||||||
|
closeOnClickModal: false, // 点击遮罩层不关闭弹窗
|
||||||
|
closeOnPressEscape: false, // 按下Esc键不关闭弹窗
|
||||||
cancelButtonText,
|
cancelButtonText,
|
||||||
confirmButtonText,
|
confirmButtonText,
|
||||||
confirmButtonClass: "el-button--success"
|
confirmButtonClass: "el-button--success"
|
||||||
@@ -97,6 +101,8 @@ export const ElConfirmPrimary = (
|
|||||||
}
|
}
|
||||||
return ATJ(
|
return ATJ(
|
||||||
ElMessageBox.confirm(message, title, {
|
ElMessageBox.confirm(message, title, {
|
||||||
|
closeOnClickModal: false, // 点击遮罩层不关闭弹窗
|
||||||
|
closeOnPressEscape: false, // 按下Esc键不关闭弹窗
|
||||||
cancelButtonText,
|
cancelButtonText,
|
||||||
confirmButtonText,
|
confirmButtonText,
|
||||||
confirmButtonClass: "el-button--primary"
|
confirmButtonClass: "el-button--primary"
|
||||||
|
|||||||
@@ -65,6 +65,7 @@ export const ATJ = (promise: Promise<any>, errorExt: string | undefined = undefi
|
|||||||
};
|
};
|
||||||
|
|
||||||
export const parsePeerInfo = (content: string) => {
|
export const parsePeerInfo = (content: string) => {
|
||||||
|
if(!content) return [];
|
||||||
// 将表格字符串分割成行
|
// 将表格字符串分割成行
|
||||||
const lines = content.split("\n");
|
const lines = content.split("\n");
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,66 @@
|
|||||||
|
/**
|
||||||
|
* 生成 release 发布包 zip 文件
|
||||||
|
*/
|
||||||
|
|
||||||
|
const releaseDir = "./src-tauri/target/release";
|
||||||
|
const releaseDirEasytier = `${releaseDir}/easytier/`;
|
||||||
|
const releaseExe = `${releaseDir}/easytier-game.exe`;
|
||||||
|
const releaseHelp = `${releaseDir}/帮助.txt`;
|
||||||
|
const deleteEasytierFiles = ["logs/", "guiLogs/", "cache/"];
|
||||||
|
const pkg = require("./package.json");
|
||||||
|
const fileName = `easytier-game_windows_x86_64_${pkg.version}.zip`; // 发布包格式
|
||||||
|
const releaseZipDir = "./release";
|
||||||
|
const releaseZip = `${releaseZipDir}/${fileName}`;
|
||||||
|
|
||||||
|
const fs = require("fs");
|
||||||
|
const path = require("path");
|
||||||
|
const archiver = require("archiver");
|
||||||
|
|
||||||
|
const output = fs.createWriteStream(path.join(__dirname, releaseZip));
|
||||||
|
const archive = archiver("zip", {
|
||||||
|
zlib: { level: 8 } // Sets the compression level.
|
||||||
|
});
|
||||||
|
|
||||||
|
// listen for all archive data to be written
|
||||||
|
// 'close' event is fired only when a file descriptor is involved
|
||||||
|
output.on("close", function () {
|
||||||
|
console.log(archive.pointer() + " total bytes");
|
||||||
|
console.log(`archiver has been finalized and the output ${releaseZip}`);
|
||||||
|
});
|
||||||
|
|
||||||
|
// This event is fired when the data source is drained no matter what was the data source.
|
||||||
|
// It is not part of this library but rather from the NodeJS Stream API.
|
||||||
|
// @see: https://nodejs.org/api/stream.html#stream_event_end
|
||||||
|
output.on("end", function () {
|
||||||
|
console.log("Data has been drained");
|
||||||
|
});
|
||||||
|
|
||||||
|
// good practice to catch warnings (ie stat failures and other non-blocking errors)
|
||||||
|
archive.on("warning", function (err) {
|
||||||
|
if (err.code === "ENOENT") {
|
||||||
|
// log warning
|
||||||
|
} else {
|
||||||
|
// throw error
|
||||||
|
throw err;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
archive.on("error", function (err) {
|
||||||
|
throw err;
|
||||||
|
});
|
||||||
|
|
||||||
|
for (const f of deleteEasytierFiles) {
|
||||||
|
fs.rmSync(path.join(__dirname, releaseDirEasytier + f), { recursive: true, force: true });
|
||||||
|
}
|
||||||
|
const r = path.join(__dirname, releaseZipDir);
|
||||||
|
if (!fs.existsSync(r)) {
|
||||||
|
fs.mkdirSync(r);
|
||||||
|
}
|
||||||
|
|
||||||
|
// pipe archive data to the file
|
||||||
|
archive.pipe(output);
|
||||||
|
archive
|
||||||
|
.append(fs.createReadStream(path.join(__dirname, releaseExe)), { name: "easytier-game.exe" })
|
||||||
|
.append(fs.createReadStream(path.join(__dirname, releaseHelp)), { name: "帮助.txt" })
|
||||||
|
.directory(path.join(__dirname, releaseDirEasytier), "easytier")
|
||||||
|
.finalize();
|
||||||
Reference in New Issue
Block a user