ulogger-server/utils/changepass.php

68 lines
2.0 KiB
PHP
Raw Permalink Normal View History

2017-04-06 23:23:25 +02:00
<?php
/* μlogger
*
* Copyright(C) 2017 Bartek Fabiszewski (www.fabiszewski.net)
*
* This is free software; you can redistribute it and/or modify it under
2017-04-07 00:05:28 +02:00
* the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
2017-04-06 23:23:25 +02:00
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
2017-04-07 00:05:28 +02:00
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
2017-04-06 23:23:25 +02:00
*/
2017-04-09 23:35:55 +02:00
2020-02-20 17:08:47 +01:00
require_once(dirname(__DIR__) . "/helpers/auth.php");
require_once(ROOT_DIR . "/helpers/config.php");
require_once(ROOT_DIR . "/helpers/utils.php");
2020-11-11 18:29:06 +01:00
require_once(ROOT_DIR . "/helpers/lang.php");
2017-04-06 23:23:25 +02:00
2020-02-20 17:08:47 +01:00
$auth = new uAuth();
$config = uConfig::getInstance();
2020-11-11 18:29:06 +01:00
$lang = (new uLang($config))->getStrings();
2020-02-20 17:08:47 +01:00
if (!$auth->isAuthenticated()) {
$auth->sendUnauthorizedHeader();
2020-11-11 18:29:06 +01:00
uUtils::exitWithError($lang["notauthorized"]);
2020-02-20 17:08:47 +01:00
}
2017-08-25 13:59:19 +02:00
2020-02-20 17:08:47 +01:00
$login = uUtils::postString('login');
$oldpass = uUtils::postPass('oldpass');
$pass = uUtils::postPass('pass');
// FIXME: strings need to be localized
if (empty($pass)) {
2020-11-11 18:29:06 +01:00
uUtils::exitWithError($lang["passempty"]);
2020-02-20 17:08:47 +01:00
}
if (!$config->validPassStrength($pass)) {
2020-11-11 18:29:06 +01:00
uUtils::exitWithError($lang["passstrengthwarn"]);
2020-02-20 17:08:47 +01:00
}
if (empty($login)) {
2020-11-11 18:29:06 +01:00
uUtils::exitWithError($lang["loginempty"]);
2020-02-20 17:08:47 +01:00
}
if ($auth->user->login === $login) {
// current user
$passUser = $auth->user;
if (!$passUser->validPassword($oldpass)) {
2020-11-11 18:29:06 +01:00
uUtils::exitWithError($lang["oldpassinvalid"]);
2017-04-06 23:23:25 +02:00
}
2020-02-20 17:08:47 +01:00
} else if ($auth->isAdmin()) {
// different user, only admin
$passUser = new uUser($login);
if (!$passUser->isValid) {
2020-11-11 18:29:06 +01:00
uUtils::exitWithError($lang["userunknown"]);
2017-04-06 23:23:25 +02:00
}
2020-02-20 17:08:47 +01:00
} else {
2020-11-11 18:29:06 +01:00
uUtils::exitWithError($lang["notauthorized"]);
2020-02-20 17:08:47 +01:00
}
if ($passUser->setPass($pass) === false) {
2020-11-11 18:29:06 +01:00
uUtils::exitWithError($lang["servererror"]);
2020-02-20 17:08:47 +01:00
}
$auth->updateSession();
uUtils::exitWithSuccess();
2017-04-09 23:35:55 +02:00
2017-04-06 23:23:25 +02:00
?>