]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/WikiUserNew.php
Enable the Administrators group, and add the WIKIPAGE group default root page.
[SourceForge/phpwiki.git] / lib / WikiUserNew.php
1 <?php //-*-php-*-
2 rcs_id('$Id: WikiUserNew.php,v 1.69 2004-05-06 13:56:40 rurban Exp $');
3 /* Copyright (C) 2004 $ThePhpWikiProgrammingTeam
4  *
5  * This file is part of PhpWiki.
6  * 
7  * PhpWiki is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  * 
12  * PhpWiki is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with PhpWiki; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  */
21 /**
22  * This is a complete OOP rewrite of the old WikiUser code with various
23  * configurable external authentication methods.
24  *
25  * There's only one entry point, the function WikiUser which returns 
26  * a WikiUser object, which contains the user's preferences.
27  * This object might get upgraded during the login step and later also.
28  * There exist three preferences storage methods: cookie, homepage and db,
29  * and multiple password checking methods.
30  * See index.php for $USER_AUTH_ORDER[] and USER_AUTH_POLICY if 
31  * ALLOW_USER_PASSWORDS is defined.
32  *
33  * Each user object must define the two preferences methods 
34  *  getPreferences(), setPreferences(), 
35  * and the following 1-4 auth methods
36  *  checkPass()  must be defined by all classes,
37  *  userExists() only if USER_AUTH_POLICY'=='strict' 
38  *  mayChangePass()  only if the password is storable.
39  *  storePass()  only if the password is storable.
40  *
41  * WikiUser() given no name, returns an _AnonUser (anonymous user)
42  * object, who may or may not have a cookie. 
43  * However, if the there's a cookie with the userid or a session, 
44  * the user is upgraded to the matching user object.
45  * Given a user name, returns a _BogoUser object, who may or may not 
46  * have a cookie and/or PersonalPage, one of the various _PassUser objects 
47  * or an _AdminUser object.
48  * BTW: A BogoUser is a userid (loginname) as valid WikiWord, who might 
49  * have stored a password or not. If so, his account is secure, if not
50  * anybody can use it, because the username is visible e.g. in RecentChanges.
51  *
52  * Takes care of passwords, all preference loading/storing in the
53  * user's page and any cookies. lib/main.php will query the user object to
54  * verify the password as appropriate.
55  *
56  * @author: Reini Urban (the tricky parts), 
57  *          Carsten Klapp (started rolling the ball)
58  *
59  * Random architectural notes, sorted by date:
60  * 2004-01-25 rurban
61  * Test it by defining ENABLE_USER_NEW in index.php
62  * 1) Now a ForbiddenUser is returned instead of false.
63  * 2) Previously ALLOW_ANON_USER = false meant that anon users cannot edit, 
64  *    but may browse. Now with ALLOW_ANON_USER = false he may not browse, 
65  *    which is needed to disable browse PagePermissions.
66  *    I added now ALLOW_ANON_EDIT = true to makes things clear. 
67  *    (which replaces REQUIRE_SIGNIN_BEFORE_EDIT)
68  * 2004-02-27 rurban:
69  * 3) Removed pear prepare. Performance hog, and using integers as 
70  *    handler doesn't help. Do simple sprintf as with adodb. And a prepare
71  *    in the object init is no advantage, because in the init loop a lot of 
72  *    objects are tried, but not used.
73  * 4) Already gotten prefs are passed to the next object to avoid 
74  *    duplicate getPreferences() calls.
75  * 2004-03-18 rurban
76  * 5) Major php-5 problem: $this re-assignment is disallowed by the parser
77  *    So we cannot just discrimate with 
78  *      if (!check_php_version(5))
79  *          $this = $user;
80  *    A /php5-patch.php is provided, which patches the src automatically 
81  *    for php4 and php5. Default is php4.
82  * 2004-03-24 rurban
83  * 6) enforced new cookie policy: prefs don't get stored in cookies
84  *    anymore, only in homepage and/or database, but always in the 
85  *    current session. old pref cookies will get deleted.
86  * 2004-04-04 rurban
87  * 7) Certain themes should be able to extend the predefined list 
88  *    of preferences. Display/editing is done in the theme specific userprefs.tmpl,
89  *    but storage must be extended to the Get/SetPreferences methods.
90  *    <theme>/themeinfo.php must provide CustomUserPreferences:
91  *      A list of name => _UserPreference class pairs.
92  */
93
94 define('WIKIAUTH_FORBIDDEN', -1); // Completely not allowed.
95 define('WIKIAUTH_ANON', 0);       // Not signed in.
96 define('WIKIAUTH_BOGO', 1);       // Any valid WikiWord is enough.
97 define('WIKIAUTH_USER', 2);       // Bogo user with a password.
98 define('WIKIAUTH_ADMIN', 10);     // UserName == ADMIN_USER.
99 define('WIKIAUTH_UNOBTAINABLE', 100);  // Permissions that no user can achieve
100
101 if (!defined('COOKIE_EXPIRATION_DAYS')) define('COOKIE_EXPIRATION_DAYS', 365);
102 if (!defined('COOKIE_DOMAIN'))          define('COOKIE_DOMAIN', '/');
103
104 if (!defined('EDITWIDTH_MIN_COLS'))     define('EDITWIDTH_MIN_COLS',     30);
105 if (!defined('EDITWIDTH_MAX_COLS'))     define('EDITWIDTH_MAX_COLS',    150);
106 if (!defined('EDITWIDTH_DEFAULT_COLS')) define('EDITWIDTH_DEFAULT_COLS', 80);
107
108 if (!defined('EDITHEIGHT_MIN_ROWS'))     define('EDITHEIGHT_MIN_ROWS',      5);
109 if (!defined('EDITHEIGHT_MAX_ROWS'))     define('EDITHEIGHT_MAX_ROWS',     80);
110 if (!defined('EDITHEIGHT_DEFAULT_ROWS')) define('EDITHEIGHT_DEFAULT_ROWS', 22);
111
112 define('TIMEOFFSET_MIN_HOURS', -26);
113 define('TIMEOFFSET_MAX_HOURS',  26);
114 if (!defined('TIMEOFFSET_DEFAULT_HOURS')) define('TIMEOFFSET_DEFAULT_HOURS', 0);
115
116 /**
117  * There are be the following constants in index.php to 
118  * establish login parameters:
119  *
120  * ALLOW_ANON_USER         default true
121  * ALLOW_ANON_EDIT         default true
122  * ALLOW_BOGO_LOGIN        default true
123  * ALLOW_USER_PASSWORDS    default true
124  * PASSWORD_LENGTH_MINIMUM default 6 ?
125  *
126  * To require user passwords for editing:
127  * ALLOW_ANON_USER  = true
128  * ALLOW_ANON_EDIT  = false   (before named REQUIRE_SIGNIN_BEFORE_EDIT)
129  * ALLOW_BOGO_LOGIN = false
130  * ALLOW_USER_PASSWORDS = true
131  *
132  * To establish a COMPLETELY private wiki, such as an internal
133  * corporate one:
134  * ALLOW_ANON_USER = false
135  * (and probably require user passwords as described above). In this
136  * case the user will be prompted to login immediately upon accessing
137  * any page.
138  *
139  * There are other possible combinations, but the typical wiki (such
140  * as http://PhpWiki.sf.net/phpwiki) would usually just leave all four 
141  * enabled.
142  *
143  */
144
145 // The last object in the row is the bad guy...
146 if (!is_array($USER_AUTH_ORDER))
147     $USER_AUTH_ORDER = array("Forbidden");
148 else
149     $USER_AUTH_ORDER[] = "Forbidden";
150
151 // Local convenience functions.
152 function _isAnonUserAllowed() {
153     return (defined('ALLOW_ANON_USER') && ALLOW_ANON_USER);
154 }
155 function _isBogoUserAllowed() {
156     return (defined('ALLOW_BOGO_LOGIN') && ALLOW_BOGO_LOGIN);
157 }
158 function _isUserPasswordsAllowed() {
159     return (defined('ALLOW_USER_PASSWORDS') && ALLOW_USER_PASSWORDS);
160 }
161
162 // Possibly upgrade userobject functions.
163 function _determineAdminUserOrOtherUser($UserName) {
164     // Sanity check. User name is a condition of the definition of the
165     // _AdminUser, _BogoUser and _passuser.
166     if (!$UserName)
167         return $GLOBALS['ForbiddenUser'];
168
169     $group = &WikiGroup::getGroup($GLOBALS['request']);
170     if ($UserName == ADMIN_USER or $group->isMember(GROUP_ADMIN))
171         return new _AdminUser($UserName);
172     else
173         return _determineBogoUserOrPassUser($UserName);
174 }
175
176 function _determineBogoUserOrPassUser($UserName) {
177     global $ForbiddenUser;
178
179     // Sanity check. User name is a condition of the definition of
180     // _BogoUser and _PassUser.
181     if (!$UserName)
182         return $ForbiddenUser;
183
184     // Check for password and possibly upgrade user object.
185     // $_BogoUser = new _BogoUser($UserName);
186     if (_isBogoUserAllowed()) {
187         $_BogoUser = new _BogoLoginPassUser($UserName);
188         if ($_BogoUser->userExists())
189             return $_BogoUser;
190     }
191     if (_isUserPasswordsAllowed()) {
192         // PassUsers override BogoUsers if a password is stored
193         if (isset($_BogoUser) and $_BogoUser->_prefs->get('passwd'))
194             return new _PassUser($UserName,$_BogoUser->_prefs);
195         else { 
196             $_PassUser = new _PassUser($UserName,isset($_BogoUser) ? $_BogoUser->_prefs : false);
197             if ($_PassUser->userExists())
198                 return $_PassUser;
199         }
200     }
201     // No Bogo- or PassUser exists, or
202     // passwords are not allowed, and bogo is disallowed too.
203     // (Only the admin can sign in).
204     return $ForbiddenUser;
205 }
206
207 /**
208  * Primary WikiUser function, called by lib/main.php.
209  * 
210  * This determines the user's type and returns an appropriate user
211  * object. lib/main.php then querys the resultant object for password
212  * validity as necessary.
213  *
214  * If an _AnonUser object is returned, the user may only browse pages
215  * (and save prefs in a cookie).
216  *
217  * To disable access but provide prefs the global $ForbiddenUser class 
218  * is returned. (was previously false)
219  * 
220  */
221 function WikiUser ($UserName = '') {
222     global $ForbiddenUser;
223
224     //Maybe: Check sessionvar for username & save username into
225     //sessionvar (may be more appropriate to do this in lib/main.php).
226     if ($UserName) {
227         $ForbiddenUser = new _ForbiddenUser($UserName);
228         // Found a user name.
229         return _determineAdminUserOrOtherUser($UserName);
230     }
231     elseif (!empty($_SESSION['userid'])) {
232         // Found a user name.
233         $ForbiddenUser = new _ForbiddenUser($_SESSION['userid']);
234         return _determineAdminUserOrOtherUser($_SESSION['userid']);
235     }
236     else {
237         // Check for autologin pref in cookie and possibly upgrade
238         // user object to another type.
239         $_AnonUser = new _AnonUser();
240         if ($UserName = $_AnonUser->_userid && $_AnonUser->_prefs->get('autologin')) {
241             // Found a user name.
242             $ForbiddenUser = new _ForbiddenUser($UserName);
243             return _determineAdminUserOrOtherUser($UserName);
244         }
245         else {
246             $ForbiddenUser = new _ForbiddenUser();
247             if (_isAnonUserAllowed())
248                 return $_AnonUser;
249             return $ForbiddenUser; // User must sign in to browse pages.
250         }
251         return $ForbiddenUser;     // User must sign in with a password.
252     }
253     /*
254     trigger_error("DEBUG: Note: End of function reached in WikiUser." . " "
255                   . "Unexpectedly, an appropriate user class could not be determined.");
256     return $ForbiddenUser; // Failsafe.
257     */
258 }
259
260 /**
261  * WikiUser.php use the name 'WikiUser'
262  */
263 function WikiUserClassname() {
264     return '_WikiUser';
265 }
266
267
268 /**
269  * Upgrade olduser by copying properties from user to olduser.
270  * We are not sure yet, for which php's a simple $this = $user works reliably,
271  * (on php4 it works ok, on php5 it's currently disallowed on the parser level)
272  * that's why try it the hard way.
273  */
274 function UpgradeUser ($olduser, $user) {
275     if (isa($user,'_WikiUser') and isa($olduser,'_WikiUser')) {
276         // populate the upgraded class $olduser with the values from the new user object
277         //only _auth_level, _current_method, _current_index,
278         if (!empty($user->_level) and 
279             $user->_level > $olduser->_level)
280             $olduser->_level = $user->_level;
281         if (!empty($user->_current_index) and
282             $user->_current_index > $olduser->_current_index) {
283             $olduser->_current_index = $user->_current_index;
284             $olduser->_current_method = $user->_current_method;
285         }
286         if (!empty($user->_authmethod))
287             $olduser->_authmethod = $user->_authmethod;
288         /*
289         foreach (get_object_vars($user) as $k => $v) {
290             if (!empty($v)) $olduser->$k = $v;  
291         }
292         */
293         $olduser->hasHomePage(); // revive db handle, because these don't survive sessions
294         //$GLOBALS['request']->_user = $olduser;
295         return $olduser;
296     } else {
297         return false;
298     }
299 }
300
301 /**
302  * Probably not needed, since we use the various user objects methods so far.
303  * Anyway, here it is, looping through all available objects.
304  */
305 function UserExists ($UserName) {
306     global $request;
307     if (!($user = $request->getUser()))
308         $user = WikiUser($UserName);
309     if (!$user) 
310         return false;
311     if ($user->userExists($UserName)) {
312         $request->_user = $user;
313         return true;
314     }
315     if (isa($user,'_BogoUser'))
316         $user = new _PassUser($UserName,$user->_prefs);
317     $class = $user->nextClass();
318     if ($user = new $class($UserName,$user->_prefs)) {
319         return $user->userExists($UserName);
320     }
321     $request->_user = $GLOBALS['ForbiddenUser'];
322     return false;
323 }
324
325 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
326
327 /** 
328  * Base WikiUser class.
329  */
330 class _WikiUser
331 {
332      var $_userid = '';
333      var $_level = WIKIAUTH_FORBIDDEN;
334      var $_prefs = false;
335      var $_HomePagehandle = false;
336
337     // constructor
338     function _WikiUser($UserName='', $prefs=false) {
339
340         $this->_userid = $UserName;
341         $this->_HomePagehandle = false;
342         if ($UserName) {
343             $this->hasHomePage();
344         }
345         $this->_level = WIKIAUTH_FORBIDDEN;
346         if (empty($this->_prefs)) {
347             if ($prefs) $this->_prefs = $prefs;
348             else $this->getPreferences();
349         }
350     }
351
352     function UserName() {
353         if (!empty($this->_userid))
354             return $this->_userid;
355     }
356
357     function getPreferences() {
358         trigger_error("DEBUG: Note: undefined _WikiUser class trying to load prefs." . " "
359                       . "New subclasses of _WikiUser must override this function.");
360         return false;
361     }
362
363     function setPreferences($prefs, $id_only) {
364         trigger_error("DEBUG: Note: undefined _WikiUser class trying to save prefs." . " "
365                       . "New subclasses of _WikiUser must override this function.");
366         return false;
367     }
368
369     function userExists() {
370         return $this->hasHomePage();
371     }
372
373     function checkPass($submitted_password) {
374         // By definition, an undefined user class cannot sign in.
375         trigger_error("DEBUG: Warning: undefined _WikiUser class trying to sign in." . " "
376                       . "New subclasses of _WikiUser must override this function.");
377         return false;
378     }
379
380     // returns page_handle to user's home page or false if none
381     function hasHomePage() {
382         if ($this->_userid) {
383             if (!empty($this->_HomePagehandle) and is_object($this->_HomePagehandle)) {
384                 return $this->_HomePagehandle->exists();
385             }
386             else {
387                 // check db again (maybe someone else created it since
388                 // we logged in.)
389                 global $request;
390                 $this->_HomePagehandle = $request->getPage($this->_userid);
391                 return $this->_HomePagehandle->exists();
392             }
393         }
394         // nope
395         return false;
396     }
397
398     // innocent helper: case-insensitive position in _auth_methods
399     function array_position ($string, $array) {
400         $string = strtolower($string);
401         for ($found = 0; $found < count($array); $found++) {
402             if (strtolower($array[$found]) == $string)
403                 return $found;
404         }
405         return false;
406     }
407
408     function nextAuthMethodIndex() {
409         if (empty($this->_auth_methods)) 
410             $this->_auth_methods = $GLOBALS['USER_AUTH_ORDER'];
411         if (empty($this->_current_index)) {
412             if (get_class($this) != '_passuser') {
413                 $this->_current_method = substr(get_class($this),1,-8);
414                 $this->_current_index = $this->array_position($this->_current_method,
415                                                               $this->_auth_methods);
416             } else {
417                 $this->_current_index = -1;
418             }
419         }
420         $this->_current_index++;
421         if ($this->_current_index >= count($this->_auth_methods))
422             return false;
423         $this->_current_method = $this->_auth_methods[$this->_current_index];
424         return $this->_current_index;
425     }
426
427     function AuthMethod($index = false) {
428         return $this->_auth_methods[ $index === false ? 0 : $index];
429     }
430
431     // upgrade the user object
432     function nextClass() {
433         if (($next = $this->nextAuthMethodIndex()) !== false) {
434             $method = $this->AuthMethod($next);
435             return "_".$method."PassUser";
436             /*          
437             if ($user = new $class($this->_userid)) {
438                 // prevent from endless recursion.
439                 //$user->_current_method = $this->_current_method;
440                 //$user->_current_index = $this->_current_index;
441                 $user = UpgradeUser($user, $this);
442             }
443             return $user;
444             */
445         }
446         return "_ForbiddenPassUser";
447     }
448
449     //Fixme: for _HttpAuthPassUser
450     function PrintLoginForm (&$request, $args, $fail_message = false,
451                              $seperate_page = true) {
452         include_once('lib/Template.php');
453         // Call update_locale in case the system's default language is not 'en'.
454         // (We have no user pref for lang at this point yet, no one is logged in.)
455         update_locale(DEFAULT_LANGUAGE);
456         $userid = $this->_userid;
457         $require_level = 0;
458         extract($args); // fixme
459
460         $require_level = max(0, min(WIKIAUTH_ADMIN, (int)$require_level));
461
462         $pagename = $request->getArg('pagename');
463         $nocache = 1;
464         $login = new Template('login', $request,
465                               compact('pagename', 'userid', 'require_level',
466                                       'fail_message', 'pass_required', 'nocache'));
467         if ($seperate_page) {
468             $top = new Template('html', $request,
469                                 array('TITLE' => _("Sign In")));
470             return $top->printExpansion($login);
471         } else {
472             return $login;
473         }
474     }
475
476     /** Signed in but probably not password checked.
477      */
478     function isSignedIn() {
479         return (isa($this,'_BogoUser') or isa($this,'_PassUser'));
480     }
481
482     /** This is password checked for sure.
483      */
484     function isAuthenticated () {
485         //return isa($this,'_PassUser');
486         //return isa($this,'_BogoUser') || isa($this,'_PassUser');
487         return $this->_level >= WIKIAUTH_BOGO; // hmm.
488     }
489
490     function isAdmin () {
491         return $this->_level == WIKIAUTH_ADMIN;
492     }
493
494     /** Name or IP for a signed user. UserName could come from a cookie e.g.
495      */
496     function getId () {
497         return ( $this->UserName()
498                  ? $this->UserName()
499                  : $GLOBALS['request']->get('REMOTE_ADDR') ); // FIXME: globals
500     }
501
502     /** Name for an authenticated user. No IP here.
503      */
504     function getAuthenticatedId() {
505         return ( $this->isAuthenticated()
506                  ? $this->_userid
507                  : ''); //$GLOBALS['request']->get('REMOTE_ADDR') ); // FIXME: globals
508     }
509
510     function hasAuthority ($require_level) {
511         return $this->_level >= $require_level;
512     }
513
514     /**
515      * Called on an auth_args POST request, such as login, logout or signin.
516      */
517     function AuthCheck ($postargs) {
518         // Normalize args, and extract.
519         $keys = array('userid', 'passwd', 'require_level', 'login', 'logout',
520                       'cancel');
521         foreach ($keys as $key)
522             $args[$key] = isset($postargs[$key]) ? $postargs[$key] : false;
523         extract($args);
524         $require_level = max(0, min(WIKIAUTH_ADMIN, (int)$require_level));
525
526         if ($logout) { // Log out
527             $GLOBALS['request']->_user = new _AnonUser();
528             return $GLOBALS['request']->_user; 
529         } elseif ($cancel)
530             return false;        // User hit cancel button.
531         elseif (!$login && !$userid)
532             return false;       // Nothing to do?
533
534         $authlevel = $this->checkPass($passwd === false ? '' : $passwd);
535         if (!$authlevel)
536             return _("Invalid password or userid.");
537         elseif ($authlevel < $require_level)
538             return _("Insufficient permissions.");
539
540         // Successful login.
541         //$user = $GLOBALS['request']->_user;
542         if (!empty($this->_current_method) and 
543             strtolower(get_class($this)) == '_passuser') 
544         {
545             // upgrade class
546             $class = "_" . $this->_current_method . "PassUser";
547             $user = new $class($userid,$this->_prefs);
548             /*PHP5 patch*/$this = $user;
549             $this->_level = $authlevel;
550             return $user;
551         }
552         $this->_userid = $userid;
553         $this->_level = $authlevel;
554         return $this;
555     }
556
557 }
558
559 /**
560  * Not authenticated in user, but he may be signed in. Basicly with view access only.
561  * prefs are stored in cookies, but only the userid.
562  */
563 class _AnonUser
564 extends _WikiUser
565 {
566     var $_level = WIKIAUTH_ANON;        // var in php-5.0.0RC1 deprecated
567
568     /** Anon only gets to load and save prefs in a cookie, that's it.
569      */
570     function getPreferences() {
571         global $request;
572
573         if (empty($this->_prefs))
574             $this->_prefs = new UserPreferences;
575         $UserName = $this->UserName();
576
577         // Try to read deprecated 1.3.x style cookies
578         if ($cookie = $request->cookies->get_old(WIKI_NAME)) {
579             if (! $unboxedcookie = $this->_prefs->retrieve($cookie)) {
580                 trigger_error(_("Empty Preferences or format of UserPreferences cookie not recognised.") 
581                               . "\n"
582                               . sprintf("%s='%s'", WIKI_NAME, $cookie)
583                               . "\n"
584                               . _("Default preferences will be used."),
585                               E_USER_NOTICE);
586             }
587             /**
588              * Only set if it matches the UserName who is
589              * signing in or if this really is an Anon login (no
590              * username). (Remember, _BogoUser and higher inherit this
591              * function too!).
592              */
593             if (! $UserName || $UserName == @$unboxedcookie['userid']) {
594                 $updated = $this->_prefs->updatePrefs($unboxedcookie);
595                 //$this->_prefs = new UserPreferences($unboxedcookie);
596                 $UserName = @$unboxedcookie['userid'];
597                 if (is_string($UserName) and (substr($UserName,0,2) != 's:'))
598                     $this->_userid = $UserName;
599                 else 
600                     $UserName = false;    
601             }
602             // v1.3.8 policy: don't set PhpWiki cookies, only plaintext WIKI_ID cookies
603             $request->deleteCookieVar(WIKI_NAME);
604         }
605         // Try to read deprecated 1.3.4 style cookies
606         if (! $UserName and ($cookie = $request->cookies->get_old("WIKI_PREF2"))) {
607             if (! $unboxedcookie = $this->_prefs->retrieve($cookie)) {
608                 if (! $UserName || $UserName == $unboxedcookie['userid']) {
609                     $updated = $this->_prefs->updatePrefs($unboxedcookie);
610                     //$this->_prefs = new UserPreferences($unboxedcookie);
611                     $UserName = $unboxedcookie['userid'];
612                     if (is_string($UserName) and (substr($UserName,0,2) != 's:'))
613                         $this->_userid = $UserName;
614                     else 
615                         $UserName = false;    
616                 }
617                 $request->deleteCookieVar("WIKI_PREF2");
618             }
619         }
620         if (! $UserName ) {
621             // Try reading userid from old PhpWiki cookie formats:
622             if ($cookie = $request->cookies->get_old('WIKI_ID')) {
623                 if (is_string($cookie) and (substr($cookie,0,2) != 's:'))
624                     $UserName = $cookie;
625                 elseif (is_array($cookie) and !empty($cookie['userid']))
626                     $UserName = $cookie['userid'];
627             }
628             if (! $UserName )
629                 $request->deleteCookieVar("WIKI_ID");
630             else
631                 $this->_userid = $UserName;
632         }
633
634         // initializeTheme() needs at least an empty object
635         /*
636          if (empty($this->_prefs))
637             $this->_prefs = new UserPreferences;
638         */
639         return $this->_prefs;
640     }
641
642     /** _AnonUser::setPreferences(): Save prefs in a cookie and session and update all global vars
643      *
644      * Allow for multiple wikis in same domain. Encode only the
645      * _prefs array of the UserPreference object. Ideally the
646      * prefs array should just be imploded into a single string or
647      * something so it is completely human readable by the end
648      * user. In that case stricter error checking will be needed
649      * when loading the cookie.
650      */
651     function setPreferences($prefs, $id_only=false) {
652         if (!is_object($prefs)) {
653             if (is_object($this->_prefs)) {
654                 $updated = $this->_prefs->updatePrefs($prefs);
655                 $prefs =& $this->_prefs;
656             } else {
657                 // update the prefs values from scratch. This could leed to unnecessary
658                 // side-effects: duplicate emailVerified, ...
659                 $this->_prefs = new UserPreferences($prefs);
660                 $updated = true;
661             }
662         } else {
663             if (!isset($this->_prefs))
664                 $this->_prefs =& $prefs;
665             else
666                 $updated = $this->_prefs->isChanged($prefs);
667         }
668         if ($updated) {
669             if ($id_only) {
670                 global $request;
671                 // new 1.3.8 policy: no array cookies, only plain userid string as in 
672                 // the pre 1.3.x versions.
673                 // prefs should be stored besides the session in the homepagehandle or in a db.
674                 $request->setCookieVar('WIKI_ID', $this->_userid,
675                                        COOKIE_EXPIRATION_DAYS, COOKIE_DOMAIN);
676                 //$request->setCookieVar(WIKI_NAME, array('userid' => $prefs->get('userid')),
677                 //                       COOKIE_EXPIRATION_DAYS, COOKIE_DOMAIN);
678             }
679         }
680         $packed = $prefs->store();
681         $unpacked = $prefs->unpack($packed);
682         if (count($unpacked)) {
683             foreach (array('_method','_select','_update') as $param) {
684                 if (!empty($this->_prefs->{$param}))
685                     $prefs->{$param} = $this->_prefs->{$param};
686             }
687             $this->_prefs = $prefs;
688             //FIXME! The following must be done in $request->_setUser(), not here,
689             // to be able to iterate over multiple users, without tampering the current user.
690             if (0) {
691                 global $request;
692                 $request->_prefs =& $this->_prefs; 
693                 $request->_user->_prefs =& $this->_prefs;
694                 if (isset($request->_user->_auth_dbi)) {
695                     $user = $request->_user;
696                     unset($user->_auth_dbi);
697                     $request->setSessionVar('wiki_user', $user);
698                 } else {
699                     //$request->setSessionVar('wiki_prefs', $this->_prefs);
700                     $request->setSessionVar('wiki_user', $request->_user);
701                 }
702             }
703         }
704         return $updated;
705     }
706
707     function userExists() {
708         return true;
709     }
710
711     function checkPass($submitted_password) {
712         return false;
713         // this might happen on a old-style signin button.
714
715         // By definition, the _AnonUser does not HAVE a password
716         // (compared to _BogoUser, who has an EMPTY password).
717         trigger_error("DEBUG: Warning: _AnonUser unexpectedly asked to checkPass()." . " "
718                       . "Check isa(\$user, '_PassUser'), or: isa(\$user, '_AdminUser') etc. first." . " "
719                       . "New subclasses of _WikiUser must override this function.");
720         return false;
721     }
722
723 }
724
725 /** 
726  * Helper class to finish the PassUser auth loop. 
727  * This is added automatically to USER_AUTH_ORDER.
728  */
729 class _ForbiddenUser
730 extends _AnonUser
731 {
732     var $_level = WIKIAUTH_FORBIDDEN;
733
734     function checkPass($submitted_password) {
735         return WIKIAUTH_FORBIDDEN;
736     }
737
738     function userExists() {
739         if ($this->_HomePagehandle) return true;
740         return false;
741     }
742 }
743 /** 
744  * The PassUser name gets created automatically. 
745  * That's why this class is empty, but must exist.
746  */
747 class _ForbiddenPassUser
748 extends _ForbiddenUser
749 {
750     function dummy() {
751         return;
752     }
753 }
754
755 /**
756  * Do NOT extend _BogoUser to other classes, for checkPass()
757  * security. (In case of defects in code logic of the new class!)
758  * The intermediate step between anon and passuser.
759  * We also have the _BogoLoginPassUser class with stricter 
760  * password checking, which fits into the auth loop.
761  * Note: This class is not called anymore by WikiUser()
762  */
763 class _BogoUser
764 extends _AnonUser
765 {
766     function userExists() {
767         if (isWikiWord($this->_userid)) {
768             $this->_level = WIKIAUTH_BOGO;
769             return true;
770         } else {
771             $this->_level = WIKIAUTH_ANON;
772             return false;
773         }
774     }
775
776     function checkPass($submitted_password) {
777         // By definition, BogoUser has an empty password.
778         $this->userExists();
779         return $this->_level;
780     }
781 }
782
783 class _PassUser
784 extends _AnonUser
785 /**
786  * Called if ALLOW_USER_PASSWORDS and Anon and Bogo failed.
787  *
788  * The classes for all subsequent auth methods extend from this class. 
789  * This handles the auth method type dispatcher according $USER_AUTH_ORDER, 
790  * the three auth method policies first-only, strict and stacked
791  * and the two methods for prefs: homepage or database, 
792  * if $DBAuthParams['pref_select'] is defined.
793  *
794  * Default is PersonalPage auth and prefs.
795  * 
796  * TODO: email verification
797  *
798  * @author: Reini Urban
799  * @tables: pref
800  */
801 {
802     var $_auth_dbi, $_prefs;
803     var $_current_method, $_current_index;
804
805     // check and prepare the auth and pref methods only once
806     function _PassUser($UserName='', $prefs=false) {
807         global $DBAuthParams, $DBParams;
808         if ($UserName) {
809             $this->_userid = $UserName;
810             if ($this->hasHomePage())
811                 $this->_HomePagehandle = $GLOBALS['request']->getPage($this->_userid);
812         }
813         $this->_authmethod = substr(get_class($this),1,-8);
814         if ($this->_authmethod == 'a') $this->_authmethod = 'admin';
815         if (! $this->_prefs) {
816             if ($prefs) $this->_prefs = $prefs;
817             else $this->getPreferences();
818         }
819
820         // Check the configured Prefs methods
821         $dbi = $this->getAuthDbh();
822         if ( $dbi and !isset($this->_prefs->_select) and !empty($DBAuthParams['pref_select'])) {
823             $this->_prefs->_method = $DBParams['dbtype'];
824             $this->_prefs->_select = $this->prepare($DBAuthParams['pref_select'], 
825                                                     "'\$userid'");
826             // read-only prefs?
827             if ( !isset($this->_prefs->_update) and !empty($DBAuthParams['pref_update'])) {
828                 $this->_prefs->_update = $this->prepare($DBAuthParams['pref_update'], 
829                                                         array("'\$userid'","'\$pref_blob'"));
830             }
831         } else {
832             $this->_prefs->_method = 'HomePage';
833         }
834         
835         // Upgrade to the next parent _PassUser class. Avoid recursion.
836         if ( strtolower(get_class($this)) === '_passuser' ) {
837             //auth policy: Check the order of the configured auth methods
838             // 1. first-only: Upgrade the class here in the constructor
839             // 2. old:       ignore USER_AUTH_ORDER and try to use all available methods as 
840             ///              in the previous PhpWiki releases (slow)
841             // 3. strict:    upgrade the class after checking the user existance in userExists()
842             // 4. stacked:   upgrade the class after the password verification in checkPass()
843             // Methods: PersonalPage, HttpAuth, DB, Ldap, Imap, File
844             if (!defined('USER_AUTH_POLICY')) define('USER_AUTH_POLICY','old');
845             if (defined('USER_AUTH_POLICY')) {
846                 // policy 1: only pre-define one method for all users
847                 if (USER_AUTH_POLICY === 'first-only') {
848                     $class = $this->nextClass();
849                     return new $class($UserName,$this->_prefs);
850                 }
851                 // use the default behaviour from the previous versions:
852                 elseif (USER_AUTH_POLICY === 'old') {
853                     // default: try to be smart
854                     // On php5 we can directly return and upgrade the Object,
855                     // before we have to upgrade it manually.
856                     if (!empty($GLOBALS['PHP_AUTH_USER'])) {
857                         if (check_php_version(5))
858                             return new _HttpAuthPassUser($UserName,$this->_prefs);
859                         else {
860                             $user = new _HttpAuthPassUser($UserName,$this->_prefs);
861                             //todo: with php5 comment the following line.
862                             /*PHP5 patch*/$this = $user;
863                             return $user;
864                         }
865                     } elseif (!empty($DBAuthParams['auth_check']) and 
866                               (!empty($DBAuthParams['auth_dsn']) or !empty($GLOBALS ['DBParams']['dsn']))) {
867                         if (check_php_version(5))
868                             return new _DbPassUser($UserName,$this->_prefs);
869                         else {
870                             $user = new _DbPassUser($UserName,$this->_prefs);
871                             //todo: with php5 comment the following line.
872                             /*PHP5 patch*/$this = $user;
873                             return $user;
874                         }
875                     } elseif (defined('LDAP_AUTH_HOST') and defined('LDAP_BASE_DN') and function_exists('ldap_open')) {
876                         if (check_php_version(5))
877                             return new _LDAPPassUser($UserName,$this->_prefs);
878                         else {
879                             $user = new _LDAPPassUser($UserName,$this->_prefs);
880                             //todo: with php5 comment the following line.
881                             /*PHP5 patch*/$this = $user;
882                             return $user;
883                         }
884                     } elseif (defined('IMAP_AUTH_HOST') and function_exists('imap_open')) {
885                         if (check_php_version(5))
886                             return new _IMAPPassUser($UserName,$this->_prefs);
887                         else {
888                             $user = new _IMAPPassUser($UserName,$this->_prefs);
889                             //todo: with php5 comment the following line.
890                             /*PHP5 patch*/$this = $user;
891                             return $user;
892                         }
893                     } elseif (defined('AUTH_USER_FILE')) {
894                         if (check_php_version(5))
895                             return new _FilePassUser($UserName,$this->_prefs);
896                         else {
897                             $user = new _FilePassUser($UserName,$this->_prefs);
898                             //todo: with php5 comment the following line.
899                             /*PHP5 patch*/$this = $user;
900                             return $user;
901                         }
902                     } else {
903                         if (check_php_version(5))
904                             return new _PersonalPagePassUser($UserName,$this->_prefs);
905                         else {
906                             $user = new _PersonalPagePassUser($UserName,$this->_prefs);
907                             //todo: with php5 comment the following line.
908                             /*PHP5 patch*/$this = $user;
909                             return $user;
910                         }
911                     }
912                 }
913                 else 
914                     // else use the page methods defined in _PassUser.
915                     return $this;
916             }
917         }
918     }
919
920     function getAuthDbh () {
921         global $request, $DBParams, $DBAuthParams;
922
923         // session restauration doesn't re-connect to the database automatically, 
924         // so dirty it here.
925         if (($DBParams['dbtype'] == 'SQL') and isset($this->_auth_dbi) and 
926              empty($this->_auth_dbi->connection))
927             unset($this->_auth_dbi);
928         if (($DBParams['dbtype'] == 'ADODB') and isset($this->_auth_dbi) and 
929              empty($this->_auth_dbi->_connectionID))
930             unset($this->_auth_dbi);
931
932         if (empty($this->_auth_dbi)) {
933             if ($DBParams['dbtype'] != 'SQL' and $DBParams['dbtype'] != 'ADODB')
934                 return false;
935             if (empty($DBAuthParams))
936                 return false;
937             if (empty($DBAuthParams['auth_dsn'])) {
938                 $dbh = $request->getDbh(); // use phpwiki database 
939             } elseif ($DBAuthParams['auth_dsn'] == $DBParams['dsn']) {
940                 $dbh = $request->getDbh(); // same phpwiki database 
941             } else { // use another external database handle. needs PHP >= 4.1
942                 $local_params = array_merge($DBParams,$DBAuthParams);
943                 $local_params['dsn'] = $local_params['auth_dsn'];
944                 $dbh = WikiDB::open($local_params);
945             }       
946             $this->_auth_dbi =& $dbh->_backend->_dbh;    
947         }
948         return $this->_auth_dbi;
949     }
950
951     // TODO: use it again for the auth and member tables
952     function prepare ($stmt, $variables) {
953         global $DBParams, $request;
954         $this->getAuthDbh();
955         // "'\$userid"' => '%s'
956         if (is_array($variables)) {
957             $new = array();
958             foreach ($variables as $v) { $new[] = '%s'; }
959         } else {
960             $new = '%s';
961         }
962         // probably prefix table names if in same database
963         if (!empty($DBParams['prefix']) and 
964             isset($this->_auth_dbi) and isset($request->_dbi->_backend->_dbh) and 
965             $DBParams['dsn'] == $GLOBALS['DBAuthParams']['auth_dsn'])
966         {
967             $prefix = $DBParams['prefix'];
968             if (!stristr($stmt, $prefix)) {
969                 //Do it automatically for the lazy admin? Esp. on sf.net it's nice to have
970                 trigger_error("TODO: Need to prefix the DBAuthParam tablename in index.php:\n  $stmt",
971                               E_USER_WARNING);
972                 $stmt = str_replace(array(" user "," pref "," member "),
973                                     array(" ".$prefix."user ",
974                                           " ".$prefix."prefs ",
975                                           " ".$prefix."member "),$stmt);
976             }
977         }
978         // preparate the SELECT statement, for ADODB and PearDB (MDB not)
979         // simple sprintf-style.
980         return str_replace($variables,$new,$stmt);
981     }
982
983     function getPreferences() {
984         if (!empty($this->_prefs->_method)) {
985             if ($this->_prefs->_method == 'ADODB') {
986                 _AdoDbPassUser::_AdoDbPassUser($this->_userid,$this->_prefs);
987                 return _AdoDbPassUser::getPreferences();
988             } elseif ($this->_prefs->_method == 'SQL') {
989                 _PearDbPassUser::_PearDbPassUser($this->_userid,$this->_prefs);
990                 return _PearDbPassUser::getPreferences();
991             }
992         }
993
994         // We don't necessarily have to read the cookie first. Since
995         // the user has a password, the prefs stored in the homepage
996         // cannot be arbitrarily altered by other Bogo users.
997         _AnonUser::getPreferences();
998         // User may have deleted cookie, retrieve from his
999         // PersonalPage if there is one.
1000         if ($this->_HomePagehandle) {
1001             if ($restored_from_page = $this->_prefs->retrieve($this->_HomePagehandle->get('pref'))) {
1002                 $updated = $this->_prefs->updatePrefs($restored_from_page,'init');
1003                 //$this->_prefs = new UserPreferences($restored_from_page);
1004                 return $this->_prefs;
1005             }
1006         }
1007         return $this->_prefs;
1008     }
1009
1010     function setPreferences($prefs, $id_only=false) {
1011         if (!empty($this->_prefs->_method)) {
1012             if ($this->_prefs->_method == 'ADODB') {
1013                 _AdoDbPassUser::_AdoDbPassUser($this->_userid,$prefs);
1014                 return _AdoDbPassUser::setPreferences($prefs, $id_only);
1015             }
1016             elseif ($this->_prefs->_method == 'SQL') {
1017                 _PearDbPassUser::_PearDbPassUser($this->_userid,$prefs);
1018                 return _PearDbPassUser::setPreferences($prefs, $id_only);
1019             }
1020         }
1021         if (_AnonUser::setPreferences($prefs, $id_only)) {
1022             // Encode only the _prefs array of the UserPreference object
1023             if ($this->_HomePagehandle and !$id_only) {
1024                 $this->_HomePagehandle->set('pref', $this->_prefs->store());
1025             }
1026         }
1027         return;
1028     }
1029
1030     function mayChangePass() {
1031         return true;
1032     }
1033
1034     //The default method is getting the password from prefs. 
1035     // child methods obtain $stored_password from external auth.
1036     function userExists() {
1037         //if ($this->_HomePagehandle) return true;
1038         $class = $this->nextClass();
1039         while ($user = new $class($this->_userid,$this->_prefs)) {
1040             //todo: with php5 comment the following line:
1041             /*PHP5 patch*/$this = $user;
1042             //UpgradeUser($this,$user);
1043             if ($user->userExists()) {
1044                 return true;
1045             }
1046             // prevent endless loop. does this work on all PHP's?
1047             // it just has to set the classname, what it correctly does.
1048             $class = $user->nextClass();
1049             if ($class == "_ForbiddenPassUser")
1050                 return false;
1051         }
1052         return false;
1053     }
1054
1055     //The default method is getting the password from prefs. 
1056     // child methods obtain $stored_password from external auth.
1057     function checkPass($submitted_password) {
1058         $stored_password = $this->_prefs->get('passwd');
1059         if ($this->_checkPass($submitted_password, $stored_password)) {
1060             $this->_level = WIKIAUTH_USER;
1061             return $this->_level;
1062         } else {
1063             return $this->_tryNextPass($submitted_password);
1064         }
1065     }
1066
1067     /**
1068      * The basic password checker for all PassUser objects.
1069      * Uses global ENCRYPTED_PASSWD and PASSWORD_LENGTH_MINIMUM.
1070      * Empty passwords are always false!
1071      * PASSWORD_LENGTH_MINIMUM is enforced here and in the preference set method.
1072      * @see UserPreferences::set
1073      *
1074      * DBPassUser password's have their own crypt definition.
1075      * That's why DBPassUser::checkPass() doesn't call this method, if 
1076      * the db password method is 'plain', which means that the DB SQL 
1077      * statement just returns 1 or 0. To use CRYPT() or PASSWORD() and 
1078      * don't store plain passwords in the DB.
1079      * 
1080      * TODO: remove crypt() function check from config.php:396 ??
1081      */
1082     function _checkPass($submitted_password, $stored_password) {
1083         if(!empty($submitted_password)) {
1084             if (strlen($stored_password) < PASSWORD_LENGTH_MINIMUM) {
1085                 // Todo. hmm...
1086                 trigger_error(_("The length of the stored password is shorter than the system policy allows. Sorry, you cannot login.\n You have to ask the System Administrator to reset your password."));
1087                 return false;
1088             }
1089             if (strlen($submitted_password) < PASSWORD_LENGTH_MINIMUM)
1090                 return false;
1091             if (defined('ENCRYPTED_PASSWD') && ENCRYPTED_PASSWD) {
1092                 // Verify against encrypted password.
1093                 if (function_exists('crypt')) {
1094                     if (crypt($submitted_password, $stored_password) == $stored_password )
1095                         return true; // matches encrypted password
1096                     else
1097                         return false;
1098                 }
1099                 else {
1100                     trigger_error(_("The crypt function is not available in this version of PHP.") . " "
1101                                   . _("Please set ENCRYPTED_PASSWD to false in index.php and probably change ADMIN_PASSWD."),
1102                                   E_USER_WARNING);
1103                     return false;
1104                 }
1105             }
1106             else {
1107                 // Verify against cleartext password.
1108                 if ($submitted_password == $stored_password)
1109                     return true;
1110                 else {
1111                     // Check whether we forgot to enable ENCRYPTED_PASSWD
1112                     if (function_exists('crypt')) {
1113                         if (crypt($submitted_password, $stored_password) == $stored_password) {
1114                             trigger_error(_("Please set ENCRYPTED_PASSWD to true in index.php."),
1115                                           E_USER_WARNING);
1116                             return true;
1117                         }
1118                     }
1119                 }
1120             }
1121         }
1122         return false;
1123     }
1124
1125     /** The default method is storing the password in prefs. 
1126      *  Child methods (DB,File) may store in external auth also, but this 
1127      *  must be explicitly enabled.
1128      *  This may be called by plugin/UserPreferences or by ->SetPreferences()
1129      */
1130     function changePass($submitted_password) {
1131         $stored_password = $this->_prefs->get('passwd');
1132         // check if authenticated
1133         if ($this->isAuthenticated() and $stored_password != $submitted_password) {
1134             $this->_prefs->set('passwd',$submitted_password);
1135             //update the storage (session, homepage, ...)
1136             $this->SetPreferences($this->_prefs);
1137             return true;
1138         }
1139         //Todo: return an error msg to the caller what failed? 
1140         // same password or no privilege
1141         return false;
1142     }
1143
1144     function _tryNextPass($submitted_password) {
1145         if (USER_AUTH_POLICY === 'strict') {
1146                 $class = $this->nextClass();
1147             if ($user = new $class($this->_userid,$this->_prefs)) {
1148                 if ($user->userExists()) {
1149                     return $user->checkPass($submitted_password);
1150                 }
1151             }
1152         }
1153         if (USER_AUTH_POLICY === 'stacked' or USER_AUTH_POLICY === 'old') {
1154                 $class = $this->nextClass();
1155             if ($user = new $class($this->_userid,$this->_prefs))
1156                 return $user->checkPass($submitted_password);
1157         }
1158         return $this->_level;
1159     }
1160
1161     function _tryNextUser() {
1162         if (USER_AUTH_POLICY === 'strict') {
1163                 $class = $this->nextClass();
1164             while ($user = new $class($this->_userid,$this->_prefs)) {
1165                 //todo: with php5 comment the following line:
1166                 /*PHP5 patch*/$this = $user;
1167                 //$user = UpgradeUser($this, $user);
1168                 if ($user->userExists()) {
1169                     return true;
1170                 }
1171                 $class = $this->nextClass();
1172             }
1173         }
1174         return false;
1175     }
1176
1177 }
1178
1179 /** Without stored password. A _BogoLoginPassUser with password 
1180  *  is automatically upgraded to a PersonalPagePassUser.
1181  */
1182 class _BogoLoginPassUser
1183 extends _PassUser
1184 {
1185     var $_authmethod = 'BogoLogin';
1186     function userExists() {
1187         if (isWikiWord($this->_userid)) {
1188             $this->_level = WIKIAUTH_BOGO;
1189             return true;
1190         } else {
1191             $this->_level = WIKIAUTH_ANON;
1192             return false;
1193         }
1194     }
1195
1196     /** A BogoLoginUser requires no password at all
1197      *  But if there's one stored, we should prefer PersonalPage instead
1198      */
1199     function checkPass($submitted_password) {
1200         if ($this->_prefs->get('passwd')) {
1201             $user = new _PersonalPagePassUser($this->_userid);
1202             if ($user->checkPass($submitted_password)) {
1203                 //todo: with php5 comment the following line:
1204                 /*PHP5 patch*/$this = $user;
1205                 $user = UpgradeUser($this, $user);
1206                 $this->_level = WIKIAUTH_USER;
1207                 return $this->_level;
1208             } else {
1209                 $this->_level = WIKIAUTH_ANON;
1210                 return $this->_level;
1211             }
1212         }
1213         $this->userExists();
1214         return $this->_level;
1215     }
1216 }
1217
1218
1219 /**
1220  * This class is only to simplify the auth method dispatcher.
1221  * It inherits almost all all methods from _PassUser.
1222  */
1223 class _PersonalPagePassUser
1224 extends _PassUser
1225 {
1226     var $_authmethod = 'PersonalPage';
1227
1228     function userExists() {
1229         return $this->_HomePagehandle and $this->_HomePagehandle->exists();
1230     }
1231
1232     /** A PersonalPagePassUser requires PASSWORD_LENGTH_MINIMUM.
1233      *  BUT if the user already has a homepage with an empty password 
1234      *  stored, allow login but warn him to change it.
1235      */
1236     function checkPass($submitted_password) {
1237         if ($this->userExists()) {
1238             $stored_password = $this->_prefs->get('passwd');
1239             if (empty($stored_password)) {
1240                 trigger_error(sprintf(
1241                 _("\nYou stored an empty password in your '%s' page.\n").
1242                 _("Your access permissions are only for a BogoUser.\n").
1243                 _("Please set your password in UserPreferences."),
1244                                         $this->_userid), E_USER_NOTICE);
1245                 $this->_level = WIKIAUTH_BOGO;
1246                 return $this->_level;
1247             }
1248             if ($this->_checkPass($submitted_password, $stored_password))
1249                 return ($this->_level = WIKIAUTH_USER);
1250             return _PassUser::checkPass($submitted_password);
1251         }
1252         return WIKIAUTH_ANON;
1253     }
1254 }
1255
1256 /**
1257  * We have two possibilities here.
1258  * 1) The webserver location is already HTTP protected (usually Basic). Then just 
1259  *    use the username and do nothing
1260  * 2) The webserver location is not protected, so we enforce basic HTTP Protection
1261  *    by sending a 401 error and let the client display the login dialog.
1262  *    This makes only sense if HttpAuth is the last method in USER_AUTH_ORDER,
1263  *    since the other methods cannot be transparently called after this enforced 
1264  *    external dialog.
1265  *    Try the available auth methods (most likely Bogo) and sent this header back.
1266  *    header('Authorization: Basic '.base64_encode("$userid:$passwd")."\r\n";
1267  */
1268 class _HttpAuthPassUser
1269 extends _PassUser
1270 {
1271     function _HttpAuthPassUser($UserName='',$prefs=false) {
1272         if ($prefs) $this->_prefs = $prefs;
1273         if (!isset($this->_prefs->_method))
1274            _PassUser::_PassUser($UserName);
1275         if ($UserName) $this->_userid = $UserName;
1276         $this->_authmethod = 'HttpAuth';
1277         if ($this->userExists())
1278             return $this;
1279         else 
1280             return $GLOBALS['ForbiddenUser'];
1281     }
1282
1283     function _http_username() {
1284         if (!isset($_SERVER))
1285             $_SERVER =& $GLOBALS['HTTP_SERVER_VARS'];
1286         if (!empty($_SERVER['PHP_AUTH_USER']))
1287             return $_SERVER['PHP_AUTH_USER'];
1288         if (!empty($_SERVER['REMOTE_USER']))
1289             return $_SERVER['REMOTE_USER'];
1290         if (!empty($GLOBALS['HTTP_ENV_VARS']['REMOTE_USER']))
1291             return $GLOBALS['HTTP_ENV_VARS']['REMOTE_USER'];
1292         if (!empty($GLOBALS['REMOTE_USER']))
1293             return $GLOBALS['REMOTE_USER'];
1294         return '';
1295     }
1296     
1297     //force http auth authorization
1298     function userExists() {
1299         // todo: older php's
1300         $username = $this->_http_username();
1301         if (empty($username) or $username != $this->_userid) {
1302             header('WWW-Authenticate: Basic realm="'.WIKI_NAME.'"');
1303             header('HTTP/1.0 401 Unauthorized'); 
1304             exit;
1305         }
1306         $this->_userid = $username;
1307         $this->_level = WIKIAUTH_USER;
1308         return $this;
1309     }
1310         
1311     function checkPass($submitted_password) {
1312         return $this->userExists() ? WIKIAUTH_USER : WIKIAUTH_ANON;
1313     }
1314
1315     function mayChangePass() {
1316         return false;
1317     }
1318
1319     // hmm... either the server dialog or our own.
1320     function PrintLoginForm (&$request, $args, $fail_message = false,
1321                              $seperate_page = true) {
1322         header('WWW-Authenticate: Basic realm="'.WIKI_NAME.'"');
1323         header('HTTP/1.0 401 Unauthorized'); 
1324         exit;
1325
1326         include_once('lib/Template.php');
1327         // Call update_locale in case the system's default language is not 'en'.
1328         // (We have no user pref for lang at this point yet, no one is logged in.)
1329         update_locale(DEFAULT_LANGUAGE);
1330         $userid = $this->_userid;
1331         $require_level = 0;
1332         extract($args); // fixme
1333
1334         $require_level = max(0, min(WIKIAUTH_ADMIN, (int)$require_level));
1335
1336         $pagename = $request->getArg('pagename');
1337         $nocache = 1;
1338         $login = new Template('login', $request,
1339                               compact('pagename', 'userid', 'require_level',
1340                                       'fail_message', 'pass_required', 'nocache'));
1341         if ($seperate_page) {
1342             $top = new Template('html', $request,
1343                                 array('TITLE' => _("Sign In")));
1344             return $top->printExpansion($login);
1345         } else {
1346             return $login;
1347         }
1348     }
1349
1350 }
1351
1352 /** 
1353  * Support reuse of existing user session from another application.
1354  * You have to define which session variable holds the userid, and 
1355  * at what level is that user then. 1: BogoUser, 2: PassUser
1356  *   define('AUTH_SESS_USER','userid');
1357  *   define('AUTH_SESS_LEVEL',2);
1358  */
1359 class _SessionPassUser
1360 extends _PassUser
1361 {
1362     function _SessionPassUser($UserName='',$prefs=false) {
1363         if ($prefs) $this->_prefs = $prefs;
1364         if (!defined("AUTH_SESS_USER") or !defined("AUTH_SESS_LEVEL")) {
1365             trigger_error(
1366                 "AUTH_SESS_USER or AUTH_SESS_LEVEL is not defined for the SessionPassUser method",
1367                 E_USER_ERROR);
1368             exit;
1369         }
1370         $sess =& $GLOBALS['HTTP_SESSION_VARS'];
1371         // FIXME: user hash: "[user][userid]" or object "user->id"
1372         $this->_userid = $sess[AUTH_SESS_USER];
1373         if (!isset($this->_prefs->_method))
1374            _PassUser::_PassUser($this->_userid);
1375         $this->_level = AUTH_SESS_LEVEL;
1376         $this->_authmethod = 'Session';
1377     }
1378     function userExists() {
1379         return !empty($this->_userid);
1380     }
1381     function checkPass($submitted_password) {
1382         return $this->userExists() and $this->_level;
1383     }
1384     function mayChangePass() {
1385         return false;
1386     }
1387 }
1388
1389 /**
1390  * Baseclass for PearDB and ADODB PassUser's
1391  * Authenticate against a database, to be able to use shared users.
1392  *   internal: no different $DbAuthParams['dsn'] defined, or
1393  *   external: different $DbAuthParams['dsn']
1394  * The magic is done in the symbolic SQL statements in index.php, similar to
1395  * libnss-mysql.
1396  *
1397  * We support only the SQL and ADODB backends.
1398  * The other WikiDB backends (flat, cvs, dba, ...) should be used for pages, 
1399  * not for auth stuff. If one would like to use e.g. dba for auth, he should 
1400  * use PearDB (SQL) with the right $DBAuthParam['auth_dsn']. 
1401  * (Not supported yet, since we require SQL. SQLite would make since when 
1402  * it will come to PHP)
1403  *
1404  * @tables: user, pref
1405  *
1406  * Preferences are handled in the parent class _PassUser, because the 
1407  * previous classes may also use DB pref_select and pref_update.
1408  *
1409  * Flat files auth is handled by the auth method "File".
1410  */
1411 class _DbPassUser
1412 extends _PassUser
1413 {
1414     var $_authselect, $_authupdate, $_authcreate;
1415
1416     // This can only be called from _PassUser, because the parent class 
1417     // sets the auth_dbi and pref methods, before this class is initialized.
1418     function _DbPassUser($UserName='',$prefs=false) {
1419         if (!$this->_prefs) {
1420             if ($prefs) $this->_prefs = $prefs;
1421         }
1422         if (!isset($this->_prefs->_method))
1423            _PassUser::_PassUser($UserName);
1424         $this->_authmethod = 'Db';
1425         //$this->getAuthDbh();
1426         //$this->_auth_crypt_method = @$GLOBALS['DBAuthParams']['auth_crypt_method'];
1427         if ($GLOBALS['DBParams']['dbtype'] == 'ADODB') {
1428             if (check_php_version(5))
1429                 return new _AdoDbPassUser($UserName,$this->_prefs);
1430             else {
1431                 $user = new _AdoDbPassUser($UserName,$this->_prefs);
1432                 //todo: with php5 comment the following line:
1433                 /*PHP5 patch*/$this = $user;
1434                 return $user;
1435             }
1436         }
1437         elseif ($GLOBALS['DBParams']['dbtype'] == 'SQL') {
1438             if (check_php_version(5))
1439                 return new _PearDbPassUser($UserName,$this->_prefs);
1440             else {
1441                 $user = new _PearDbPassUser($UserName,$this->_prefs);
1442                 //todo: with php5 comment the following line:
1443                 /*PHP5 patch*/$this = $user;
1444                 return $user;
1445             }
1446         }
1447         return false;
1448     }
1449
1450     function mayChangePass() {
1451         return !isset($this->_authupdate);
1452     }
1453
1454 }
1455
1456 class _PearDbPassUser
1457 extends _DbPassUser
1458 /**
1459  * Pear DB methods
1460  * Now optimized not to use prepare, ...query(sprintf($sql,quote())) instead.
1461  * We use FETCH_MODE_ROW, so we don't need aliases in the auth_* SQL statements.
1462  *
1463  * @tables: user
1464  * @tables: pref
1465  */
1466 {
1467     var $_authmethod = 'PearDb';
1468     function _PearDbPassUser($UserName='',$prefs=false) {
1469         global $DBAuthParams;
1470         if (!$this->_prefs and isa($this,"_PearDbPassUser")) {
1471             if ($prefs) $this->_prefs = $prefs;
1472         }
1473         if (!isset($this->_prefs->_method))
1474             _PassUser::_PassUser($UserName);
1475         $this->_userid = $UserName;
1476         // make use of session data. generally we only initialize this every time, 
1477         // but do auth checks only once
1478         $this->_auth_crypt_method = @$DBAuthParams['auth_crypt_method'];
1479         //$this->getAuthDbh();
1480         return $this;
1481     }
1482
1483     function getPreferences() {
1484         // override the generic slow method here for efficiency and not to 
1485         // clutter the homepage metadata with prefs.
1486         _AnonUser::getPreferences();
1487         $this->getAuthDbh();
1488         if (isset($this->_prefs->_select)) {
1489             $dbh = &$this->_auth_dbi;
1490             $db_result = $dbh->query(sprintf($this->_prefs->_select,$dbh->quote($this->_userid)));
1491             // patched by frederik@pandora.be
1492             $prefs = $db_result->fetchRow();
1493             $prefs_blob = @$prefs["prefs"]; 
1494             if ($restored_from_db = $this->_prefs->retrieve($prefs_blob)) {
1495                 $updated = $this->_prefs->updatePrefs($restored_from_db);
1496                 //$this->_prefs = new UserPreferences($restored_from_db);
1497                 return $this->_prefs;
1498             }
1499         }
1500         if ($this->_HomePagehandle) {
1501             if ($restored_from_page = $this->_prefs->retrieve($this->_HomePagehandle->get('pref'))) {
1502                 $updated = $this->_prefs->updatePrefs($restored_from_page);
1503                 //$this->_prefs = new UserPreferences($restored_from_page);
1504                 return $this->_prefs;
1505             }
1506         }
1507         return $this->_prefs;
1508     }
1509
1510     function setPreferences($prefs, $id_only=false) {
1511         // if the prefs are changed
1512         if ($count = _AnonUser::setPreferences($prefs, 1)) {
1513             //global $request;
1514             //$user = $request->_user;
1515             //unset($user->_auth_dbi);
1516             // this must be done in $request->_setUser, not here!
1517             //$request->setSessionVar('wiki_user', $user);
1518             $this->getAuthDbh();
1519             $packed = $this->_prefs->store();
1520             if (!$id_only and isset($this->_prefs->_update)) {
1521                 $dbh = &$this->_auth_dbi;
1522                 $dbh->simpleQuery(sprintf($this->_prefs->_update,
1523                                           $dbh->quote($packed),
1524                                           $dbh->quote($this->_userid)));
1525             } else {
1526                 //store prefs in homepage, not in cookie
1527                 if ($this->_HomePagehandle and !$id_only)
1528                     $this->_HomePagehandle->set('pref', $packed);
1529             }
1530             return $count; //count($this->_prefs->unpack($packed));
1531         }
1532         return 0;
1533     }
1534
1535     function userExists() {
1536         global $DBAuthParams;
1537         $this->getAuthDbh();
1538         $dbh = &$this->_auth_dbi;
1539         if (!$dbh) { // needed?
1540             return $this->_tryNextUser();
1541         }
1542         // Prepare the configured auth statements
1543         if (!empty($DBAuthParams['auth_check']) and empty($this->_authselect)) {
1544             $this->_authselect = str_replace(array("'\$userid'","'\$password'"),
1545                                              array('%s','%s'),
1546                                              $DBAuthParams['auth_check']);
1547         }
1548         if (empty($this->_authselect))
1549             trigger_error("Either \$DBAuthParams['auth_check'] is missing or \$DBParams['dbtype'] != 'SQL'",
1550                           E_USER_WARNING);
1551         //NOTE: for auth_crypt_method='crypt' no special auth_user_exists is needed
1552         if ($this->_auth_crypt_method == 'crypt') {
1553             $rs = $dbh->query(sprintf($this->_authselect,$dbh->quote($this->_userid)));
1554             if ($rs->numRows())
1555                 return true;
1556         }
1557         else {
1558             if (! $GLOBALS['DBAuthParams']['auth_user_exists'])
1559                 trigger_error("\$DBAuthParams['auth_user_exists'] is missing",
1560                               E_USER_WARNING);
1561             $this->_authcheck = str_replace("'\$userid'",'%s',
1562                                              $DBAuthParams['auth_user_exists']);
1563             $rs = $dbh->query(sprintf($this->_authcheck,$dbh->quote($this->_userid)));
1564             if ($rs->numRows())
1565                 return true;
1566         }
1567         // maybe the user is allowed to create himself. Generally not wanted in 
1568         // external databases, but maybe wanted for the wiki database, for performance 
1569         // reasons
1570         if (empty($this->_authcreate) and !empty($DBAuthParams['auth_create'])) {
1571             $this->_authcreate = str_replace(array("'\$userid'","'\$password'"),
1572                                              array('%s','%s'),
1573                                              $DBAuthParams['auth_create']);
1574         }
1575         if (!empty($this->_authcreate)) {
1576             $dbh->simpleQuery(sprintf($this->_authcreate,
1577                                       $dbh->quote($GLOBALS['HTTP_POST_VARS']['auth']['passwd']),
1578                                       $dbh->quote($this->_userid)
1579                                       ));
1580             return true;
1581         }
1582         return $this->_tryNextUser();
1583     }
1584  
1585     function checkPass($submitted_password) {
1586         global $DBAuthParams;
1587         $this->getAuthDbh();
1588         if (!$this->_auth_dbi) {  // needed?
1589             return $this->_tryNextPass($submitted_password);
1590         }
1591         if (!isset($this->_authselect))
1592             $this->userExists();
1593         if (!isset($this->_authselect))
1594             trigger_error("Either \$DBAuthParams['auth_check'] is missing or \$DBParams['dbtype'] != 'SQL'",
1595                           E_USER_WARNING);
1596
1597         //NOTE: for auth_crypt_method='crypt'  defined('ENCRYPTED_PASSWD',true) must be set
1598         $dbh = &$this->_auth_dbi;
1599         if ($this->_auth_crypt_method == 'crypt') {
1600             $stored_password = $dbh->getOne(sprintf($this->_authselect,$dbh->quote($this->_userid)));
1601             $result = $this->_checkPass($submitted_password, $stored_password);
1602         } else {
1603             $okay = $dbh->getOne(sprintf($this->_authselect,
1604                                          $dbh->quote($submitted_password),
1605                                          $dbh->quote($this->_userid)));
1606             $result = !empty($okay);
1607         }
1608
1609         if ($result) {
1610             $this->_level = WIKIAUTH_USER;
1611             return $this->_level;
1612         } else {
1613             return $this->_tryNextPass($submitted_password);
1614         }
1615     }
1616
1617     function mayChangePass() {
1618         global $DBAuthParams;
1619         return !empty($DBAuthParams['auth_update']);
1620     }
1621
1622     function storePass($submitted_password) {
1623         global $DBAuthParams;
1624         $dbh = &$this->_auth_dbi;
1625         if (!empty($DBAuthParams['auth_update']) and empty($this->_authupdate)) {
1626             $this->_authupdate = str_replace(array("'\$userid'","'\$password'"),
1627                                              array('%s','%s'),
1628                                              $DBAuthParams['auth_update']);
1629         }
1630         if (empty($this->_authupdate)) {
1631             trigger_error("Either \$DBAuthParams['auth_update'] not defined or \$DBParams['dbtype'] != 'SQL'",
1632                           E_USER_WARNING);
1633             return false;
1634         }
1635
1636         if ($this->_auth_crypt_method == 'crypt') {
1637             if (function_exists('crypt'))
1638                 $submitted_password = crypt($submitted_password);
1639         }
1640         $dbh->simpleQuery(sprintf($this->_authupdate,
1641                                   $dbh->quote($submitted_password),
1642                                   $dbh->quote($this->_userid)
1643                                   ));
1644     }
1645
1646 }
1647
1648 class _AdoDbPassUser
1649 extends _DbPassUser
1650 /**
1651  * ADODB methods
1652  * Simple sprintf, no prepare.
1653  *
1654  * Warning: Since we use FETCH_MODE_ASSOC (string hash) and not the also faster 
1655  * FETCH_MODE_ROW (numeric), we have to use the correct aliases in auth_* sql statements!
1656  *
1657  * TODO: Change FETCH_MODE in adodb WikiDB sublasses.
1658  *
1659  * @tables: user
1660  */
1661 {
1662     var $_authmethod = 'AdoDb';
1663     function _AdoDbPassUser($UserName='',$prefs=false) {
1664         if (!$this->_prefs and isa($this,"_AdoDbPassUser")) {
1665             if ($prefs) $this->_prefs = $prefs;
1666             if (!isset($this->_prefs->_method))
1667               _PassUser::_PassUser($UserName);
1668         }
1669         $this->_userid = $UserName;
1670         $this->_auth_crypt_method = $GLOBALS['DBAuthParams']['auth_crypt_method'];
1671         $this->getAuthDbh();
1672         // Don't prepare the configured auth statements anymore
1673         return $this;
1674     }
1675
1676     function getPreferences() {
1677         // override the generic slow method here for efficiency
1678         _AnonUser::getPreferences();
1679         $this->getAuthDbh();
1680         if (isset($this->_prefs->_select)) {
1681             $dbh = & $this->_auth_dbi;
1682             $rs = $dbh->Execute(sprintf($this->_prefs->_select,$dbh->qstr($this->_userid)));
1683             if ($rs->EOF) {
1684                 $rs->Close();
1685             } else {
1686                 $prefs_blob = @$rs->fields['prefs'];
1687                 $rs->Close();
1688                 if ($restored_from_db = $this->_prefs->retrieve($prefs_blob)) {
1689                     $updated = $this->_prefs->updatePrefs($restored_from_db);
1690                     //$this->_prefs = new UserPreferences($restored_from_db);
1691                     return $this->_prefs;
1692                 }
1693             }
1694         }
1695         if ($this->_HomePagehandle) {
1696             if ($restored_from_page = $this->_prefs->retrieve($this->_HomePagehandle->get('pref'))) {
1697                 $updated = $this->_prefs->updatePrefs($restored_from_page);
1698                 //$this->_prefs = new UserPreferences($restored_from_page);
1699                 return $this->_prefs;
1700             }
1701         }
1702         return $this->_prefs;
1703     }
1704
1705     function setPreferences($prefs, $id_only=false) {
1706         // if the prefs are changed
1707         if (_AnonUser::setPreferences($prefs, 1)) {
1708             global $request;
1709             $packed = $this->_prefs->store();
1710             //$user = $request->_user;
1711             //unset($user->_auth_dbi);
1712             if (!$id_only and isset($this->_prefs->_update)) {
1713                 $this->getAuthDbh();
1714                 $dbh = &$this->_auth_dbi;
1715                 $db_result = $dbh->Execute(sprintf($this->_prefs->_update,
1716                                                    $dbh->qstr($packed),
1717                                                    $dbh->qstr($this->_userid)));
1718                 $db_result->Close();
1719             } else {
1720                 //store prefs in homepage, not in cookie
1721                 if ($this->_HomePagehandle and !$id_only)
1722                     $this->_HomePagehandle->set('pref', $packed);
1723             }
1724             return count($this->_prefs->unpack($packed));
1725         }
1726         return 0;
1727     }
1728  
1729     function userExists() {
1730         global $DBAuthParams;
1731         if (empty($this->_authselect) and !empty($DBAuthParams['auth_check'])) {
1732             $this->_authselect = str_replace(array("'\$userid'","'\$password'"),
1733                                              array('%s','%s'),
1734                                              $DBAuthParams['auth_check']);
1735         }
1736         if (empty($this->_authselect))
1737             trigger_error("Either \$DBAuthParams['auth_check'] is missing or \$DBParams['dbtype'] != 'ADODB'",
1738                           E_USER_WARNING);
1739         //$this->getAuthDbh();
1740         $dbh = &$this->_auth_dbi;
1741         //NOTE: for auth_crypt_method='crypt' no special auth_user_exists is needed
1742         if ($this->_auth_crypt_method == 'crypt') {
1743             $rs = $dbh->Execute(sprintf($this->_authselect,$dbh->qstr($this->_userid)));
1744             if (!$rs->EOF) {
1745                 $rs->Close();
1746                 return true;
1747             } else {
1748                 $rs->Close();
1749             }
1750         }
1751         else {
1752             if (! $DBAuthParams['auth_user_exists'])
1753                 trigger_error("\$DBAuthParams['auth_user_exists'] is missing",
1754                               E_USER_WARNING);
1755             $this->_authcheck = str_replace("'\$userid'",'%s',
1756                                              $DBAuthParams['auth_user_exists']);
1757             $rs = $dbh->Execute(sprintf($this->_authcheck,$dbh->qstr($this->_userid)));
1758             if (!$rs->EOF) {
1759                 $rs->Close();
1760                 return true;
1761             } else {
1762                 $rs->Close();
1763             }
1764         }
1765         // maybe the user is allowed to create himself. Generally not wanted in 
1766         // external databases, but maybe wanted for the wiki database, for performance 
1767         // reasons
1768         if (!$this->_authcreate and !empty($DBAuthParams['auth_create'])) {
1769             $this->_authcreate = str_replace(array("'\$userid'","'\$password'"),
1770                                              array('%s','%s'),
1771                                              $DBAuthParams['auth_create']);
1772         }
1773         if (!empty($this->_authcreate)) {
1774             $dbh->Execute(sprintf($this->_authcreate,
1775                                   $dbh->qstr($GLOBALS['HTTP_POST_VARS']['auth']['passwd']),
1776                                   $dbh->qstr($this->_userid)));
1777             return true;
1778         }
1779         
1780         return $this->_tryNextUser();
1781     }
1782
1783     function checkPass($submitted_password) {
1784         global $DBAuthParams;
1785         if (empty($this->_authselect) and !empty($DBAuthParams['auth_check'])) {
1786             $this->_authselect = str_replace(array("'\$userid'","'\$password'"),
1787                                              array('%s','%s'),
1788                                               $DBAuthParams['auth_check']);
1789         }
1790         if (!isset($this->_authselect))
1791             $this->userExists();
1792         if (!isset($this->_authselect))
1793             trigger_error("Either \$DBAuthParams['auth_check'] is missing or \$DBParams['dbtype'] != 'ADODB'",
1794                           E_USER_WARNING);
1795         //$this->getAuthDbh();
1796         $dbh = &$this->_auth_dbi;
1797         //NOTE: for auth_crypt_method='crypt'  defined('ENCRYPTED_PASSWD',true) must be set
1798         if ($this->_auth_crypt_method == 'crypt') {
1799             $rs = $dbh->Execute(sprintf($this->_authselect,$dbh->qstr($this->_userid)));
1800             if (!$rs->EOF) {
1801                 $stored_password = $rs->fields['password'];
1802                 $rs->Close();
1803                 $result = $this->_checkPass($submitted_password, $stored_password);
1804             } else {
1805                 $rs->Close();
1806                 $result = false;
1807             }
1808         }
1809         else {
1810             $rs = $dbh->Execute(sprintf($this->_authselect,
1811                                         $dbh->qstr($submitted_password),
1812                                         $dbh->qstr($this->_userid)));
1813             $okay = $rs->fields['ok'];
1814             $rs->Close();
1815             $result = !empty($okay);
1816         }
1817
1818         if ($result) { 
1819             $this->_level = WIKIAUTH_USER;
1820             return $this->_level;
1821         } else {
1822             return $this->_tryNextPass($submitted_password);
1823         }
1824     }
1825
1826     function mayChangePass() {
1827         global $DBAuthParams;
1828         return !empty($DBAuthParams['auth_update']);
1829     }
1830
1831     function storePass($submitted_password) {
1832         global $DBAuthParams;
1833         if (!isset($this->_authupdate) and !empty($DBAuthParams['auth_update'])) {
1834             $this->_authupdate = str_replace(array("'\$userid'","'\$password'"),
1835                                              array("%s","%s"),
1836                                               $DBAuthParams['auth_update']);
1837         }
1838         if (!isset($this->_authupdate)) {
1839             trigger_error("Either \$DBAuthParams['auth_update'] not defined or \$DBParams['dbtype'] != 'ADODB'",
1840                           E_USER_WARNING);
1841             return false;
1842         }
1843
1844         if ($this->_auth_crypt_method == 'crypt') {
1845             if (function_exists('crypt'))
1846                 $submitted_password = crypt($submitted_password);
1847         }
1848         $this->getAuthDbh();
1849         $dbh = &$this->_auth_dbi;
1850         $rs = $dbh->Execute(sprintf($this->_authupdate,
1851                                     $dbh->qstr($submitted_password),
1852                                     $dbh->qstr($this->_userid)
1853                                     ));
1854         $rs->Close();
1855         return $rs;
1856     }
1857
1858 }
1859
1860 class _LDAPPassUser
1861 extends _PassUser
1862 /**
1863  * Define the vars LDAP_AUTH_HOST and LDAP_BASE_DN in index.php
1864  *
1865  * Preferences are handled in _PassUser
1866  */
1867 {
1868     function checkPass($submitted_password) {
1869         global $LDAP_SET_OPTION;
1870
1871         $this->_authmethod = 'LDAP';
1872         $userid = $this->_userid;
1873         if ($ldap = ldap_connect(LDAP_AUTH_HOST)) { // must be a valid LDAP server!
1874             if (defined('LDAP_AUTH_USER'))
1875                 if (defined('LDAP_AUTH_PASSWORD'))
1876                     // Windows Active Directory Server is strict
1877                     $r = @ldap_bind($ldap,LDAP_AUTH_USER,LDAP_AUTH_PASSWORD); 
1878                 else
1879                     $r = @ldap_bind($ldap,LDAP_AUTH_USER); 
1880             else
1881                 $r = @ldap_bind($ldap); // this is an anonymous bind
1882             if (!empty($LDAP_SET_OPTION)) {
1883                 foreach ($LDAP_SET_OPTION as $key => $value) {
1884                     if (is_string($key) and defined($key))
1885                         $key = constant($key);
1886                     ldap_set_option($ldap,$key,$value);
1887                 }
1888             }
1889             // Need to set the right root search information. see ../index.php
1890             $st_search = defined('LDAP_SEARCH_FIELD') 
1891                 ? LDAP_SEARCH_FIELD."=$userid"
1892                 : "uid=$userid";
1893             $sr = ldap_search($ldap, LDAP_BASE_DN, $st_search);
1894             $info = ldap_get_entries($ldap, $sr); 
1895             // there may be more hits with this userid.
1896             // of course it would be better to narrow down the BASE_DN
1897             for ($i = 0; $i < $info["count"]; $i++) {
1898                 $dn = $info[$i]["dn"];
1899                 // The password is still plain text.
1900                 if ($r = @ldap_bind($ldap, $dn, $submitted_password)) {
1901                     // ldap_bind will return TRUE if everything matches
1902                     ldap_close($ldap);
1903                     $this->_level = WIKIAUTH_USER;
1904                     return $this->_level;
1905                 }
1906             }
1907         } else {
1908             trigger_error(fmt("Unable to connect to LDAP server %s", LDAP_AUTH_HOST), 
1909                           E_USER_WARNING);
1910             //return false;
1911         }
1912
1913         return $this->_tryNextPass($submitted_password);
1914     }
1915
1916     function userExists() {
1917         global $LDAP_SET_OPTION;
1918
1919         $userid = $this->_userid;
1920         if ($ldap = ldap_connect(LDAP_AUTH_HOST)) { // must be a valid LDAP server!
1921             if (defined('LDAP_AUTH_USER'))
1922                 if (defined('LDAP_AUTH_PASSWORD'))
1923                     // Windows Active Directory Server is strict
1924                     $r = @ldap_bind($ldap,LDAP_AUTH_USER,LDAP_AUTH_PASSWORD); 
1925                 else
1926                     $r = @ldap_bind($ldap,LDAP_AUTH_USER); 
1927             else
1928                 $r = @ldap_bind($ldap); // this is an anonymous bind
1929             if (!empty($LDAP_SET_OPTION)) {
1930                 foreach ($LDAP_SET_OPTION as $key => $value) {
1931                     ldap_set_option($ldap,$key,$value);
1932                 }
1933             }
1934             // Need to set the right root search information. see ../index.php
1935             $st_search = defined('LDAP_SEARCH_FIELD') 
1936                 ? LDAP_SEARCH_FIELD."=$userid"
1937                 : "uid=$userid";
1938             $sr = ldap_search($ldap, LDAP_BASE_DN, $st_search);
1939             $info = ldap_get_entries($ldap, $sr); 
1940
1941             if ($info["count"] > 0) {
1942                 ldap_close($ldap);
1943                 return true;
1944             }
1945         } else {
1946             trigger_error(_("Unable to connect to LDAP server "). LDAP_AUTH_HOST, E_USER_WARNING);
1947         }
1948
1949         return $this->_tryNextUser();
1950     }
1951
1952     function mayChangePass() {
1953         return false;
1954     }
1955
1956 }
1957
1958 class _IMAPPassUser
1959 extends _PassUser
1960 /**
1961  * Define the var IMAP_AUTH_HOST in index.php (with port probably)
1962  *
1963  * Preferences are handled in _PassUser
1964  */
1965 {
1966     function checkPass($submitted_password) {
1967         $userid = $this->_userid;
1968         $mbox = @imap_open( "{" . IMAP_AUTH_HOST . "}",
1969                             $userid, $submitted_password, OP_HALFOPEN );
1970         if ($mbox) {
1971             imap_close($mbox);
1972             $this->_authmethod = 'IMAP';
1973             $this->_level = WIKIAUTH_USER;
1974             return $this->_level;
1975         } else {
1976             trigger_error(_("Unable to connect to IMAP server "). IMAP_AUTH_HOST, E_USER_WARNING);
1977         }
1978
1979         return $this->_tryNextPass($submitted_password);
1980     }
1981
1982     //CHECKME: this will not be okay for the auth policy strict
1983     function userExists() {
1984         return true;
1985         if (checkPass($this->_prefs->get('passwd')))
1986             return true;
1987             
1988         return $this->_tryNextUser();
1989     }
1990
1991     function mayChangePass() {
1992         return false;
1993     }
1994 }
1995
1996
1997 class _POP3PassUser
1998 extends _IMAPPassUser {
1999 /**
2000  * Define the var POP3_AUTH_HOST in index.php
2001  * Preferences are handled in _PassUser
2002  */
2003     function checkPass($submitted_password) {
2004         $userid = $this->_userid;
2005         $pass = $submitted_password;
2006         $host = defined('POP3_AUTH_HOST') ? POP3_AUTH_HOST : 'localhost:110';
2007         if (defined('POP3_AUTH_PORT'))
2008             $port = POP3_AUTH_PORT;
2009         elseif (strstr($host,':')) {
2010             list(,$port) = split(':',$host);
2011         } else {
2012             $port = 110;
2013         }
2014         $retval = false;
2015         $fp = fsockopen($host, $port, $errno, $errstr, 10);
2016         if ($fp) {
2017             // Get welcome string
2018             $line = fgets($fp, 1024);
2019             if (! strncmp("+OK ", $line, 4)) {
2020                 // Send user name
2021                 fputs($fp, "user $userid\n");
2022                 // Get response
2023                 $line = fgets($fp, 1024);
2024                 if (! strncmp("+OK ", $line, 4)) {
2025                     // Send password
2026                     fputs($fp, "pass $pass\n");
2027                     // Get response
2028                     $line = fgets($fp, 1024);
2029                     if (! strncmp("+OK ", $line, 4)) {
2030                         $retval = true;
2031                     }
2032                 }
2033             }
2034             // quit the connection
2035             fputs($fp, "quit\n");
2036             // Get the sayonara message
2037             $line = fgets($fp, 1024);
2038             fclose($fp);
2039         } else {
2040             trigger_error(_("Couldn't connect to %s","POP3_AUTH_HOST ".$host.':'.$port),
2041                           E_USER_WARNING);
2042         }
2043         $this->_authmethod = 'POP3';
2044         if ($retval) {
2045             $this->_level = WIKIAUTH_USER;
2046         } else {
2047             $this->_level = WIKIAUTH_ANON;
2048         }
2049         return $this->_level;
2050     }
2051 }
2052
2053 class _FilePassUser
2054 extends _PassUser
2055 /**
2056  * Check users defined in a .htaccess style file
2057  * username:crypt\n...
2058  *
2059  * Preferences are handled in _PassUser
2060  */
2061 {
2062     var $_file, $_may_change;
2063
2064     // This can only be called from _PassUser, because the parent class 
2065     // sets the pref methods, before this class is initialized.
2066     function _FilePassUser($UserName='',$prefs=false,$file='') {
2067         if (!$this->_prefs and isa($this,"_FilePassUser")) {
2068             if ($prefs) $this->_prefs = $prefs;
2069             if (!isset($this->_prefs->_method))
2070               _PassUser::_PassUser($UserName);
2071         }
2072
2073         $this->_userid = $UserName;
2074         // read the .htaccess style file. We use our own copy of the standard pear class.
2075         //include_once 'lib/pear/File_Passwd.php';
2076         $this->_may_change = defined('AUTH_USER_FILE_STORABLE') && AUTH_USER_FILE_STORABLE;
2077         if (empty($file) and defined('AUTH_USER_FILE'))
2078             $file = AUTH_USER_FILE;
2079         // if passwords may be changed we have to lock them:
2080         if ($this->_may_change) {
2081             $lock = true;
2082             $lockfile = $file . ".lock";
2083         } else {
2084             $lock = false;
2085             $lockfile = false;
2086         }
2087         // "__PHP_Incomplete_Class"
2088         if (!empty($file) or empty($this->_file) or !isa($this->_file,"File_Passwd"))
2089             $this->_file = new File_Passwd($file, $lock, $lockfile);
2090         else
2091             return false;
2092         return $this;
2093     }
2094  
2095     function mayChangePass() {
2096         return $this->_may_change;
2097     }
2098
2099     function userExists() {
2100         $this->_authmethod = 'File';
2101         if (isset($this->_file->users[$this->_userid]))
2102             return true;
2103             
2104         return $this->_tryNextUser();
2105     }
2106
2107     function checkPass($submitted_password) {
2108         //include_once 'lib/pear/File_Passwd.php';
2109         if ($this->_file->verifyPassword($this->_userid,$submitted_password)) {
2110             $this->_authmethod = 'File';
2111             $this->_level = WIKIAUTH_USER;
2112             return $this->_level;
2113         }
2114         
2115         return $this->_tryNextPass($submitted_password);
2116     }
2117
2118     function storePass($submitted_password) {
2119         if ($this->_may_change) {
2120             if ($this->_file->modUser($this->_userid,$submitted_password)) {
2121                 $this->_file->close();
2122                 $this->_file = new File_Passwd($this->_file->_filename, true, $this->_file->lockfile);
2123                 return true;
2124             }
2125         }
2126         return false;
2127     }
2128
2129 }
2130
2131 /**
2132  * Insert more auth classes here...
2133  * For example a customized db class for another db connection 
2134  * or a socket-based auth server
2135  *
2136  */
2137
2138
2139 /**
2140  * For security, this class should not be extended. Instead, extend
2141  * from _PassUser (think of this as unix "root").
2142  */
2143 class _AdminUser
2144 extends _PassUser
2145 {
2146     function mayChangePass() {
2147         return false;
2148     }
2149     function checkPass($submitted_password) {
2150         $stored_password = ADMIN_PASSWD;
2151         if ($this->_checkPass($submitted_password, $stored_password)) {
2152             $this->_level = WIKIAUTH_ADMIN;
2153             return $this->_level;
2154         } else {
2155             $this->_level = WIKIAUTH_ANON;
2156             return $this->_level;
2157         }
2158     }
2159     function storePass($submitted_password) {
2160         return false;
2161     }
2162 }
2163
2164 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2165 /**
2166  * Various data classes for the preference types, 
2167  * to support get, set, sanify (range checking, ...)
2168  * update() will do the neccessary side-effects if a 
2169  * setting gets changed (theme, language, ...)
2170 */
2171
2172 class _UserPreference
2173 {
2174     var $default_value;
2175
2176     function _UserPreference ($default_value) {
2177         $this->default_value = $default_value;
2178     }
2179
2180     function sanify ($value) {
2181         return (string)$value;
2182     }
2183
2184     function get ($name) {
2185         if (isset($this->{$name}))
2186             return $this->{$name};
2187         else 
2188             return $this->default_value;
2189     }
2190
2191     function getraw ($name) {
2192         if (!empty($this->{$name}))
2193             return $this->{$name};
2194     }
2195
2196     // stores the value as $this->$name, and not as $this->value (clever?)
2197     function set ($name, $value) {
2198         $return = 0;
2199         $value = $this->sanify($value);
2200         if ($this->get($name) != $value) {
2201             $this->update($value);
2202             $return = 1;
2203         }
2204         if ($value != $this->default_value) {
2205             $this->{$name} = $value;
2206         } else {
2207             unset($this->{$name});
2208         }
2209         return $return;
2210     }
2211
2212     // default: no side-effects 
2213     function update ($value) {
2214         ;
2215     }
2216 }
2217
2218 class _UserPreference_numeric
2219 extends _UserPreference
2220 {
2221     function _UserPreference_numeric ($default, $minval = false,
2222                                       $maxval = false) {
2223         $this->_UserPreference((double)$default);
2224         $this->_minval = (double)$minval;
2225         $this->_maxval = (double)$maxval;
2226     }
2227
2228     function sanify ($value) {
2229         $value = (double)$value;
2230         if ($this->_minval !== false && $value < $this->_minval)
2231             $value = $this->_minval;
2232         if ($this->_maxval !== false && $value > $this->_maxval)
2233             $value = $this->_maxval;
2234         return $value;
2235     }
2236 }
2237
2238 class _UserPreference_int
2239 extends _UserPreference_numeric
2240 {
2241     function _UserPreference_int ($default, $minval = false, $maxval = false) {
2242         $this->_UserPreference_numeric((int)$default, (int)$minval, (int)$maxval);
2243     }
2244
2245     function sanify ($value) {
2246         return (int)parent::sanify((int)$value);
2247     }
2248 }
2249
2250 class _UserPreference_bool
2251 extends _UserPreference
2252 {
2253     function _UserPreference_bool ($default = false) {
2254         $this->_UserPreference((bool)$default);
2255     }
2256
2257     function sanify ($value) {
2258         if (is_array($value)) {
2259             /* This allows for constructs like:
2260              *
2261              *   <input type="hidden" name="pref[boolPref][]" value="0" />
2262              *   <input type="checkbox" name="pref[boolPref][]" value="1" />
2263              *
2264              * (If the checkbox is not checked, only the hidden input
2265              * gets sent. If the checkbox is sent, both inputs get
2266              * sent.)
2267              */
2268             foreach ($value as $val) {
2269                 if ($val)
2270                     return true;
2271             }
2272             return false;
2273         }
2274         return (bool) $value;
2275     }
2276 }
2277
2278 class _UserPreference_language
2279 extends _UserPreference
2280 {
2281     function _UserPreference_language ($default = DEFAULT_LANGUAGE) {
2282         $this->_UserPreference($default);
2283     }
2284
2285     // FIXME: check for valid locale
2286     function sanify ($value) {
2287         // Revert to DEFAULT_LANGUAGE if user does not specify
2288         // language in UserPreferences or chooses <system language>.
2289         if ($value == '' or empty($value))
2290             $value = DEFAULT_LANGUAGE;
2291
2292         return (string) $value;
2293     }
2294     
2295     function update ($newvalue) {
2296         if (! $this->_init ) {
2297             // invalidate etag to force fresh output
2298             $GLOBALS['request']->setValidators(array('%mtime' => false));
2299             update_locale($newvalue ? $newvalue : $GLOBALS['LANG']);
2300         }
2301     }
2302 }
2303
2304 class _UserPreference_theme
2305 extends _UserPreference
2306 {
2307     function _UserPreference_theme ($default = THEME) {
2308         $this->_UserPreference($default);
2309     }
2310
2311     function sanify ($value) {
2312         if (!empty($value) and FindFile($this->_themefile($value)))
2313             return $value;
2314         return $this->default_value;
2315     }
2316
2317     function update ($newvalue) {
2318         global $Theme;
2319         // invalidate etag to force fresh output
2320         if (! $this->_init )
2321             $GLOBALS['request']->setValidators(array('%mtime' => false));
2322         if ($newvalue)
2323             include_once($this->_themefile($newvalue));
2324         if (empty($Theme))
2325             include_once($this->_themefile(THEME));
2326     }
2327
2328     function _themefile ($theme) {
2329         return "themes/$theme/themeinfo.php";
2330     }
2331 }
2332
2333 class _UserPreference_notify
2334 extends _UserPreference
2335 {
2336     function sanify ($value) {
2337         if (!empty($value))
2338             return $value;
2339         else
2340             return $this->default_value;
2341     }
2342
2343     /** update to global user prefs: side-effect on set notify changes
2344      * use a global_data notify hash:
2345      * notify = array('pagematch' => array(userid => ('email' => mail, 
2346      *                                                'verified' => 0|1),
2347      *                                     ...),
2348      *                ...);
2349      */
2350     function update ($value) {
2351         if (!empty($this->_init)) return;
2352         $dbh = $GLOBALS['request']->getDbh();
2353         $notify = $dbh->get('notify');
2354         if (empty($notify))
2355             $data = array();
2356         else 
2357             $data = & $notify;
2358         // expand to existing pages only or store matches?
2359         // for now we store (glob-style) matches which is easier for the user
2360         $pages = $this->_page_split($value);
2361         // Limitation: only current user.
2362         $user = $GLOBALS['request']->getUser();
2363         if (!$user or !method_exists($user,'UserName')) return;
2364         // This fails with php5 and a WIKI_ID cookie:
2365         $userid = $user->UserName();
2366         $email  = $user->_prefs->get('email');
2367         $verified = $user->_prefs->_prefs['email']->getraw('emailVerified');
2368         // check existing notify hash and possibly delete pages for email
2369         if (!empty($data)) {
2370             foreach ($data as $page => $users) {
2371                 if (isset($data[$page][$userid]) and !in_array($page, $pages)) {
2372                     unset($data[$page][$userid]);
2373                 }
2374                 if (count($data[$page]) == 0)
2375                     unset($data[$page]);
2376             }
2377         }
2378         // add the new pages
2379         if (!empty($pages)) {
2380             foreach ($pages as $page) {
2381                 if (!isset($data[$page]))
2382                     $data[$page] = array();
2383                 if (!isset($data[$page][$userid])) {
2384                     // should we really store the verification notice here or 
2385                     // check it dynamically at every page->save?
2386                     if ($verified) {
2387                         $data[$page][$userid] = array('email' => $email,
2388                                                       'verified' => $verified);
2389                     } else {
2390                         $data[$page][$userid] = array('email' => $email);
2391                     }
2392                 }
2393             }
2394         }
2395         // store users changes
2396         $dbh->set('notify',$data);
2397     }
2398
2399     /** split the user-given comma or whitespace delimited pagenames
2400      *  to array
2401      */
2402     function _page_split($value) {
2403         return preg_split('/[\s,]+/',$value,-1,PREG_SPLIT_NO_EMPTY);
2404     }
2405 }
2406
2407 class _UserPreference_email
2408 extends _UserPreference
2409 {
2410     function sanify($value) {
2411         // check for valid email address
2412         if ($this->get('email') == $value and $this->getraw('emailVerified'))
2413             return $value;
2414         // hack!
2415         if ($value == 1 or $value === true)
2416             return $value;
2417         list($ok,$msg) = ValidateMail($value,'noconnect');
2418         if ($ok) {
2419             return $value;
2420         } else {
2421             trigger_error("E-Mail Validation Error: ".$msg, E_USER_WARNING);
2422             return $this->default_value;
2423         }
2424     }
2425     
2426     /** Side-effect on email changes:
2427      * Send a verification mail or for now just a notification email.
2428      * For true verification (value = 2), we'd need a mailserver hook.
2429      */
2430     function update($value) {
2431         if (!empty($this->_init)) return;
2432         $verified = $this->getraw('emailVerified');
2433         // hack!
2434         if (($value == 1 or $value === true) and $verified)
2435             return;
2436         if (!empty($value) and !$verified) {
2437             list($ok,$msg) = ValidateMail($value);
2438             if ($ok and mail($value,"[".WIKI_NAME ."] "._("Email Verification"),
2439                      sprintf(_("Welcome to %s!\nYou email account is verified and\nwill be used to send pagechange notifications.\nSee %s"),
2440                              WIKI_NAME, WikiURL($GLOBALS['request']->getArg('pagename'),'',true))))
2441                 $this->set('emailVerified',1);
2442         }
2443     }
2444 }
2445
2446 /** Check for valid email address
2447     fixed version from http://www.zend.com/zend/spotlight/ev12apr.php
2448  */
2449 function ValidateMail($email, $noconnect=false) {
2450     if (!isset($_SERVER))
2451         $_SERVER =& $GLOBALS['HTTP_SERVER_VARS'];
2452     $HTTP_HOST = $_SERVER['HTTP_HOST'];
2453     $result = array();
2454     // well, technically ".a.a.@host.com" is also valid
2455     if (!eregi("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$", $email)) {
2456         $result[0] = false;
2457         $result[1] = sprintf(_("E-Mail address '%s' is not properly formatted"),$email);
2458         return $result;
2459     }
2460     if ($noconnect)
2461       return array(true,sprintf(_("E-Mail address '%s' is properly formatted"),$email));
2462
2463     list ( $Username, $Domain ) = split ("@",$email);
2464     //Todo: getmxrr workaround on windows or manual input field to verify it manually
2465     if (!isWindows() and getmxrr($Domain, $MXHost)) { // avoid warning on Windows. 
2466         $ConnectAddress = $MXHost[0];
2467     } else {
2468         $ConnectAddress = $Domain;
2469     }
2470     $Connect = fsockopen ( $ConnectAddress, 25 );
2471     if ($Connect) {
2472         if (ereg("^220", $Out = fgets($Connect, 1024))) {
2473             fputs ($Connect, "HELO $HTTP_HOST\r\n");
2474             $Out = fgets ( $Connect, 1024 );
2475             fputs ($Connect, "MAIL FROM: <".$email.">\r\n");
2476             $From = fgets ( $Connect, 1024 );
2477             fputs ($Connect, "RCPT TO: <".$email.">\r\n");
2478             $To = fgets ($Connect, 1024);
2479             fputs ($Connect, "QUIT\r\n");
2480             fclose($Connect);
2481             if (!ereg ("^250", $From)) {
2482                 $result[0]=false;
2483                 $result[1]="Server rejected address: ". $From;
2484                 return $result;
2485             }
2486             if (!ereg ( "^250", $To )) {
2487                 $result[0]=false;
2488                 $result[1]="Server rejected address: ". $To;
2489                 return $result;
2490             }
2491         } else {
2492             $result[0] = false;
2493             $result[1] = "No response from server";
2494             return $result;
2495           }
2496     }  else {
2497         $result[0]=false;
2498         $result[1]="Can not connect E-Mail server.";
2499         return $result;
2500     }
2501     $result[0]=true;
2502     $result[1]="E-Mail address '$email' appears to be valid.";
2503     return $result;
2504 } // end of function 
2505
2506 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2507
2508 /**
2509  * UserPreferences
2510  * 
2511  * This object holds the $request->_prefs subobjects.
2512  * A simple packed array of non-default values get's stored as cookie,
2513  * homepage, or database, which are converted to the array of 
2514  * ->_prefs objects.
2515  * We don't store the objects, because otherwise we will
2516  * not be able to upgrade any subobject. And it's a waste of space also.
2517  *
2518  */
2519 class UserPreferences
2520 {
2521     function UserPreferences($saved_prefs = false) {
2522         // userid stored too, to ensure the prefs are being loaded for
2523         // the correct (currently signing in) userid if stored in a
2524         // cookie.
2525         // Update: for db prefs we disallow passwd. 
2526         // userid is needed for pref reflexion. current pref must know its username, 
2527         // if some app needs prefs from different users, different from current user.
2528         $this->_prefs
2529             = array(
2530                     'userid'        => new _UserPreference(''),
2531                     'passwd'        => new _UserPreference(''),
2532                     'autologin'     => new _UserPreference_bool(),
2533                     //'emailVerified' => new _UserPreference_emailVerified(), 
2534                     //fixed: store emailVerified as email parameter, 1.3.8
2535                     'email'         => new _UserPreference_email(''),
2536                     'notifyPages'   => new _UserPreference_notify(''), // 1.3.8
2537                     'theme'         => new _UserPreference_theme(THEME),
2538                     'lang'          => new _UserPreference_language(DEFAULT_LANGUAGE),
2539                     'editWidth'     => new _UserPreference_int(EDITWIDTH_DEFAULT_COLS,
2540                                                                EDITWIDTH_MIN_COLS,
2541                                                                EDITWIDTH_MAX_COLS),
2542                     'noLinkIcons'   => new _UserPreference_bool(),    // 1.3.8 
2543                     'editHeight'    => new _UserPreference_int(EDITHEIGHT_DEFAULT_ROWS,
2544                                                                EDITHEIGHT_MIN_ROWS,
2545                                                                EDITHEIGHT_DEFAULT_ROWS),
2546                     'timeOffset'    => new _UserPreference_numeric(TIMEOFFSET_DEFAULT_HOURS,
2547                                                                    TIMEOFFSET_MIN_HOURS,
2548                                                                    TIMEOFFSET_MAX_HOURS),
2549                     'relativeDates' => new _UserPreference_bool(),
2550                     'googleLink'    => new _UserPreference_bool(), // 1.3.10
2551                     );
2552         // add custom theme-specific pref types:
2553         // FIXME: on theme changes the wiki_user session pref object will fail. 
2554         // We will silently ignore this.
2555         if (!empty($customUserPreferenceColumns))
2556             $this->_prefs = array_merge($this->_prefs,$customUserPreferenceColumns);
2557
2558         if (isset($this->_method) and $this->_method == 'SQL') {
2559             //unset($this->_prefs['userid']);
2560             unset($this->_prefs['passwd']);
2561         }
2562
2563         if (is_array($saved_prefs)) {
2564             foreach ($saved_prefs as $name => $value)
2565                 $this->set($name, $value);
2566         }
2567     }
2568
2569     function _getPref($name) {
2570         if ($name == 'emailVerified')
2571             $name = 'email';
2572         if (!isset($this->_prefs[$name])) {
2573             if ($name == 'passwd2') return false;
2574             if ($name == 'passwd') return false;
2575             trigger_error("$name: unknown preference", E_USER_NOTICE);
2576             return false;
2577         }
2578         return $this->_prefs[$name];
2579     }
2580     
2581     // get the value or default_value of the subobject
2582     function get($name) {
2583         if ($_pref = $this->_getPref($name))
2584             if ($name == 'emailVerified')
2585                 return $_pref->getraw($name);
2586             else
2587                 return $_pref->get($name);
2588         else
2589             return false;  
2590     }
2591
2592     // check and set the new value in the subobject
2593     function set($name, $value) {
2594         $pref = $this->_getPref($name);
2595         if ($pref === false)
2596             return false;
2597
2598         /* do it here or outside? */
2599         if ($name == 'passwd' and 
2600             defined('PASSWORD_LENGTH_MINIMUM') and 
2601             strlen($value) <= PASSWORD_LENGTH_MINIMUM ) {
2602             //TODO: How to notify the user?
2603             return false;
2604         }
2605         /*
2606         if ($name == 'theme' and $value == '')
2607            return true;
2608         */
2609         if (!isset($pref->{$value}) or $pref->{$value} != $pref->default_value) {
2610             if ($name == 'emailVerified') $newvalue = $value;
2611             else $newvalue = $pref->sanify($value);
2612             $pref->set($name,$newvalue);
2613         }
2614         $this->_prefs[$name] =& $pref;
2615         return true;
2616     }
2617     /**
2618      * use init to avoid update on set
2619      */
2620     function updatePrefs($prefs, $init = false) {
2621         $count = 0;
2622         if ($init) $this->_init = $init;
2623         if (is_object($prefs)) {
2624             $type = 'emailVerified'; $obj =& $this->_prefs['email'];
2625             $obj->_init = $init;
2626             if ($obj->get($type) !== $prefs->get($type)) {
2627                 if ($obj->set($type,$prefs->get($type)))
2628                     $count++;
2629             }
2630             foreach (array_keys($this->_prefs) as $type) {
2631                 $obj =& $this->_prefs[$type];
2632                 $obj->_init = $init;
2633                 if ($prefs->get($type) !== $obj->get($type)) {
2634                     // special systemdefault prefs: (probably not needed)
2635                     if ($type == 'theme' and $prefs->get($type) == '' and $obj->get($type) == THEME) continue;
2636                     if ($type == 'lang' and $prefs->get($type) == '' and $obj->get($type) == DEFAULT_LANGUAGE) continue;
2637                     if ($this->_prefs[$type]->set($type,$prefs->get($type)))
2638                         $count++;
2639                 }
2640             }
2641         } elseif (is_array($prefs)) {
2642             //unset($this->_prefs['userid']);
2643             if (isset($this->_method) and 
2644                  ($this->_method == 'SQL' or $this->_method == 'ADODB')) {
2645                 unset($this->_prefs['passwd']);
2646             }
2647             // emailVerified at first, the rest later
2648             $type = 'emailVerified'; $obj =& $this->_prefs['email'];
2649             $obj->_init = $init;
2650             if (isset($prefs[$type]) and $obj->get($type) !== $prefs[$type]) {
2651                 if ($obj->set($type,$prefs[$type]))
2652                     $count++;
2653             }
2654             foreach (array_keys($this->_prefs) as $type) {
2655                 $obj =& $this->_prefs[$type];
2656                 $obj->_init = $init;
2657                 if (!isset($prefs[$type]) and isa($obj,"_UserPreference_bool")) 
2658                     $prefs[$type] = false;
2659                 if (isset($prefs[$type]) and isa($obj,"_UserPreference_int"))
2660                     $prefs[$type] = (int) $prefs[$type];
2661                 if (isset($prefs[$type]) and $obj->get($type) != $prefs[$type]) {
2662                     // special systemdefault prefs:
2663                     if ($type == 'theme' and $prefs[$type] == '' and $obj->get($type) == THEME) continue;
2664                     if ($type == 'lang' and $prefs[$type] == '' and $obj->get($type) == DEFAULT_LANGUAGE) continue;
2665                     if ($obj->set($type,$prefs[$type]))
2666                         $count++;
2667                 }
2668             }
2669         }
2670         return $count;
2671     }
2672
2673     // for now convert just array of objects => array of values
2674     // Todo: the specialized subobjects must override this.
2675     function store() {
2676         $prefs = array();
2677         foreach ($this->_prefs as $name => $object) {
2678             if ($value = $object->getraw($name))
2679                 $prefs[$name] = $value;
2680             if ($name == 'email' and ($value = $object->getraw('emailVerified')))
2681                 $prefs['emailVerified'] = $value;
2682         }
2683         return $this->pack($prefs);
2684     }
2685
2686     // packed string or array of values => array of values
2687     // Todo: the specialized subobjects must override this.
2688     function retrieve($packed) {
2689         if (is_string($packed) and (substr($packed, 0, 2) == "a:"))
2690             $packed = unserialize($packed);
2691         if (!is_array($packed)) return false;
2692         $prefs = array();
2693         foreach ($packed as $name => $packed_pref) {
2694             if (is_string($packed_pref) and substr($packed_pref, 0, 2) == "O:") {
2695                 //legacy: check if it's an old array of objects
2696                 // Looks like a serialized object. 
2697                 // This might fail if the object definition does not exist anymore.
2698                 // object with ->$name and ->default_value vars.
2699                 $pref =  @unserialize($packed_pref);
2700                 if (empty($pref))
2701                     $pref = @unserialize(base64_decode($packed_pref));
2702                 $prefs[$name] = $pref->get($name);
2703             // fix old-style prefs
2704             } elseif (is_numeric($name) and is_array($packed_pref)) {
2705                 if (count($packed_pref) == 1) {
2706                     list($name,$value) = each($packed_pref);
2707                     $prefs[$name] = $value;
2708                 }
2709             } else {
2710                 $prefs[$name] = @unserialize($packed_pref);
2711                 if (empty($prefs[$name]))
2712                     $prefs[$name] = @unserialize(base64_decode($packed_pref));
2713                 // patched by frederik@pandora.be
2714                 if (empty($prefs[$name]))
2715                     $prefs[$name] = $packed_pref;
2716             }
2717         }
2718         return $prefs;
2719     }
2720
2721     /**
2722      * Check if the given prefs object is different from the current prefs object
2723      */
2724     function isChanged($other) {
2725         foreach ($this->_prefs as $type => $obj) {
2726             if ($obj->get($type) !== $other->get($type))
2727                 return true;
2728         }
2729         return false;
2730     }
2731
2732     function defaultPreferences() {
2733         $prefs = array();
2734         foreach ($this->_prefs as $key => $obj) {
2735             $prefs[$key] = $obj->default_value;
2736         }
2737         return $prefs;
2738     }
2739     
2740     // array of objects
2741     function getAll() {
2742         return $this->_prefs;
2743     }
2744
2745     function pack($nonpacked) {
2746         return serialize($nonpacked);
2747     }
2748
2749     function unpack($packed) {
2750         if (!$packed)
2751             return false;
2752         //$packed = base64_decode($packed);
2753         if (substr($packed, 0, 2) == "O:") {
2754             // Looks like a serialized object
2755             return unserialize($packed);
2756         }
2757         if (substr($packed, 0, 2) == "a:") {
2758             return unserialize($packed);
2759         }
2760         //trigger_error("DEBUG: Can't unpack bad UserPreferences",
2761         //E_USER_WARNING);
2762         return false;
2763     }
2764
2765     function hash () {
2766         return hash($this->_prefs);
2767     }
2768 }
2769
2770 /** TODO: new pref storage classes
2771  *  These are currently user specific and should be rewritten to be pref specific.
2772  *  i.e. $this == $user->_prefs
2773  */
2774 class CookieUserPreferences
2775 extends UserPreferences
2776 {
2777     function CookieUserPreferences ($saved_prefs = false) {
2778         //_AnonUser::_AnonUser('',$saved_prefs);
2779         UserPreferences::UserPreferences($saved_prefs);
2780     }
2781 }
2782
2783 class PageUserPreferences
2784 extends UserPreferences
2785 {
2786     function PageUserPreferences ($saved_prefs = false) {
2787         UserPreferences::UserPreferences($saved_prefs);
2788     }
2789 }
2790
2791 class PearDbUserPreferences
2792 extends UserPreferences
2793 {
2794     function PearDbUserPreferences ($saved_prefs = false) {
2795         UserPreferences::UserPreferences($saved_prefs);
2796     }
2797 }
2798
2799 class AdoDbUserPreferences
2800 extends UserPreferences
2801 {
2802     function AdoDbUserPreferences ($saved_prefs = false) {
2803         UserPreferences::UserPreferences($saved_prefs);
2804     }
2805     function getPreferences() {
2806         // override the generic slow method here for efficiency
2807         _AnonUser::getPreferences();
2808         $this->getAuthDbh();
2809         if (isset($this->_select)) {
2810             $dbh = & $this->_auth_dbi;
2811             $rs = $dbh->Execute(sprintf($this->_select,$dbh->qstr($this->_userid)));
2812             if ($rs->EOF) {
2813                 $rs->Close();
2814             } else {
2815                 $prefs_blob = $rs->fields['pref_blob'];
2816                 $rs->Close();
2817                 if ($restored_from_db = $this->_prefs->retrieve($prefs_blob)) {
2818                     $updated = $this->_prefs->updatePrefs($restored_from_db);
2819                     //$this->_prefs = new UserPreferences($restored_from_db);
2820                     return $this->_prefs;
2821                 }
2822             }
2823         }
2824         if (empty($this->_prefs->_prefs) and $this->_HomePagehandle) {
2825             if ($restored_from_page = $this->_prefs->retrieve($this->_HomePagehandle->get('pref'))) {
2826                 $updated = $this->_prefs->updatePrefs($restored_from_page);
2827                 //$this->_prefs = new UserPreferences($restored_from_page);
2828                 return $this->_prefs;
2829             }
2830         }
2831         return $this->_prefs;
2832     }
2833 }
2834
2835
2836 // $Log: not supported by cvs2svn $
2837 // Revision 1.68  2004/05/05 13:37:54  rurban
2838 // Support to remove all UserPreferences
2839 //
2840 // Revision 1.66  2004/05/03 21:44:24  rurban
2841 // fixed sf,net bug #947264: LDAP options are constants, not strings!
2842 //
2843 // Revision 1.65  2004/05/03 13:16:47  rurban
2844 // fixed UserPreferences update, esp for boolean and int
2845 //
2846 // Revision 1.64  2004/05/02 15:10:06  rurban
2847 // new finally reliable way to detect if /index.php is called directly
2848 //   and if to include lib/main.php
2849 // new global AllActionPages
2850 // SetupWiki now loads all mandatory pages: HOME_PAGE, action pages, and warns if not.
2851 // WikiTranslation what=buttons for Carsten to create the missing MacOSX buttons
2852 // PageGroupTestOne => subpages
2853 // renamed PhpWikiRss to PhpWikiRecentChanges
2854 // more docs, default configs, ...
2855 //
2856 // Revision 1.63  2004/05/01 15:59:29  rurban
2857 // more php-4.0.6 compatibility: superglobals
2858 //
2859 // Revision 1.62  2004/04/29 18:31:24  rurban
2860 // Prevent from warning where no db pref was previously stored.
2861 //
2862 // Revision 1.61  2004/04/29 17:18:19  zorloc
2863 // Fixes permission failure issues.  With PagePermissions and Disabled Actions when user did not have permission WIKIAUTH_FORBIDDEN was returned.  In WikiUser this was ok because WIKIAUTH_FORBIDDEN had a value of 11 -- thus no user could perform that action.  But WikiUserNew has a WIKIAUTH_FORBIDDEN value of -1 -- thus a user without sufficent permission to do anything.  The solution is a new high value permission level (WIKIAUTH_UNOBTAINABLE) to be the default level for access failure.
2864 //
2865 // Revision 1.60  2004/04/27 18:20:54  rurban
2866 // sf.net patch #940359 by rassie
2867 //
2868 // Revision 1.59  2004/04/26 12:35:21  rurban
2869 // POP3_AUTH_PORT deprecated, use "host:port" similar to IMAP
2870 // File_Passwd is already loaded
2871 //
2872 // Revision 1.58  2004/04/20 17:08:28  rurban
2873 // Some IniConfig fixes: prepend our private lib/pear dir
2874 //   switch from " to ' in the auth statements
2875 //   use error handling.
2876 // WikiUserNew changes for the new "'$variable'" syntax
2877 //   in the statements
2878 // TODO: optimization to put config vars into the session.
2879 //
2880 // Revision 1.57  2004/04/19 18:27:45  rurban
2881 // Prevent from some PHP5 warnings (ref args, no :: object init)
2882 //   php5 runs now through, just one wrong XmlElement object init missing
2883 // Removed unneccesary UpgradeUser lines
2884 // Changed WikiLink to omit version if current (RecentChanges)
2885 //
2886 // Revision 1.56  2004/04/19 09:13:24  rurban
2887 // new pref: googleLink
2888 //
2889 // Revision 1.54  2004/04/18 00:24:45  rurban
2890 // re-use our simple prepare: just for table prefix warnings
2891 //
2892 // Revision 1.53  2004/04/12 18:29:15  rurban
2893 // exp. Session auth for already authenticated users from another app
2894 //
2895 // Revision 1.52  2004/04/12 13:04:50  rurban
2896 // added auth_create: self-registering Db users
2897 // fixed IMAP auth
2898 // removed rating recommendations
2899 // ziplib reformatting
2900 //
2901 // Revision 1.51  2004/04/11 10:42:02  rurban
2902 // pgsrc/CreatePagePlugin
2903 //
2904 // Revision 1.50  2004/04/10 05:34:35  rurban
2905 // sf bug#830912
2906 //
2907 // Revision 1.49  2004/04/07 23:13:18  rurban
2908 // fixed pear/File_Passwd for Windows
2909 // fixed FilePassUser sessions (filehandle revive) and password update
2910 //
2911 // Revision 1.48  2004/04/06 20:00:10  rurban
2912 // Cleanup of special PageList column types
2913 // Added support of plugin and theme specific Pagelist Types
2914 // Added support for theme specific UserPreferences
2915 // Added session support for ip-based throttling
2916 //   sql table schema change: ALTER TABLE session ADD sess_ip CHAR(15);
2917 // Enhanced postgres schema
2918 // Added DB_Session_dba support
2919 //
2920 // Revision 1.47  2004/04/02 15:06:55  rurban
2921 // fixed a nasty ADODB_mysql session update bug
2922 // improved UserPreferences layout (tabled hints)
2923 // fixed UserPreferences auth handling
2924 // improved auth stability
2925 // improved old cookie handling: fixed deletion of old cookies with paths
2926 //
2927 // Revision 1.46  2004/04/01 06:29:51  rurban
2928 // better wording
2929 // RateIt also for ADODB
2930 //
2931 // Revision 1.45  2004/03/30 02:14:03  rurban
2932 // fixed yet another Prefs bug
2933 // added generic PearDb_iter
2934 // $request->appendValidators no so strict as before
2935 // added some box plugin methods
2936 // PageList commalist for condensed output
2937 //
2938 // Revision 1.44  2004/03/27 22:01:03  rurban
2939 // two catches by Konstantin Zadorozhny
2940 //
2941 // Revision 1.43  2004/03/27 19:40:09  rurban
2942 // init fix and validator reset
2943 //
2944 // Revision 1.40  2004/03/25 22:54:31  rurban
2945 // fixed HttpAuth
2946 //
2947 // Revision 1.38  2004/03/25 17:37:36  rurban
2948 // helper to patch to and from php5 (workaround for stricter parser, no macros in php)
2949 //
2950 // Revision 1.37  2004/03/25 17:00:31  rurban
2951 // more code to convert old-style pref array to new hash
2952 //
2953 // Revision 1.36  2004/03/24 19:39:02  rurban
2954 // php5 workaround code (plus some interim debugging code in XmlElement)
2955 //   php5 doesn't work yet with the current XmlElement class constructors,
2956 //   WikiUserNew does work better than php4.
2957 // rewrote WikiUserNew user upgrading to ease php5 update
2958 // fixed pref handling in WikiUserNew
2959 // added Email Notification
2960 // added simple Email verification
2961 // removed emailVerify userpref subclass: just a email property
2962 // changed pref binary storage layout: numarray => hash of non default values
2963 // print optimize message only if really done.
2964 // forced new cookie policy: delete pref cookies, use only WIKI_ID as plain string.
2965 //   prefs should be stored in db or homepage, besides the current session.
2966 //
2967 // Revision 1.35  2004/03/18 22:18:31  rurban
2968 // workaround for php5 object upgrading problem
2969 //
2970 // Revision 1.34  2004/03/18 21:41:09  rurban
2971 // fixed sqlite support
2972 // WikiUserNew: PHP5 fixes: don't assign $this (untested)
2973 //
2974 // Revision 1.33  2004/03/16 15:42:04  rurban
2975 // more fixes for undefined property warnings
2976 //
2977 // Revision 1.32  2004/03/14 16:30:52  rurban
2978 // db-handle session revivification, dba fixes
2979 //
2980 // Revision 1.31  2004/03/12 23:20:58  rurban
2981 // pref fixes (base64)
2982 //
2983 // Revision 1.30  2004/03/12 20:59:17  rurban
2984 // important cookie fix by Konstantin Zadorozhny
2985 // new editpage feature: JS_SEARCHREPLACE
2986 //
2987 // Revision 1.29  2004/03/11 13:30:47  rurban
2988 // fixed File Auth for user and group
2989 // missing only getMembersOf(Authenticated Users),getMembersOf(Every),getMembersOf(Signed Users)
2990 //
2991 // Revision 1.28  2004/03/08 18:17:09  rurban
2992 // added more WikiGroup::getMembersOf methods, esp. for special groups
2993 // fixed $LDAP_SET_OPTIONS
2994 // fixed _AuthInfo group methods
2995 //
2996 // Revision 1.27  2004/03/01 09:35:13  rurban
2997 // fixed DbPassuser pref init; lost userid
2998 //
2999 // Revision 1.26  2004/02/29 04:10:56  rurban
3000 // new POP3 auth (thanks to BiloBilo: pentothal at despammed dot com)
3001 // fixed syntax error in index.php
3002 //
3003 // Revision 1.25  2004/02/28 22:25:07  rurban
3004 // First PagePerm implementation:
3005 //
3006 // $Theme->setAnonEditUnknownLinks(false);
3007 //
3008 // Layout improvement with dangling links for mostly closed wiki's:
3009 // If false, only users with edit permissions will be presented the
3010 // special wikiunknown class with "?" and Tooltip.
3011 // If true (default), any user will see the ?, but will be presented
3012 // the PrintLoginForm on a click.
3013 //
3014 // Revision 1.24  2004/02/28 21:14:08  rurban
3015 // generally more PHPDOC docs
3016 //   see http://xarch.tu-graz.ac.at/home/rurban/phpwiki/xref/
3017 // fxied WikiUserNew pref handling: empty theme not stored, save only
3018 //   changed prefs, sql prefs improved, fixed password update,
3019 //   removed REPLACE sql (dangerous)
3020 // moved gettext init after the locale was guessed
3021 // + some minor changes
3022 //
3023 // Revision 1.23  2004/02/27 13:21:17  rurban
3024 // several performance improvements, esp. with peardb
3025 // simplified loops
3026 // storepass seperated from prefs if defined so
3027 // stacked and strict still not working
3028 //
3029 // Revision 1.22  2004/02/27 05:15:40  rurban
3030 // more stability. detected by Micki
3031 //
3032 // Revision 1.21  2004/02/26 20:43:49  rurban
3033 // new HttpAuthPassUser class (forces http auth if in the auth loop)
3034 // fixed user upgrade: don't return _PassUser in the first hand.
3035 //
3036 // Revision 1.20  2004/02/26 01:29:11  rurban
3037 // important fixes: endless loops in certain cases. minor rewrite
3038 //
3039 // Revision 1.19  2004/02/25 17:15:17  rurban
3040 // improve stability
3041 //
3042 // Revision 1.18  2004/02/24 15:20:05  rurban
3043 // fixed minor warnings: unchecked args, POST => Get urls for sortby e.g.
3044 //
3045 // Revision 1.17  2004/02/17 12:16:42  rurban
3046 // started with changePass support. not yet used.
3047 //
3048 // Revision 1.16  2004/02/15 22:23:45  rurban
3049 // oops, fixed showstopper (endless recursion)
3050 //
3051 // Revision 1.15  2004/02/15 21:34:37  rurban
3052 // PageList enhanced and improved.
3053 // fixed new WikiAdmin... plugins
3054 // editpage, Theme with exp. htmlarea framework
3055 //   (htmlarea yet committed, this is really questionable)
3056 // WikiUser... code with better session handling for prefs
3057 // enhanced UserPreferences (again)
3058 // RecentChanges for show_deleted: how should pages be deleted then?
3059 //
3060 // Revision 1.14  2004/02/15 17:30:13  rurban
3061 // workaround for lost db connnection handle on session restauration (->_auth_dbi)
3062 // fixed getPreferences() (esp. from sessions)
3063 // fixed setPreferences() (update and set),
3064 // fixed AdoDb DB statements,
3065 // update prefs only at UserPreferences POST (for testing)
3066 // unified db prefs methods (but in external pref classes yet)
3067 //
3068 // Revision 1.13  2004/02/09 03:58:12  rurban
3069 // for now default DB_SESSION to false
3070 // PagePerm:
3071 //   * not existing perms will now query the parent, and not
3072 //     return the default perm
3073 //   * added pagePermissions func which returns the object per page
3074 //   * added getAccessDescription
3075 // WikiUserNew:
3076 //   * added global ->prepare (not yet used) with smart user/pref/member table prefixing.
3077 //   * force init of authdbh in the 2 db classes
3078 // main:
3079 //   * fixed session handling (not triple auth request anymore)
3080 //   * don't store cookie prefs with sessions
3081 // stdlib: global obj2hash helper from _AuthInfo, also needed for PagePerm
3082 //
3083 // Revision 1.12  2004/02/07 10:41:25  rurban
3084 // fixed auth from session (still double code but works)
3085 // fixed GroupDB
3086 // fixed DbPassUser upgrade and policy=old
3087 // added GroupLdap
3088 //
3089 // Revision 1.11  2004/02/03 09:45:39  rurban
3090 // LDAP cleanup, start of new Pref classes
3091 //
3092 // Revision 1.10  2004/02/01 09:14:11  rurban
3093 // Started with Group_Ldap (not yet ready)
3094 // added new _AuthInfo plugin to help in auth problems (warning: may display passwords)
3095 // fixed some configurator vars
3096 // renamed LDAP_AUTH_SEARCH to LDAP_BASE_DN
3097 // changed PHPWIKI_VERSION from 1.3.8a to 1.3.8pre
3098 // USE_DB_SESSION defaults to true on SQL
3099 // changed GROUP_METHOD definition to string, not constants
3100 // changed sample user DBAuthParams from UPDATE to REPLACE to be able to
3101 //   create users. (Not to be used with external databases generally, but
3102 //   with the default internal user table)
3103 //
3104 // fixed the IndexAsConfigProblem logic. this was flawed:
3105 //   scripts which are the same virtual path defined their own lib/main call
3106 //   (hmm, have to test this better, phpwiki.sf.net/demo works again)
3107 //
3108 // Revision 1.9  2004/01/30 19:57:58  rurban
3109 // fixed DBAuthParams['pref_select']: wrong _auth_dbi object used.
3110 //
3111 // Revision 1.8  2004/01/30 18:46:15  rurban
3112 // fix "lib/WikiUserNew.php:572: Notice[8]: Undefined variable: DBParams"
3113 //
3114 // Revision 1.7  2004/01/27 23:23:39  rurban
3115 // renamed ->Username => _userid for consistency
3116 // renamed mayCheckPassword => mayCheckPass
3117 // fixed recursion problem in WikiUserNew
3118 // fixed bogo login (but not quite 100% ready yet, password storage)
3119 //
3120 // Revision 1.6  2004/01/26 09:17:49  rurban
3121 // * changed stored pref representation as before.
3122 //   the array of objects is 1) bigger and 2)
3123 //   less portable. If we would import packed pref
3124 //   objects and the object definition was changed, PHP would fail.
3125 //   This doesn't happen with an simple array of non-default values.
3126 // * use $prefs->retrieve and $prefs->store methods, where retrieve
3127 //   understands the interim format of array of objects also.
3128 // * simplified $prefs->get() and fixed $prefs->set()
3129 // * added $user->_userid and class '_WikiUser' portability functions
3130 // * fixed $user object ->_level upgrading, mostly using sessions.
3131 //   this fixes yesterdays problems with loosing authorization level.
3132 // * fixed WikiUserNew::checkPass to return the _level
3133 // * fixed WikiUserNew::isSignedIn
3134 // * added explodePageList to class PageList, support sortby arg
3135 // * fixed UserPreferences for WikiUserNew
3136 // * fixed WikiPlugin for empty defaults array
3137 // * UnfoldSubpages: added pagename arg, renamed pages arg,
3138 //   removed sort arg, support sortby arg
3139 //
3140 // Revision 1.5  2004/01/25 03:05:00  rurban
3141 // First working version, but has some problems with the current main loop.
3142 // Implemented new auth method dispatcher and policies, all the external
3143 // _PassUser classes (also for ADODB and Pear DB).
3144 // The two global funcs UserExists() and CheckPass() are probably not needed,
3145 // since the auth loop is done recursively inside the class code, upgrading
3146 // the user class within itself.
3147 // Note: When a higher user class is returned, this doesn't mean that the user
3148 // is authorized, $user->_level is still low, and only upgraded on successful
3149 // login.
3150 //
3151 // Revision 1.4  2003/12/07 19:29:48  carstenklapp
3152 // Code Housecleaning: fixed syntax errors. (php -l *.php)
3153 //
3154 // Revision 1.3  2003/12/06 19:10:46  carstenklapp
3155 // Finished off logic for determining user class, including
3156 // PassUser. Removed ability of BogoUser to save prefs into a page.
3157 //
3158 // Revision 1.2  2003/12/03 21:45:48  carstenklapp
3159 // Added admin user, password user, and preference classes. Added
3160 // password checking functions for users and the admin. (Now the easy
3161 // parts are nearly done).
3162 //
3163 // Revision 1.1  2003/12/02 05:46:36  carstenklapp
3164 // Complete rewrite of WikiUser.php.
3165 //
3166 // This should make it easier to hook in user permission groups etc. some
3167 // time in the future. Most importantly, to finally get UserPreferences
3168 // fully working properly for all classes of users: AnonUser, BogoUser,
3169 // AdminUser; whether they have a NamesakePage (PersonalHomePage) or not,
3170 // want a cookie or not, and to bring back optional AutoLogin with the
3171 // UserName stored in a cookie--something that was lost after PhpWiki had
3172 // dropped the default http auth login method.
3173 //
3174 // Added WikiUser classes which will (almost) work together with existing
3175 // UserPreferences class. Other parts of PhpWiki need to be updated yet
3176 // before this code can be hooked up.
3177 //
3178
3179 // Local Variables:
3180 // mode: php
3181 // tab-width: 8
3182 // c-basic-offset: 4
3183 // c-hanging-comment-ender-p: nil
3184 // indent-tabs-mode: nil
3185 // End:
3186 ?>