phpldapadmin/rename.php

120 lines
3.7 KiB
PHP
Raw Normal View History

2009-06-30 08:05:37 +00:00
<?php
/*
* rename.php
* Renames a DN to a different name.
*
* Variables that come in as POST vars:
* - dn (rawurlencoded)
* - server_id
* - new_rdn
*/
2009-06-30 08:09:20 +00:00
require realpath( 'common.php' );
2009-06-30 08:05:37 +00:00
2009-06-30 08:09:20 +00:00
$dn = ( $_POST['dn'] );
2009-06-30 08:05:37 +00:00
$server_id = $_POST['server_id'];
2009-06-30 08:09:20 +00:00
$new_rdn = ( $_POST['new_rdn'] );
2009-06-30 08:05:37 +00:00
2009-06-30 08:07:14 +00:00
if( is_server_read_only( $server_id ) )
pla_error( "You cannot perform updates while server is in read-only mode" );
if( is_server_read_only( $server_id ) )
pla_error( "You cannot perform updates while server is in read-only mode" );
2009-06-30 08:09:20 +00:00
$children = get_container_contents( $server_id, $dn, 1 );
if( count( $children ) > 0 )
pla_error( "You cannot rename an entry which has children entries
(eg, the rename operation is not allowed on non-leaf entries)" );
2009-06-30 08:05:37 +00:00
check_server_id( $server_id ) or pla_error( "Bad server_id: " . htmlspecialchars( $server_id ) );
have_auth_info( $server_id ) or pla_error( "Not enough information to login to server. Please check your configuration." );
$ds = pla_ldap_connect( $server_id ) or pla_error( "Could not connect to LDAP sever" );
2009-06-30 08:10:17 +00:00
$container = get_container( $dn );
2009-06-30 08:09:20 +00:00
$new_dn = $new_rdn . ',' . $container;
if( $new_dn == $dn )
pla_error( "You did not change the RDN" );
2009-06-30 08:05:37 +00:00
2009-06-30 08:09:20 +00:00
$dn_attr = explode( '=', $dn );
$dn_attr = $dn_attr[0];
$old_dn_value = pla_explode_dn( $dn );
$old_dn_value = explode( '=', $old_dn_value[0], 2 );
$old_dn_value = $old_dn_value[1];
$new_dn_value = explode( '=', $new_rdn, 2 );
$new_dn_value = $new_dn_value[1];
// Add the new DN attr value to the DN attr (ie, add newName to cn)
$add_new_dn_attr = array( $dn_attr => $new_dn_value );
// Remove the old DN attr value
$remove_old_dn_attr = array( $dn_attr => $old_dn_value );
// attempt to add the new DN attr value (if we can't, die a silent death)
$add_dn_attr_success = @ldap_mod_add( $ds, $dn, $add_new_dn_attr );
if( ! @ldap_rename( $ds, $dn, $new_rdn, $container, false ) )
2009-06-30 08:05:37 +00:00
{
2009-06-30 08:09:20 +00:00
pla_error( "Could not rename the object.", ldap_error( $ds ), ldap_errno( $ds ), false );
// attempt to undo our changes to the DN attr
if( $add_dn_attr_success )
@ldap_mod_del( $ds, $dn, $add_new_dn_attr );
2009-06-30 08:05:37 +00:00
}
else
{
2009-06-30 08:09:20 +00:00
// attempt to remove the old DN attr value (if we can't, die a silent death)
@ldap_mod_del( $ds, $new_dn, $remove_old_dn_attr );
2009-06-30 08:05:37 +00:00
// update the session tree to reflect the name change
session_start();
if( session_is_registered( 'tree' ) )
{
$tree = $_SESSION['tree'];
$tree_icons = $_SESSION['tree_icons'];
$old_dn = $dn;
// gotta search the whole tree for the entry (must be a leaf node since RDN changes
// cannot occur on parents)
foreach( $tree[$server_id] as $parent_dn => $children ) {
foreach( $children as $i => $child_dn ) {
if( 0 == strcasecmp( $child_dn, $old_dn ) ) {
$tree[$server_id][$parent_dn][$i] = $new_dn;
}
}
}
// Update the icon tree to reflect the change (remove the old DN and add the new one)
$tree_icons[ $server_id ][ $new_dn ] = $tree_icons[ $server_id ][ $old_dn ];
unset( $tree_icons[ $server_id ][ $old_dn ] );
$_SESSION['tree'] = $tree;
$_SESSION['tree_icons'] = $tree_icons;
session_write_close();
$edit_url="edit.php?server_id=$server_id&dn=" . rawurlencode( "$new_rdn,$container" );
?>
<html>
<head>
<!-- refresh the tree view (with the new DN renamed)
and redirect to the edit_dn page -->
<script language="javascript">
parent.left_frame.location.reload();
location.href='<?php echo $edit_url; ?>';
</script>
<!-- If the JavaScript didn't work, here's a meta tag to the job -->
<meta http-equiv="refresh" content="0; url=<?php echo $edit_url; ?>" />
</head>
<body>
Redirecting... click <a href="<?php echo $edit_url; ?>">here</a> if you're impatient.
</body>
</html>
<?php
}
}