@ -27,8 +27,7 @@ const {
module . exports = class WireGuard {
module . exports = class WireGuard {
async getConfig ( ) {
async __ buildConfig ( ) {
if ( ! this . __ configPromise ) {
this . __ configPromise = Promise . resolve ( ) . then ( async ( ) => {
this . __ configPromise = Promise . resolve ( ) . then ( async ( ) => {
if ( ! WG_HOST ) {
if ( ! WG_HOST ) {
throw new Error ( 'WG_HOST Environment Variable Not Set!' ) ;
throw new Error ( 'WG_HOST Environment Variable Not Set!' ) ;
@ -58,8 +57,18 @@ module.exports = class WireGuard {
debug ( 'Configuration generated.' ) ;
debug ( 'Configuration generated.' ) ;
}
}
return config ;
} ) ;
return this . __ configPromise ;
}
async getConfig ( ) {
if ( ! this . __ configPromise ) {
const config = await this . __ buildConfig ( ) ;
await this . __ saveConfig ( config ) ;
await this . __ saveConfig ( config ) ;
await Util . exec ( 'wg-quick down wg0' ) . catch ( ( ) => { } ) ;
await Util . exec ( 'wg-quick down wg0' ) . catch ( ( ) => { } ) ;
await Util . exec ( 'wg-quick up wg0' ) . catch ( ( err ) => {
await Util . exec ( 'wg-quick up wg0' ) . catch ( ( err ) => {
if ( err && err . message && err . message . includes ( 'Cannot find device "wg0"' ) ) {
if ( err && err . message && err . message . includes ( 'Cannot find device "wg0"' ) ) {
throw new Error ( 'WireGuard exited with the error: Cannot find device "wg0"\nThis usually means that your host\'s kernel does not support WireGuard!' ) ;
throw new Error ( 'WireGuard exited with the error: Cannot find device "wg0"\nThis usually means that your host\'s kernel does not support WireGuard!' ) ;
@ -72,9 +81,6 @@ module.exports = class WireGuard {
// await Util.exec('iptables -A FORWARD -i wg0 -j ACCEPT');
// await Util.exec('iptables -A FORWARD -i wg0 -j ACCEPT');
// await Util.exec('iptables -A FORWARD -o wg0 -j ACCEPT');
// await Util.exec('iptables -A FORWARD -o wg0 -j ACCEPT');
await this . __ syncConfig ( ) ;
await this . __ syncConfig ( ) ;
return config ;
} ) ;
}
}
return this . __ configPromise ;
return this . __ configPromise ;
@ -227,7 +233,9 @@ Endpoint = ${WG_HOST}:${WG_CONFIG_PORT}`;
const config = await this . getConfig ( ) ;
const config = await this . getConfig ( ) ;
const privateKey = await Util . exec ( 'wg genkey' ) ;
const privateKey = await Util . exec ( 'wg genkey' ) ;
const publicKey = await Util . exec ( ` echo ${ privateKey } | wg pubkey ` ) ;
const publicKey = await Util . exec ( ` echo ${ privateKey } | wg pubkey ` , {
log : 'echo ***hidden*** | wg pubkey' ,
} ) ;
const preSharedKey = await Util . exec ( 'wg genpsk' ) ;
const preSharedKey = await Util . exec ( 'wg genpsk' ) ;
// Calculate next IP
// Calculate next IP
@ -319,25 +327,30 @@ Endpoint = ${WG_HOST}:${WG_CONFIG_PORT}`;
await this . saveConfig ( ) ;
await this . saveConfig ( ) ;
}
}
async ___ forceRestart ( ) {
async __ reloadConfig ( ) {
this . __ configPromise = null ;
await this . __ buildConfig ( ) ;
await this . save Config( ) ;
await this . __ sync Config( ) ;
}
}
async restoreConfiguration ( config ) {
async restoreConfiguration ( config ) {
debug ( 'Starting configuration restore process.' ) ;
const _ config = JSON . parse ( config ) ;
const _ config = JSON . parse ( config ) ;
await this . __ saveConfig ( _ config ) ;
await this . __ saveConfig ( _ config ) ;
await this . ___ forceRestart ( ) ;
await this . __ reloadConfig ( ) ;
debug ( 'Configuration restore process completed.' ) ;
}
}
async backupConfiguration ( ) {
async backupConfiguration ( ) {
debug ( 'Starting configuration backup.' ) ;
const config = await this . getConfig ( ) ;
const config = await this . getConfig ( ) ;
return JSON . stringify ( config , null , 2 ) ;
const backup = JSON . stringify ( config , null , 2 ) ;
debug ( 'Configuration backup completed.' ) ;
return backup ;
}
}
// Shutdown wireguard
// Shutdown wireguard
async Shutdown ( ) {
async Shutdown ( ) {
await Util . exec ( 'wg-quick down wg0' ) . catch ( ( ) => { } ) ;
await Util . exec ( 'wg-quick down wg0' ) . catch ( ( ) => { } ) ;
}
}
} ;
} ;