2009-06-30 08:12:47 +00:00
|
|
|
<?php
|
2009-06-30 08:13:22 +00:00
|
|
|
// $Header: /cvsroot/phpldapadmin/phpldapadmin/search.php,v 1.39 2004/05/08 13:26:27 uugdave Exp $
|
2009-06-30 08:12:47 +00:00
|
|
|
|
2009-06-30 08:05:37 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* search.php
|
|
|
|
* Perform LDAP searches and draw the advanced/simple search forms
|
|
|
|
*
|
|
|
|
* Variables that come in as GET vars:
|
|
|
|
* - server_id
|
|
|
|
* - search (true if performing a search, empty to just draw form)
|
|
|
|
* For simple searches:
|
|
|
|
* - attribute, criterion, filter
|
|
|
|
* For advanced searches:
|
|
|
|
* - base_dn, scope, filter
|
|
|
|
*/
|
|
|
|
|
2009-06-30 08:07:14 +00:00
|
|
|
require 'common.php';
|
2009-06-30 08:05:37 +00:00
|
|
|
|
|
|
|
// try to get an available server_id if one is not provided
|
2009-06-30 08:09:20 +00:00
|
|
|
if( ! isset( $_GET['server_id'] ) )
|
2009-06-30 08:05:37 +00:00
|
|
|
$server_id = get_avail_server_id();
|
2009-06-30 08:09:20 +00:00
|
|
|
else {
|
|
|
|
$server_id = $_GET['server_id'];
|
|
|
|
check_server_id( $server_id ) or pla_error( $lang['bad_server_id'] );
|
2009-06-30 08:05:37 +00:00
|
|
|
}
|
2009-06-30 08:09:20 +00:00
|
|
|
|
2009-06-30 08:12:47 +00:00
|
|
|
|
2009-06-30 08:07:14 +00:00
|
|
|
$js_on_change_string ='';
|
2009-06-30 08:09:20 +00:00
|
|
|
if( isset( $_GET['form'] ) && $_GET['form'] == 'advanced' )
|
|
|
|
$js_on_change_string =
|
|
|
|
'onChange="document.forms[0].base_dn.value=servers[document.forms[0].server_id.value].getBaseDn()"';
|
2009-06-30 08:05:37 +00:00
|
|
|
|
|
|
|
// build the server drop-down html and JavaScript array (for base_dns)
|
2009-06-30 08:07:14 +00:00
|
|
|
$server_menu_html = '<select name="server_id" '.$js_on_change_string.'>';
|
|
|
|
|
|
|
|
$server_info_list =array();
|
|
|
|
|
2009-06-30 08:05:37 +00:00
|
|
|
foreach( $servers as $id => $server ) {
|
|
|
|
$base_dn = $server['base'] ? $server['base'] : try_to_get_root_dn( $id );
|
2009-06-30 08:07:14 +00:00
|
|
|
$server_info_list[$id]['id'] = $id;
|
|
|
|
$server_info_list[$id]['name'] = $server['name'];
|
|
|
|
$server_info_list[$id]['base_dn'] = $base_dn;
|
|
|
|
|
2009-06-30 08:05:37 +00:00
|
|
|
if( $server['host'] ) {
|
|
|
|
$server_menu_html .= '<option value="'.$id.'"' . ( $id==$server_id? ' selected' : '' ) . '>';
|
|
|
|
$server_menu_html .= $server['name'] . '</option>';
|
|
|
|
}
|
|
|
|
}
|
2009-06-30 08:07:14 +00:00
|
|
|
|
2009-06-30 08:05:37 +00:00
|
|
|
$server_menu_html .= '</select>';
|
|
|
|
|
2009-06-30 08:09:20 +00:00
|
|
|
$filter = isset( $_GET['filter'] ) ? $_GET['filter'] : null;
|
|
|
|
$filter = $filter;
|
|
|
|
$attr = isset( $_GET['attribute'] ) ? $_GET['attribute'] : null;
|
2009-06-30 08:05:37 +00:00
|
|
|
|
|
|
|
// grab the base dn for the search
|
|
|
|
if( isset( $_GET['base_dn'] ) )
|
|
|
|
$base_dn = $_GET['base_dn'];
|
|
|
|
elseif( '' != $servers[$server_id]['base'] )
|
|
|
|
$base_dn = $servers[$server_id]['base'];
|
|
|
|
else
|
|
|
|
$base_dn = try_to_get_root_dn( $server_id );
|
|
|
|
|
2009-06-30 08:09:20 +00:00
|
|
|
$criterion = isset( $_GET['criterion'] ) ? $_GET['criterion'] : null;
|
2009-06-30 08:12:47 +00:00
|
|
|
$form = isset( $_GET['form'] ) ? $_GET['form'] : null;
|
2009-06-30 08:09:20 +00:00
|
|
|
$scope = isset( $_GET['scope'] ) ? $_GET['scope'] : 'sub';
|
|
|
|
|
|
|
|
include 'header.php'; ?>
|
2009-06-30 08:05:37 +00:00
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<center>
|
|
|
|
|
|
|
|
<?php if( $form == 'advanced' ) {
|
|
|
|
|
|
|
|
include 'search_form_advanced.php';
|
|
|
|
|
2009-06-30 08:12:47 +00:00
|
|
|
} elseif( $form == 'predefined' ) {
|
|
|
|
|
|
|
|
include 'search_form_predefined.php';
|
|
|
|
|
2009-06-30 08:05:37 +00:00
|
|
|
} else /* Draw simple search form */ {
|
|
|
|
|
|
|
|
process_config();
|
|
|
|
include 'search_form_simple.php';
|
|
|
|
|
|
|
|
} ?>
|
|
|
|
|
|
|
|
</center>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
|
2009-06-30 08:12:47 +00:00
|
|
|
flush();
|
|
|
|
|
2009-06-30 08:09:20 +00:00
|
|
|
if( isset( $_GET['search'] ) )
|
2009-06-30 08:05:37 +00:00
|
|
|
{
|
|
|
|
if( $form == 'advanced' ) {
|
|
|
|
$search_result_attributes = isset( $_GET['display_attrs'] ) ?
|
2009-06-30 08:09:20 +00:00
|
|
|
rawurldecode( $_GET['display_attrs'] ) :
|
|
|
|
( isset( $search_result_attributes ) ?
|
|
|
|
$search_result_attributes :
|
|
|
|
"dn, cn" );
|
2009-06-30 08:05:37 +00:00
|
|
|
process_config();
|
|
|
|
}
|
|
|
|
|
|
|
|
// do we have enough authentication information for the specified server_id
|
|
|
|
if( ! have_auth_info( $server_id ) )
|
|
|
|
{
|
|
|
|
$login_url = "login_form.php?server_id=$server_id&redirect=" . rawurlencode( $_SERVER['REQUEST_URI'] );
|
|
|
|
?>
|
|
|
|
<center>
|
|
|
|
<br />
|
2009-06-30 08:09:20 +00:00
|
|
|
<?php echo $lang['you_have_not_logged_into_server']; ?><br />
|
|
|
|
<a href="<?php echo $login_url; ?>"><?php echo $lang['click_to_go_to_login_form']; ?></a>.
|
2009-06-30 08:05:37 +00:00
|
|
|
</center>
|
|
|
|
<?php
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2009-06-30 08:09:20 +00:00
|
|
|
$ds = pla_ldap_connect( $server_id );
|
|
|
|
if( ! $ds )
|
|
|
|
pla_error( $lang['could_not_connect'] );
|
2009-06-30 08:05:37 +00:00
|
|
|
|
2009-06-30 08:12:47 +00:00
|
|
|
//making $predefined safe for "register_globals off"
|
|
|
|
if( isset( $_GET['predefined'] ) )
|
|
|
|
{
|
|
|
|
$predefined = $_GET['predefined'];
|
|
|
|
if( is_numeric( $predefined ) )
|
|
|
|
{
|
|
|
|
$query = get_fixed_query( $predefined );
|
|
|
|
|
|
|
|
$search_result_attributes = $query['attributes'];
|
|
|
|
$search_attributes_display = $search_result_attributes;
|
|
|
|
$search_attributes = $search_result_attributes;
|
|
|
|
|
|
|
|
process_config();
|
|
|
|
|
|
|
|
$filter = $query['filter'];
|
|
|
|
$scope = $query['scope'];
|
|
|
|
$base_dn = $query['base'];
|
|
|
|
$server_id = $query['server'];
|
|
|
|
}
|
|
|
|
} else { $predefined = ''; }
|
|
|
|
|
2009-06-30 08:05:37 +00:00
|
|
|
if( $filter )
|
|
|
|
{
|
|
|
|
|
|
|
|
// if they are using the simple search form, build an LDAP search filter from their input
|
2009-06-30 08:12:47 +00:00
|
|
|
if( $form == 'simple' &! is_numeric( $predefined ) )
|
2009-06-30 08:05:37 +00:00
|
|
|
{
|
|
|
|
switch( $criterion ) {
|
|
|
|
case 'starts with':
|
2009-06-30 08:07:14 +00:00
|
|
|
// to fix bug 789113
|
|
|
|
if( $filter == "*" )
|
|
|
|
$filter = "";
|
2009-06-30 08:05:37 +00:00
|
|
|
$filter = "($attr=$filter*)";
|
|
|
|
break;
|
|
|
|
case 'contains':
|
2009-06-30 08:07:14 +00:00
|
|
|
// to fix bug 789113
|
|
|
|
if( $filter == "*" )
|
|
|
|
$filter = "($attr=*)";
|
|
|
|
else
|
|
|
|
$filter = "($attr=*$filter*)";
|
2009-06-30 08:05:37 +00:00
|
|
|
break;
|
|
|
|
case 'ends with':
|
2009-06-30 08:07:14 +00:00
|
|
|
// to fix bug 789113
|
|
|
|
if( $filter == "*" )
|
|
|
|
$filter = "";
|
2009-06-30 08:05:37 +00:00
|
|
|
$filter = "($attr=*$filter)";
|
|
|
|
break;
|
|
|
|
case 'equals':
|
|
|
|
$filter = "($attr=$filter)";
|
|
|
|
break;
|
|
|
|
case 'sounds like':
|
|
|
|
$filter = "($attr~=$filter)";
|
|
|
|
break;
|
|
|
|
default:
|
2009-06-30 08:09:20 +00:00
|
|
|
pla_error( $lang['unrecognized_criteria_option'] .
|
|
|
|
htmlspecialchars( $criterion ) .
|
|
|
|
$lang['if_you_want_to_add_criteria'] );
|
2009-06-30 08:05:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-30 08:12:47 +00:00
|
|
|
echo "<center>" . $lang['searching'] . "</center>\n";
|
2009-06-30 08:09:20 +00:00
|
|
|
flush();
|
|
|
|
|
|
|
|
// prevent script from bailing early on a long delete
|
|
|
|
@set_time_limit( 0 );
|
|
|
|
|
2009-06-30 08:12:47 +00:00
|
|
|
// grab the size limit set in config.php
|
2009-06-30 08:09:20 +00:00
|
|
|
$size_limit = isset ( $search_result_size_limit ) && is_numeric( $search_result_size_limit ) ?
|
|
|
|
$search_result_size_limit :
|
2009-06-30 08:13:22 +00:00
|
|
|
50;
|
|
|
|
// Sanity check
|
|
|
|
if( $size_limit < 1 )
|
|
|
|
$size_limit = 1;
|
|
|
|
|
2009-06-30 08:12:47 +00:00
|
|
|
$page = isset( $_GET['page'] ) ? $_GET['page'] : 0;
|
2009-06-30 08:09:20 +00:00
|
|
|
|
2009-06-30 08:05:37 +00:00
|
|
|
$time_start = utime();
|
2009-06-30 08:09:20 +00:00
|
|
|
if( $scope == 'base' )
|
|
|
|
$results = @ldap_read( $ds, $base_dn, $filter, $search_result_attributes,
|
2009-06-30 08:12:47 +00:00
|
|
|
0, 0, 0, get_search_deref_setting() );
|
2009-06-30 08:09:20 +00:00
|
|
|
elseif( $scope == 'one' )
|
|
|
|
$results = @ldap_list( $ds, $base_dn, $filter, $search_result_attributes,
|
2009-06-30 08:12:47 +00:00
|
|
|
0, 0, 0, get_search_deref_setting() );
|
2009-06-30 08:09:20 +00:00
|
|
|
else // scope == 'sub'
|
|
|
|
$results = @ldap_search( $ds, $base_dn, $filter, $search_result_attributes,
|
2009-06-30 08:12:47 +00:00
|
|
|
0, 0, 0, get_search_deref_setting() );
|
2009-06-30 08:09:20 +00:00
|
|
|
$errno = @ldap_errno( $ds );
|
2009-06-30 08:12:47 +00:00
|
|
|
if( ! $results ) {
|
|
|
|
pla_error( $lang['error_performing_search'], ldap_error( $ds ), ldap_errno( $ds ) );
|
|
|
|
}
|
|
|
|
|
2009-06-30 08:05:37 +00:00
|
|
|
$time_end = utime();
|
|
|
|
$time_elapsed = round( $time_end - $time_start, 2 );
|
2009-06-30 08:09:20 +00:00
|
|
|
$count = @ldap_count_entries( $ds, $results );
|
2009-06-30 08:07:14 +00:00
|
|
|
|
2009-06-30 08:12:47 +00:00
|
|
|
$start_entry = $page * $size_limit;
|
|
|
|
$end_entry = min( $start_entry + $size_limit + 1, $count+1 );
|
|
|
|
|
2009-06-30 08:05:37 +00:00
|
|
|
?>
|
|
|
|
|
2009-06-30 08:09:20 +00:00
|
|
|
<center>
|
2009-06-30 08:12:47 +00:00
|
|
|
<?php echo $lang['entries_found'] . ' <b>' . number_format( $count ) ?></b>
|
|
|
|
(<?php echo $time_elapsed; ?> <?php echo $lang['seconds']; ?>).<br />
|
2009-06-30 08:09:20 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// The LDAP error code for the size limit exceeded error.
|
|
|
|
define( 'SIZE_LIMIT_EXCEEDED', 4 );
|
|
|
|
if( $errno && $errno == SIZE_LIMIT_EXCEEDED ) {
|
2009-06-30 08:12:47 +00:00
|
|
|
echo "<br /><small>" . $lang['size_limit_exceeded'] . "</small><br />\n";
|
2009-06-30 08:09:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|
2009-06-30 08:05:37 +00:00
|
|
|
|
2009-06-30 08:12:47 +00:00
|
|
|
<?php if( $form == 'simple' || $form == 'predefined' ) { ?>
|
2009-06-30 08:09:20 +00:00
|
|
|
<center><small><?php echo $lang['filter_performed']; ?>
|
|
|
|
<?php echo htmlspecialchars( $filter ); ?></small></center>
|
2009-06-30 08:05:37 +00:00
|
|
|
<?php } ?>
|
|
|
|
|
2009-06-30 08:12:47 +00:00
|
|
|
<?php
|
|
|
|
// Draw the paging links
|
|
|
|
$pager_html = '';
|
|
|
|
if( $count > $size_limit ) {
|
|
|
|
echo sprintf( $lang['showing_results_x_through_y'], "<b>" . number_format($start_entry+1) . "</b>", "<b>" . number_format($end_entry-1) . "</b>" ) . "<br />\n";
|
|
|
|
$php_self = $_SERVER['PHP_SELF'];
|
|
|
|
if( $page != 0 ) {
|
|
|
|
$query_string = array_to_query_string( $_GET, array( 'page' ) );
|
|
|
|
$query_string .= '&page=' . ($page-1);
|
|
|
|
$pager_html .= "<a href=\"$php_self?$query_string\">‹‹</a>";
|
|
|
|
} else {
|
|
|
|
$pager_html .= "‹‹";
|
|
|
|
}
|
|
|
|
$pager_html .= ' ';
|
|
|
|
|
|
|
|
// for large search results where we page beyone the first 20 pages,
|
|
|
|
// print elipsis instead of making the pager be super wide.
|
|
|
|
$elipsis_printed = false;
|
|
|
|
for( $i=0; $i<$count; $i+=$size_limit ) {
|
|
|
|
$page_num = $i/$size_limit;
|
|
|
|
if( $count > $size_limit * 20 && abs( $page_num - $page ) > 10 ) {
|
|
|
|
if( ! $elipsis_printed ) {
|
|
|
|
$pager_html .= '... ';
|
|
|
|
$elipsis_printed = true;
|
|
|
|
}
|
|
|
|
} else if( $page == $page_num ) {
|
|
|
|
$pager_html .= ($page_num + 1);
|
|
|
|
$pager_html .= ' ';
|
|
|
|
$elipsis_printed = false;
|
|
|
|
} else {
|
|
|
|
$query_string = array_to_query_string( $_GET, array( 'page' ) );
|
|
|
|
$query_string .= '&page=' . $page_num;
|
|
|
|
$pager_html .= "<a href=\"$php_self?$query_string\">" . ($page_num+1) . "</a>";
|
|
|
|
$pager_html .= ' ';
|
|
|
|
$elipsis_printed = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if( $page+1 < ( $count / $size_limit ) ) {
|
|
|
|
$query_string = array_to_query_string( $_GET, array( 'page' ) );
|
|
|
|
$query_string .= '&page=' . ($page+1);
|
|
|
|
$pager_html .= "<a href=\"$php_self?$query_string\">››</a>";
|
|
|
|
} else {
|
|
|
|
$pager_html .= "››";
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
echo $pager_html;
|
|
|
|
// Done drawing pager
|
|
|
|
?>
|
|
|
|
<br />
|
|
|
|
|
2009-06-30 08:05:37 +00:00
|
|
|
</center>
|
|
|
|
|
2009-06-30 08:12:47 +00:00
|
|
|
<?php flush(); ?>
|
2009-06-30 08:05:37 +00:00
|
|
|
|
2009-06-30 08:09:20 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
$friendly_attrs = process_friendly_attr_table();
|
|
|
|
$entry_id = ldap_first_entry( $ds, $results );
|
|
|
|
|
|
|
|
// Iterate over each entry
|
|
|
|
$i = 0;
|
|
|
|
while( $entry_id ) {
|
|
|
|
$i++;
|
2009-06-30 08:12:47 +00:00
|
|
|
if( $i <= $start_entry ) {
|
|
|
|
$entry_id = ldap_next_entry( $ds, $entry_id );
|
|
|
|
continue;
|
2009-06-30 08:09:20 +00:00
|
|
|
}
|
2009-06-30 08:12:47 +00:00
|
|
|
if( $i >= $end_entry )
|
|
|
|
break;
|
2009-06-30 08:09:20 +00:00
|
|
|
$dn = ldap_get_dn( $ds, $entry_id );
|
|
|
|
$encoded_dn = rawurlencode( $dn );
|
|
|
|
$rdn = get_rdn( $dn );
|
|
|
|
?>
|
|
|
|
|
|
|
|
<div class="search_result">
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<td><img src="images/<?php echo get_icon_use_cache( $server_id, $dn ); ?>" /></td>
|
|
|
|
<td><a href="edit.php?server_id=<?php
|
|
|
|
echo $server_id; ?>&dn=<?php echo $encoded_dn; ?>"><?php echo htmlspecialchars($rdn); ?></a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<table class="attrs">
|
|
|
|
|
|
|
|
<?php
|
|
|
|
|
|
|
|
$attrs = ldap_get_attributes( $ds, $entry_id );
|
|
|
|
$attr = ldap_first_attribute( $ds, $entry_id, $attrs );
|
|
|
|
|
|
|
|
// Always print out the DN in the attribute list
|
|
|
|
echo "<tr><td class=\"attr\" valign=\"top\">dn</td>";
|
|
|
|
echo "<td>" . htmlspecialchars($dn) . "</td></tr>\n";
|
|
|
|
|
|
|
|
// Iterate over each attribute for this entry
|
|
|
|
while( $attr ) {
|
|
|
|
|
|
|
|
if( is_attr_binary( $server_id, $attr ) )
|
|
|
|
$values = array( "(binary)" );
|
|
|
|
else
|
|
|
|
$values = ldap_get_values( $ds, $entry_id, $attr );
|
|
|
|
if( isset( $values['count'] ) )
|
|
|
|
unset( $values['count'] );
|
|
|
|
|
|
|
|
if( isset( $friendly_attrs[ strtolower( $attr ) ] ) )
|
|
|
|
$attr = "<acronym title=\"Alias for $attr\">" .
|
|
|
|
htmlspecialchars( $friendly_attrs[ strtolower($attr) ] ) .
|
|
|
|
"</acronym>";
|
|
|
|
else
|
|
|
|
$attr = htmlspecialchars( $attr );
|
|
|
|
?>
|
2009-06-30 08:05:37 +00:00
|
|
|
|
|
|
|
<tr>
|
2009-06-30 08:09:20 +00:00
|
|
|
<td class="attr" valign="top"><?php echo $attr; ?></td>
|
2009-06-30 08:05:37 +00:00
|
|
|
<td class="val">
|
2009-06-30 08:09:20 +00:00
|
|
|
<?php
|
2009-06-30 08:12:47 +00:00
|
|
|
if( is_jpeg_photo( $server_id, $attr ) )
|
|
|
|
draw_jpeg_photos( $server_id, $dn, $attr, false, false, 'align="left"' );
|
|
|
|
else
|
|
|
|
foreach( $values as $value )
|
|
|
|
echo str_replace( ' ', ' ',
|
|
|
|
htmlspecialchars( $value ) ) . "<br />\n";
|
2009-06-30 08:09:20 +00:00
|
|
|
?>
|
2009-06-30 08:05:37 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
2009-06-30 08:09:20 +00:00
|
|
|
<?php
|
|
|
|
$attr = ldap_next_attribute( $ds, $entry_id, $attrs );
|
|
|
|
} // end while( $attr )
|
|
|
|
|
|
|
|
?>
|
2009-06-30 08:05:37 +00:00
|
|
|
|
|
|
|
</table>
|
|
|
|
|
2009-06-30 08:09:20 +00:00
|
|
|
<?php
|
2009-06-30 08:05:37 +00:00
|
|
|
|
2009-06-30 08:09:20 +00:00
|
|
|
$entry_id = ldap_next_entry( $ds, $entry_id );
|
|
|
|
|
|
|
|
// flush every 5th entry (sppeds things up a bit)
|
|
|
|
if( 0 == $i % 5 )
|
|
|
|
flush();
|
|
|
|
|
|
|
|
} // end while( $entry_id )
|
|
|
|
|
2009-06-30 08:12:47 +00:00
|
|
|
echo '<br />';
|
|
|
|
echo '<center>';
|
|
|
|
echo $pager_html;
|
|
|
|
echo '</center>';
|
|
|
|
|
2009-06-30 08:09:20 +00:00
|
|
|
?>
|
|
|
|
|
|
|
|
<br /><br />
|
|
|
|
<div class="search_result"><center><span style="font-weight:normal;font-size:75%;">
|
|
|
|
<?php echo $lang['search_duration']; ?>
|
|
|
|
<b><?php echo $time_elapsed; ?></b> <?php echo $lang['seconds'];?>.</small></center></div>
|
2009-06-30 08:05:37 +00:00
|
|
|
<?php
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|