phpldapadmin/htdocs/server_info.php

130 lines
3.5 KiB
PHP
Raw Normal View History

2009-06-30 09:22:30 +00:00
<?php
2009-06-30 10:40:03 +00:00
// $Header: /cvsroot/phpldapadmin/phpldapadmin/htdocs/server_info.php,v 1.23 2005/12/10 10:34:54 wurley Exp $
2009-06-30 08:05:37 +00:00
2009-06-30 09:29:51 +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:29:51 +00:00
*
* Variables that come in via common.php
2009-06-30 08:05:37 +00:00
* - server_id
2009-06-30 09:29:51 +00:00
*
* @package phpLDAPadmin
2009-06-30 08:05:37 +00:00
*/
2009-06-30 09:29:51 +00:00
/**
*/
2009-06-30 09:22:30 +00:00
require './common.php';
2009-06-30 08:05:37 +00:00
2009-06-30 09:29:51 +00:00
# The attributes we'll examine when searching the LDAP server's RootDSE
$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',
'+',
'*'
);
if (! $ldapserver->haveAuthInfo())
2009-06-30 10:26:08 +00:00
pla_error( _('Not enough information to login to server. Please check your configuration.') );
2009-06-30 09:29:51 +00:00
# Fetch basic RootDSE attributes using the + and *.
2009-06-30 10:40:03 +00:00
$attrs = array_pop($ldapserver->search(null,'','objectClass=*',array('+','*'),'base'));
2009-06-30 09:29:51 +00:00
/* After fetching the "basic" attributes from the RootDSE, try fetching the
more advanced ones (from ths list). Add them to the list of attrs to display
if they weren't already fetched. (this was added as a work-around for OpenLDAP
on RHEL 3. */
2009-06-30 10:40:03 +00:00
$attrs2 = array_pop($ldapserver->search(null,'','objectClass=*',$root_dse_attributes,'base'));
2009-06-30 09:22:30 +00:00
2009-06-30 10:40:03 +00:00
foreach ($attrs2 as $attr => $values)
if (! isset($attrs[$attr]))
$attrs[$attr] = $attrs2[$attr];
2009-06-30 08:05:37 +00:00
2009-06-30 10:26:08 +00:00
include './header.php';
2009-06-30 08:05:37 +00:00
2009-06-30 10:26:08 +00:00
echo '<body>';
printf('<h3 class="title">%s%s</h3>',_('Server info for: '),htmlspecialchars($ldapserver->name));
printf('<h3 class="subtitle">%s</h3>',_('Server reports the following information about itself'));
2009-06-30 08:05:37 +00:00
2009-06-30 10:26:08 +00:00
if (count($attrs) == 0) {
echo '<br /><br />';
printf('<center>%s</center>',_('This server has nothing to report.'));
2009-06-30 09:29:51 +00:00
exit;
}
2009-06-30 08:05:37 +00:00
2009-06-30 10:26:08 +00:00
echo '<table class="edit_dn">';
foreach ($attrs as $attr => $values) {
if ($attr == 'dn')
continue;
2009-06-30 08:05:37 +00:00
2009-06-30 09:29:51 +00:00
$schema_href = sprintf('schema.php?server_id=%s&amp;view=attributes&amp;viewvalue=%s',$ldapserver->server_id,$attr);
2009-06-30 10:26:08 +00:00
echo '<tr><td class="attr">';
2009-06-30 10:40:03 +00:00
printf('<b><a title="'._('Click to view the schema defintion for attribute type \'%s\'').'" href="%s">%s</a></b>',
2009-06-30 10:26:08 +00:00
$attr,$schema_href,htmlspecialchars($attr));
echo '</td></tr>';
2009-06-30 09:29:51 +00:00
2009-06-30 10:26:08 +00:00
echo '<tr><td class="val">';
echo '<table class="edit_dn">';
2009-06-30 09:29:51 +00:00
2009-06-30 10:26:08 +00:00
if (is_array($values))
foreach ($values as $value) {
2009-06-30 09:29:51 +00:00
$oidtext = '';
print '<tr>';
2009-06-30 10:26:08 +00:00
if (preg_match('/^[0-9]+\.[0-9]+/',$value)) {
printf('<td width=5%%><acronym title="%s"><img src="images/rfc.png" /></acronym></td>',
htmlspecialchars($value));
2009-06-30 09:29:51 +00:00
2009-06-30 10:26:08 +00:00
if ($oidtext = support_oid_to_text($value))
2009-06-30 09:29:51 +00:00
if (isset($oidtext['ref']))
printf('<td><acronym title="%s">%s</acronym></td>',$oidtext['ref'],$oidtext['title']);
else
printf('<td>%s</td>',$oidtext['title']);
else
2009-06-30 10:26:08 +00:00
if ($value)
printf('<td><small>%s</small></td>',$value);
2009-06-30 09:29:51 +00:00
} else {
2009-06-30 10:26:08 +00:00
printf('<td>%s</td>',htmlspecialchars($value));
2009-06-30 09:29:51 +00:00
}
print '</tr>';
2009-06-30 10:26:08 +00:00
if (isset($oidtext['desc']) && trim($oidtext['desc']))
2009-06-30 09:29:51 +00:00
printf('<tr><td colspan=2><small>%s</small></td></tr>',$oidtext['desc']);
2009-06-30 10:26:08 +00:00
}
2009-06-30 09:29:51 +00:00
2009-06-30 10:26:08 +00:00
else
printf('<tr><td>%s</td></tr>',htmlspecialchars($values));
2009-06-30 08:09:20 +00:00
2009-06-30 10:26:08 +00:00
echo '</table>';
echo '</td></tr>';
}
echo '</table></body></html>';
?>