584 lines
16 KiB
Vue
584 lines
16 KiB
Vue
<script lang="ts" setup>
|
|
import {defineComponent, onMounted, onUnmounted, reactive, ref} from "vue";
|
|
import Breadcrumb from "@/layout/compoenets/Breadcrumb.vue";
|
|
import {ElMessage, FormInstance, FormRules} from "element-plus";
|
|
import {ipcRenderer} from "electron";
|
|
import {clone} from "@/utils/clone";
|
|
import {useDebounceFn} from "@vueuse/core";
|
|
import IconifyIconOffline from "@/components/IconifyIcon/src/iconifyIconOffline";
|
|
|
|
|
|
defineComponent({
|
|
name: "Proxy"
|
|
});
|
|
|
|
type Proxy = {
|
|
_id: string;
|
|
name: string;
|
|
type: string;
|
|
localIp: string;
|
|
localPort: number;
|
|
remotePort: number;
|
|
customDomains: string[];
|
|
};
|
|
|
|
type LocalPort = {
|
|
protocol: string;
|
|
ip: string;
|
|
port: number;
|
|
}
|
|
|
|
/**
|
|
* 代理列表
|
|
*/
|
|
const proxys = ref<Array<Proxy>>([]);
|
|
/**
|
|
* loading
|
|
*/
|
|
const loading = ref({
|
|
list: 1,
|
|
form: 0,
|
|
localPorts: 1
|
|
});
|
|
|
|
const localPorts = ref<Array<LocalPort>>([]);
|
|
const listPortsVisible = ref(false);
|
|
|
|
/**
|
|
* 弹出层属性
|
|
*/
|
|
const edit = ref({
|
|
title: "新增代理",
|
|
visible: false
|
|
});
|
|
|
|
/**
|
|
* 表单内容
|
|
*/
|
|
const editForm = ref<Proxy>({
|
|
_id: "",
|
|
name: "",
|
|
type: "http",
|
|
localIp: "",
|
|
localPort: 8080,
|
|
remotePort: 8080,
|
|
customDomains: [""]
|
|
});
|
|
|
|
/**
|
|
* 表单校验
|
|
*/
|
|
const editFormRules = reactive<FormRules>({
|
|
name: [
|
|
{required: true, message: "请输入名称", trigger: "blur"},
|
|
// {
|
|
// pattern: /^[a-zA-Z]+$/,
|
|
// message: "名称只能是英文",
|
|
// trigger: "blur"
|
|
// }
|
|
],
|
|
type: [{required: true, message: "请选择类型", trigger: "blur"}],
|
|
localIp: [
|
|
{required: true, message: "请输入内网地址", trigger: "blur"},
|
|
{
|
|
pattern: /^[\w-]+(\.[\w-]+)+$/,
|
|
message: "请输入正确的内网地址",
|
|
trigger: "blur"
|
|
}
|
|
],
|
|
localPort: [{required: true, message: "请输入本地端口", trigger: "blur"}],
|
|
remotePort: [{required: true, message: "请输入远程端口", trigger: "blur"}]
|
|
});
|
|
|
|
/**
|
|
* 表单dom
|
|
*/
|
|
const editFormRef = ref<FormInstance>();
|
|
|
|
/**
|
|
* 提交表单
|
|
*/
|
|
const handleSubmit = async () => {
|
|
if (!editFormRef.value) return;
|
|
await editFormRef.value.validate(valid => {
|
|
if (valid) {
|
|
loading.value.form = 1;
|
|
const data = clone(editForm.value);
|
|
if (data._id) {
|
|
ipcRenderer.send("proxy.updateProxy", data);
|
|
} else {
|
|
ipcRenderer.send("proxy.insertProxy", data);
|
|
}
|
|
}
|
|
});
|
|
};
|
|
|
|
/**
|
|
* 添加代理域名
|
|
*/
|
|
const handleAddDomain = () => {
|
|
editForm.value.customDomains.push("");
|
|
};
|
|
|
|
/**
|
|
* 删除代理列表
|
|
* @param index
|
|
*/
|
|
const handleDeleteDomain = (index: number) => {
|
|
editForm.value.customDomains.splice(index, 1);
|
|
};
|
|
|
|
/**
|
|
* 加载代理
|
|
*/
|
|
const handleLoadProxys = () => {
|
|
ipcRenderer.send("proxy.getProxys");
|
|
};
|
|
|
|
/**
|
|
* 删除代理
|
|
* @param proxy
|
|
*/
|
|
const handleDeleteProxy = (proxy: Proxy) => {
|
|
ipcRenderer.send("proxy.deleteProxyById", proxy._id);
|
|
};
|
|
|
|
/**
|
|
* 重置表单
|
|
*/
|
|
const handleResetForm = () => {
|
|
editForm.value = {
|
|
_id: "",
|
|
name: "",
|
|
type: "http",
|
|
localIp: "",
|
|
localPort: 0,
|
|
remotePort: 0,
|
|
customDomains: [""]
|
|
};
|
|
};
|
|
|
|
/**
|
|
* 初始化回调
|
|
*/
|
|
const handleInitHook = () => {
|
|
const InsertOrUpdateHook = (message: string, args: any) => {
|
|
loading.value.form--;
|
|
const {err} = args;
|
|
if (!err) {
|
|
ElMessage({
|
|
type: "success",
|
|
message: message
|
|
});
|
|
handleResetForm();
|
|
handleLoadProxys();
|
|
edit.value.visible = false;
|
|
}
|
|
};
|
|
|
|
ipcRenderer.on("Proxy.insertProxy.hook", (event, args) => {
|
|
InsertOrUpdateHook("新增成功", args);
|
|
});
|
|
ipcRenderer.on("Proxy.updateProxy.hook", (event, args) => {
|
|
InsertOrUpdateHook("修改成功", args);
|
|
});
|
|
|
|
ipcRenderer.on("local.getLocalPorts.hook", (event, args) => {
|
|
loading.value.localPorts--;
|
|
localPorts.value = args.data;
|
|
console.log('本地端口', localPorts.value)
|
|
})
|
|
// ipcRenderer.on("Proxy.updateProxy.hook", (event, args) => {
|
|
// loading.value.form--;
|
|
// const { err } = args;
|
|
// if (!err) {
|
|
// ElMessage({
|
|
// type: "success",
|
|
// message: "修改成功"
|
|
// });
|
|
// handleResetForm();
|
|
// handleLoadProxys();
|
|
// edit.value.visible = false;
|
|
// }
|
|
// });
|
|
ipcRenderer.on("Proxy.getProxys.hook", (event, args) => {
|
|
loading.value.list--;
|
|
const {err, data} = args;
|
|
if (!err) {
|
|
proxys.value = data;
|
|
}
|
|
});
|
|
ipcRenderer.on("Proxy.deleteProxyById.hook", (event, args) => {
|
|
const {err, data} = args;
|
|
if (!err) {
|
|
handleLoadProxys();
|
|
ElMessage({
|
|
type: "success",
|
|
message: "删除成功"
|
|
});
|
|
}
|
|
});
|
|
};
|
|
const handleOpenInsert = () => {
|
|
edit.value = {
|
|
title: "新增代理",
|
|
visible: true
|
|
};
|
|
};
|
|
|
|
const handleOpenUpdate = (proxy: Proxy) => {
|
|
editForm.value = clone(proxy);
|
|
edit.value = {
|
|
title: "修改代理",
|
|
visible: true
|
|
};
|
|
};
|
|
|
|
const handleLoadLocalPorts = () => {
|
|
loading.value.localPorts = 1;
|
|
ipcRenderer.send("local.getLocalPorts")
|
|
}
|
|
|
|
|
|
const handleSelectLocalPort = useDebounceFn((port: number) => {
|
|
editForm.value.localPort = port;
|
|
handleCloseLocalPortDialog();
|
|
})
|
|
|
|
const handleCloseLocalPortDialog = () => {
|
|
listPortsVisible.value = false;
|
|
}
|
|
|
|
const handleOpenLocalPortDialog = () => {
|
|
listPortsVisible.value = true;
|
|
handleLoadLocalPorts();
|
|
};
|
|
|
|
|
|
interface RestaurantItem {
|
|
value: string
|
|
}
|
|
|
|
const commonIp = ref<Array<RestaurantItem>>([])
|
|
|
|
const handleIpFetchSuggestions = (queryString: string, cb: any) => {
|
|
const results = queryString
|
|
? commonIp.value.filter(f => {
|
|
return f.value.toLowerCase().indexOf(queryString.toLowerCase()) !== -1
|
|
})
|
|
: commonIp.value
|
|
console.log(results, 'results')
|
|
cb(commonIp.value)
|
|
}
|
|
|
|
onMounted(() => {
|
|
handleInitHook();
|
|
handleLoadProxys();
|
|
});
|
|
|
|
onUnmounted(() => {
|
|
ipcRenderer.removeAllListeners("Proxy.insertProxy.hook");
|
|
ipcRenderer.removeAllListeners("Proxy.updateProxy.hook");
|
|
ipcRenderer.removeAllListeners("Proxy.deleteProxyById.hook");
|
|
ipcRenderer.removeAllListeners("Proxy.getProxys.hook");
|
|
ipcRenderer.removeAllListeners("local.getLocalPorts.hook");
|
|
});
|
|
</script>
|
|
<template>
|
|
<!-- <coming-soon />-->
|
|
<div class="main">
|
|
<breadcrumb>
|
|
<div
|
|
class="cursor-pointer h-[36px] w-[36px] bg-[#5f3bb0] rounded text-white flex justify-center items-center"
|
|
@click="handleOpenInsert"
|
|
>
|
|
<IconifyIconOffline icon="add"/>
|
|
</div>
|
|
</breadcrumb>
|
|
<div class="app-container-breadcrumb" v-loading="loading.list > 0">
|
|
<template v-if="proxys && proxys.length > 0">
|
|
<el-row :gutter="20">
|
|
<el-col
|
|
v-for="proxy in proxys"
|
|
:key="proxy._id"
|
|
:lg="6"
|
|
:md="8"
|
|
:sm="12"
|
|
:xl="6"
|
|
:xs="24"
|
|
class="mb-[20px]"
|
|
>
|
|
<div class="bg-white w-full rounded drop-shadow-xl p-4">
|
|
<div class="w-full flex justify-between">
|
|
<div class="flex">
|
|
<div
|
|
class="w-12 h-12 rounded mr-4 flex justify-center items-center"
|
|
:class="proxy.type"
|
|
>
|
|
<span class="text-white text-sm">{{ proxy.type }}</span>
|
|
</div>
|
|
<div class="h-12 relative">
|
|
<div class="text-sm font-bold">{{ proxy.name }}</div>
|
|
<!-- <el-tag-->
|
|
<!-- size="small"-->
|
|
<!-- class="absolute bottom-0"-->
|
|
<!-- type="success"-->
|
|
<!-- effect="plain"-->
|
|
<!-- >正常-->
|
|
<!-- </el-tag>-->
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<el-dropdown size="small">
|
|
<a href="javascript:void(0)"
|
|
class="text-xl text-[#ADADAD] hover:text-[#5A3DAA]"
|
|
>
|
|
<IconifyIconOffline icon="more-vert"/>
|
|
</a>
|
|
<template #dropdown>
|
|
<el-dropdown-menu>
|
|
<el-dropdown-item @click="handleOpenUpdate(proxy)">
|
|
<IconifyIconOffline
|
|
icon="edit"
|
|
class="primary-text text-[14px]"
|
|
/>
|
|
<span class="ml-1">修 改</span>
|
|
</el-dropdown-item>
|
|
<el-dropdown-item @click="handleDeleteProxy(proxy)">
|
|
<IconifyIconOffline
|
|
icon="delete-rounded"
|
|
class="text-red-500 text-[14px]"
|
|
/>
|
|
<span class="ml-1">删 除</span>
|
|
</el-dropdown-item>
|
|
</el-dropdown-menu>
|
|
</template>
|
|
</el-dropdown>
|
|
</div>
|
|
</div>
|
|
<div class="flex justify-between mt-4">
|
|
<div class="text-sm text-left">
|
|
<p class="text-[#ADADAD] font-bold">内网地址</p>
|
|
<p>{{ proxy.localIp }}</p>
|
|
</div>
|
|
<div class="text-sm text-center" v-if="proxy.type === 'tcp'">
|
|
<p class="text-[#ADADAD] font-bold">外网端口</p>
|
|
<p>{{ proxy.remotePort }}</p>
|
|
</div>
|
|
<div class="text-sm text-center">
|
|
<p class="text-[#ADADAD] font-bold">内网端口</p>
|
|
<p>{{ proxy.localPort }}</p>
|
|
</div>
|
|
</div>
|
|
<!-- <div class="text-sm text-[#ADADAD] py-2">本地地址 本地端口</div>-->
|
|
</div>
|
|
</el-col>
|
|
</el-row>
|
|
</template>
|
|
<div
|
|
v-else
|
|
class="w-full h-full bg-white rounded p-2 overflow-hidden drop-shadow-xl flex justify-center items-center"
|
|
>
|
|
<el-empty description="暂无代理"/>
|
|
</div>
|
|
</div>
|
|
|
|
<el-dialog
|
|
v-model="edit.visible"
|
|
:title="edit.title"
|
|
width="500"
|
|
top="5%"
|
|
>
|
|
<el-form
|
|
v-loading="loading.form"
|
|
label-position="top"
|
|
:model="editForm"
|
|
:rules="editFormRules"
|
|
ref="editFormRef"
|
|
>
|
|
<el-row :gutter="10">
|
|
<el-col :span="24">
|
|
<el-form-item label="代理类型:" prop="type">
|
|
<el-radio-group v-model="editForm.type">
|
|
<el-radio label="http" model-value="http"/>
|
|
<el-radio label="https" model-value="https"/>
|
|
<el-radio label="tcp" model-value="tcp"/>
|
|
<el-radio label="udp" model-value="udp"/>
|
|
<!-- <el-radio label="stcp" model-value="stcp" />-->
|
|
</el-radio-group>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="代理名称:" prop="name">
|
|
<el-input v-model="editForm.name" placeholder="代理名称" clearable/>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="内网地址:" prop="localIp">
|
|
<!-- <el-autocomplete-->
|
|
<!-- v-model="editForm.localIp"-->
|
|
<!-- :fetch-suggestions="handleIpFetchSuggestions"-->
|
|
<!-- clearable-->
|
|
<!-- placeholder="127.0.0.1"-->
|
|
<!-- />-->
|
|
<el-input v-model="editForm.localIp" placeholder="127.0.0.1" clearable/>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="内网端口:" prop="localPort">
|
|
<el-input-number
|
|
placeholder="8080"
|
|
class="local-port-input"
|
|
:min="0"
|
|
:max="65535"
|
|
v-model="editForm.localPort"
|
|
controls-position="right"
|
|
/>
|
|
<el-button class="ml-[10px]" plain type="primary" @click="handleOpenLocalPortDialog">
|
|
<IconifyIconOffline class="cursor-pointer mr-2" icon="bring-your-own-ip-rounded"/>
|
|
本地端口
|
|
</el-button>
|
|
</el-form-item>
|
|
</el-col>
|
|
<template v-if="editForm.type === 'tcp' || editForm.type === 'udp'">
|
|
<el-col :span="8">
|
|
<el-form-item label="外网端口:" prop="remotePort">
|
|
<el-input-number
|
|
:min="0"
|
|
:max="65535"
|
|
placeholder="8080"
|
|
v-model="editForm.remotePort"
|
|
controls-position="right"
|
|
/>
|
|
</el-form-item>
|
|
</el-col>
|
|
</template>
|
|
<template
|
|
v-if="editForm.type === 'http' || editForm.type === 'https'"
|
|
>
|
|
<el-col :span="24">
|
|
<el-form-item
|
|
v-for="(d, di) in editForm.customDomains"
|
|
:key="'domain' + di"
|
|
:label="di === 0 ? '自定义域名:' : ''"
|
|
:prop="`customDomains.${di}`"
|
|
:rules="[
|
|
{
|
|
required: true,
|
|
message: `自定义域名不能为空`,
|
|
trigger: 'blur'
|
|
},
|
|
{
|
|
pattern:
|
|
/^(?=^.{3,255}$)[a-zA-Z0-9][-a-zA-Z0-9]{0,62}(\.[a-zA-Z0-9][-a-zA-Z0-9]{0,62})+$/,
|
|
message: '请输入正确的域名',
|
|
trigger: 'blur'
|
|
}
|
|
]"
|
|
>
|
|
<el-input
|
|
class="domain-input"
|
|
placeholder="github.com"
|
|
v-model="editForm.customDomains[di]"
|
|
/>
|
|
<el-button
|
|
class="ml-[10px]"
|
|
type="primary"
|
|
plain
|
|
@click="handleAddDomain"
|
|
>
|
|
<IconifyIconOffline icon="add"/>
|
|
</el-button>
|
|
<el-button
|
|
type="danger"
|
|
plain
|
|
@click="handleDeleteDomain(di)"
|
|
:disabled="editForm.customDomains.length === 1"
|
|
>
|
|
<IconifyIconOffline icon="delete-rounded"/>
|
|
</el-button>
|
|
</el-form-item>
|
|
</el-col>
|
|
</template>
|
|
<el-col :span="24">
|
|
<el-form-item>
|
|
<div class="w-full flex justify-end">
|
|
<el-button @click="edit.visible = false">
|
|
<iconify-icon-offline class="cursor-pointer mr-2" icon="cancel-presentation"/>
|
|
关 闭
|
|
</el-button>
|
|
<el-button plain type="primary" @click="handleSubmit"
|
|
>
|
|
<IconifyIconOffline class="cursor-pointer mr-2" icon="save-rounded"/>
|
|
保 存
|
|
</el-button>
|
|
</div>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
</el-form>
|
|
</el-dialog>
|
|
|
|
<el-dialog v-model="listPortsVisible"
|
|
title="本地端口"
|
|
width="600"
|
|
top="5%">
|
|
<el-table :data="localPorts" stripe
|
|
v-loading="loading.localPorts"
|
|
border height="400">
|
|
<el-table-column label="协议" :width="60" prop="protocol"/>
|
|
<el-table-column label="IP" prop="ip"/>
|
|
<el-table-column label="端口" :width="80" prop="port"/>
|
|
<el-table-column label="操作" :width="80">
|
|
<template #default="scope">
|
|
<el-button type="text" @click="handleSelectLocalPort(scope.row.port)">
|
|
<IconifyIconOffline class="cursor-pointer mr-2" icon="gesture-select"/>
|
|
选择
|
|
</el-button>
|
|
</template>
|
|
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.http {
|
|
background: #d3585b;
|
|
}
|
|
|
|
.tcp {
|
|
background: #7bbc71;
|
|
}
|
|
|
|
.https {
|
|
background: #5f3bb0;
|
|
}
|
|
|
|
.udp {
|
|
background: #5ec7fe;
|
|
}
|
|
|
|
.domain-input {
|
|
width: calc(100% - 115px);
|
|
}
|
|
|
|
.local-port-input {
|
|
width: calc(100% - 125px);
|
|
}
|
|
|
|
.domain-input-button {
|
|
background: #5f3bb0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: white;
|
|
width: 32px;
|
|
height: 32px;
|
|
border-radius: 4px;
|
|
margin-left: 10px;
|
|
cursor: pointer;
|
|
}
|
|
</style>
|