Files
webgui/plugins/dynamix/include/KeyUpload.php
2017-09-08 19:38:44 +02:00

33 lines
924 B
PHP

<?PHP
/* Copyright 2005-2017, Lime Technology
* Copyright 2012-2017, 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.
*/
?>
<?
$var = parse_ini_file('/var/local/emhttp/var.ini');
$cfg = '/boot/config/keyfile.cfg';
$luks = $var['luksKeyfile'];
$text = $_POST['text'] ?? false;
$file = $_POST['file'] ?? false;
$flag = $_POST['flag'] ?? false;
if ($text) {
file_put_contents($luks, $text);
if ($flag) file_put_contents($cfg,'text');
} elseif ($file) {
file_put_contents($luks, $file);
if ($flag) file_put_contents($cfg,'file');
} else {
@unlink($luks);
if ($_POST['reset']) @unlink($cfg);
}
$save = false;
?>