From bb9b9100a8c924538f1df9ee5e2843cf1e780a64 Mon Sep 17 00:00:00 2001 From: mhsanaei Date: Mon, 15 Jul 2024 00:21:54 +0200 Subject: [warp] enhanced + delete option Co-Authored-By: Alireza Ahmadi --- web/html/xui/warp_modal.html | 136 ++++++++++++++++++++++++++++--------------- 1 file changed, 89 insertions(+), 47 deletions(-) (limited to 'web/html') diff --git a/web/html/xui/warp_modal.html b/web/html/xui/warp_modal.html index b349ce43..17f035ca 100644 --- a/web/html/xui/warp_modal.html +++ b/web/html/xui/warp_modal.html @@ -24,19 +24,22 @@ [[ warpModal.warpData.private_key ]] + {{ i18n "delete" }} {{ i18n "pages.xray.outbound.settings" }} - {{ i18n "pages.inbounds.update" }} + {{ i18n "pages.inbounds.update" }} {{ i18n "pages.xray.outbound.accountInfo" }} - {{ i18n "info" }} + {{ i18n "info" }} @@ -101,21 +104,20 @@ this.visible = true; this.warpConfig = null; this.getData(); - }, close() { this.visible = false; this.loading(false); }, - loading(loading=true) { + loading(loading = true) { this.confirmLoading = loading; }, - async getData(){ + async getData() { this.loading(true); const msg = await HttpUtil.post('/panel/xray/warp/data'); this.loading(false); if (msg.success) { - this.warpData = msg.obj.length>0 ? JSON.parse(msg.obj): null; + this.warpData = msg.obj.length > 0 ? JSON.parse(msg.obj) : null; } }, }; @@ -131,14 +133,15 @@ collectConfig() { config = warpModal.warpConfig.config; peer = config.peers[0]; - if(config){ + if (config) { warpModal.warpOutbound = Outbound.fromJson({ tag: 'warp', protocol: Protocols.Wireguard, settings: { mtu: 1420, secretKey: warpModal.warpData.private_key, - address: Object.values(config.interface.addresses), + address: this.getAddresses(config.interface.addresses), + reserved: this.getResolved(config.client_id), domainStrategy: 'ForceIP', peers: [{ publicKey: peer.public_key, @@ -149,10 +152,32 @@ }); } }, - async register(){ + getAddresses(addrs) { + let addresses = []; + if (addrs.v4) addresses.push(addrs.v4 + "/32"); + if (addrs.v6) addresses.push(addrs.v6 + "/128"); + return addresses; + }, + getResolved(client_id) { + let reserved = []; + let decoded = atob(client_id); + let hexString = ''; + for (let i = 0; i < decoded.length; i++) { + let hex = decoded.charCodeAt(i).toString(16); + hexString += (hex.length === 1 ? '0' : '') + hex; + } + + for (let i = 0; i < hexString.length; i += 2) { + let hexByte = hexString.slice(i, i + 2); + let decValue = parseInt(hexByte, 16); + reserved.push(decValue); + } + return reserved; + }, + async register() { warpModal.loading(true); keys = Wireguard.generateKeypair(); - const msg = await HttpUtil.post('/panel/xray/warp/reg',keys); + const msg = await HttpUtil.post('/panel/xray/warp/reg', keys); if (msg.success) { resp = JSON.parse(msg.obj); warpModal.warpData = resp.data; @@ -161,9 +186,9 @@ } warpModal.loading(false); }, - async updateLicense(l){ + async updateLicense(l) { warpModal.loading(true); - const msg = await HttpUtil.post('/panel/xray/warp/license',{license: l}); + const msg = await HttpUtil.post('/panel/xray/warp/license', { license: l }); if (msg.success) { warpModal.warpData = JSON.parse(msg.obj); warpModal.warpConfig = null; @@ -171,7 +196,7 @@ } warpModal.loading(false); }, - async getConfig(){ + async getConfig() { warpModal.loading(true); const msg = await HttpUtil.post('/panel/xray/warp/config'); warpModal.loading(false); @@ -180,20 +205,37 @@ this.collectConfig(); } }, - addOutbound(){ + async delConfig() { + warpModal.loading(true); + const msg = await HttpUtil.post('/panel/xray/warp/del'); + warpModal.loading(false); + if (msg.success) { + warpModal.warpData = null; + warpModal.warpConfig = null; + this.delOutbound(); + } + }, + addOutbound() { app.templateSettings.outbounds.push(warpModal.warpOutbound.toJson()); app.outboundSettings = JSON.stringify(app.templateSettings.outbounds); warpModal.close(); }, - resetOutbound(){ + resetOutbound() { app.templateSettings.outbounds[this.warpOutboundIndex] = warpModal.warpOutbound.toJson(); app.outboundSettings = JSON.stringify(app.templateSettings.outbounds); warpModal.close(); + }, + delOutbound() { + if (this.warpOutboundIndex != -1) { + app.templateSettings.outbounds.splice(this.warpOutboundIndex, 1); + app.outboundSettings = JSON.stringify(app.templateSettings.outbounds); + } + warpModal.close(); } }, computed: { warpOutboundIndex: { - get: function() { + get: function () { return app.templateSettings ? app.templateSettings.outbounds.findIndex((o) => o.tag == 'warp') : -1; } } @@ -201,4 +243,4 @@ }); -{{end}} +{{end}} \ No newline at end of file -- cgit v1.2.3