2009-01-20 Evi Vanoost <vanooste@rcbi.rochester.edu>
* ajax.php, include/config.inc.php, include/config_process.php,
include/functions.php, include/functions_db.php,
include/functions_ui.php, index.php, install.php,
operation/users/user.php, operation/users/user_edit.php,
reporting/fgraph.php: Added pluggable authentication and moved functions
* general/login_page.php, general/logon_ok.php,
godmode/agentes/modificar_agente.php,
godmode/users/configure_users.php, godmode/users/user_list.php,
operation/agentes/estado_agente.php, operation/incidents/incident.php,
operation/incidents/incident_search.php: Updated functions
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1366 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-20 19:21:20 +01:00
|
|
|
<?php
|
|
|
|
if (!isset ($config)) {
|
|
|
|
die ('You cannot access this file directly!');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Pandora FMS - the Flexible Monitoring System
|
|
|
|
// ============================================
|
|
|
|
// Copyright (c) 2009 Evi Vanoost, vanooste@rcbi.rochester.edu
|
|
|
|
// Please see http://pandora.sourceforge.net for full contribution list
|
|
|
|
|
|
|
|
// 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 for version 2.
|
|
|
|
// 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.
|
|
|
|
// Database configuration (default ones)
|
|
|
|
|
2009-01-22 18:44:33 +01:00
|
|
|
$config["user_can_update_info"] = true;
|
2009-01-20 Evi Vanoost <vanooste@rcbi.rochester.edu>
* ajax.php, include/config.inc.php, include/config_process.php,
include/functions.php, include/functions_db.php,
include/functions_ui.php, index.php, install.php,
operation/users/user.php, operation/users/user_edit.php,
reporting/fgraph.php: Added pluggable authentication and moved functions
* general/login_page.php, general/logon_ok.php,
godmode/agentes/modificar_agente.php,
godmode/users/configure_users.php, godmode/users/user_list.php,
operation/agentes/estado_agente.php, operation/incidents/incident.php,
operation/incidents/incident_search.php: Updated functions
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1366 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-20 19:21:20 +01:00
|
|
|
$config["user_can_update_password"] = true;
|
|
|
|
$config["admin_can_add_user"] = true;
|
|
|
|
$config["admin_can_delete_user"] = true;
|
2009-01-22 18:44:33 +01:00
|
|
|
$config["admin_can_disable_user"] = false; //currently not implemented
|
|
|
|
$config["admin_can_make_admin"] = true;
|
2009-01-20 Evi Vanoost <vanooste@rcbi.rochester.edu>
* ajax.php, include/config.inc.php, include/config_process.php,
include/functions.php, include/functions_db.php,
include/functions_ui.php, index.php, install.php,
operation/users/user.php, operation/users/user_edit.php,
reporting/fgraph.php: Added pluggable authentication and moved functions
* general/login_page.php, general/logon_ok.php,
godmode/agentes/modificar_agente.php,
godmode/users/configure_users.php, godmode/users/user_list.php,
operation/agentes/estado_agente.php, operation/incidents/incident.php,
operation/incidents/incident_search.php: Updated functions
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1366 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-20 19:21:20 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* process_user_login accepts $login and $pass and handles it according to current authentication scheme
|
|
|
|
*
|
|
|
|
* @param string $login
|
|
|
|
* @param string $pass
|
|
|
|
*
|
|
|
|
* @return mixed False in case of error or invalid credentials, the username in case it's correct.
|
|
|
|
*/
|
|
|
|
function process_user_login ($login, $pass) {
|
|
|
|
global $mysql_cache;
|
|
|
|
|
|
|
|
// Connect to Database
|
2009-01-22 18:44:33 +01:00
|
|
|
$sql = sprintf ("SELECT `id_user`, `password` FROM `tusuario` WHERE `id_user` = '%s'", $login);
|
2009-01-20 Evi Vanoost <vanooste@rcbi.rochester.edu>
* ajax.php, include/config.inc.php, include/config_process.php,
include/functions.php, include/functions_db.php,
include/functions_ui.php, index.php, install.php,
operation/users/user.php, operation/users/user_edit.php,
reporting/fgraph.php: Added pluggable authentication and moved functions
* general/login_page.php, general/logon_ok.php,
godmode/agentes/modificar_agente.php,
godmode/users/configure_users.php, godmode/users/user_list.php,
operation/agentes/estado_agente.php, operation/incidents/incident.php,
operation/incidents/incident_search.php: Updated functions
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1366 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-20 19:21:20 +01:00
|
|
|
$row = get_db_row_sql ($sql);
|
|
|
|
|
|
|
|
//Check that row exists, that password is not empty and that password is the same hash
|
|
|
|
if ($row !== false && $row["password"] !== md5 ("") && $row["password"] == md5 ($pass)) {
|
|
|
|
// Login OK
|
|
|
|
// Nick could be uppercase or lowercase (select in MySQL
|
|
|
|
// is not case sensitive)
|
|
|
|
// We get DB nick to put in PHP Session variable,
|
|
|
|
// to avoid problems with case-sensitive usernames.
|
|
|
|
// Thanks to David Muñiz for Bug discovery :)
|
2009-01-22 18:44:33 +01:00
|
|
|
return $row["id_user"];
|
2009-01-20 Evi Vanoost <vanooste@rcbi.rochester.edu>
* ajax.php, include/config.inc.php, include/config_process.php,
include/functions.php, include/functions_db.php,
include/functions_ui.php, index.php, install.php,
operation/users/user.php, operation/users/user_edit.php,
reporting/fgraph.php: Added pluggable authentication and moved functions
* general/login_page.php, general/logon_ok.php,
godmode/agentes/modificar_agente.php,
godmode/users/configure_users.php, godmode/users/user_list.php,
operation/agentes/estado_agente.php, operation/incidents/incident.php,
operation/incidents/incident_search.php: Updated functions
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1366 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-20 19:21:20 +01:00
|
|
|
} else {
|
|
|
|
$mysql_cache["auth_error"] = "User not found in database or incorrect password";
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if a user is administrator.
|
|
|
|
*
|
|
|
|
* @param string User id.
|
|
|
|
*
|
|
|
|
* @return bool True is the user is admin
|
|
|
|
*/
|
|
|
|
function is_user_admin ($id_user) {
|
2009-01-22 18:44:33 +01:00
|
|
|
return (bool) get_db_value ('is_admin', 'tusuario', 'id_user', $id_user);
|
2009-01-20 Evi Vanoost <vanooste@rcbi.rochester.edu>
* ajax.php, include/config.inc.php, include/config_process.php,
include/functions.php, include/functions_db.php,
include/functions_ui.php, index.php, install.php,
operation/users/user.php, operation/users/user_edit.php,
reporting/fgraph.php: Added pluggable authentication and moved functions
* general/login_page.php, general/logon_ok.php,
godmode/agentes/modificar_agente.php,
godmode/users/configure_users.php, godmode/users/user_list.php,
operation/agentes/estado_agente.php, operation/incidents/incident.php,
operation/incidents/incident_search.php: Updated functions
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1366 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-20 19:21:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check is a user exists in the system
|
|
|
|
*
|
|
|
|
* @param string User id.
|
|
|
|
*
|
|
|
|
* @return bool True if the user exists.
|
|
|
|
*/
|
|
|
|
function is_user ($id_user) {
|
2009-01-22 18:44:33 +01:00
|
|
|
$user = get_db_row ('tusuario', 'id_user', $id_user);
|
2009-01-20 Evi Vanoost <vanooste@rcbi.rochester.edu>
* ajax.php, include/config.inc.php, include/config_process.php,
include/functions.php, include/functions_db.php,
include/functions_ui.php, index.php, install.php,
operation/users/user.php, operation/users/user_edit.php,
reporting/fgraph.php: Added pluggable authentication and moved functions
* general/login_page.php, general/logon_ok.php,
godmode/agentes/modificar_agente.php,
godmode/users/configure_users.php, godmode/users/user_list.php,
operation/agentes/estado_agente.php, operation/incidents/incident.php,
operation/incidents/incident_search.php: Updated functions
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1366 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-20 19:21:20 +01:00
|
|
|
if (! $user)
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the users real name
|
|
|
|
*
|
|
|
|
* @param string User id.
|
|
|
|
*
|
|
|
|
* @return string The users full name
|
|
|
|
*/
|
2009-01-22 18:44:33 +01:00
|
|
|
function get_user_fullname ($id_user) {
|
|
|
|
return (string) get_db_value ('fullname', 'tusuario', 'id_user', $id_user);
|
2009-01-20 Evi Vanoost <vanooste@rcbi.rochester.edu>
* ajax.php, include/config.inc.php, include/config_process.php,
include/functions.php, include/functions_db.php,
include/functions_ui.php, index.php, install.php,
operation/users/user.php, operation/users/user_edit.php,
reporting/fgraph.php: Added pluggable authentication and moved functions
* general/login_page.php, general/logon_ok.php,
godmode/agentes/modificar_agente.php,
godmode/users/configure_users.php, godmode/users/user_list.php,
operation/agentes/estado_agente.php, operation/incidents/incident.php,
operation/incidents/incident_search.php: Updated functions
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1366 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-20 19:21:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the users email
|
|
|
|
*
|
|
|
|
* @param string User id.
|
|
|
|
*
|
|
|
|
* @return string The users email address
|
|
|
|
*/
|
|
|
|
function get_user_email ($id_user) {
|
2009-01-22 18:44:33 +01:00
|
|
|
return (string) get_db_value ('email', 'tusuario', 'id_user', $id_user);
|
2009-01-20 Evi Vanoost <vanooste@rcbi.rochester.edu>
* ajax.php, include/config.inc.php, include/config_process.php,
include/functions.php, include/functions_db.php,
include/functions_ui.php, index.php, install.php,
operation/users/user.php, operation/users/user_edit.php,
reporting/fgraph.php: Added pluggable authentication and moved functions
* general/login_page.php, general/logon_ok.php,
godmode/agentes/modificar_agente.php,
godmode/users/configure_users.php, godmode/users/user_list.php,
operation/agentes/estado_agente.php, operation/incidents/incident.php,
operation/incidents/incident_search.php: Updated functions
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1366 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-20 19:21:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets a Users info
|
|
|
|
*
|
|
|
|
* @param string User id
|
|
|
|
*
|
|
|
|
* @return mixed An array of users
|
|
|
|
*/
|
|
|
|
function get_user_info ($id_user) {
|
2009-01-22 18:44:33 +01:00
|
|
|
return get_db_row ("tusuario", "id_user", $id_user);
|
2009-01-20 Evi Vanoost <vanooste@rcbi.rochester.edu>
* ajax.php, include/config.inc.php, include/config_process.php,
include/functions.php, include/functions_db.php,
include/functions_ui.php, index.php, install.php,
operation/users/user.php, operation/users/user_edit.php,
reporting/fgraph.php: Added pluggable authentication and moved functions
* general/login_page.php, general/logon_ok.php,
godmode/agentes/modificar_agente.php,
godmode/users/configure_users.php, godmode/users/user_list.php,
operation/agentes/estado_agente.php, operation/incidents/incident.php,
operation/incidents/incident_search.php: Updated functions
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1366 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-20 19:21:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a list of all users in an array [username] => array (userinfo)
|
|
|
|
* We can't simplify this because some auth schemes (like LDAP) automatically (or it's at least cheaper to) return all the information
|
|
|
|
* Functions like get_user_info allow selection of specifics (in functions_db)
|
|
|
|
*
|
2009-01-22 18:44:33 +01:00
|
|
|
* @param string Field to order by (id_user, fullname or registered)
|
2009-01-20 Evi Vanoost <vanooste@rcbi.rochester.edu>
* ajax.php, include/config.inc.php, include/config_process.php,
include/functions.php, include/functions_db.php,
include/functions_ui.php, index.php, install.php,
operation/users/user.php, operation/users/user_edit.php,
reporting/fgraph.php: Added pluggable authentication and moved functions
* general/login_page.php, general/logon_ok.php,
godmode/agentes/modificar_agente.php,
godmode/users/configure_users.php, godmode/users/user_list.php,
operation/agentes/estado_agente.php, operation/incidents/incident.php,
operation/incidents/incident_search.php: Updated functions
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1366 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-20 19:21:20 +01:00
|
|
|
*
|
|
|
|
* @return array An array of user information
|
|
|
|
*/
|
2009-01-22 18:44:33 +01:00
|
|
|
function get_users ($order = "fullname") {
|
2009-01-20 Evi Vanoost <vanooste@rcbi.rochester.edu>
* ajax.php, include/config.inc.php, include/config_process.php,
include/functions.php, include/functions_db.php,
include/functions_ui.php, index.php, install.php,
operation/users/user.php, operation/users/user_edit.php,
reporting/fgraph.php: Added pluggable authentication and moved functions
* general/login_page.php, general/logon_ok.php,
godmode/agentes/modificar_agente.php,
godmode/users/configure_users.php, godmode/users/user_list.php,
operation/agentes/estado_agente.php, operation/incidents/incident.php,
operation/incidents/incident_search.php: Updated functions
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1366 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-20 19:21:20 +01:00
|
|
|
switch ($order) {
|
2009-01-29 10:06:38 +01:00
|
|
|
case "id_user":
|
|
|
|
case "registered":
|
|
|
|
case "last_connect":
|
|
|
|
case "fullname":
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$order = "fullname";
|
2009-01-20 Evi Vanoost <vanooste@rcbi.rochester.edu>
* ajax.php, include/config.inc.php, include/config_process.php,
include/functions.php, include/functions_db.php,
include/functions_ui.php, index.php, install.php,
operation/users/user.php, operation/users/user_edit.php,
reporting/fgraph.php: Added pluggable authentication and moved functions
* general/login_page.php, general/logon_ok.php,
godmode/agentes/modificar_agente.php,
godmode/users/configure_users.php, godmode/users/user_list.php,
operation/agentes/estado_agente.php, operation/incidents/incident.php,
operation/incidents/incident_search.php: Updated functions
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1366 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-20 19:21:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$output = array();
|
|
|
|
|
|
|
|
$result = get_db_all_rows_in_table ("tusuario", $order);
|
|
|
|
if ($result !== false) {
|
|
|
|
foreach ($result as $row) {
|
2009-01-22 18:44:33 +01:00
|
|
|
$output[$row["id_user"]] = $row;
|
2009-01-20 Evi Vanoost <vanooste@rcbi.rochester.edu>
* ajax.php, include/config.inc.php, include/config_process.php,
include/functions.php, include/functions_db.php,
include/functions_ui.php, index.php, install.php,
operation/users/user.php, operation/users/user_edit.php,
reporting/fgraph.php: Added pluggable authentication and moved functions
* general/login_page.php, general/logon_ok.php,
godmode/agentes/modificar_agente.php,
godmode/users/configure_users.php, godmode/users/user_list.php,
operation/agentes/estado_agente.php, operation/incidents/incident.php,
operation/incidents/incident_search.php: Updated functions
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1366 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-20 19:21:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $output;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the last login for a user
|
|
|
|
*
|
|
|
|
* @param string User id
|
|
|
|
*/
|
2009-01-22 18:44:33 +01:00
|
|
|
function process_user_contact ($id_user) {
|
|
|
|
return process_sql_update ("tusuario", array ("last_connect" => get_system_time ()), array ("id_user" => $id_user));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new user
|
|
|
|
*
|
|
|
|
* @return bool false
|
|
|
|
*/
|
|
|
|
function create_user ($id_user, $password, $user_info) {
|
|
|
|
$values = array ();
|
|
|
|
$values["id_user"] = $id_user;
|
|
|
|
$values["password"] = md5 ($password);
|
|
|
|
$values["last_connect"] = 0;
|
|
|
|
$values["registered"] = get_system_time ();
|
|
|
|
|
|
|
|
foreach ($user_info as $key => $value) {
|
|
|
|
switch ($key) {
|
2009-01-29 10:06:38 +01:00
|
|
|
case "fullname":
|
|
|
|
case "firstname":
|
|
|
|
case "lastname":
|
|
|
|
case "middlename":
|
|
|
|
case "comments":
|
|
|
|
case "email":
|
|
|
|
case "phone":
|
|
|
|
$values[$key] = $value;
|
2009-01-22 18:44:33 +01:00
|
|
|
break;
|
2009-01-29 10:06:38 +01:00
|
|
|
default:
|
|
|
|
continue; //ignore
|
2009-01-22 18:44:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-22 19:20:29 +01:00
|
|
|
return process_sql_insert ("tusuario", $values);
|
2009-01-20 Evi Vanoost <vanooste@rcbi.rochester.edu>
* ajax.php, include/config.inc.php, include/config_process.php,
include/functions.php, include/functions_db.php,
include/functions_ui.php, index.php, install.php,
operation/users/user.php, operation/users/user_edit.php,
reporting/fgraph.php: Added pluggable authentication and moved functions
* general/login_page.php, general/logon_ok.php,
godmode/agentes/modificar_agente.php,
godmode/users/configure_users.php, godmode/users/user_list.php,
operation/agentes/estado_agente.php, operation/incidents/incident.php,
operation/incidents/incident_search.php: Updated functions
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1366 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-20 19:21:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Deletes the user
|
|
|
|
*
|
|
|
|
* @param string User id
|
|
|
|
*/
|
|
|
|
function delete_user ($id_user) {
|
2009-01-22 18:44:33 +01:00
|
|
|
$sql = "DELETE FROM tusuario_perfil WHERE id_usuario = '".$id_user."'";
|
2009-01-20 Evi Vanoost <vanooste@rcbi.rochester.edu>
* ajax.php, include/config.inc.php, include/config_process.php,
include/functions.php, include/functions_db.php,
include/functions_ui.php, index.php, install.php,
operation/users/user.php, operation/users/user_edit.php,
reporting/fgraph.php: Added pluggable authentication and moved functions
* general/login_page.php, general/logon_ok.php,
godmode/agentes/modificar_agente.php,
godmode/users/configure_users.php, godmode/users/user_list.php,
operation/agentes/estado_agente.php, operation/incidents/incident.php,
operation/incidents/incident_search.php: Updated functions
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1366 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-20 19:21:20 +01:00
|
|
|
$result = process_sql ($sql);
|
|
|
|
if ($result === false) {
|
|
|
|
return false;
|
|
|
|
}
|
2009-01-22 18:44:33 +01:00
|
|
|
$sql = "DELETE FROM tusuario WHERE id_user = '".$id_user."'";
|
2009-01-20 Evi Vanoost <vanooste@rcbi.rochester.edu>
* ajax.php, include/config.inc.php, include/config_process.php,
include/functions.php, include/functions_db.php,
include/functions_ui.php, index.php, install.php,
operation/users/user.php, operation/users/user_edit.php,
reporting/fgraph.php: Added pluggable authentication and moved functions
* general/login_page.php, general/logon_ok.php,
godmode/agentes/modificar_agente.php,
godmode/users/configure_users.php, godmode/users/user_list.php,
operation/agentes/estado_agente.php, operation/incidents/incident.php,
operation/incidents/incident_search.php: Updated functions
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1366 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-20 19:21:20 +01:00
|
|
|
$result = process_sql ($sql);
|
|
|
|
if ($result === false) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-01-22 18:44:33 +01:00
|
|
|
function process_user_password ( $user, $password_old, $password_new ) {
|
|
|
|
$user = process_user_login ($user, $password_old);
|
|
|
|
if ($user === false) {
|
|
|
|
global $mysql_cache;
|
|
|
|
|
|
|
|
$mysql_cache["auth_error"] = "Invalid login/password combination";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-01-22 20:34:11 +01:00
|
|
|
return process_sql_update ("tusuario", array ("password" => md5 ($password_new)), array ("id_user" => $user));
|
2009-01-22 18:44:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function process_user_info ($id_user, $user_info) {
|
|
|
|
$values = array ();
|
|
|
|
foreach ($user_info as $key => $value) {
|
|
|
|
switch ($key) {
|
2009-01-29 10:06:38 +01:00
|
|
|
case "fullname":
|
|
|
|
case "firstname":
|
|
|
|
case "lastname":
|
|
|
|
case "middlename":
|
|
|
|
case "comments":
|
|
|
|
case "email":
|
|
|
|
case "phone":
|
|
|
|
$values[$key] = $value;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
continue; //ignore
|
|
|
|
break;
|
2009-01-22 18:44:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return process_sql_update ("tusuario", $values, array ("id_user" => $id_user));
|
|
|
|
}
|
|
|
|
|
2009-01-22 19:20:29 +01:00
|
|
|
/**
|
|
|
|
* Sets the user admin status (LDAP doesn't do this)
|
|
|
|
*
|
|
|
|
* @param string User id
|
|
|
|
*/
|
|
|
|
function process_user_isadmin ($id_user, $is_admin) {
|
|
|
|
if ($is_admin == true) {
|
|
|
|
$is_admin = 1;
|
|
|
|
} else {
|
|
|
|
$is_admin = 0;
|
|
|
|
}
|
|
|
|
return process_sql_update ("tusuario", array ("is_admin" => $is_admin), array ("id_user" => $id_user));
|
|
|
|
}
|
|
|
|
|
2009-01-22 18:44:33 +01:00
|
|
|
//Reference the global use authorization error to last auth error.
|
2009-01-20 Evi Vanoost <vanooste@rcbi.rochester.edu>
* ajax.php, include/config.inc.php, include/config_process.php,
include/functions.php, include/functions_db.php,
include/functions_ui.php, index.php, install.php,
operation/users/user.php, operation/users/user_edit.php,
reporting/fgraph.php: Added pluggable authentication and moved functions
* general/login_page.php, general/logon_ok.php,
godmode/agentes/modificar_agente.php,
godmode/users/configure_users.php, godmode/users/user_list.php,
operation/agentes/estado_agente.php, operation/incidents/incident.php,
operation/incidents/incident_search.php: Updated functions
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1366 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-20 19:21:20 +01:00
|
|
|
$config["auth_error"] = &$mysql_cache["auth_error"];
|
2009-01-22 20:34:11 +01:00
|
|
|
?>
|