]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/LdapSearch.php
use default basedn
[SourceForge/phpwiki.git] / lib / plugin / LdapSearch.php
1 <?php // -*-php-*- rcs_id('$Id: LdapSearch.php,v 1.6 2007-08-25 18:06:46 rurban Exp $');
2 /**
3  Copyright 2004 John Lines
4  Copyright 2007 $ThePhpWikiProgrammingTeam
5
6  This file is part of PhpWiki.
7
8  PhpWiki is free software; you can redistribute it and/or modify
9  it under the terms of the GNU General Public License as published by
10  the Free Software Foundation; either version 2 of the License, or
11  (at your option) any later version.
12
13  PhpWiki is distributed in the hope that it will be useful,
14  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  GNU General Public License for more details.
17
18  You should have received a copy of the GNU General Public License
19  along with PhpWiki; if not, write to the Free Software
20  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 /**
24  * WikiPlugin which searches an LDAP directory.
25  *
26  * Uses the config.ini constants as defaults.
27  * See http://phpwiki.org/LdapSearchPlugin
28  * TODO: Return a pagelist on certain attributes
29  *
30  * Usage Samples:
31   <?plugin LdapSearch?>
32   <?plugin LdapSearch
33            host="localhost"
34            port=389
35            basedn=""
36            filter="(cn=*)"
37            attributes=""  
38   ?>
39   <?plugin LdapSearch host=ldap.example.com filter="(ou=web-team)" 
40                       attributes="sn cn telephonenumber" ?>
41   <?plugin LdapSearch host="ldap.itd.umich.edu" basedn="" filter="(sn=jensen)" attributes="cn drink" ?>
42   <?plugin LdapSearch host=ldap.example.com attributes="cn sn telephonenumber" ?>
43   <?plugin LdapSearch host=bugs.debian.org port=10101 basedn="dc=current,dc=bugs,dc=debian,dc=org"
44                       filter="(debbugsPackage=phpwiki)" 
45                       attributes="debbugsSeverity debbugsState debbugsTitle" ?>
46
47  * @author John Lines
48  */
49
50 class WikiPlugin_LdapSearch
51 extends WikiPlugin
52 {
53     function getName () {
54         return _("LdapSearch");
55     }
56     function getDescription () {
57         return _("Search an LDAP directory");
58
59     }
60     function getVersion() {
61         return preg_replace("/[Revision: $]/", '',
62                             "\$Revision: 1.6 $");
63     }
64     function getDefaultArguments() {
65         return array('host'     => "",          // default: LDAP_AUTH_HOST
66                      'port'     => 389,         // ignored if host = full uri
67                      'basedn'   => "",          // LDAP_BASE_DN
68                      'filter'   => "(cn=*)",
69                      'attributes' => "",
70                      'user'     => '',
71                      'password' => '',
72                      'options'   => "",
73                      );
74     }
75
76     // I ought to require the ldap extension, but fail sanely, if I cant get it.
77     // - however at the moment this seems to work as is
78     function run($dbi, $argstr, $request) {
79         if (!function_exists('ldap_connect')) {
80             if (!loadPhpExtension('ldap'))
81                 return $this->error(_("Missing ldap extension"));
82         }
83         $args = $this->getArgs($argstr, $request);
84         extract($args);
85         //include_once("lib/WikiUser/LDAP.php");
86         if (!$host) {
87             if (defined('LDAP_AUTH_HOST')) {
88                 $host = LDAP_AUTH_HOST;
89                 if (strstr(LDAP_AUTH_HOST, '://'))
90                     $port = null;
91             } else {
92                 $host = 'localhost';
93             }
94         } else {
95             if (strstr($host, '://'))
96                 $port = null;
97         }
98         $html = HTML();
99         if (is_null($port))
100             $connect = ldap_connect($host);
101         else
102             $connect = ldap_connect($host, $port);
103         if (!$connect)
104             return $this->error(_("Failed to connect to LDAP host"));
105         if (!$options and defined('LDAP_AUTH_HOST') and $args['host'] == LDAP_AUTH_HOST) {
106             if (!empty($GLOBALS['LDAP_SET_OPTION'])) {
107                 $options = $GLOBALS['LDAP_SET_OPTION'];
108             }
109         }
110         if ($options) {
111             foreach ($options as $key => $value) {
112                 if (!ldap_set_option($connect, $key, $value))
113                     $this->error(_("Failed to set LDAP $key $value"));
114             }
115         }
116         
117         // special convenience: if host = LDAP_AUTH_HOST
118         // then take user and password from config.ini also
119         if ($user) {
120             if ($password)
121                 // required for Windows Active Directory Server
122                 $bind = ldap_bind($connect, $user, $password);
123             else
124                 $bind = ldap_bind($connect, $user);
125         } elseif (defined('LDAP_AUTH_HOST') and $args['host'] == LDAP_AUTH_HOST) {
126             if (LDAP_AUTH_USER)
127                 if (LDAP_AUTH_PASSWORD)
128                     // Windows Active Directory Server is strict
129                     $r = ldap_bind($connect, LDAP_AUTH_USER, LDAP_AUTH_PASSWORD); 
130                 else
131                     $r = ldap_bind($connect, LDAP_AUTH_USER); 
132             else // anonymous bind
133                 $bind = ldap_bind($connect);
134         } else { // other anonymous bind
135             $bind = ldap_bind($connect);
136         }
137         if (!$bind) return $this->error(_("Failed to bind LDAP host"));
138         if (!$basedn) $basedn = LDAP_BASE_DN;
139         $attr_array = array("");
140         if (!$attributes) {
141             $res = ldap_search($connect, $basedn, $filter);
142         } else {
143             $attr_array = split (" ",$attributes);
144             $res = ldap_search($connect, $basedn, $filter, $attr_array);
145         }
146         $entries = ldap_get_entries($connect, $res);
147  
148         // If we were given attributes then we return them in the order given
149         // else take all 
150         if ( !$attributes ) {
151             $attr_array = array();
152             for ($i = 0; $i < $entries["count"]; $i++) {
153                 $row = HTML::tr();
154                 for ($ii=0; $ii < $entries[$i]["count"]; $ii++){
155                     $data = $entries[$i][$ii];
156                     $attr_array[] = $data;
157                 }
158             }
159         }
160         for ($i=0; $i < count($attr_array) ; $i++) { $attrcols[$i] = 0; }
161         // Work out how many columns we need for each attribute. objectclass has more
162         for ($i = 0; $i < $entries["count"]; $i++) {
163             for ($ii=0; $ii<$entries[$i]["count"]; $ii++){
164                 $data = $entries[$i][$ii];
165                 $datalen = $entries[$i][$data]["count"];
166                 if ($attrcols[$ii] < $datalen) {
167                     $attrcols[$ii] = $datalen;
168                 }
169             }
170         }
171         // Print the headers
172         $row = HTML::tr(); 
173         for ($i=0; $i < count($attr_array) ; $i++) {
174             if ($attrcols[$i] > 1)
175                 $row->pushContent(HTML::th(array('colspan' => $attrcols[$i]), $attr_array[$i]));
176             else
177                 $row->pushContent(HTML::th(array(), $attr_array[$i]));
178         }
179         $html->pushContent($row);
180
181         // Print the data rows
182         for ($i = 0; $i < $entries["count"]; $i++) {
183             $row = HTML::tr(); $nc=0;
184             for ($ii=0; $ii < count($attr_array); $ii++){
185                 $data = @$entries[$i][$attr_array[$ii]];
186                 if ($data and $data["count"] > 0) {
187                     for ($iii=0; $iii < $data["count"]; $iii++) {
188                         $row->pushContent(HTML::td($data[$iii])); $nc++;
189                     }
190                 } else {
191                     $row->pushContent(HTML::td("")); $nc++;
192                     break;
193                 }
194                 // Make up some blank cells if required to pad this row
195                 for ( $j=0 ; $j < ($attrcols[$ii] - $nc); $j++ ) {
196                     $row->pushContent(HTML::td(""));
197                 }
198             }
199             $html->pushContent($row);
200         }
201         return HTML::table(array('cellpadding' => 1,'cellspacing' => 1, 'border' => 1), $html);
202     }
203 };
204
205 // $Log: not supported by cvs2svn $
206 // Revision 1.5  2007/01/22 23:50:00  rurban
207 // Improve Table for no attributes
208 //
209 // Revision 1.4  2007/01/21 23:23:49  rurban
210 // Improve LdapSearch
211 //
212 // Revision 1.3  2004/12/20 16:05:14  rurban
213 // gettext msg unification
214 //
215 // Revision 1.2  2004/10/04 23:39:34  rurban
216 // just aesthetics
217 //
218 // Revision 1.1  2004/09/23 12:28:12  rurban
219 // initial checkin from http://phpwiki.org/LdapSearchPlugin
220 //   by John Lines
221 //
222
223 // For emacs users
224 // Local Variables:
225 // mode: php
226 // tab-width: 8
227 // c-basic-offset: 4
228 // c-hanging-comment-ender-p: nil
229 // indent-tabs-mode: nil
230 // End:
231 ?>