phpldapadmin/update.php

118 lines
3.6 KiB
PHP
Raw Permalink Normal View History

2009-06-30 08:12:47 +00:00
<?php
// $Header: /cvsroot/phpldapadmin/phpldapadmin/update.php,v 1.15 2004/03/19 20:13:08 i18phpldapadmin Exp $
2009-06-30 08:05:37 +00:00
/*
* update.php
* Updates or deletes a value from a specified
* attribute for a specified dn.
* Variables that come in on the query string:
* - dn (rawurlencoded)
* - server_id
2009-06-30 08:07:14 +00:00
* - update_array (an array in the form expected by PHP's ldap_modify, except for deletions)
2009-06-30 08:05:37 +00:00
* (will never be empty: update_confirm.php ensures that)
2009-06-30 08:07:14 +00:00
*
* Attribute deletions:
* To specify that an attribute is to be deleted (whether multi- or single-valued),
* enter that attribute in the update array like this: attr => ''. For example, to
* delete the 'sn' attribute from an entry, the update array would look like this:
* Array (
* sn => ''
* )
*
2009-06-30 08:05:37 +00:00
* On success, redirect to edit.php
* On failure, echo an error.
*/
2009-06-30 08:09:20 +00:00
require realpath( 'common.php' );
2009-06-30 08:07:14 +00:00
2009-06-30 08:05:37 +00:00
$server_id = $_POST['server_id'];
2009-06-30 08:09:20 +00:00
if( is_server_read_only( $server_id ) )
pla_error( $lang['no_updates_in_read_only_mode'] );
$dn = $_POST['dn'];
2009-06-30 08:05:37 +00:00
$encoded_dn = rawurlencode( $dn );
$update_array = $_POST['update_array'];
2009-06-30 08:09:20 +00:00
check_server_id( $server_id ) or pla_error( $lang['bad_server_id'] );
have_auth_info( $server_id ) or pla_error( $lang['not_enough_login_info'] );
is_array( $update_array ) or pla_error( $lang['update_array_malformed'] );
pla_ldap_connect( $server_id ) or pla_error( $lang['could_not_connect'] );
2009-06-30 08:05:37 +00:00
2009-06-30 08:07:14 +00:00
// check for delete attributes (indicated by the attribute entry appearing like this: attr => ''
2009-06-30 08:05:37 +00:00
foreach( $update_array as $attr => $val )
if( ! is_array( $val ) )
if( $val == '' )
$update_array[ $attr ] = array();
2009-06-30 08:07:14 +00:00
else
$update_array[ $attr ] = $val;
else
foreach( $val as $i => $v )
$update_array[ $attr ][ $i ] = $v;
2009-06-30 08:09:20 +00:00
// Call the custom callback for each attribute modification
// and verify that it should be modified.
foreach( $update_array as $attr_name => $val )
if( true !== preAttrModify( $server_id, $dn, $attr_name, $val ) )
unset( $update_array[ $attr_name ] );
2009-06-30 08:12:47 +00:00
elseif( is_attr_read_only( $attr ) )
pla_error( sprintf( $lang['attr_is_read_only'], htmlspecialchars( $attr_name ) ) );
2009-06-30 08:05:37 +00:00
$ds = pla_ldap_connect( $server_id );
$res = @ldap_modify( $ds, $dn, $update_array );
if( $res )
{
2009-06-30 08:09:20 +00:00
// Fire the post modification event to the user's custom
// callback function.
foreach( $update_array as $attr_name => $val ) {
postAttrModify( $server_id, $dn, $attr_name, $val );
// Was this a user's password modification who is currently
// logged in? If so, they need to logout and log back in
// with the new password.
if( 0 === strcasecmp( $attr_name, 'userPassword' ) &&
check_server_id( $server_id ) &&
isset( $servers[ $server_id ][ 'auth_type' ] ) &&
2009-06-30 08:12:47 +00:00
( $servers[ $server_id ][ 'auth_type' ] == 'cookie' ||
$servers[ $server_id ][ 'auth_type' ] == 'session' ) &&
2009-06-30 08:09:20 +00:00
0 === pla_compare_dns( get_logged_in_dn( $server_id ), $dn ) )
{
2009-06-30 08:12:47 +00:00
unset_login_dn( $server_id );
2009-06-30 08:09:20 +00:00
include realpath( 'header.php' );
?>
<script language="javascript">
parent.left_frame.location.reload();
</script>
<br />
<center>
2009-06-30 08:12:47 +00:00
<b><?php echo $lang['modification_successful']; ?></b><br />
2009-06-30 08:09:20 +00:00
<br />
2009-06-30 08:12:47 +00:00
<?php echo $lang['change_password_new_login']; ?> &nbsp;
<a href="login_form.php?server_id=<?php echo $server_id; ?>"><?php echo $lang['login_link']; ?></a>
2009-06-30 08:09:20 +00:00
</center>
</body>
</html>
<?php
exit;
}
}
2009-06-30 08:05:37 +00:00
$redirect_url = "edit.php?server_id=$server_id&dn=$encoded_dn";
foreach( $update_array as $attr => $junk )
$redirect_url .= "&modified_attrs[]=$attr";
header( "Location: $redirect_url" );
}
else
{
2009-06-30 08:09:20 +00:00
pla_error( $lang['could_not_perform_ldap_modify'], ldap_error( $ds ), ldap_errno( $ds ) );
2009-06-30 08:05:37 +00:00
}
?>