mirror of
https://github.com/unraid/webgui.git
synced 2026-01-04 08:29:51 -06:00
66 lines
2.3 KiB
PHP
Executable File
66 lines
2.3 KiB
PHP
Executable File
#!/usr/bin/php -q
|
|
<?PHP
|
|
/* Copyright 2005-2024, Lime Technology
|
|
* Copyright 2012-2024, Bergware International.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License version 2,
|
|
* as published by the Free Software Foundation.
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*/
|
|
?>
|
|
<?
|
|
$docroot ??= ($_SERVER['DOCUMENT_ROOT'] ?: '/usr/local/emhttp');
|
|
require_once "$docroot/webGui/include/Wrappers.php";
|
|
extract(parse_plugin_cfg('dynamix',true));
|
|
|
|
// add translations
|
|
$_SERVER['REQUEST_URI'] = 'settings';
|
|
$login_locale = _var($display,'locale');
|
|
require_once "$docroot/webGui/include/Translations.php";
|
|
|
|
$file = $argv[1];
|
|
$path = realpath('/etc/wireguard'.($argv[2]??''));
|
|
$root = '/boot/config/wireguard';
|
|
?>
|
|
<style>
|
|
pre h2{text-decoration:underline}
|
|
input#download{margin:0 0 10px 0}
|
|
pre.config{font-family:bitstream;margin:0;border:none}
|
|
img{display:block;margin:20px 0}
|
|
img:hover{transform:scale(1.1)}
|
|
</style>
|
|
|
|
<script>
|
|
function config_cleanUp(id,file) {
|
|
if (document.hasFocus()) {
|
|
$('#'+id).val("<?=_('Download')?>").prop('disabled',false);
|
|
$.post('/webGui/include/Download.php',{cmd:'delete',file:file});
|
|
} else {
|
|
setTimeout(function(){config_cleanUp(id,file);},1000);
|
|
}
|
|
}
|
|
function config_download(id,source,file) {
|
|
$('#'+id).val("<?=_('Downloading')?>...").prop('disabled',true);
|
|
$.post('/webGui/include/Download.php',{cmd:'save',source:source+'.conf',file:file,opts:'qj'},function(){
|
|
$.post('/webGui/include/Download.php',{cmd:'save',source:source+'.png',file:file,opts:'qj'},function(zip){
|
|
location = zip;
|
|
setTimeout(function(){config_cleanUp(id,file);},1000);
|
|
});
|
|
});
|
|
}
|
|
</script>
|
|
|
|
<h2><?=$argv[2] ? _('Remote peer configuration') : _('Local server configuration')?></h2>
|
|
<div><input type='button' id='download' value="<?=_('Download')?>" onclick="config_download(this.id,'<?="$path/$file"?>','<?=$file?>.zip')"></div>
|
|
<pre class='config'><?=@file_get_contents("$path/$file.conf")?></pre>
|
|
<?
|
|
if (is_file("$path/$file.png")) {
|
|
@unlink("$docroot/$file.png");
|
|
symlink("$path/$file.png", "$docroot/$file.png");
|
|
echo "<img src=\"/$file.png?v=",filemtime("$path/$file.png"),"\">";
|
|
}
|
|
?>
|