phpldapadmin/server_info.php

129 lines
3.6 KiB
PHP
Raw Normal View History

2009-06-30 09:22:30 +00:00
<?php
2009-06-30 09:24:29 +00:00
// $Header: /cvsroot/phpldapadmin/phpldapadmin/server_info.php,v 1.18 2005/03/16 09:52:31 wurley Exp $
2009-06-30 08:05:37 +00:00
2009-06-30 09:24:29 +00:00
/**
2009-06-30 08:05:37 +00:00
* Fetches and displays all information that it can from the specified server
2009-06-30 09:24:29 +00:00
*
2009-06-30 08:05:37 +00:00
* Variables that come in as GET vars:
* - server_id
2009-06-30 09:24:29 +00:00
*
* @package phpLDAPadmin
2009-06-30 08:05:37 +00:00
*/
2009-06-30 09:24:29 +00:00
/**
*/
2009-06-30 09:22:30 +00:00
require './common.php';
2009-06-30 08:05:37 +00:00
2009-06-30 08:09:20 +00:00
// The attributes we'll examine when searching the LDAP server's RootDSE
2009-06-30 09:24:29 +00:00
$root_dse_attributes = array( 'namingContexts',
'subschemaSubentry',
'altServer',
'supportedExtension',
'supportedControl',
'supportedSASLMechanisms',
'supportedLDAPVersion',
'currentTime',
'dsServiceName',
'defaultNamingContext',
'schemaNamingContext',
'configurationNamingContext',
'rootDomainNamingContext',
'supportedLDAPPolicies',
'highestCommittedUSN',
'dnsHostName',
'ldapServiceName',
'serverName',
'supportedCapabilities',
'changeLog',
'tlsAvailableCipherSuites',
'tlsImplementationVersion',
'supportedSASLMechanisms',
'dsaVersion',
'myAccessPoint',
'dseType',
'+',
'*'
);
$server_id = (isset($_GET['server_id']) ? $_GET['server_id'] : '');
$ldapserver = new LDAPServer($server_id);
if( ! $ldapserver->haveAuthInfo())
pla_error( $lang['not_enough_login_info'] );
// Fetch basic RootDSE attributes using the + and *.
$r = @ldap_read( $ldapserver->connect(), '', 'objectClass=*', array( '+', '*' ) );
2009-06-30 08:05:37 +00:00
if( ! $r )
2009-06-30 09:24:29 +00:00
pla_error( $lang['could_not_fetch_server_info'], ldap_error( $ldapserver->connect() ), ldap_errno( $ldapserver->connect() ) );
$entry = @ldap_first_entry( $ldapserver->connect(), $r );
2009-06-30 09:22:30 +00:00
if( ! $entry )
2009-06-30 09:24:29 +00:00
pla_error( $lang['could_not_fetch_server_info'], ldap_error( $ldapserver->connect() ), ldap_errno( $ldapserver->connect() ) );
2009-06-30 09:22:30 +00:00
2009-06-30 09:24:29 +00:00
$attrs = @ldap_get_attributes( $ldapserver->connect(), $entry );
$count = @ldap_count_entries( $ldapserver->connect(), $r );
// After fetching the "basic" attributes from the RootDSE, try fetching the
2009-06-30 09:22:30 +00:00
// more advanced ones (from ths list). Add them to the list of attrs to display
2009-06-30 09:24:29 +00:00
// if they weren't already fetched. (this was added as a work-around for OpenLDAP
2009-06-30 09:22:30 +00:00
// on RHEL 3.
2009-06-30 09:24:29 +00:00
$r2 = @ldap_read( $ldapserver->connect(), '', 'objectClass=*', $root_dse_attributes );
2009-06-30 09:22:30 +00:00
if( $r2 ) {
2009-06-30 09:24:29 +00:00
$entry2 = @ldap_first_entry( $ldapserver->connect(), $r );
$attrs2 = @ldap_get_attributes( $ldapserver->connect(), $entry );
for( $i=0; $i<$attrs2['count']; $i++ ) {
$attr = $attrs2[$i];
if( ! isset( $attrs[ $attr ] ) ) {
$attrs[ $attr ] = $attrs2[ $attr ];
$attrs[ 'count' ]++;
$attrs[] = $attr;
}
}
2009-06-30 09:22:30 +00:00
}
unset( $attrs2, $entry, $entry2 );
include './header.php';
2009-06-30 08:05:37 +00:00
?>
2009-06-30 09:22:30 +00:00
<body>
2009-06-30 09:24:29 +00:00
<h3 class="title"><?php echo $lang['server_info_for'] . htmlspecialchars( $ldapserver->name ); ?></h3>
2009-06-30 08:09:20 +00:00
<h3 class="subtitle"><?php echo $lang['server_reports_following']; ?></h3>
2009-06-30 08:05:37 +00:00
<?php if( $count == 0 || $attrs['count'] == 0 ) { ?>
2009-06-30 08:09:20 +00:00
<br /><br /><center><?php echo $lang['nothing_to_report']; ?></center>
2009-06-30 08:05:37 +00:00
<?php exit; ?>
<?php } ?>
<table class="edit_dn">
2009-06-30 09:24:29 +00:00
<?php for( $i=0; $i<$attrs['count']; $i++ ) {
2009-06-30 08:05:37 +00:00
$attr = $attrs[$i];
2009-06-30 09:24:29 +00:00
$schema_href = "schema.php?server_id=$server_id&amp;view=attributes&amp;viewvalue=$attr"; ?>
2009-06-30 08:09:20 +00:00
2009-06-30 09:22:30 +00:00
<tr>
2009-06-30 08:09:20 +00:00
<td class="attr">
<b>
2009-06-30 09:24:29 +00:00
<a title="<?php echo sprintf( $lang['attr_name_tooltip'], $attr ); ?>"
2009-06-30 09:22:30 +00:00
href="<?php echo $schema_href; ?>"><?php echo htmlspecialchars( $attr ); ?></a>
2009-06-30 08:09:20 +00:00
</b>
</td>
2009-06-30 09:24:29 +00:00
</tr>
<tr>
<td class="val"><table class="edit_dn">
<?php for( $j=0; $j<$attrs[ $attr ][ 'count' ]; $j++ ) {
echo "<tr><td>".htmlspecialchars( $attrs[ $attr ][ $j ] )."</td>";
if (support_oid_to_text($attrs[ $attr ][ $j ] ))
echo "<td>".support_oid_to_text($attrs[ $attr ][ $j ] ). "</td></tr>";
} ?>
</table></td>
</tr>
2009-06-30 09:22:30 +00:00
<?php } ?>
2009-06-30 08:09:20 +00:00
2009-06-30 08:05:37 +00:00
</table>
2009-06-30 09:22:30 +00:00
</body>
</html>