From c7cc3eca4a787681648556c24820cce404ce9bc6 Mon Sep 17 00:00:00 2001 From: Thomas Willems Date: Sat, 27 Jan 2024 19:15:07 +0100 Subject: [PATCH 01/49] allow clients with no privateKey see https://github.com/wg-easy/wg-easy/discussions/791 I disabled the download from the frontend. If someone tries to manually call the API, the privateKey block is set to "REPLACE_ME" to indicate that this value must be set manually. --- src/lib/WireGuard.js | 4 ++-- src/www/css/app.css | 5 +++++ src/www/index.html | 24 ++++++++++++++++++------ src/www/js/i18n.js | 2 ++ 4 files changed, 27 insertions(+), 8 deletions(-) diff --git a/src/lib/WireGuard.js b/src/lib/WireGuard.js index 1d432a30..372524c5 100644 --- a/src/lib/WireGuard.js +++ b/src/lib/WireGuard.js @@ -141,7 +141,7 @@ AllowedIPs = ${client.address}/32`; createdAt: new Date(client.createdAt), updatedAt: new Date(client.updatedAt), allowedIPs: client.allowedIPs, - + downloadableConfig: 'privateKey' in client, persistentKeepalive: null, latestHandshakeAt: null, transferRx: null, @@ -198,7 +198,7 @@ AllowedIPs = ${client.address}/32`; return ` [Interface] -PrivateKey = ${client.privateKey} +PrivateKey = ${client.privateKey ? `${client.privateKey}` : 'REPLACE_ME'} Address = ${client.address}/24 ${WG_DEFAULT_DNS ? `DNS = ${WG_DEFAULT_DNS}` : ''} ${WG_MTU ? `MTU = ${WG_MTU}` : ''} diff --git a/src/www/css/app.css b/src/www/css/app.css index 4f4e21dd..3232d333 100644 --- a/src/www/css/app.css +++ b/src/www/css/app.css @@ -1334,6 +1334,11 @@ video { transition-duration: 150ms; } +.disabled-link { + opacity: 0.25; + cursor: default; +} + .duration-200 { transition-duration: 200ms; } diff --git a/src/www/index.html b/src/www/index.html index 2edf3c70..fa5534d5 100644 --- a/src/www/index.html +++ b/src/www/index.html @@ -214,9 +214,14 @@ -