2016-05-29 15:38:43 +00:00
|
|
|
<?php
|
|
|
|
|
2023-09-13 19:26:19 +00:00
|
|
|
function DisplayAuthConfig($username)
|
2019-04-10 08:37:35 +00:00
|
|
|
{
|
2023-09-16 09:46:11 +00:00
|
|
|
$status = new \RaspAP\Messages\StatusMessage;
|
2023-09-16 08:43:05 +00:00
|
|
|
$auth = new \RaspAP\Auth\HTTPAuth;
|
2023-09-13 19:26:19 +00:00
|
|
|
$config = $auth->getAuthConfig();
|
2024-02-08 08:41:42 +00:00
|
|
|
$username = $config['admin_user'];
|
2023-09-13 19:26:19 +00:00
|
|
|
$password = $config['admin_pass'];
|
|
|
|
|
2019-04-10 08:37:35 +00:00
|
|
|
if (isset($_POST['UpdateAdminPassword'])) {
|
2019-07-30 15:05:41 +00:00
|
|
|
if (password_verify($_POST['oldpass'], $password)) {
|
|
|
|
$new_username=trim($_POST['username']);
|
|
|
|
if ($_POST['newpass'] !== $_POST['newpassagain']) {
|
|
|
|
$status->addMessage('New passwords do not match', 'danger');
|
|
|
|
} elseif ($new_username == '') {
|
|
|
|
$status->addMessage('Username must not be empty', 'danger');
|
|
|
|
} else {
|
|
|
|
if (!file_exists(RASPI_ADMIN_DETAILS)) {
|
|
|
|
$tmpauth = fopen(RASPI_ADMIN_DETAILS, 'w');
|
|
|
|
fclose($tmpauth);
|
|
|
|
}
|
2018-08-03 23:58:34 +00:00
|
|
|
|
2019-07-30 15:05:41 +00:00
|
|
|
if ($auth_file = fopen(RASPI_ADMIN_DETAILS, 'w')) {
|
|
|
|
fwrite($auth_file, $new_username.PHP_EOL);
|
|
|
|
fwrite($auth_file, password_hash($_POST['newpass'], PASSWORD_BCRYPT).PHP_EOL);
|
|
|
|
fclose($auth_file);
|
|
|
|
$username = $new_username;
|
2024-02-24 09:23:58 +00:00
|
|
|
$_SESSION['user_id'] = $username;
|
2019-07-30 15:05:41 +00:00
|
|
|
$status->addMessage('Admin password updated');
|
|
|
|
} else {
|
|
|
|
$status->addMessage('Failed to update admin password', 'danger');
|
2019-04-10 08:37:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2019-07-30 15:05:41 +00:00
|
|
|
$status->addMessage('Old password does not match', 'danger');
|
2016-07-09 00:00:53 +00:00
|
|
|
}
|
2016-06-24 21:39:39 +00:00
|
|
|
}
|
2016-05-29 15:38:43 +00:00
|
|
|
|
2023-09-13 19:26:19 +00:00
|
|
|
echo renderTemplate(
|
|
|
|
"admin", compact(
|
|
|
|
"status",
|
|
|
|
"username"
|
|
|
|
)
|
|
|
|
);
|
2019-08-18 22:39:22 +00:00
|
|
|
}
|