0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
phpwiki
/
1.3.14-6
/
standard
/
htdocs
/
lib
/
plugin
/
[
Home
]
File: LdapSearch.php
<?php // -*-php-*- rcs_id('$Id: LdapSearch.php,v 1.5 2007/01/22 23:50:00 rurban Exp $'); /** Copyright 2004 John Lines Copyright 2007 $ThePhpWikiProgrammingTeam This file is part of PhpWiki. PhpWiki is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. PhpWiki is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with PhpWiki; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ /** * WikiPlugin which searches an LDAP directory. * * Uses the config.ini constants as defaults. * See http://phpwiki.org/LdapSearchPlugin * TODO: Return a pagelist on certain attributes * * Usage Samples: <?plugin LdapSearch?> <?plugin LdapSearch host="localhost" port=389 basedn="" filter="(cn=*)" attributes="" ?> <?plugin LdapSearch host=ldap.example.com filter="(ou=web-team)" attributes="sn cn telephonenumber" ?> <?plugin LdapSearch host="ldap.itd.umich.edu" basedn="" filter="(sn=jensen)" attributes="cn drink" ?> <?plugin LdapSearch host=ldap.example.com attributes="cn sn telephonenumber" ?> <?plugin LdapSearch host=bugs.debian.org port=10101 basedn="dc=current,dc=bugs,dc=debian,dc=org" filter="(debbugsPackage=phpwiki)" attributes="debbugsSeverity debbugsState debbugsTitle" ?> * @author John Lines */ class WikiPlugin_LdapSearch extends WikiPlugin { function getName () { return _("LdapSearch"); } function getDescription () { return _("Search an LDAP directory"); } function getVersion() { return preg_replace("/[Revision: $]/", '', "\$Revision: 1.5 $"); } function getDefaultArguments() { return array('host' => "", // default: LDAP_AUTH_HOST 'port' => 389, // ignored if host = full uri 'basedn' => "", // LDAP_BASE_DN 'filter' => "(cn=*)", 'attributes' => "", 'user' => '', 'password' => '', 'options' => "", ); } // I ought to require the ldap extension, but fail sanely, if I cant get it. // - however at the moment this seems to work as is function run($dbi, $argstr, $request) { if (!function_exists('ldap_connect')) { if (!loadPhpExtension('ldap')) return $this->error(_("Missing ldap extension")); } $args = $this->getArgs($argstr, $request); extract($args); if (!$host) { if (defined('LDAP_AUTH_HOST')) { $host = LDAP_AUTH_HOST; if (strstr(LDAP_AUTH_HOST, '://')) $port = null; } else { $host = 'localhost'; } } else { if (strstr($host, '://')) $port = null; } $html = HTML(); if (is_null($port)) $connect = ldap_connect($host); else $connect = ldap_connect($host, $port); if (!$connect) return $this->error(_("Failed to connect to LDAP host")); if (!$options and defined('LDAP_AUTH_HOST') and $args['host'] == LDAP_AUTH_HOST) { if (!empty($GLOBALS['LDAP_SET_OPTION'])) { $options = $GLOBALS['LDAP_SET_OPTION']; } } if ($options) { foreach ($options as $key => $value) { if (!ldap_set_option($connect, $key, $value)) $this->error(_("Failed to set LDAP $key $value")); } } // special convenience: if host = LDAP_AUTH_HOST // then take user and password from config.ini also if ($user) { if ($password) // required for Windows Active Directory Server $bind = ldap_bind($connect, $user, $password); else $bind = ldap_bind($connect, $user); } elseif (defined('LDAP_AUTH_HOST') and $args['host'] == LDAP_AUTH_HOST) { if (LDAP_AUTH_USER) if (LDAP_AUTH_PASSWORD) // Windows Active Directory Server is strict $r = ldap_bind($connect, LDAP_AUTH_USER, LDAP_AUTH_PASSWORD); else $r = ldap_bind($connect, LDAP_AUTH_USER); else // anonymous bind $bind = ldap_bind($connect); } else { // other anonymous bind $bind = ldap_bind($connect); } if (!$bind) return $this->error(_("Failed to bind LDAP host")); $attr_array = array(""); if (!$attributes) { $res = ldap_search($connect, $basedn, $filter); } else { $attr_array = split (" ",$attributes); $res = ldap_search($connect, $basedn, $filter, $attr_array); } $entries = ldap_get_entries($connect, $res); // If we were given attributes then we return them in the order given // else take all if ( !$attributes ) { $attr_array = array(); for ($i = 0; $i < $entries["count"]; $i++) { $row = HTML::tr(); for ($ii=0; $ii < $entries[$i]["count"]; $ii++){ $data = $entries[$i][$ii]; $attr_array[] = $data; } } } for ($i=0; $i < count($attr_array) ; $i++) { $attrcols[$i] = 0; } // Work out how many columns we need for each attribute. objectclass has more for ($i = 0; $i < $entries["count"]; $i++) { for ($ii=0; $ii<$entries[$i]["count"]; $ii++){ $data = $entries[$i][$ii]; $datalen = $entries[$i][$data]["count"]; if ($attrcols[$ii] < $datalen ) { $attrcols[$ii] = $datalen; } } } // Print the headers $row = HTML::tr(); for ($i=0; $i < count($attr_array) ; $i++) { if ($attrcols[$i] > 1) $row->pushContent(HTML::th(array('colspan' => $attrcols[$i]), $attr_array[$i])); else $row->pushContent(HTML::th(array(), $attr_array[$i])); } $html->pushContent($row); // Print the data rows for ($i = 0; $i<$entries["count"]; $i++) { $row = HTML::tr(); $nc=0; for ($ii=0; $ii < $entries[$i]["count"]; $ii++){ $data = $entries[$i][$ii]; // 3 possible cases for the values of each attribute. switch ($entries[$i][$data]["count"]) { case 0: $row->pushContent(HTML::td("")); $nc++; break; default: for ($iii=0; $iii < $entries[$i][$data]["count"]; $iii++) { $row->pushContent(HTML::td($entries[$i][$data][$iii])); $nc++; } } // Make up some blank cells if required to pad this row for ( $j=0 ; $j < ($attrcols[$ii] - $nc); $j++ ) { $row->pushContent(HTML::td("")); } } $html->pushContent($row); } return HTML::table(array('cellpadding' => 1,'cellspacing' => 1, 'border' => 1), $html); } }; // $Log: LdapSearch.php,v $ // Revision 1.5 2007/01/22 23:50:00 rurban // Improve Table for no attributes // // Revision 1.4 2007/01/21 23:23:49 rurban // Improve LdapSearch // // Revision 1.3 2004/12/20 16:05:14 rurban // gettext msg unification // // Revision 1.2 2004/10/04 23:39:34 rurban // just aesthetics // // Revision 1.1 2004/09/23 12:28:12 rurban // initial checkin from http://phpwiki.org/LdapSearchPlugin // by John Lines // // For emacs users // Local Variables: // mode: php // tab-width: 8 // c-basic-offset: 4 // c-hanging-comment-ender-p: nil // indent-tabs-mode: nil // End: ?>