* @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: not supported by cvs2svn $ // 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: ?>