116 lines
3.5 KiB
PHP
116 lines
3.5 KiB
PHP
<?php
|
|
// $Header: /cvsroot/phpldapadmin/phpldapadmin/htdocs/entry_chooser.php,v 1.30 2006/01/03 20:39:58 wurley Exp $
|
|
|
|
/**
|
|
* Display a selection (popup window) to pick a DN.
|
|
*
|
|
* @package phpLDAPadmin
|
|
*/
|
|
/**
|
|
*/
|
|
|
|
require './common.php';
|
|
|
|
$container = isset($_GET['container']) ? rawurldecode($_GET['container']) : false;
|
|
$return_form_element = isset($_GET['form_element']) ? htmlspecialchars($_GET['form_element']) : null;
|
|
$rdn = isset($_GET['rdn']) ? htmlspecialchars($_GET['rdn']) : null;
|
|
|
|
include "./header.php";
|
|
|
|
printf('<h3 class="subtitle">%s</h3>',_('Entry Chooser'));
|
|
flush();
|
|
?>
|
|
|
|
<script type="text/javascript" language="javascript">
|
|
function returnDN(dn) {
|
|
opener.document.<?php echo $return_form_element; ?>.value = dn;
|
|
close();
|
|
}
|
|
</script>
|
|
|
|
<?php
|
|
if ($container) {
|
|
printf('%s<b>%s</b>',_('Server: '),htmlspecialchars($ldapserver->name));
|
|
echo '<br />';
|
|
printf('%s<b>%s</b>',_('Looking in: '),htmlspecialchars($container));
|
|
echo '<br />';
|
|
}
|
|
|
|
/* Has the use already begun to descend into a specific server tree? */
|
|
if (isset($ldapserver) && $container !== false) {
|
|
|
|
if (! $ldapserver->haveAuthInfo())
|
|
pla_error(_('Not enough information to login to server. Please check your configuration.'));
|
|
|
|
$dn_list = $ldapserver->getContainerContents($container,0,'(objectClass=*)',$config->GetValue('deref','tree'));
|
|
sort($dn_list);
|
|
|
|
foreach ($ldapserver->getBaseDN() as $base_dn) {
|
|
if (DEBUG_ENABLED)
|
|
debug_log('entry_chooser.php: Comparing BaseDN [%s] with container [%s]',64,$base_dn,$container);
|
|
|
|
if (! pla_compare_dns($container,$base_dn)) {
|
|
$parent_container = false;
|
|
$up_href = sprintf('entry_chooser.php?form_element=%s&rdn=%s',$return_form_element,$rdn);
|
|
break;
|
|
|
|
} else {
|
|
$parent_container = get_container($container);
|
|
$up_href = sprintf('entry_chooser.php?form_element=%s&rdn=%s&server_id=%s&container=%s',
|
|
$return_form_element,$rdn,$ldapserver->server_id,rawurlencode($parent_container));
|
|
}
|
|
}
|
|
|
|
echo ' ';
|
|
printf('<a href="%s" style="text-decoration:none"><img src="images/up.png" /> %s</a>',$up_href,_('Back Up...'));
|
|
echo '<br />';
|
|
|
|
if (! count($dn_list))
|
|
printf(' (%s)<br />',_('no entries'));
|
|
|
|
else
|
|
foreach ($dn_list as $dn) {
|
|
$href = sprintf("javascript:returnDN('%s%s')",($rdn ? "$rdn," : ''),$dn);
|
|
echo ' ';
|
|
printf('<a href="entry_chooser.php?server_id=%s&form_element=%s&rdn=%s&container=%s"><img src="images/plus.png" /></a>',
|
|
$ldapserver->server_id,$return_form_element,$rdn,rawurlencode($dn));
|
|
|
|
printf('<a href="%s">%s</a>',$href,htmlspecialchars($dn));
|
|
echo '<br />';
|
|
}
|
|
|
|
/* draw the root of the selection tree (ie, list all the servers) */
|
|
} else {
|
|
foreach ($ldapservers->GetServerList() as $id) {
|
|
|
|
$ldapserver = $ldapservers->Instance($id);
|
|
|
|
if ($ldapserver->isVisible()) {
|
|
|
|
if (! $ldapserver->haveAuthInfo())
|
|
continue;
|
|
|
|
else {
|
|
printf('<b>%s</b>',htmlspecialchars($ldapserver->name));
|
|
echo '<br />';
|
|
foreach ($ldapserver->getBaseDN() as $dn) {
|
|
if (! $dn) {
|
|
printf('<small> (%s)</small><br />',_('Could not determine base DN'));
|
|
|
|
} else {
|
|
$href = sprintf("javascript:returnDN('%s%s')",($rdn ? "$rdn," : ''),$dn);
|
|
|
|
echo ' ';
|
|
printf('<a href="entry_chooser.php?server_id=%s&form_element=%s&rdn=%s&container=%s"><img src="images/plus.png" /></a> ',
|
|
$ldapserver->server_id,$return_form_element,$rdn,rawurlencode($dn));
|
|
|
|
printf('<a href="%s">%s</a>',$href,htmlspecialchars($dn));
|
|
echo '<br />';
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
?>
|