0byt3m1n1
Path:
/
data
/
applications
/
aps
/
phpwiki
/
1.4.0-0
/
standard
/
htdocs
/
lib
/
plugin
/
[
Home
]
File: LdapSearch.php
<?php // -*-php-*- // rcs_id('$Id: LdapSearch.php 7638 2010-08-11 11:58:40Z vargenau $'); /** * 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: <<LdapSearch>> <<LdapSearch host="localhost" port=389 basedn="" filter="(cn=*)" attributes="" >> <<LdapSearch host=ldap.example.com filter="(ou=web-team)" attributes="sn cn telephonenumber" >> <<LdapSearch host="ldap.itd.umich.edu" basedn="" filter="(sn=jensen)" attributes="cn drink" >> <<LdapSearch host=ldap.example.com attributes="cn sn telephonenumber" >> <<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 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); //include_once("lib/WikiUser/LDAP.php"); 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")); if (!$basedn) $basedn = LDAP_BASE_DN; $attr_array = array(""); if (!$attributes) { $res = ldap_search($connect, $basedn, $filter); } else { $attr_array = explode(" ", $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 ($ii=0; $ii < $entries[0]["count"]; $ii++) { $data = $entries[0][$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[0]["count"]; $i++) { $data = $entries[0][$i]; $datalen = $entries[0][$data]["count"]; if ($attrcols[$i] < $datalen) { $attrcols[$i] = $datalen; } } // Print the headers $row = HTML::tr(); for ($i=0; $i < count($attr_array) ; $i++) { // span subcolumns, like objectclass 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 ($currow = 0; $currow < $entries["count"]; $currow++) { $row = HTML::tr(); $nc=0; // columns for ($i=0; $i < count($attr_array); $i++){ $colname = $attr_array[$i]; $data = @$entries[$currow][$colname]; if ($data and $data["count"] > 0) { // subcolumns, e.g. for objectclass for ($iii=0; $iii < $data["count"]; $iii++) { $row->pushContent(HTML::td($data[$iii])); $nc++; } } else { $row->pushContent(HTML::td("")); $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); } }; // Local Variables: // mode: php // tab-width: 8 // c-basic-offset: 4 // c-hanging-comment-ender-p: nil // indent-tabs-mode: nil // End: ?>