2019-01-04 22:26:34 +08:00
|
|
|
<?php
|
|
|
|
//
|
|
|
|
// ZoneMinder web action file
|
|
|
|
// Copyright (C) 2019 ZoneMinder LLC
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License
|
|
|
|
// as published by the Free Software Foundation; either version 2
|
|
|
|
// of the License, or (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.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
//
|
|
|
|
|
2021-03-21 21:18:12 +08:00
|
|
|
global $error_message;
|
|
|
|
|
|
|
|
if ($action == 'Save') {
|
|
|
|
require_once('includes/User.php');
|
|
|
|
$uid = isset($_REQUEST['uid']) ? validInt($_REQUEST['uid']) : 0;
|
|
|
|
$dbUser = new ZM\User($uid);
|
|
|
|
|
|
|
|
if (canEdit('System')) {
|
|
|
|
# Need to check for uniqueness of Username
|
|
|
|
$user_with_my_username = ZM\User::find_one(array('Username'=>$_REQUEST['newUser']['Username']));
|
|
|
|
if ($user_with_my_username and
|
|
|
|
( ( $uid and ($user_with_my_username->Id() != $uid) ) or !$uid)
|
|
|
|
) {
|
|
|
|
$error_message = 'There already exists a user with this Username<br/>';
|
|
|
|
unset($_REQUEST['redirect']);
|
|
|
|
return;
|
2020-06-24 10:18:45 +08:00
|
|
|
}
|
2021-03-21 21:18:12 +08:00
|
|
|
# What other tests should we do?
|
2019-01-04 22:26:34 +08:00
|
|
|
|
2021-03-21 21:18:12 +08:00
|
|
|
if (isset($_REQUEST['newUser']['MonitorIds']) and is_array($_REQUEST['newUser']['MonitorIds']))
|
2020-06-24 10:18:45 +08:00
|
|
|
$_REQUEST['newUser']['MonitorIds'] = implode(',', $_REQUEST['newUser']['MonitorIds']);
|
2021-03-21 21:18:12 +08:00
|
|
|
if (!empty($_REQUEST['newUser']['Password'])) {
|
|
|
|
$_REQUEST['newUser']['Password'] = password_hash($_REQUEST['newUser']['Password'], PASSWORD_BCRYPT);
|
|
|
|
} else {
|
2020-06-24 10:18:45 +08:00
|
|
|
unset($_REQUEST['newUser']['Password']);
|
2021-03-21 21:18:12 +08:00
|
|
|
}
|
|
|
|
$changes = $dbUser->changes($_REQUEST['newUser']);
|
|
|
|
ZM\Debug("Changes: " . print_r($changes, true));
|
2020-06-24 10:18:45 +08:00
|
|
|
|
2021-03-21 21:18:12 +08:00
|
|
|
if (count($changes)) {
|
|
|
|
if (!$dbUser->save($changes)) {
|
|
|
|
$error_message = $dbUser->get_last_error();
|
|
|
|
unset($_REQUEST['redirect']);
|
|
|
|
return;
|
2020-06-24 10:18:45 +08:00
|
|
|
}
|
2019-01-04 22:26:34 +08:00
|
|
|
|
2021-03-21 21:18:12 +08:00
|
|
|
if ($uid) {
|
|
|
|
if ($user and ($dbUser->Username() == $user['Username'])) {
|
2020-02-20 05:55:38 +08:00
|
|
|
# We are the logged in user, need to update the $user object and generate a new auth_hash
|
|
|
|
$sql = 'SELECT * FROM Users WHERE Enabled=1 AND Id=?';
|
2021-03-21 21:18:12 +08:00
|
|
|
$user = dbFetchOne($sql, NULL, array($uid));
|
2020-02-20 05:55:38 +08:00
|
|
|
|
|
|
|
# Have to update auth hash in session
|
|
|
|
zm_session_start();
|
|
|
|
generateAuthHash(ZM_AUTH_HASH_IPS, true);
|
|
|
|
session_write_close();
|
|
|
|
}
|
2019-01-04 22:26:34 +08:00
|
|
|
}
|
2020-10-10 21:48:09 +08:00
|
|
|
} # end if changes
|
2021-03-21 21:18:12 +08:00
|
|
|
} else if (ZM_USER_SELF_EDIT and ($uid == $user['Id'])) {
|
|
|
|
if (!empty($_REQUEST['newUser']['Password'])) {
|
|
|
|
$_REQUEST['newUser']['Password'] = password_hash($_REQUEST['newUser']['Password'], PASSWORD_BCRYPT);
|
2019-05-13 01:01:29 +08:00
|
|
|
} else {
|
2021-03-21 21:18:12 +08:00
|
|
|
unset($_REQUEST['newUser']['Password']);
|
2019-05-13 01:01:29 +08:00
|
|
|
}
|
2021-03-21 21:18:12 +08:00
|
|
|
$fields = array('Password'=>'', 'Language'=>'', 'HomeView'=>'');
|
|
|
|
ZM\Debug("changes: ".print_r(array_intersect_key($_REQUEST['newUser'], $fields),true));
|
|
|
|
$changes = $dbUser->changes(array_intersect_key($_REQUEST['newUser'], $fields));
|
|
|
|
ZM\Debug("changes: ".print_r($changes, true));
|
2019-05-13 01:01:29 +08:00
|
|
|
|
2021-03-21 21:18:12 +08:00
|
|
|
if (count($changes)) {
|
|
|
|
if (!$dbUser->save($changes)) {
|
|
|
|
$error_message = $dbUser->get_last_error();
|
|
|
|
unset($_REQUEST['redirect']);
|
|
|
|
return;
|
|
|
|
}
|
2020-02-20 05:55:38 +08:00
|
|
|
|
|
|
|
# We are the logged in user, need to update the $user object and generate a new auth_hash
|
|
|
|
$sql = 'SELECT * FROM Users WHERE Enabled=1 AND Id=?';
|
|
|
|
$user = dbFetchOne($sql, NULL, array($uid));
|
|
|
|
|
|
|
|
zm_session_start();
|
|
|
|
generateAuthHash(ZM_AUTH_HASH_IPS, true);
|
|
|
|
session_write_close();
|
2019-01-04 22:26:34 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} // end if $action == user
|
|
|
|
?>
|