Blame Extras/Mantis/1.1.2-1.fc9/manage_user_update.php

4c79b5
4c79b5
# Mantis - a php based bugtracking system
4c79b5
4c79b5
# Copyright (C) 2000 - 2002  Kenzaburo Ito - kenito@300baud.org
4c79b5
# Copyright (C) 2002 - 2007  Mantis Team   - mantisbt-dev@lists.sourceforge.net
4c79b5
4c79b5
# Mantis is free software: you can redistribute it and/or modify
4c79b5
# it under the terms of the GNU General Public License as published by
4c79b5
# the Free Software Foundation, either version 2 of the License, or
4c79b5
# (at your option) any later version.
4c79b5
#
4c79b5
# Mantis is distributed in the hope that it will be useful,
4c79b5
# but WITHOUT ANY WARRANTY; without even the implied warranty of
4c79b5
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
4c79b5
# GNU General Public License for more details.
4c79b5
#
4c79b5
# You should have received a copy of the GNU General Public License
4c79b5
# along with Mantis.  If not, see <http://www.gnu.org/licenses/>.
4c79b5
4c79b5
	#------------------------------
4c79b5
	#   $Revision: 2643 $
4c79b5
	#     $Author: al $    
4c79b5
	#       $Date: 2009-06-18 19:06:27 -0400 (Thu, 18 Jun 2009) $  
4c79b5
	#------------------------------
4c79b5
4c79b5
	require_once( 'core.php' );
4c79b5
4c79b5
	$t_core_path = config_get( 'core_path' );
4c79b5
4c79b5
	require_once( $t_core_path.'email_api.php' );
4c79b5
4c79b5
	auth_reauthenticate();
4c79b5
4c79b5
	form_security_validate('manage_user_update');
4c79b5
4c79b5
	access_ensure_global_level( config_get( 'manage_user_threshold' ) );
4c79b5
4c79b5
	$f_protected	= gpc_get_bool( 'protected' );
4c79b5
	$f_enabled		= gpc_get_bool( 'enabled' );
4c79b5
	$f_email		= gpc_get_string( 'email', '' );
4c79b5
	$f_username		= gpc_get_string( 'username', '' );
4c79b5
	$f_realname		= gpc_get_string( 'realname', '' );
4c79b5
	$f_access_level	= gpc_get_int( 'access_level' );
4c79b5
	$f_user_id		= gpc_get_int( 'user_id' );
4c79b5
4c79b5
	$f_email	= trim( $f_email );
4c79b5
	$f_username	= trim( $f_username );
4c79b5
4c79b5
	$t_old_username = user_get_field( $f_user_id, 'username' );
4c79b5
4c79b5
	# check that the username is unique
4c79b5
	if ( 0 != strcasecmp( $t_old_username, $f_username )
4c79b5
        && false == user_is_name_unique( $f_username ) ) {
4c79b5
		trigger_error( ERROR_USER_NAME_NOT_UNIQUE, ERROR );
4c79b5
	}
4c79b5
4c79b5
	user_ensure_name_valid( $f_username );
4c79b5
	user_ensure_realname_valid( $f_realname );
4c79b5
	user_ensure_realname_unique( $f_username, $f_realname );
4c79b5
4c79b5
	$f_email = email_append_domain( $f_email );
4c79b5
	email_ensure_valid( $f_email );
4c79b5
	email_ensure_not_disposable( $f_email );
4c79b5
4c79b5
	$c_email		= db_prepare_string( $f_email );
4c79b5
	$c_username		= db_prepare_string( $f_username );
4c79b5
	$c_realname		= db_prepare_string( $f_realname );
4c79b5
	$c_protected	= db_prepare_bool( $f_protected );
4c79b5
	$c_enabled		= db_prepare_bool( $f_enabled );
4c79b5
	$c_user_id			= db_prepare_int( $f_user_id );
4c79b5
	$c_access_level	= db_prepare_int( $f_access_level );
4c79b5
4c79b5
	$t_user_table = config_get( 'mantis_user_table' );
4c79b5
4c79b5
	$t_old_protected = user_get_field( $f_user_id, 'protected' );
4c79b5
	
4c79b5
	# check that we are not downgrading the last administrator
4c79b5
	$t_old_access = user_get_field( $f_user_id, 'access_level' );
4c79b5
	if ( ( ADMINISTRATOR == $t_old_access ) && ( $t_old_access <> $f_access_level ) && ( 1 >= user_count_level( ADMINISTRATOR ) ) ) {
4c79b5
		trigger_error( ERROR_USER_CHANGE_LAST_ADMIN, ERROR );
4c79b5
	}	   
4c79b5
4c79b5
	# Project specific access rights override global levels, hence, for users who are changed
4c79b5
	# to be administrators, we have to remove project specific rights.
4c79b5
        if ( ( $c_access_level >= ADMINISTRATOR ) && ( !user_is_administrator( $c_user_id ) ) ) {
4c79b5
		user_delete_project_specific_access_levels( $c_user_id );
4c79b5
	}
4c79b5
4c79b5
	# if the user is already protected and the admin is not removing the
4c79b5
	#  protected flag then don't update the access level and enabled flag.
4c79b5
	#  If the user was unprotected or the protected flag is being turned off
4c79b5
	#  then proceed with a full update.
4c79b5
	if ( $f_protected && $t_old_protected ) {
4c79b5
	    $query = "UPDATE $t_user_table
4c79b5
	    		SET username='$c_username', email='$c_email',
4c79b5
	    			protected='$c_protected', realname='$c_realname'
4c79b5
	    		WHERE id='$c_user_id'";
4c79b5
	} else {
4c79b5
	    $query = "UPDATE $t_user_table
4c79b5
	    		SET username='$c_username', email='$c_email',
4c79b5
	    			access_level='$c_access_level', enabled='$c_enabled',
4c79b5
	    			protected='$c_protected', realname='$c_realname'
4c79b5
	    		WHERE id='$c_user_id'";
4c79b5
	}
4c79b5
4c79b5
	$result = db_query( $query );
4c79b5
	$t_redirect_url = 'manage_user_edit_page.php?user_id=' . $c_user_id;
4c79b5
?>
4c79b5
4c79b5
4c79b5
	if ( $result ) {
4c79b5
		html_meta_redirect( $t_redirect_url );
4c79b5
	}
4c79b5
?>
4c79b5
4c79b5
4c79b5
4c79b5
4c79b5
	if ( $f_protected && $t_old_protected ) {				# PROTECTED
4c79b5
		echo '

' . lang_get( 'manage_user_protected_msg' ) . '

';
4c79b5
	} else if ( $result ) {							# SUCCESS
4c79b5
		echo '

' . lang_get( 'operation_successful' ) . '

';
4c79b5
	} else {								# FAILURE
4c79b5
		echo '

' . print_sql_error( $query ) . '

';
4c79b5
	}
4c79b5
4c79b5
	print_bracket_link( $t_redirect_url, lang_get( 'proceed' ) );
4c79b5
?>
4c79b5
4c79b5
4c79b5