]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/WikiUserNew.php
Fixed regex for RFC822 addresses.
[SourceForge/phpwiki.git] / lib / WikiUserNew.php
1 <?php //-*-php-*-
2 rcs_id('$Id: WikiUserNew.php,v 1.127 2005-04-02 18:01:41 uckelman Exp $');
3 /* Copyright (C) 2004,2005 $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 name, authlevel and 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 config/config.ini
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  *    Update: not needed anymore. we use eval to fool the load-time syntax checker.
83  * 2004-03-24 rurban
84  * 6) enforced new cookie policy: prefs don't get stored in cookies
85  *    anymore, only in homepage and/or database, but always in the 
86  *    current session. old pref cookies will get deleted.
87  * 2004-04-04 rurban
88  * 7) Certain themes should be able to extend the predefined list 
89  *    of preferences. Display/editing is done in the theme specific userprefs.tmpl,
90  *    but storage must be extended to the Get/SetPreferences methods.
91  *    <theme>/themeinfo.php must provide CustomUserPreferences:
92  *      A list of name => _UserPreference class pairs.
93  */
94
95 define('WIKIAUTH_FORBIDDEN', -1); // Completely not allowed.
96 define('WIKIAUTH_ANON', 0);       // Not signed in.
97 define('WIKIAUTH_BOGO', 1);       // Any valid WikiWord is enough.
98 define('WIKIAUTH_USER', 2);       // Bogo user with a password.
99 define('WIKIAUTH_ADMIN', 10);     // UserName == ADMIN_USER.
100 define('WIKIAUTH_UNOBTAINABLE', 100);  // Permissions that no user can achieve
101
102 //if (!defined('COOKIE_EXPIRATION_DAYS')) define('COOKIE_EXPIRATION_DAYS', 365);
103 //if (!defined('COOKIE_DOMAIN'))          define('COOKIE_DOMAIN', '/');
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 config/config.ini 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 0
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     //FIXME: check admin membership later at checkPass. Now we cannot raise the level.
170     //$group = &WikiGroup::getGroup($GLOBALS['request']);
171     if ($UserName == ADMIN_USER)
172         return new _AdminUser($UserName);
173     /* elseif ($group->isMember(GROUP_ADMIN)) { // unneeded code
174         return _determineBogoUserOrPassUser($UserName);
175     }
176     */
177     else
178         return _determineBogoUserOrPassUser($UserName);
179 }
180
181 function _determineBogoUserOrPassUser($UserName) {
182     global $ForbiddenUser;
183
184     // Sanity check. User name is a condition of the definition of
185     // _BogoUser and _PassUser.
186     if (!$UserName)
187         return $ForbiddenUser;
188
189     // Check for password and possibly upgrade user object.
190     // $_BogoUser = new _BogoUser($UserName);
191     if (_isBogoUserAllowed() and isWikiWord($UserName)) {
192         include_once("lib/WikiUser/BogoLogin.php");
193         $_BogoUser = new _BogoLoginPassUser($UserName);
194         if ($_BogoUser->userExists() or $GLOBALS['request']->getArg('auth'))
195             return $_BogoUser;
196     }
197     if (_isUserPasswordsAllowed()) {
198         // PassUsers override BogoUsers if a password is stored
199         if (isset($_BogoUser) and isset($_BogoUser->_prefs) 
200             and $_BogoUser->_prefs->get('passwd'))
201             return new _PassUser($UserName, $_BogoUser->_prefs);
202         else { 
203             $_PassUser = new _PassUser($UserName,
204                                        isset($_BogoUser) ? $_BogoUser->_prefs : false);
205             if ($_PassUser->userExists() or $GLOBALS['request']->getArg('auth'))
206                 return $_PassUser;
207         }
208     }
209     // No Bogo- or PassUser exists, or
210     // passwords are not allowed, and bogo is disallowed too.
211     // (Only the admin can sign in).
212     return $ForbiddenUser;
213 }
214
215 /**
216  * Primary WikiUser function, called by lib/main.php.
217  * 
218  * This determines the user's type and returns an appropriate user
219  * object. lib/main.php then querys the resultant object for password
220  * validity as necessary.
221  *
222  * If an _AnonUser object is returned, the user may only browse pages
223  * (and save prefs in a cookie).
224  *
225  * To disable access but provide prefs the global $ForbiddenUser class 
226  * is returned. (was previously false)
227  * 
228  */
229 function WikiUser ($UserName = '') {
230     global $ForbiddenUser;
231
232     //Maybe: Check sessionvar for username & save username into
233     //sessionvar (may be more appropriate to do this in lib/main.php).
234     if ($UserName) {
235         $ForbiddenUser = new _ForbiddenUser($UserName);
236         // Found a user name.
237         return _determineAdminUserOrOtherUser($UserName);
238     }
239     elseif (!empty($_SESSION['userid'])) {
240         // Found a user name.
241         $ForbiddenUser = new _ForbiddenUser($_SESSION['userid']);
242         return _determineAdminUserOrOtherUser($_SESSION['userid']);
243     }
244     else {
245         // Check for autologin pref in cookie and possibly upgrade
246         // user object to another type.
247         $_AnonUser = new _AnonUser();
248         if ($UserName = $_AnonUser->_userid && $_AnonUser->_prefs->get('autologin')) {
249             // Found a user name.
250             $ForbiddenUser = new _ForbiddenUser($UserName);
251             return _determineAdminUserOrOtherUser($UserName);
252         }
253         else {
254             $ForbiddenUser = new _ForbiddenUser();
255             if (_isAnonUserAllowed())
256                 return $_AnonUser;
257             return $ForbiddenUser; // User must sign in to browse pages.
258         }
259         return $ForbiddenUser;     // User must sign in with a password.
260     }
261     /*
262     trigger_error("DEBUG: Note: End of function reached in WikiUser." . " "
263                   . "Unexpectedly, an appropriate user class could not be determined.");
264     return $ForbiddenUser; // Failsafe.
265     */
266 }
267
268 /**
269  * WikiUser.php use the name 'WikiUser'
270  */
271 function WikiUserClassname() {
272     return '_WikiUser';
273 }
274
275
276 /**
277  * Upgrade olduser by copying properties from user to olduser.
278  * We are not sure yet, for which php's a simple $this = $user works reliably,
279  * (on php4 it works ok, on php5 it's currently disallowed on the parser level)
280  * that's why try it the hard way.
281  */
282 function UpgradeUser ($olduser, $user) {
283     if (isa($user,'_WikiUser') and isa($olduser,'_WikiUser')) {
284         // populate the upgraded class $olduser with the values from the new user object
285         //only _auth_level, _current_method, _current_index,
286         if (!empty($user->_level) and 
287             $user->_level > $olduser->_level)
288             $olduser->_level = $user->_level;
289         if (!empty($user->_current_index) and
290             $user->_current_index > $olduser->_current_index) {
291             $olduser->_current_index = $user->_current_index;
292             $olduser->_current_method = $user->_current_method;
293         }
294         if (!empty($user->_authmethod))
295             $olduser->_authmethod = $user->_authmethod;
296         /*
297         foreach (get_object_vars($user) as $k => $v) {
298             if (!empty($v)) $olduser->$k = $v;  
299         }
300         */
301         $olduser->hasHomePage(); // revive db handle, because these don't survive sessions
302         //$GLOBALS['request']->_user = $olduser;
303         return $olduser;
304     } else {
305         return false;
306     }
307 }
308
309 /**
310  * Probably not needed, since we use the various user objects methods so far.
311  * Anyway, here it is, looping through all available objects.
312  */
313 function UserExists ($UserName) {
314     global $request;
315     if (!($user = $request->getUser()))
316         $user = WikiUser($UserName);
317     if (!$user) 
318         return false;
319     if ($user->userExists($UserName)) {
320         $request->_user = $user;
321         return true;
322     }
323     if (isa($user,'_BogoUser'))
324         $user = new _PassUser($UserName,$user->_prefs);
325     $class = $user->nextClass();
326     if ($user = new $class($UserName,$user->_prefs)) {
327         return $user->userExists($UserName);
328     }
329     $request->_user = $GLOBALS['ForbiddenUser'];
330     return false;
331 }
332
333 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
334
335 /** 
336  * Base WikiUser class.
337  */
338 class _WikiUser
339 {
340      var $_userid = '';
341      var $_level = WIKIAUTH_ANON;
342      var $_prefs = false;
343      var $_HomePagehandle = false;
344
345     // constructor
346     function _WikiUser($UserName='', $prefs=false) {
347
348         $this->_userid = $UserName;
349         $this->_HomePagehandle = false;
350         if ($UserName) {
351             $this->hasHomePage();
352         }
353         if (empty($this->_prefs)) {
354             if ($prefs) $this->_prefs = $prefs;
355             else $this->getPreferences();
356         }
357     }
358
359     function UserName() {
360         if (!empty($this->_userid))
361             return $this->_userid;
362     }
363
364     function getPreferences() {
365         trigger_error("DEBUG: Note: undefined _WikiUser class trying to load prefs." . " "
366                       . "New subclasses of _WikiUser must override this function.");
367         return false;
368     }
369
370     function setPreferences($prefs, $id_only) {
371         trigger_error("DEBUG: Note: undefined _WikiUser class trying to save prefs." 
372                       . " "
373                       . "New subclasses of _WikiUser must override this function.");
374         return false;
375     }
376
377     function userExists() {
378         return $this->hasHomePage();
379     }
380
381     function checkPass($submitted_password) {
382         // By definition, an undefined user class cannot sign in.
383         trigger_error("DEBUG: Warning: undefined _WikiUser class trying to sign in." 
384                       . " "
385                       . "New subclasses of _WikiUser must override this function.");
386         return false;
387     }
388
389     // returns page_handle to user's home page or false if none
390     function hasHomePage() {
391         if ($this->_userid) {
392             if (!empty($this->_HomePagehandle) and is_object($this->_HomePagehandle)) {
393                 return $this->_HomePagehandle->exists();
394             }
395             else {
396                 // check db again (maybe someone else created it since
397                 // we logged in.)
398                 global $request;
399                 $this->_HomePagehandle = $request->getPage($this->_userid);
400                 return $this->_HomePagehandle->exists();
401             }
402         }
403         // nope
404         return false;
405     }
406
407     // innocent helper: case-insensitive position in _auth_methods
408     function array_position ($string, $array) {
409         $string = strtolower($string);
410         for ($found = 0; $found < count($array); $found++) {
411             if (strtolower($array[$found]) == $string)
412                 return $found;
413         }
414         return false;
415     }
416
417     function nextAuthMethodIndex() {
418         if (empty($this->_auth_methods)) 
419             $this->_auth_methods = $GLOBALS['USER_AUTH_ORDER'];
420         if (empty($this->_current_index)) {
421             if (strtolower(get_class($this)) != '_passuser') {
422                 $this->_current_method = substr(get_class($this),1,-8);
423                 $this->_current_index = $this->array_position($this->_current_method,
424                                                               $this->_auth_methods);
425             } else {
426                 $this->_current_index = -1;
427             }
428         }
429         $this->_current_index++;
430         if ($this->_current_index >= count($this->_auth_methods))
431             return false;
432         $this->_current_method = $this->_auth_methods[$this->_current_index];
433         return $this->_current_index;
434     }
435
436     function AuthMethod($index = false) {
437         return $this->_auth_methods[ $index === false 
438                                      ? count($this->_auth_methods)-1 
439                                      : $index];
440     }
441
442     // upgrade the user object
443     function nextClass() {
444         $method = $this->AuthMethod($this->nextAuthMethodIndex());
445         include_once("lib/WikiUser/$method.php");
446         return "_".$method."PassUser";
447     }
448
449     //Fixme: for _HttpAuthPassUser
450     function PrintLoginForm (&$request, $args, $fail_message = false,
451                              $seperate_page = false) {
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         if ($GLOBALS['LANG'] != DEFAULT_LANGUAGE)
456             update_locale(DEFAULT_LANGUAGE);
457         $userid = $this->_userid;
458         $require_level = 0;
459         extract($args); // fixme
460
461         $require_level = max(0, min(WIKIAUTH_ADMIN, (int)$require_level));
462
463         $pagename = $request->getArg('pagename');
464         $nocache = 1;
465         $login = Template('login',
466                           compact('pagename', 'userid', 'require_level',
467                                   'fail_message', 'pass_required', 'nocache'));
468         // check if the html template was already processed
469         $seperate_page = $seperate_page ? true : !alreadyTemplateProcessed('html');
470         if ($seperate_page) {
471             $page = $request->getPage($pagename);
472             $revision = $page->getCurrentRevision();
473             return GeneratePage($login,_("Sign In"),$revision);
474         } else {
475             return $login->printExpansion();
476         }
477     }
478
479     /** Signed in but not password checked or empty password.
480      */
481     function isSignedIn() {
482         return (isa($this,'_BogoUser') or isa($this,'_PassUser'));
483     }
484
485     /** This is password checked for sure.
486      */
487     function isAuthenticated() {
488         //return isa($this,'_PassUser');
489         //return isa($this,'_BogoUser') || isa($this,'_PassUser');
490         return $this->_level >= WIKIAUTH_BOGO;
491     }
492
493     function isAdmin () {
494         static $group; 
495         if ($this->_level == WIKIAUTH_ADMIN) return true;
496         if (!$this->isSignedIn()) return false;
497         if (!$this->isAuthenticated()) return false;
498
499         if (!$group) $group = &$GLOBALS['request']->getGroup();
500         return ($this->_level > WIKIAUTH_BOGO and $group->isMember(GROUP_ADMIN));
501     }
502
503     /** Name or IP for a signed user. UserName could come from a cookie e.g.
504      */
505     function getId () {
506         return ( $this->UserName()
507                  ? $this->UserName()
508                  : $GLOBALS['request']->get('REMOTE_ADDR') );
509     }
510
511     /** Name for an authenticated user. No IP here.
512      */
513     function getAuthenticatedId() {
514         return ( $this->isAuthenticated()
515                  ? $this->_userid
516                  : ''); //$GLOBALS['request']->get('REMOTE_ADDR') );
517     }
518
519     function hasAuthority ($require_level) {
520         return $this->_level >= $require_level;
521     }
522
523     function isValidName ($userid = false) {
524         if (!$userid)
525             $userid = $this->_userid;
526         return preg_match("/^[\w\.@\-]+$/",$userid) and strlen($userid) < 32;
527     }
528
529     /**
530      * Called on an auth_args POST request, such as login, logout or signin.
531      * TODO: Check BogoLogin users with empty password. (self-signed users)
532      */
533     function AuthCheck ($postargs) {
534         // Normalize args, and extract.
535         $keys = array('userid', 'passwd', 'require_level', 'login', 'logout',
536                       'cancel');
537         foreach ($keys as $key)
538             $args[$key] = isset($postargs[$key]) ? $postargs[$key] : false;
539         extract($args);
540         $require_level = max(0, min(WIKIAUTH_ADMIN, (int)$require_level));
541
542         if ($logout) { // Log out
543             if (method_exists($GLOBALS['request']->_user, "logout")) { //_HttpAuthPassUser
544                 $GLOBALS['request']->_user->logout();
545             }
546             $user = new _AnonUser();
547             $user->_userid = '';
548             $user->_level = WIKIAUTH_ANON;
549             return $user; 
550         } elseif ($cancel)
551             return false;        // User hit cancel button.
552         elseif (!$login && !$userid)
553             return false;       // Nothing to do?
554
555         if (!$this->isValidName($userid))
556             return _("Invalid username.");;
557
558         $authlevel = $this->checkPass($passwd === false ? '' : $passwd);
559         if ($authlevel <= 0) { // anon or forbidden
560             if ($passwd)
561                 return _("Invalid password.");
562             else
563                 return _("Invalid password or userid.");
564         } elseif ($authlevel < $require_level) { // auth ok, but not enough 
565             if (!empty($this->_current_method) and strtolower(get_class($this)) == '_passuser') 
566             {
567                 // upgrade class
568                 $class = "_" . $this->_current_method . "PassUser";
569                 include_once("lib/WikiUser/".$this->_current_method.".php");
570                 $user = new $class($userid,$this->_prefs);
571                 if (!check_php_version(5))
572                     eval("\$this = \$user;");
573                 // /*PHP5 patch*/$this = $user;
574                 $this->_level = $authlevel;
575                 return $user;
576             }
577             $this->_userid = $userid;
578             $this->_level = $authlevel;
579             return _("Insufficient permissions.");
580         }
581
582         // Successful login.
583         //$user = $GLOBALS['request']->_user;
584         if (!empty($this->_current_method) and 
585             strtolower(get_class($this)) == '_passuser') 
586         {
587             // upgrade class
588             $class = "_" . $this->_current_method . "PassUser";
589             include_once("lib/WikiUser/".$this->_current_method.".php");
590             $user = new $class($userid,$this->_prefs);
591             if (!check_php_version(5))
592                 eval("\$this = \$user;");
593             // /*PHP5 patch*/$this = $user;
594             $user->_level = $authlevel;
595             return $user;
596         }
597         $this->_userid = $userid;
598         $this->_level = $authlevel;
599         return $this;
600     }
601
602 }
603
604 /**
605  * Not authenticated in user, but he may be signed in. Basicly with view access only.
606  * prefs are stored in cookies, but only the userid.
607  */
608 class _AnonUser
609 extends _WikiUser
610 {
611     var $_level = WIKIAUTH_ANON;        // var in php-5.0.0RC1 deprecated
612
613     /** Anon only gets to load and save prefs in a cookie, that's it.
614      */
615     function getPreferences() {
616         global $request;
617
618         if (empty($this->_prefs))
619             $this->_prefs = new UserPreferences;
620         $UserName = $this->UserName();
621
622         // Try to read deprecated 1.3.x style cookies
623         if ($cookie = $request->cookies->get_old(WIKI_NAME)) {
624             if (! $unboxedcookie = $this->_prefs->retrieve($cookie)) {
625                 trigger_error(_("Empty Preferences or format of UserPreferences cookie not recognised.") 
626                               . "\n"
627                               . sprintf("%s='%s'", WIKI_NAME, $cookie)
628                               . "\n"
629                               . _("Default preferences will be used."),
630                               E_USER_NOTICE);
631             }
632             /**
633              * Only set if it matches the UserName who is
634              * signing in or if this really is an Anon login (no
635              * username). (Remember, _BogoUser and higher inherit this
636              * function too!).
637              */
638             if (! $UserName || $UserName == @$unboxedcookie['userid']) {
639                 $updated = $this->_prefs->updatePrefs($unboxedcookie);
640                 //$this->_prefs = new UserPreferences($unboxedcookie);
641                 $UserName = @$unboxedcookie['userid'];
642                 if (is_string($UserName) and (substr($UserName,0,2) != 's:'))
643                     $this->_userid = $UserName;
644                 else 
645                     $UserName = false;    
646             }
647             // v1.3.8 policy: don't set PhpWiki cookies, only plaintext WIKI_ID cookies
648             if (!headers_sent())
649                 $request->deleteCookieVar(WIKI_NAME);
650         }
651         // Try to read deprecated 1.3.4 style cookies
652         if (! $UserName and ($cookie = $request->cookies->get_old("WIKI_PREF2"))) {
653             if (! $unboxedcookie = $this->_prefs->retrieve($cookie)) {
654                 if (! $UserName || $UserName == $unboxedcookie['userid']) {
655                     $updated = $this->_prefs->updatePrefs($unboxedcookie);
656                     //$this->_prefs = new UserPreferences($unboxedcookie);
657                     $UserName = $unboxedcookie['userid'];
658                     if (is_string($UserName) and (substr($UserName,0,2) != 's:'))
659                         $this->_userid = $UserName;
660                     else 
661                         $UserName = false;    
662                 }
663                 if (!headers_sent())
664                     $request->deleteCookieVar("WIKI_PREF2");
665             }
666         }
667         if (! $UserName ) {
668             // Try reading userid from old PhpWiki cookie formats:
669             if ($cookie = $request->cookies->get_old('WIKI_ID')) {
670                 if (is_string($cookie) and (substr($cookie,0,2) != 's:'))
671                     $UserName = $cookie;
672                 elseif (is_array($cookie) and !empty($cookie['userid']))
673                     $UserName = $cookie['userid'];
674             }
675             if (! $UserName and !headers_sent())
676                 $request->deleteCookieVar("WIKI_ID");
677             else
678                 $this->_userid = $UserName;
679         }
680
681         // initializeTheme() needs at least an empty object
682         /*
683          if (empty($this->_prefs))
684             $this->_prefs = new UserPreferences;
685         */
686         return $this->_prefs;
687     }
688
689     /** _AnonUser::setPreferences(): Save prefs in a cookie and session and update all global vars
690      *
691      * Allow for multiple wikis in same domain. Encode only the
692      * _prefs array of the UserPreference object. Ideally the
693      * prefs array should just be imploded into a single string or
694      * something so it is completely human readable by the end
695      * user. In that case stricter error checking will be needed
696      * when loading the cookie.
697      */
698     function setPreferences($prefs, $id_only=false) {
699         if (!is_object($prefs)) {
700             if (is_object($this->_prefs)) {
701                 $updated = $this->_prefs->updatePrefs($prefs);
702                 $prefs =& $this->_prefs;
703             } else {
704                 // update the prefs values from scratch. This could leed to unnecessary
705                 // side-effects: duplicate emailVerified, ...
706                 $this->_prefs = new UserPreferences($prefs);
707                 $updated = true;
708             }
709         } else {
710             if (!isset($this->_prefs))
711                 $this->_prefs =& $prefs;
712             else
713                 $updated = $this->_prefs->isChanged($prefs);
714         }
715         if ($updated) {
716             if ($id_only and !headers_sent()) {
717                 global $request;
718                 // new 1.3.8 policy: no array cookies, only plain userid string as in 
719                 // the pre 1.3.x versions.
720                 // prefs should be stored besides the session in the homepagehandle or in a db.
721                 $request->setCookieVar('WIKI_ID', $this->_userid,
722                                        COOKIE_EXPIRATION_DAYS, COOKIE_DOMAIN);
723                 //$request->setCookieVar(WIKI_NAME, array('userid' => $prefs->get('userid')),
724                 //                       COOKIE_EXPIRATION_DAYS, COOKIE_DOMAIN);
725             }
726         }
727         $packed = $prefs->store();
728         $unpacked = $prefs->unpack($packed);
729         if (count($unpacked)) {
730             foreach (array('_method','_select','_update') as $param) {
731                 if (!empty($this->_prefs->{$param}))
732                     $prefs->{$param} = $this->_prefs->{$param};
733             }
734             $this->_prefs = $prefs;
735         }
736         return $updated;
737     }
738
739     function userExists() {
740         return true;
741     }
742
743     function checkPass($submitted_password) {
744         return false;
745         // this might happen on a old-style signin button.
746
747         // By definition, the _AnonUser does not HAVE a password
748         // (compared to _BogoUser, who has an EMPTY password).
749         trigger_error("DEBUG: Warning: _AnonUser unexpectedly asked to checkPass()." . " "
750                       . "Check isa(\$user, '_PassUser'), or: isa(\$user, '_AdminUser') etc. first." . " "
751                       . "New subclasses of _WikiUser must override this function.");
752         return false;
753     }
754
755 }
756
757 /** 
758  * Helper class to finish the PassUser auth loop. 
759  * This is added automatically to USER_AUTH_ORDER.
760  */
761 class _ForbiddenUser
762 extends _AnonUser
763 {
764     var $_level = WIKIAUTH_FORBIDDEN;
765
766     function checkPass($submitted_password) {
767         return WIKIAUTH_FORBIDDEN;
768     }
769
770     function userExists() {
771         if ($this->_HomePagehandle) return true;
772         return false;
773     }
774 }
775
776 /**
777  * Do NOT extend _BogoUser to other classes, for checkPass()
778  * security. (In case of defects in code logic of the new class!)
779  * The intermediate step between anon and passuser.
780  * We also have the _BogoLoginPassUser class with stricter 
781  * password checking, which fits into the auth loop.
782  * Note: This class is not called anymore by WikiUser()
783  */
784 class _BogoUser
785 extends _AnonUser
786 {
787     function userExists() {
788         if (isWikiWord($this->_userid)) {
789             $this->_level = WIKIAUTH_BOGO;
790             return true;
791         } else {
792             $this->_level = WIKIAUTH_ANON;
793             return false;
794         }
795     }
796
797     function checkPass($submitted_password) {
798         // By definition, BogoUser has an empty password.
799         $this->userExists();
800         return $this->_level;
801     }
802 }
803
804 class _PassUser
805 extends _AnonUser
806 /**
807  * Called if ALLOW_USER_PASSWORDS and Anon and Bogo failed.
808  *
809  * The classes for all subsequent auth methods extend from this class. 
810  * This handles the auth method type dispatcher according $USER_AUTH_ORDER, 
811  * the three auth method policies first-only, strict and stacked
812  * and the two methods for prefs: homepage or database, 
813  * if $DBAuthParams['pref_select'] is defined.
814  *
815  * Default is PersonalPage auth and prefs.
816  * 
817  * @author: Reini Urban
818  * @tables: pref
819  */
820 {
821     var $_auth_dbi, $_prefs;
822     var $_current_method, $_current_index;
823
824     // check and prepare the auth and pref methods only once
825     function _PassUser($UserName='', $prefs=false) {
826         //global $DBAuthParams, $DBParams;
827         if ($UserName) {
828             if (!$this->isValidName($UserName))
829                 return false;
830             $this->_userid = $UserName;
831             if ($this->hasHomePage())
832                 $this->_HomePagehandle = $GLOBALS['request']->getPage($this->_userid);
833         }
834         $this->_authmethod = substr(get_class($this),1,-8);
835         if ($this->_authmethod == 'a') $this->_authmethod = 'admin';
836
837         // Check the configured Prefs methods
838         $dbi = $this->getAuthDbh();
839         $dbh = $GLOBALS['request']->getDbh();
840         if ( $dbi and !isset($this->_prefs->_select) and $dbh->getAuthParam('pref_select')) {
841             if (!$this->_prefs) {
842                 $this->_prefs = new UserPreferences();
843                 $need_pref = true;
844             }
845             $this->_prefs->_method = $dbh->getParam('dbtype');
846             $this->_prefs->_select = $this->prepare($dbh->getAuthParam('pref_select'), "userid");
847             // read-only prefs?
848             if ( !isset($this->_prefs->_update) and $dbh->getAuthParam('pref_update')) {
849                 $this->_prefs->_update = $this->prepare($dbh->getAuthParam('pref_update'), 
850                                                         array("userid", "pref_blob"));
851             }
852         } else {
853             if (!$this->_prefs) {
854                 $this->_prefs = new UserPreferences();
855                 $need_pref = true;
856             }
857             $this->_prefs->_method = 'HomePage';
858         }
859         
860         if (! $this->_prefs or isset($need_pref) ) {
861             if ($prefs) $this->_prefs = $prefs;
862             else $this->getPreferences();
863         }
864         
865         // Upgrade to the next parent _PassUser class. Avoid recursion.
866         if ( strtolower(get_class($this)) === '_passuser' ) {
867             //auth policy: Check the order of the configured auth methods
868             // 1. first-only: Upgrade the class here in the constructor
869             // 2. old:       ignore USER_AUTH_ORDER and try to use all available methods as 
870             ///              in the previous PhpWiki releases (slow)
871             // 3. strict:    upgrade the class after checking the user existance in userExists()
872             // 4. stacked:   upgrade the class after the password verification in checkPass()
873             // Methods: PersonalPage, HttpAuth, DB, Ldap, Imap, File
874             //if (!defined('USER_AUTH_POLICY')) define('USER_AUTH_POLICY','old');
875             if (defined('USER_AUTH_POLICY')) {
876                 // policy 1: only pre-define one method for all users
877                 if (USER_AUTH_POLICY === 'first-only') {
878                     $class = $this->nextClass();
879                     return new $class($UserName,$this->_prefs);
880                 }
881                 // Use the default behaviour from the previous versions:
882                 elseif (USER_AUTH_POLICY === 'old') {
883                     // Default: try to be smart
884                     // On php5 we can directly return and upgrade the Object,
885                     // before we have to upgrade it manually.
886                     if (!empty($GLOBALS['PHP_AUTH_USER']) or !empty($_SERVER['REMOTE_USER'])) {
887                         include_once("lib/WikiUser/HttpAuth.php");
888                         if (check_php_version(5))
889                             return new _HttpAuthPassUser($UserName,$this->_prefs);
890                         else {
891                             $user = new _HttpAuthPassUser($UserName,$this->_prefs);
892                             eval("\$this = \$user;");
893                             // /*PHP5 patch*/$this = $user;
894                             return $user;
895                         }
896                     } elseif (in_array('Db', $dbh->getAuthParam('USER_AUTH_ORDER')) and
897                               $dbh->getAuthParam('auth_check') and
898                               ($dbh->getAuthParam('auth_dsn') or $dbh->getParam('dsn'))) {
899                         if (check_php_version(5))
900                             return new _DbPassUser($UserName,$this->_prefs);
901                         else {
902                             $user = new _DbPassUser($UserName,$this->_prefs);
903                             eval("\$this = \$user;");
904                             // /*PHP5 patch*/$this = $user;
905                             return $user;
906                         }
907                     } elseif (in_array('LDAP', $dbh->getAuthParam('USER_AUTH_ORDER')) and
908                               defined('LDAP_AUTH_HOST') and defined('LDAP_BASE_DN') and 
909                               function_exists('ldap_connect')) {
910                         include_once("lib/WikiUser/LDAP.php");
911                         if (check_php_version(5))
912                             return new _LDAPPassUser($UserName,$this->_prefs);
913                         else {
914                             $user = new _LDAPPassUser($UserName,$this->_prefs);
915                             eval("\$this = \$user;");
916                             // /*PHP5 patch*/$this = $user;
917                             return $user;
918                         }
919                     } elseif (in_array('IMAP', $dbh->getAuthParam('USER_AUTH_ORDER')) and
920                               defined('IMAP_AUTH_HOST') and function_exists('imap_open')) {
921                         include_once("lib/WikiUser/IMAP.php");
922                         if (check_php_version(5))
923                             return new _IMAPPassUser($UserName,$this->_prefs);
924                         else {
925                             $user = new _IMAPPassUser($UserName,$this->_prefs);
926                             eval("\$this = \$user;");
927                             // /*PHP5 patch*/$this = $user;
928                             return $user;
929                         }
930                     } elseif (in_array('File', $dbh->getAuthParam('USER_AUTH_ORDER')) and
931                               defined('AUTH_USER_FILE') and file_exists(AUTH_USER_FILE)) {
932                         include_once("lib/WikiUser/File.php");
933                         if (check_php_version(5))
934                             return new _FilePassUser($UserName, $this->_prefs);
935                         else {
936                             $user = new _FilePassUser($UserName, $this->_prefs);
937                             eval("\$this = \$user;");
938                             // /*PHP5 patch*/$this = $user;
939                             return $user;
940                         }
941                     } else {
942                         include_once("lib/WikiUser/PersonalPage.php");
943                         if (check_php_version(5))
944                             return new _PersonalPagePassUser($UserName,$this->_prefs);
945                         else {
946                             $user = new _PersonalPagePassUser($UserName,$this->_prefs);
947                             eval("\$this = \$user;");
948                             // /*PHP5 patch*/$this = $user;
949                             return $user;
950                         }
951                     }
952                 }
953                 else 
954                     // else use the page methods defined in _PassUser.
955                     return $this;
956             }
957         }
958     }
959
960     function getAuthDbh () {
961         global $request; //, $DBParams, $DBAuthParams;
962
963         $dbh = $request->getDbh();
964         // session restauration doesn't re-connect to the database automatically, 
965         // so dirty it here, to force a reconnect.
966         if (isset($this->_auth_dbi)) {
967             if (($dbh->getParam('dbtype') == 'SQL') and empty($this->_auth_dbi->connection))
968                 unset($this->_auth_dbi);
969             if (($dbh->getParam('dbtype') == 'ADODB') and empty($this->_auth_dbi->_connectionID))
970                 unset($this->_auth_dbi);
971         }
972         if (empty($this->_auth_dbi)) {
973             if ($dbh->getParam('dbtype') != 'SQL' and $dbh->getParam('dbtype') != 'ADODB')
974                 return false;
975             if (empty($GLOBALS['DBAuthParams']))
976                 return false;
977             if (!$dbh->getAuthParam('auth_dsn')) {
978                 $dbh = $request->getDbh(); // use phpwiki database 
979             } elseif ($dbh->getAuthParam('auth_dsn') == $dbh->getParam('dsn')) {
980                 $dbh = $request->getDbh(); // same phpwiki database 
981             } else { // use another external database handle. needs PHP >= 4.1
982                 $local_params = array_merge($GLOBALS['DBParams'],$GLOBALS['DBAuthParams']);
983                 $local_params['dsn'] = $local_params['auth_dsn'];
984                 $dbh = WikiDB::open($local_params);
985             }       
986             $this->_auth_dbi =& $dbh->_backend->_dbh;    
987         }
988         return $this->_auth_dbi;
989     }
990
991     function _normalize_stmt_var($var, $oldstyle = false) {
992         static $valid_variables = array('userid','password','pref_blob','groupname');
993         // old-style: "'$userid'"
994         // new-style: '"\$userid"' or just "userid"
995         $new = str_replace(array("'",'"','\$','$'),'',$var);
996         if (!in_array($new, $valid_variables)) {
997             trigger_error("Unknown DBAuthParam statement variable: ". $new, E_USER_ERROR);
998             return false;
999         }
1000         return !$oldstyle ? "'$".$new."'" : '\$'.$new;
1001     }
1002
1003     // TODO: use it again for the auth and member tables
1004     function prepare ($stmt, $variables, $oldstyle = false) {
1005         global $request;
1006         $dbi = $request->getDbh();
1007         $this->getAuthDbh();
1008         // "'\$userid"' => %s
1009         // variables can be old-style: '"\$userid"' or new-style: "'$userid'" or just "userid"
1010         // old-style strings don't survive pear/Config/IniConfig treatment, that's why we changed it.
1011         $new = array();
1012         if (is_array($variables)) {
1013             for ($i=0; $i < count($variables); $i++) { 
1014                 $var = $this->_normalize_stmt_var($variables[$i], $oldstyle);
1015                 if (!$var)
1016                     trigger_error(sprintf("DbAuthParams: Undefined or empty statement variable %s in %s",
1017                                           $variables[$i], $stmt), E_USER_WARNING);
1018                 $variables[$i] = $var;
1019                 if (!$var) $new[] = '';
1020                 else $new[] = '%s';
1021             }
1022         } else {
1023             $var = $this->_normalize_stmt_var($variables, $oldstyle);
1024             if (!$var)
1025                 trigger_error(sprintf("DbAuthParams: Undefined or empty statement variable %s in %s",
1026                                       $variables, $stmt), E_USER_WARNING);
1027             $variables = $var;
1028             if (!$var) $new = ''; 
1029             else $new = '%s'; 
1030         }
1031         $prefix = $dbi->getParam('prefix');
1032         // probably prefix table names if in same database
1033         if ($prefix and isset($this->_auth_dbi) and isset($dbi->_backend->_dbh) and 
1034             ($dbi->getAuthParam('auth_dsn') and $dbi->getParam('dsn') == $dbi->getAuthParam('auth_dsn')))
1035         {
1036             if (!stristr($stmt, $prefix)) {
1037                 //Do it automatically for the lazy admin? Esp. on sf.net it's nice to have
1038                 trigger_error("TODO: Need to prefix the DBAuthParam tablename in config/config.ini:\n  $stmt",
1039                               E_USER_WARNING);
1040                 $stmt = str_replace(array(" user "," pref "," member "),
1041                                     array(" ".$prefix."user ",
1042                                           " ".$prefix."pref ",
1043                                           " ".$prefix."member "),$stmt);
1044             }
1045         }
1046         // Preparate the SELECT statement, for ADODB and PearDB (MDB not).
1047         // Simple sprintf-style.
1048         $new_stmt = str_replace($variables, $new, $stmt);
1049         if ($new_stmt == $stmt) {
1050             if ($oldstyle) {
1051                 trigger_error(sprintf("DbAuthParams: Invalid statement in %s",
1052                                   $stmt), E_USER_WARNING);
1053             } else {
1054                 trigger_error(sprintf("DbAuthParams: Old statement quoting style in %s",
1055                                   $stmt), E_USER_WARNING);
1056                 $new_stmt = $this->prepare($stmt, $variables, 'oldstyle');
1057             }
1058         }
1059         return $new_stmt;
1060     }
1061
1062     function getPreferences() {
1063         if (!empty($this->_prefs->_method)) {
1064             if ($this->_prefs->_method == 'ADODB') {
1065                 include_once("lib/WikiUser/Db.php");
1066                 include_once("lib/WikiUser/AdoDb.php");
1067                 _AdoDbPassUser::_AdoDbPassUser($this->_userid,$this->_prefs);
1068                 return _AdoDbPassUser::getPreferences();
1069             } elseif ($this->_prefs->_method == 'SQL') {
1070                 include_once("lib/WikiUser/Db.php");
1071                 include_once("lib/WikiUser/PearDb.php");
1072                 _PearDbPassUser::_PearDbPassUser($this->_userid,$this->_prefs);
1073                 return _PearDbPassUser::getPreferences();
1074             }
1075         }
1076
1077         // We don't necessarily have to read the cookie first. Since
1078         // the user has a password, the prefs stored in the homepage
1079         // cannot be arbitrarily altered by other Bogo users.
1080         _AnonUser::getPreferences();
1081         // User may have deleted cookie, retrieve from his
1082         // PersonalPage if there is one.
1083         if ($this->_HomePagehandle) {
1084             if ($restored_from_page = $this->_prefs->retrieve
1085                 ($this->_HomePagehandle->get('pref'))) {
1086                 $updated = $this->_prefs->updatePrefs($restored_from_page,'init');
1087                 //$this->_prefs = new UserPreferences($restored_from_page);
1088                 return $this->_prefs;
1089             }
1090         }
1091         return $this->_prefs;
1092     }
1093
1094     function setPreferences($prefs, $id_only=false) {
1095         if (!empty($this->_prefs->_method)) {
1096             if ($this->_prefs->_method == 'ADODB') {
1097                 _AdoDbPassUser::_AdoDbPassUser($this->_userid,$prefs);
1098                 return _AdoDbPassUser::setPreferences($prefs, $id_only);
1099             }
1100             elseif ($this->_prefs->_method == 'SQL') {
1101                 _PearDbPassUser::_PearDbPassUser($this->_userid, $prefs);
1102                 return _PearDbPassUser::setPreferences($prefs, $id_only);
1103             }
1104         }
1105         if (_AnonUser::setPreferences($prefs, $id_only)) {
1106             // Encode only the _prefs array of the UserPreference object
1107             if ($this->_HomePagehandle and !$id_only) {
1108                 $this->_HomePagehandle->set('pref', $this->_prefs->store());
1109             }
1110         }
1111         return;
1112     }
1113
1114     function mayChangePass() {
1115         return true;
1116     }
1117
1118     //The default method is getting the password from prefs. 
1119     // child methods obtain $stored_password from external auth.
1120     function userExists() {
1121         //if ($this->_HomePagehandle) return true;
1122         $class = $this->nextClass();
1123         while ($user = new $class($this->_userid, $this->_prefs)) {
1124             if (!check_php_version(5))
1125                 eval("\$this = \$user;");
1126             // /*PHP5 patch*/$this = $user;
1127             UpgradeUser($this,$user);
1128             if ($user->userExists()) {
1129                 return true;
1130             }
1131             // prevent endless loop. does this work on all PHP's?
1132             // it just has to set the classname, what it correctly does.
1133             $class = $user->nextClass();
1134             if ($class == "_ForbiddenPassUser")
1135                 return false;
1136         }
1137         return false;
1138     }
1139
1140     //The default method is getting the password from prefs. 
1141     // child methods obtain $stored_password from external auth.
1142     function checkPass($submitted_password) {
1143         $stored_password = $this->_prefs->get('passwd');
1144         if ($this->_checkPass($submitted_password, $stored_password)) {
1145             $this->_level = WIKIAUTH_USER;
1146             return $this->_level;
1147         } else {
1148             if ((USER_AUTH_POLICY === 'strict') and $this->userExists()) {
1149                 $this->_level = WIKIAUTH_FORBIDDEN;
1150                 return $this->_level;
1151             }
1152             return $this->_tryNextPass($submitted_password);
1153         }
1154     }
1155
1156
1157     function _checkPassLength($submitted_password) {
1158         if (strlen($submitted_password) < PASSWORD_LENGTH_MINIMUM) {
1159             trigger_error(_("The length of the password is shorter than the system policy allows."));
1160             return false;
1161         }
1162         return true;
1163     }
1164
1165     /**
1166      * The basic password checker for all PassUser objects.
1167      * Uses global ENCRYPTED_PASSWD and PASSWORD_LENGTH_MINIMUM.
1168      * Empty passwords are always false!
1169      * PASSWORD_LENGTH_MINIMUM is enforced here and in the preference set method.
1170      * @see UserPreferences::set
1171      *
1172      * DBPassUser password's have their own crypt definition.
1173      * That's why DBPassUser::checkPass() doesn't call this method, if 
1174      * the db password method is 'plain', which means that the DB SQL 
1175      * statement just returns 1 or 0. To use CRYPT() or PASSWORD() and 
1176      * don't store plain passwords in the DB.
1177      * 
1178      * TODO: remove crypt() function check from config.php:396 ??
1179      */
1180     function _checkPass($submitted_password, $stored_password) {
1181         if (!empty($submitted_password)) {
1182             // This works only on plaintext passwords.
1183             if (!ENCRYPTED_PASSWD and (strlen($stored_password) < PASSWORD_LENGTH_MINIMUM)) {
1184                 // With the EditMetaData plugin
1185                 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."));
1186                 return false;
1187             }
1188             if (!$this->_checkPassLength($submitted_password)) {
1189                 return false;
1190             }
1191             if (ENCRYPTED_PASSWD) {
1192                 // Verify against encrypted password.
1193                 if (function_exists('crypt')) {
1194                     if (crypt($submitted_password, $stored_password) == $stored_password )
1195                         return true; // matches encrypted password
1196                     else
1197                         return false;
1198                 }
1199                 else {
1200                     trigger_error(_("The crypt function is not available in this version of PHP.") . " "
1201                                   . _("Please set ENCRYPTED_PASSWD to false in config/config.ini and probably change ADMIN_PASSWD."),
1202                                   E_USER_WARNING);
1203                     return false;
1204                 }
1205             }
1206             else {
1207                 // Verify against cleartext password.
1208                 if ($submitted_password == $stored_password)
1209                     return true;
1210                 else {
1211                     // Check whether we forgot to enable ENCRYPTED_PASSWD
1212                     if (function_exists('crypt')) {
1213                         if (crypt($submitted_password, $stored_password) == $stored_password) {
1214                             trigger_error(_("Please set ENCRYPTED_PASSWD to true in config/config.ini."),
1215                                           E_USER_WARNING);
1216                             return true;
1217                         }
1218                     }
1219                 }
1220             }
1221         }
1222         return false;
1223     }
1224
1225     /** The default method is storing the password in prefs. 
1226      *  Child methods (DB, File) may store in external auth also, but this 
1227      *  must be explicitly enabled.
1228      *  This may be called by plugin/UserPreferences or by ->SetPreferences()
1229      */
1230     function changePass($submitted_password) {
1231         $stored_password = $this->_prefs->get('passwd');
1232         // check if authenticated
1233         if (!$this->isAuthenticated()) return false;
1234         if (ENCRYPTED_PASSWD) {
1235             $submitted_password = crypt($submitted_password);
1236         }
1237         // check other restrictions, with side-effects only.
1238         $result = $this->_checkPass($submitted_password, $stored_password);
1239         if ($stored_password != $submitted_password) {
1240             $this->_prefs->set('passwd', $submitted_password);
1241             //update the storage (session, homepage, ...)
1242             $this->SetPreferences($this->_prefs);
1243             return true;
1244         }
1245         //Todo: return an error msg to the caller what failed? 
1246         // same password or no privilege
1247         return ENCRYPTED_PASSWD ? true : false;
1248     }
1249
1250     function _tryNextPass($submitted_password) {
1251         if (DEBUG & _DEBUG_LOGIN) {
1252             $class = strtolower(get_class($this));
1253             if (substr($class,-10) == "dbpassuser") $class = "_dbpassuser";
1254             $GLOBALS['USER_AUTH_ERROR'][$class] = 'wrongpass';
1255         }
1256         if (USER_AUTH_POLICY === 'strict') {
1257             $class = $this->nextClass();
1258             if ($user = new $class($this->_userid,$this->_prefs)) {
1259                 if ($user->userExists()) {
1260                     return $user->checkPass($submitted_password);
1261                 }
1262             }
1263         }
1264         if (USER_AUTH_POLICY === 'stacked' or USER_AUTH_POLICY === 'old') {
1265             $class = $this->nextClass();
1266             if ($user = new $class($this->_userid,$this->_prefs))
1267                 return $user->checkPass($submitted_password);
1268         }
1269         return $this->_level;
1270     }
1271
1272     function _tryNextUser() {
1273         if (DEBUG & _DEBUG_LOGIN) {
1274             $class = strtolower(get_class($this));
1275             if (substr($class,-10) == "dbpassuser") $class = "_dbpassuser";
1276             $GLOBALS['USER_AUTH_ERROR'][$class] = 'nosuchuser';
1277         }
1278         if (USER_AUTH_POLICY === 'strict') {
1279             $class = $this->nextClass();
1280             while ($user = new $class($this->_userid,$this->_prefs)) {
1281                 if (!check_php_version(5))
1282                     eval("\$this = \$user;");
1283                 // /*PHP5 patch*/$this = $user;
1284                 //$user = UpgradeUser($this, $user);
1285                 if ($user->userExists()) {
1286                     return true;
1287                 }
1288                 $class = $this->nextClass();
1289             }
1290         }
1291         return false;
1292     }
1293
1294 }
1295
1296 /**
1297  * Insert more auth classes here...
1298  * For example a customized db class for another db connection 
1299  * or a socket-based auth server.
1300  *
1301  */
1302
1303
1304 /**
1305  * For security, this class should not be extended. Instead, extend
1306  * from _PassUser (think of this as unix "root").
1307  *
1308  * FIXME: This should be a singleton class. Only ADMIN_USER may be of class AdminUser!
1309  * Other members of the Administrators group must raise their level otherwise somehow.
1310  * Currently every member is a AdminUser, which will not work for the various 
1311  * storage methods.
1312  */
1313 class _AdminUser
1314 extends _PassUser
1315 {
1316     function mayChangePass() {
1317         return false;
1318     }
1319     function checkPass($submitted_password) {
1320         if ($this->_userid == ADMIN_USER)
1321             $stored_password = ADMIN_PASSWD;
1322         else {
1323             // Should not happen! Only ADMIN_USER should use this class.
1324             // return $this->_tryNextPass($submitted_password); // ???
1325             // TODO: safety check if really member of the ADMIN group?
1326             $stored_password = $this->_pref->get('passwd');
1327         }
1328         if ($this->_checkPass($submitted_password, $stored_password)) {
1329             $this->_level = WIKIAUTH_ADMIN;
1330             if (!empty($GLOBALS['HTTP_SERVER_VARS']['PHP_AUTH_USER']) and class_exists("_HttpAuthPassUser")) {
1331                 // fake http auth
1332                 _HttpAuthPassUser::_fake_auth($this->_userid, $submitted_password);
1333             }
1334             return $this->_level;
1335         } else {
1336             return $this->_tryNextPass($submitted_password);
1337             //$this->_level = WIKIAUTH_ANON;
1338             //return $this->_level;
1339         }
1340     }
1341
1342     function storePass($submitted_password) {
1343         if ($this->_userid == ADMIN_USER)
1344             return false;
1345         else {
1346             // should not happen! only ADMIN_USER should use this class.
1347             return parent::storePass($submitted_password);
1348         }
1349     }
1350 }
1351
1352 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1353 /**
1354  * Various data classes for the preference types, 
1355  * to support get, set, sanify (range checking, ...)
1356  * update() will do the neccessary side-effects if a 
1357  * setting gets changed (theme, language, ...)
1358 */
1359
1360 class _UserPreference
1361 {
1362     var $default_value;
1363
1364     function _UserPreference ($default_value) {
1365         $this->default_value = $default_value;
1366     }
1367
1368     function sanify ($value) {
1369         return (string)$value;
1370     }
1371
1372     function get ($name) {
1373         if (isset($this->{$name}))
1374             return $this->{$name};
1375         else 
1376             return $this->default_value;
1377     }
1378
1379     function getraw ($name) {
1380         if (!empty($this->{$name}))
1381             return $this->{$name};
1382     }
1383
1384     // stores the value as $this->$name, and not as $this->value (clever?)
1385     function set ($name, $value) {
1386         $return = 0;
1387         $value = $this->sanify($value);
1388         if ($this->get($name) != $value) {
1389             $this->update($value);
1390             $return = 1;
1391         }
1392         if ($value != $this->default_value) {
1393             $this->{$name} = $value;
1394         } else {
1395             unset($this->{$name});
1396         }
1397         return $return;
1398     }
1399
1400     // default: no side-effects 
1401     function update ($value) {
1402         ;
1403     }
1404 }
1405
1406 class _UserPreference_numeric
1407 extends _UserPreference
1408 {
1409     function _UserPreference_numeric ($default, $minval = false,
1410                                       $maxval = false) {
1411         $this->_UserPreference((double)$default);
1412         $this->_minval = (double)$minval;
1413         $this->_maxval = (double)$maxval;
1414     }
1415
1416     function sanify ($value) {
1417         $value = (double)$value;
1418         if ($this->_minval !== false && $value < $this->_minval)
1419             $value = $this->_minval;
1420         if ($this->_maxval !== false && $value > $this->_maxval)
1421             $value = $this->_maxval;
1422         return $value;
1423     }
1424 }
1425
1426 class _UserPreference_int
1427 extends _UserPreference_numeric
1428 {
1429     function _UserPreference_int ($default, $minval = false, $maxval = false) {
1430         $this->_UserPreference_numeric((int)$default, (int)$minval, (int)$maxval);
1431     }
1432
1433     function sanify ($value) {
1434         return (int)parent::sanify((int)$value);
1435     }
1436 }
1437
1438 class _UserPreference_bool
1439 extends _UserPreference
1440 {
1441     function _UserPreference_bool ($default = false) {
1442         $this->_UserPreference((bool)$default);
1443     }
1444
1445     function sanify ($value) {
1446         if (is_array($value)) {
1447             /* This allows for constructs like:
1448              *
1449              *   <input type="hidden" name="pref[boolPref][]" value="0" />
1450              *   <input type="checkbox" name="pref[boolPref][]" value="1" />
1451              *
1452              * (If the checkbox is not checked, only the hidden input
1453              * gets sent. If the checkbox is sent, both inputs get
1454              * sent.)
1455              */
1456             foreach ($value as $val) {
1457                 if ($val)
1458                     return true;
1459             }
1460             return false;
1461         }
1462         return (bool) $value;
1463     }
1464 }
1465
1466 class _UserPreference_language
1467 extends _UserPreference
1468 {
1469     function _UserPreference_language ($default = DEFAULT_LANGUAGE) {
1470         $this->_UserPreference($default);
1471     }
1472
1473     // FIXME: check for valid locale
1474     function sanify ($value) {
1475         // Revert to DEFAULT_LANGUAGE if user does not specify
1476         // language in UserPreferences or chooses <system language>.
1477         if ($value == '' or empty($value))
1478             $value = DEFAULT_LANGUAGE;
1479
1480         return (string) $value;
1481     }
1482     
1483     function update ($newvalue) {
1484         if (! $this->_init ) {
1485             // invalidate etag to force fresh output
1486             $GLOBALS['request']->setValidators(array('%mtime' => false));
1487             update_locale($newvalue ? $newvalue : $GLOBALS['LANG']);
1488         }
1489     }
1490 }
1491
1492 class _UserPreference_theme
1493 extends _UserPreference
1494 {
1495     function _UserPreference_theme ($default = THEME) {
1496         $this->_UserPreference($default);
1497     }
1498
1499     function sanify ($value) {
1500         if (!empty($value) and FindFile($this->_themefile($value)))
1501             return $value;
1502         return $this->default_value;
1503     }
1504
1505     function update ($newvalue) {
1506         global $WikiTheme;
1507         // invalidate etag to force fresh output
1508         if (! $this->_init )
1509             $GLOBALS['request']->setValidators(array('%mtime' => false));
1510         if ($newvalue)
1511             include_once($this->_themefile($newvalue));
1512         if (empty($WikiTheme))
1513             include_once($this->_themefile(THEME));
1514     }
1515
1516     function _themefile ($theme) {
1517         return "themes/$theme/themeinfo.php";
1518     }
1519 }
1520
1521 class _UserPreference_notify
1522 extends _UserPreference
1523 {
1524     function sanify ($value) {
1525         if (!empty($value))
1526             return $value;
1527         else
1528             return $this->default_value;
1529     }
1530
1531     /** update to global user prefs: side-effect on set notify changes
1532      * use a global_data notify hash:
1533      * notify = array('pagematch' => array(userid => ('email' => mail, 
1534      *                                                'verified' => 0|1),
1535      *                                     ...),
1536      *                ...);
1537      */
1538     function update ($value) {
1539         if (!empty($this->_init)) return;
1540         $dbh = $GLOBALS['request']->getDbh();
1541         $notify = $dbh->get('notify');
1542         if (empty($notify))
1543             $data = array();
1544         else 
1545             $data =& $notify;
1546         // expand to existing pages only or store matches?
1547         // for now we store (glob-style) matches which is easier for the user
1548         $pages = $this->_page_split($value);
1549         // Limitation: only current user.
1550         $user = $GLOBALS['request']->getUser();
1551         if (!$user or !method_exists($user,'UserName')) return;
1552         // This fails with php5 and a WIKI_ID cookie:
1553         $userid = $user->UserName();
1554         $email  = $user->_prefs->get('email');
1555         $verified = $user->_prefs->_prefs['email']->getraw('emailVerified');
1556         // check existing notify hash and possibly delete pages for email
1557         if (!empty($data)) {
1558             foreach ($data as $page => $users) {
1559                 if (isset($data[$page][$userid]) and !in_array($page, $pages)) {
1560                     unset($data[$page][$userid]);
1561                 }
1562                 if (count($data[$page]) == 0)
1563                     unset($data[$page]);
1564             }
1565         }
1566         // add the new pages
1567         if (!empty($pages)) {
1568             foreach ($pages as $page) {
1569                 if (!isset($data[$page]))
1570                     $data[$page] = array();
1571                 if (!isset($data[$page][$userid])) {
1572                     // should we really store the verification notice here or 
1573                     // check it dynamically at every page->save?
1574                     if ($verified) {
1575                         $data[$page][$userid] = array('email' => $email,
1576                                                       'verified' => $verified);
1577                     } else {
1578                         $data[$page][$userid] = array('email' => $email);
1579                     }
1580                 }
1581             }
1582         }
1583         // store users changes
1584         $dbh->set('notify',$data);
1585     }
1586
1587     /** split the user-given comma or whitespace delimited pagenames
1588      *  to array
1589      */
1590     function _page_split($value) {
1591         return preg_split('/[\s,]+/',$value,-1,PREG_SPLIT_NO_EMPTY);
1592     }
1593 }
1594
1595 class _UserPreference_email
1596 extends _UserPreference
1597 {
1598     function sanify($value) {
1599         // check for valid email address
1600         if ($this->get('email') == $value and $this->getraw('emailVerified'))
1601             return $value;
1602         // hack!
1603         if ($value == 1 or $value === true)
1604             return $value;
1605         list($ok,$msg) = ValidateMail($value,'noconnect');
1606         if ($ok) {
1607             return $value;
1608         } else {
1609             trigger_error("E-Mail Validation Error: ".$msg, E_USER_WARNING);
1610             return $this->default_value;
1611         }
1612     }
1613     
1614     /** Side-effect on email changes:
1615      * Send a verification mail or for now just a notification email.
1616      * For true verification (value = 2), we'd need a mailserver hook.
1617      */
1618     function update($value) {
1619         if (!empty($this->_init)) return;
1620         $verified = $this->getraw('emailVerified');
1621         // hack!
1622         if (($value == 1 or $value === true) and $verified)
1623             return;
1624         if (!empty($value) and !$verified) {
1625             list($ok,$msg) = ValidateMail($value);
1626             if ($ok and mail($value,"[".WIKI_NAME ."] "._("Email Verification"),
1627                      sprintf(_("Welcome to %s!\nYour email account is verified and\nwill be used to send page change notifications.\nSee %s"),
1628                              WIKI_NAME, WikiURL($GLOBALS['request']->getArg('pagename'),'',true))))
1629                 $this->set('emailVerified',1);
1630         }
1631     }
1632 }
1633
1634 /** Check for valid email address
1635     fixed version from http://www.zend.com/zend/spotlight/ev12apr.php
1636     Note: too strict, Bug #1053681
1637  */
1638 function ValidateMail($email, $noconnect=false) {
1639     $HTTP_HOST = $GLOBALS['request']->get('HTTP_HOST');
1640
1641     // if this check is too strict (like invalid mail addresses in a local network only)
1642     // uncomment the following line:
1643     // return array(true,"not validated");
1644     // see http://sourceforge.net/tracker/index.php?func=detail&aid=1053681&group_id=6121&atid=106121
1645
1646     $result = array();
1647
1648     // This is Paul Warren's (pdw@ex-parrot.com) monster regex for RFC822
1649     // addresses, from the Perl module Mail::RFC822::Address, reduced to
1650     // accept single RFC822 addresses without comments only. (The original
1651     // accepts groups and properly commented addresses also.)
1652     $lwsp = "(?:(?:\\r\\n)?[ \\t])";
1653
1654     $specials = '()<>@,;:\\\\".\\[\\]';
1655     $controls = '\\000-\\031';
1656
1657     $dtext = "[^\\[\\]\\r\\\\]";
1658     $domain_literal = "\\[(?:$dtext|\\\\.)*\\]$lwsp*";
1659
1660     $quoted_string = "\"(?:[^\\\"\\r\\\\]|\\\\.|$lwsp)*\"$lwsp*";
1661
1662     $atom = "[^$specials $controls]+(?:$lwsp+|\\Z|(?=[\\[\"$specials]))";
1663     $word = "(?:$atom|$quoted_string)";
1664     $localpart = "$word(?:\\.$lwsp*$word)*";
1665
1666     $sub_domain = "(?:$atom|$domain_literal)";
1667     $domain = "$sub_domain(?:\\.$lwsp*$sub_domain)*";
1668
1669     $addr_spec = "$localpart\@$lwsp*$domain";
1670
1671     $phrase = "$word*";
1672     $route = "(?:\@$domain(?:,\@$lwsp*$domain)*:$lwsp*)";
1673     $route_addr = "\\<$lwsp*$route?$addr_spec\\>$lwsp*";
1674     $mailbox = "(?:$addr_spec|$phrase$route_addr)";
1675
1676     $rfc822re = "/$lwsp*$mailbox/";
1677
1678     if (!preg_match($rfc822re, $email)) {
1679         $result[0] = false;
1680         $result[1] = sprintf(_("E-Mail address '%s' is not properly formatted"), $email);
1681         return $result;
1682     }
1683     if ($noconnect)
1684       return array(true,sprintf(_("E-Mail address '%s' is properly formatted"), $email));
1685
1686     list ( $Username, $Domain ) = split ("@", $email);
1687     //Todo: getmxrr workaround on windows or manual input field to verify it manually
1688     if (!isWindows() and getmxrr($Domain, $MXHost)) { // avoid warning on Windows. 
1689         $ConnectAddress = $MXHost[0];
1690     } else {
1691         $ConnectAddress = $Domain;
1692     }
1693     $Connect = @fsockopen ( $ConnectAddress, 25 );
1694     if ($Connect) {
1695         if (ereg("^220", $Out = fgets($Connect, 1024))) {
1696             fputs ($Connect, "HELO $HTTP_HOST\r\n");
1697             $Out = fgets ( $Connect, 1024 );
1698             fputs ($Connect, "MAIL FROM: <".$email.">\r\n");
1699             $From = fgets ( $Connect, 1024 );
1700             fputs ($Connect, "RCPT TO: <".$email.">\r\n");
1701             $To = fgets ($Connect, 1024);
1702             fputs ($Connect, "QUIT\r\n");
1703             fclose($Connect);
1704             if (!ereg ("^250", $From)) {
1705                 $result[0]=false;
1706                 $result[1]="Server rejected address: ". $From;
1707                 return $result;
1708             }
1709             if (!ereg ( "^250", $To )) {
1710                 $result[0]=false;
1711                 $result[1]="Server rejected address: ". $To;
1712                 return $result;
1713             }
1714         } else {
1715             $result[0] = false;
1716             $result[1] = "No response from server";
1717             return $result;
1718           }
1719     }  else {
1720         $result[0]=false;
1721         $result[1]="Can not connect E-Mail server.";
1722         return $result;
1723     }
1724     $result[0]=true;
1725     $result[1]="E-Mail address '$email' appears to be valid.";
1726     return $result;
1727 } // end of function 
1728
1729 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1730
1731 /**
1732  * UserPreferences
1733  * 
1734  * This object holds the $request->_prefs subobjects.
1735  * A simple packed array of non-default values get's stored as cookie,
1736  * homepage, or database, which are converted to the array of 
1737  * ->_prefs objects.
1738  * We don't store the objects, because otherwise we will
1739  * not be able to upgrade any subobject. And it's a waste of space also.
1740  *
1741  */
1742 class UserPreferences
1743 {
1744     function UserPreferences($saved_prefs = false) {
1745         // userid stored too, to ensure the prefs are being loaded for
1746         // the correct (currently signing in) userid if stored in a
1747         // cookie.
1748         // Update: for db prefs we disallow passwd. 
1749         // userid is needed for pref reflexion. current pref must know its username, 
1750         // if some app needs prefs from different users, different from current user.
1751         $this->_prefs
1752             = array(
1753                     'userid'        => new _UserPreference(''),
1754                     'passwd'        => new _UserPreference(''),
1755                     'autologin'     => new _UserPreference_bool(),
1756                     //'emailVerified' => new _UserPreference_emailVerified(), 
1757                     //fixed: store emailVerified as email parameter, 1.3.8
1758                     'email'         => new _UserPreference_email(''),
1759                     'notifyPages'   => new _UserPreference_notify(''), // 1.3.8
1760                     'theme'         => new _UserPreference_theme(THEME),
1761                     'lang'          => new _UserPreference_language(DEFAULT_LANGUAGE),
1762                     'editWidth'     => new _UserPreference_int(EDITWIDTH_DEFAULT_COLS,
1763                                                                EDITWIDTH_MIN_COLS,
1764                                                                EDITWIDTH_MAX_COLS),
1765                     'noLinkIcons'   => new _UserPreference_bool(),    // 1.3.8 
1766                     'editHeight'    => new _UserPreference_int(EDITHEIGHT_DEFAULT_ROWS,
1767                                                                EDITHEIGHT_MIN_ROWS,
1768                                                                EDITHEIGHT_DEFAULT_ROWS),
1769                     'timeOffset'    => new _UserPreference_numeric(TIMEOFFSET_DEFAULT_HOURS,
1770                                                                    TIMEOFFSET_MIN_HOURS,
1771                                                                    TIMEOFFSET_MAX_HOURS),
1772                     'relativeDates' => new _UserPreference_bool(),
1773                     'googleLink'    => new _UserPreference_bool(), // 1.3.10
1774                     );
1775         // add custom theme-specific pref types:
1776         // FIXME: on theme changes the wiki_user session pref object will fail. 
1777         // We will silently ignore this.
1778         if (!empty($customUserPreferenceColumns))
1779             $this->_prefs = array_merge($this->_prefs,$customUserPreferenceColumns);
1780 /*
1781         if (isset($this->_method) and $this->_method == 'SQL') {
1782             //unset($this->_prefs['userid']);
1783             unset($this->_prefs['passwd']);
1784         }
1785 */
1786         if (is_array($saved_prefs)) {
1787             foreach ($saved_prefs as $name => $value)
1788                 $this->set($name, $value);
1789         }
1790     }
1791
1792     function _getPref($name) {
1793         if ($name == 'emailVerified')
1794             $name = 'email';
1795         if (!isset($this->_prefs[$name])) {
1796             if ($name == 'passwd2') return false;
1797             if ($name == 'passwd') return false;
1798             trigger_error("$name: unknown preference", E_USER_NOTICE);
1799             return false;
1800         }
1801         return $this->_prefs[$name];
1802     }
1803     
1804     // get the value or default_value of the subobject
1805     function get($name) {
1806         if ($_pref = $this->_getPref($name))
1807             if ($name == 'emailVerified')
1808                 return $_pref->getraw($name);
1809             else
1810                 return $_pref->get($name);
1811         else
1812             return false;  
1813     }
1814
1815     // check and set the new value in the subobject
1816     function set($name, $value) {
1817         $pref = $this->_getPref($name);
1818         if ($pref === false)
1819             return false;
1820
1821         /* do it here or outside? */
1822         if ($name == 'passwd' and 
1823             defined('PASSWORD_LENGTH_MINIMUM') and 
1824             strlen($value) <= PASSWORD_LENGTH_MINIMUM ) {
1825             //TODO: How to notify the user?
1826             return false;
1827         }
1828         /*
1829         if ($name == 'theme' and $value == '')
1830            return true;
1831         */
1832         if (!isset($pref->{$value}) or $pref->{$value} != $pref->default_value) {
1833             if ($name == 'emailVerified') $newvalue = $value;
1834             else $newvalue = $pref->sanify($value);
1835             $pref->set($name, $newvalue);
1836         }
1837         $this->_prefs[$name] =& $pref;
1838         return true;
1839     }
1840     /**
1841      * use init to avoid update on set
1842      */
1843     function updatePrefs($prefs, $init = false) {
1844         $count = 0;
1845         if ($init) $this->_init = $init;
1846         if (is_object($prefs)) {
1847             $type = 'emailVerified'; $obj =& $this->_prefs['email'];
1848             $obj->_init = $init;
1849             if ($obj->get($type) !== $prefs->get($type)) {
1850                 if ($obj->set($type,$prefs->get($type)))
1851                     $count++;
1852             }
1853             foreach (array_keys($this->_prefs) as $type) {
1854                 $obj =& $this->_prefs[$type];
1855                 $obj->_init = $init;
1856                 if ($prefs->get($type) !== $obj->get($type)) {
1857                     // special systemdefault prefs: (probably not needed)
1858                     if ($type == 'theme' and $prefs->get($type) == '' and 
1859                         $obj->get($type) == THEME) continue;
1860                     if ($type == 'lang' and $prefs->get($type) == '' and 
1861                         $obj->get($type) == DEFAULT_LANGUAGE) continue;
1862                     if ($this->_prefs[$type]->set($type,$prefs->get($type)))
1863                         $count++;
1864                 }
1865             }
1866         } elseif (is_array($prefs)) {
1867             //unset($this->_prefs['userid']);
1868             /*
1869             if (isset($this->_method) and 
1870                  ($this->_method == 'SQL' or $this->_method == 'ADODB')) {
1871                 unset($this->_prefs['passwd']);
1872             }
1873             */
1874             // emailVerified at first, the rest later
1875             $type = 'emailVerified'; $obj =& $this->_prefs['email'];
1876             $obj->_init = $init;
1877             if (isset($prefs[$type]) and $obj->get($type) !== $prefs[$type]) {
1878                 if ($obj->set($type,$prefs[$type]))
1879                     $count++;
1880             }
1881             foreach (array_keys($this->_prefs) as $type) {
1882                 $obj =& $this->_prefs[$type];
1883                 $obj->_init = $init;
1884                 if (!isset($prefs[$type]) and isa($obj,"_UserPreference_bool")) 
1885                     $prefs[$type] = false;
1886                 if (isset($prefs[$type]) and isa($obj,"_UserPreference_int"))
1887                     $prefs[$type] = (int) $prefs[$type];
1888                 if (isset($prefs[$type]) and $obj->get($type) != $prefs[$type]) {
1889                     // special systemdefault prefs:
1890                     if ($type == 'theme' and $prefs[$type] == '' and 
1891                         $obj->get($type) == THEME) continue;
1892                     if ($type == 'lang' and $prefs[$type] == '' and 
1893                         $obj->get($type) == DEFAULT_LANGUAGE) continue;
1894                     if ($obj->set($type,$prefs[$type]))
1895                         $count++;
1896                 }
1897             }
1898         }
1899         return $count;
1900     }
1901
1902     // For now convert just array of objects => array of values
1903     // Todo: the specialized subobjects must override this.
1904     function store() {
1905         $prefs = array();
1906         foreach ($this->_prefs as $name => $object) {
1907             if ($value = $object->getraw($name))
1908                 $prefs[$name] = $value;
1909             if ($name == 'email' and ($value = $object->getraw('emailVerified')))
1910                 $prefs['emailVerified'] = $value;
1911             if ($name == 'passwd' and $value and ENCRYPTED_PASSWD) {
1912                 $prefs['passwd'] = crypt($value);
1913             }
1914         }
1915         return $this->pack($prefs);
1916     }
1917
1918     // packed string or array of values => array of values
1919     // Todo: the specialized subobjects must override this.
1920     function retrieve($packed) {
1921         if (is_string($packed) and (substr($packed, 0, 2) == "a:"))
1922             $packed = unserialize($packed);
1923         if (!is_array($packed)) return false;
1924         $prefs = array();
1925         foreach ($packed as $name => $packed_pref) {
1926             if (is_string($packed_pref) and substr($packed_pref, 0, 2) == "O:") {
1927                 //legacy: check if it's an old array of objects
1928                 // Looks like a serialized object. 
1929                 // This might fail if the object definition does not exist anymore.
1930                 // object with ->$name and ->default_value vars.
1931                 $pref =  @unserialize($packed_pref);
1932                 if (empty($pref))
1933                     $pref = @unserialize(base64_decode($packed_pref));
1934                 $prefs[$name] = $pref->get($name);
1935             // fix old-style prefs
1936             } elseif (is_numeric($name) and is_array($packed_pref)) {
1937                 if (count($packed_pref) == 1) {
1938                     list($name,$value) = each($packed_pref);
1939                     $prefs[$name] = $value;
1940                 }
1941             } else {
1942                 $prefs[$name] = @unserialize($packed_pref);
1943                 if (empty($prefs[$name]))
1944                     $prefs[$name] = @unserialize(base64_decode($packed_pref));
1945                 // patched by frederik@pandora.be
1946                 if (empty($prefs[$name]))
1947                     $prefs[$name] = $packed_pref;
1948             }
1949         }
1950         return $prefs;
1951     }
1952
1953     /**
1954      * Check if the given prefs object is different from the current prefs object
1955      */
1956     function isChanged($other) {
1957         foreach ($this->_prefs as $type => $obj) {
1958             if ($obj->get($type) !== $other->get($type))
1959                 return true;
1960         }
1961         return false;
1962     }
1963
1964     function defaultPreferences() {
1965         $prefs = array();
1966         foreach ($this->_prefs as $key => $obj) {
1967             $prefs[$key] = $obj->default_value;
1968         }
1969         return $prefs;
1970     }
1971     
1972     // array of objects
1973     function getAll() {
1974         return $this->_prefs;
1975     }
1976
1977     function pack($nonpacked) {
1978         return serialize($nonpacked);
1979     }
1980
1981     function unpack($packed) {
1982         if (!$packed)
1983             return false;
1984         //$packed = base64_decode($packed);
1985         if (substr($packed, 0, 2) == "O:") {
1986             // Looks like a serialized object
1987             return unserialize($packed);
1988         }
1989         if (substr($packed, 0, 2) == "a:") {
1990             return unserialize($packed);
1991         }
1992         //trigger_error("DEBUG: Can't unpack bad UserPreferences",
1993         //E_USER_WARNING);
1994         return false;
1995     }
1996
1997     function hash () {
1998         return hash($this->_prefs);
1999     }
2000 }
2001
2002 /** TODO: new pref storage classes
2003  *  These are currently user specific and should be rewritten to be pref specific.
2004  *  i.e. $this == $user->_prefs
2005  */
2006 /*
2007 class CookieUserPreferences
2008 extends UserPreferences
2009 {
2010     function CookieUserPreferences ($saved_prefs = false) {
2011         //_AnonUser::_AnonUser('',$saved_prefs);
2012         UserPreferences::UserPreferences($saved_prefs);
2013     }
2014 }
2015
2016 class PageUserPreferences
2017 extends UserPreferences
2018 {
2019     function PageUserPreferences ($saved_prefs = false) {
2020         UserPreferences::UserPreferences($saved_prefs);
2021     }
2022 }
2023
2024 class PearDbUserPreferences
2025 extends UserPreferences
2026 {
2027     function PearDbUserPreferences ($saved_prefs = false) {
2028         UserPreferences::UserPreferences($saved_prefs);
2029     }
2030 }
2031
2032 class AdoDbUserPreferences
2033 extends UserPreferences
2034 {
2035     function AdoDbUserPreferences ($saved_prefs = false) {
2036         UserPreferences::UserPreferences($saved_prefs);
2037     }
2038     function getPreferences() {
2039         // override the generic slow method here for efficiency
2040         _AnonUser::getPreferences();
2041         $this->getAuthDbh();
2042         if (isset($this->_select)) {
2043             $dbh = & $this->_auth_dbi;
2044             $rs = $dbh->Execute(sprintf($this->_select,$dbh->qstr($this->_userid)));
2045             if ($rs->EOF) {
2046                 $rs->Close();
2047             } else {
2048                 $prefs_blob = $rs->fields['pref_blob'];
2049                 $rs->Close();
2050                 if ($restored_from_db = $this->_prefs->retrieve($prefs_blob)) {
2051                     $updated = $this->_prefs->updatePrefs($restored_from_db);
2052                     //$this->_prefs = new UserPreferences($restored_from_db);
2053                     return $this->_prefs;
2054                 }
2055             }
2056         }
2057         if (empty($this->_prefs->_prefs) and $this->_HomePagehandle) {
2058             if ($restored_from_page = $this->_prefs->retrieve
2059                 ($this->_HomePagehandle->get('pref'))) {
2060                 $updated = $this->_prefs->updatePrefs($restored_from_page);
2061                 //$this->_prefs = new UserPreferences($restored_from_page);
2062                 return $this->_prefs;
2063             }
2064         }
2065         return $this->_prefs;
2066     }
2067 }
2068 */
2069
2070 // $Log: not supported by cvs2svn $
2071 // Revision 1.126  2005/02/28 20:30:46  rurban
2072 // some stupid code for _AdminUser (probably not needed)
2073 //
2074 // Revision 1.125  2005/02/08 13:25:50  rurban
2075 // encrypt password. fix strict logic.
2076 // both bugs reported by Mikhail Vladimirov
2077 //
2078 // Revision 1.124  2005/01/30 23:11:00  rurban
2079 // allow self-creating passuser on login
2080 //
2081 // Revision 1.123  2005/01/25 06:58:21  rurban
2082 // reformatting
2083 //
2084 // Revision 1.122  2005/01/08 22:51:56  rurban
2085 // remove deprecated workaround
2086 //
2087 // Revision 1.121  2004/12/19 00:58:01  rurban
2088 // Enforce PASSWORD_LENGTH_MINIMUM in almost all PassUser checks,
2089 // Provide an errormessage if so. Just PersonalPage and BogoLogin not.
2090 // Simplify httpauth logout handling and set sessions for all methods.
2091 // fix main.php unknown index "x" getLevelDescription() warning.
2092 //
2093 // Revision 1.120  2004/12/17 12:31:57  rurban
2094 // better logout, fake httpauth not yet
2095 //
2096 // Revision 1.119  2004/11/21 11:59:17  rurban
2097 // remove final \n to be ob_cache independent
2098 //
2099 // Revision 1.118  2004/11/19 19:22:03  rurban
2100 // ModeratePage part1: change status
2101 //
2102 // Revision 1.117  2004/11/10 15:29:21  rurban
2103 // * requires newer Pear_DB (as the internal one): quote() uses now escapeSimple for strings
2104 // * ACCESS_LOG_SQL: fix cause request not yet initialized
2105 // * WikiDB: moved SQL specific methods upwards
2106 // * new Pear_DB quoting: same as ADODB and as newer Pear_DB.
2107 //   fixes all around: WikiGroup, WikiUserNew SQL methods, SQL logging
2108 //
2109 // Revision 1.116  2004/11/05 21:03:27  rurban
2110 // new DEBUG flag: _DEBUG_LOGIN (64)
2111 //   verbose login debug-msg (settings and reason for failure)
2112 //
2113 // Revision 1.115  2004/11/05 20:53:35  rurban
2114 // login cleanup: better debug msg on failing login,
2115 // checked password less immediate login (bogo or anon),
2116 // checked olduser pref session error,
2117 // better PersonalPage without password warning on minimal password length=0
2118 //   (which is default now)
2119 //
2120 // Revision 1.114  2004/11/05 16:15:57  rurban
2121 // forgot the BogoLogin inclusion with the latest rewrite
2122 //
2123 // Revision 1.113  2004/11/03 17:13:49  rurban
2124 // make it easier to disable EmailVerification
2125 //   Bug #1053681
2126 //
2127 // Revision 1.112  2004/11/01 10:43:57  rurban
2128 // seperate PassUser methods into seperate dir (memory usage)
2129 // fix WikiUser (old) overlarge data session
2130 // remove wikidb arg from various page class methods, use global ->_dbi instead
2131 // ...
2132 //
2133 // Revision 1.111  2004/10/21 21:03:50  rurban
2134 // isAdmin must be signed and authenticated
2135 // comment out unused sections (memory)
2136 //
2137 // Revision 1.110  2004/10/14 19:19:33  rurban
2138 // loadsave: check if the dumped file will be accessible from outside.
2139 // and some other minor fixes. (cvsclient native not yet ready)
2140 //
2141 // Revision 1.109  2004/10/07 16:08:58  rurban
2142 // fixed broken FileUser session handling.
2143 //   thanks to Arnaud Fontaine for detecting this.
2144 // enable file user Administrator membership.
2145 //
2146 // Revision 1.108  2004/10/05 17:00:04  rurban
2147 // support paging for simple lists
2148 // fix RatingDb sql backend.
2149 // remove pages from AllPages (this is ListPages then)
2150 //
2151 // Revision 1.107  2004/10/04 23:42:15  rurban
2152 // HttpAuth admin group logic. removed old logs
2153 //
2154 // Revision 1.106  2004/07/01 08:49:38  rurban
2155 // obsolete php5-patch.php: minor php5 login problem though
2156 //
2157 // Revision 1.105  2004/06/29 06:48:03  rurban
2158 // Improve LDAP auth and GROUP_LDAP membership:
2159 //   no error message on false password,
2160 //   added two new config vars: LDAP_OU_USERS and LDAP_OU_GROUP with GROUP_METHOD=LDAP
2161 //   fixed two group queries (this -> user)
2162 // stdlib: ConvertOldMarkup still flawed
2163 //
2164 // Revision 1.104  2004/06/28 15:39:37  rurban
2165 // fixed endless recursion in WikiGroup: isAdmin()
2166 //
2167 // Revision 1.103  2004/06/28 15:01:07  rurban
2168 // fixed LDAP_SET_OPTION handling, LDAP error on connection problem
2169 //
2170 // Revision 1.102  2004/06/27 10:23:48  rurban
2171 // typo detected by Philippe Vanhaesendonck
2172 //
2173 // Revision 1.101  2004/06/25 14:29:19  rurban
2174 // WikiGroup refactoring:
2175 //   global group attached to user, code for not_current user.
2176 //   improved helpers for special groups (avoid double invocations)
2177 // new experimental config option ENABLE_XHTML_XML (fails with IE, and document.write())
2178 // fixed a XHTML validation error on userprefs.tmpl
2179 //
2180 // Revision 1.100  2004/06/21 06:29:35  rurban
2181 // formatting: linewrap only
2182 //
2183 // Revision 1.99  2004/06/20 15:30:05  rurban
2184 // get_class case-sensitivity issues
2185 //
2186 // Revision 1.98  2004/06/16 21:24:31  rurban
2187 // do not display no-connect warning: #2662
2188 //
2189 // Revision 1.97  2004/06/16 13:21:16  rurban
2190 // stabilize on failing ldap queries or bind
2191 //
2192 // Revision 1.96  2004/06/16 12:42:06  rurban
2193 // fix homepage prefs
2194 //
2195 // Revision 1.95  2004/06/16 10:38:58  rurban
2196 // Disallow refernces in calls if the declaration is a reference
2197 // ("allow_call_time_pass_reference clean").
2198 //   PhpWiki is now allow_call_time_pass_reference = Off clean,
2199 //   but several external libraries may not.
2200 //   In detail these libs look to be affected (not tested):
2201 //   * Pear_DB odbc
2202 //   * adodb oracle
2203 //
2204 // Revision 1.94  2004/06/15 10:40:35  rurban
2205 // minor WikiGroup cleanup: no request param, start of current user independency
2206 //
2207 // Revision 1.93  2004/06/15 09:15:52  rurban
2208 // IMPORTANT: fixed passwd handling for passwords stored in prefs:
2209 //   fix encrypted usage, actually store and retrieve them from db
2210 //   fix bogologin with passwd set.
2211 // fix php crashes with call-time pass-by-reference (references wrongly used
2212 //   in declaration AND call). This affected mainly Apache2 and IIS.
2213 //   (Thanks to John Cole to detect this!)
2214 //
2215 // Revision 1.92  2004/06/14 11:31:36  rurban
2216 // renamed global $Theme to $WikiTheme (gforge nameclash)
2217 // inherit PageList default options from PageList
2218 //   default sortby=pagename
2219 // use options in PageList_Selectable (limit, sortby, ...)
2220 // added action revert, with button at action=diff
2221 // added option regex to WikiAdminSearchReplace
2222 //
2223 // Revision 1.91  2004/06/08 14:57:43  rurban
2224 // stupid ldap bug detected by John Cole
2225 //
2226 // Revision 1.90  2004/06/08 09:31:15  rurban
2227 // fixed typo detected by lucidcarbon (line 1663 assertion)
2228 //
2229 // Revision 1.89  2004/06/06 16:58:51  rurban
2230 // added more required ActionPages for foreign languages
2231 // install now english ActionPages if no localized are found. (again)
2232 // fixed default anon user level to be 0, instead of -1
2233 //   (wrong "required administrator to view this page"...)
2234 //
2235 // Revision 1.88  2004/06/04 20:32:53  rurban
2236 // Several locale related improvements suggested by Pierrick Meignen
2237 // LDAP fix by John Cole
2238 // reanable admin check without ENABLE_PAGEPERM in the admin plugins
2239 //
2240 // Revision 1.87  2004/06/04 12:40:21  rurban
2241 // Restrict valid usernames to prevent from attacks against external auth or compromise
2242 // possible holes.
2243 // Fix various WikiUser old issues with default IMAP,LDAP,POP3 configs. Removed these.
2244 // Fxied more warnings
2245 //
2246 // Revision 1.86  2004/06/03 18:06:29  rurban
2247 // fix file locking issues (only needed on write)
2248 // fixed immediate LANG and THEME in-session updates if not stored in prefs
2249 // advanced editpage toolbars (search & replace broken)
2250 //
2251 // Revision 1.85  2004/06/03 12:46:03  rurban
2252 // fix signout, level must be 0 not -1
2253 //
2254 // Revision 1.84  2004/06/03 12:36:03  rurban
2255 // fix eval warning on signin
2256 //
2257 // Revision 1.83  2004/06/03 10:18:19  rurban
2258 // fix User locking issues, new config ENABLE_PAGEPERM
2259 //
2260 // Revision 1.82  2004/06/03 09:39:51  rurban
2261 // fix LDAP injection (wildcard in username) detected by Steve Christey, MITRE
2262 //
2263 // Revision 1.81  2004/06/02 18:01:45  rurban
2264 // init global FileFinder to add proper include paths at startup
2265 //   adds PHPWIKI_DIR if started from another dir, lib/pear also
2266 // fix slashify for Windows
2267 // fix USER_AUTH_POLICY=old, use only USER_AUTH_ORDER methods (besides HttpAuth)
2268 //
2269 // Revision 1.80  2004/06/02 14:20:27  rurban
2270 // fix adodb DbPassUser login
2271 //
2272 // Revision 1.79  2004/06/01 15:27:59  rurban
2273 // AdminUser only ADMIN_USER not member of Administrators
2274 // some RateIt improvements by dfrankow
2275 // edit_toolbar buttons
2276 //
2277 // Revision 1.78  2004/05/27 17:49:06  rurban
2278 // renamed DB_Session to DbSession (in CVS also)
2279 // added WikiDB->getParam and WikiDB->getAuthParam method to get rid of globals
2280 // remove leading slash in error message
2281 // added force_unlock parameter to File_Passwd (no return on stale locks)
2282 // fixed adodb session AffectedRows
2283 // added FileFinder helpers to unify local filenames and DATA_PATH names
2284 // editpage.php: new edit toolbar javascript on ENABLE_EDIT_TOOLBAR
2285 //
2286 // Revision 1.77  2004/05/18 14:49:51  rurban
2287 // Simplified strings for easier translation
2288 //
2289 // Revision 1.76  2004/05/18 13:30:04  rurban
2290 // prevent from endless loop with oldstyle warnings
2291 //
2292 // Revision 1.75  2004/05/16 22:07:35  rurban
2293 // check more config-default and predefined constants
2294 // various PagePerm fixes:
2295 //   fix default PagePerms, esp. edit and view for Bogo and Password users
2296 //   implemented Creator and Owner
2297 //   BOGOUSERS renamed to BOGOUSER
2298 // fixed syntax errors in signin.tmpl
2299 //
2300 // Revision 1.74  2004/05/15 19:48:33  rurban
2301 // fix some too loose PagePerms for signed, but not authenticated users
2302 //  (admin, owner, creator)
2303 // no double login page header, better login msg.
2304 // moved action_pdf to lib/pdf.php
2305 //
2306 // Revision 1.73  2004/05/15 18:31:01  rurban
2307 // some action=pdf Request fixes: With MSIE it works now. Now the work with the page formatting begins.
2308 //
2309 // Revision 1.72  2004/05/12 10:49:55  rurban
2310 // require_once fix for those libs which are loaded before FileFinder and
2311 //   its automatic include_path fix, and where require_once doesn't grok
2312 //   dirname(__FILE__) != './lib'
2313 // upgrade fix with PearDB
2314 // navbar.tmpl: remove spaces for IE &nbsp; button alignment
2315 //
2316 // Revision 1.71  2004/05/10 12:34:47  rurban
2317 // stabilize DbAuthParam statement pre-prozessor:
2318 //   try old-style and new-style (double-)quoting
2319 //   reject unknown $variables
2320 //   use ->prepare() for all calls (again)
2321 //
2322 // Revision 1.70  2004/05/06 19:26:16  rurban
2323 // improve stability, trying to find the InlineParser endless loop on sf.net
2324 //
2325 // remove end-of-zip comments to fix sf.net bug #777278 and probably #859628
2326 //
2327 // Revision 1.69  2004/05/06 13:56:40  rurban
2328 // Enable the Administrators group, and add the WIKIPAGE group default root page.
2329 //
2330 // Revision 1.68  2004/05/05 13:37:54  rurban
2331 // Support to remove all UserPreferences
2332 //
2333 // Revision 1.66  2004/05/03 21:44:24  rurban
2334 // fixed sf,net bug #947264: LDAP options are constants, not strings!
2335 //
2336 // Revision 1.65  2004/05/03 13:16:47  rurban
2337 // fixed UserPreferences update, esp for boolean and int
2338 //
2339 // Revision 1.64  2004/05/02 15:10:06  rurban
2340 // new finally reliable way to detect if /index.php is called directly
2341 //   and if to include lib/main.php
2342 // new global AllActionPages
2343 // SetupWiki now loads all mandatory pages: HOME_PAGE, action pages, and warns if not.
2344 // WikiTranslation what=buttons for Carsten to create the missing MacOSX buttons
2345 // PageGroupTestOne => subpages
2346 // renamed PhpWikiRss to PhpWikiRecentChanges
2347 // more docs, default configs, ...
2348 //
2349 // Revision 1.63  2004/05/01 15:59:29  rurban
2350 // more php-4.0.6 compatibility: superglobals
2351 //
2352 // Revision 1.62  2004/04/29 18:31:24  rurban
2353 // Prevent from warning where no db pref was previously stored.
2354 //
2355 // Revision 1.61  2004/04/29 17:18:19  zorloc
2356 // 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.
2357 //
2358 // Revision 1.60  2004/04/27 18:20:54  rurban
2359 // sf.net patch #940359 by rassie
2360 //
2361 // Revision 1.59  2004/04/26 12:35:21  rurban
2362 // POP3_AUTH_PORT deprecated, use "host:port" similar to IMAP
2363 // File_Passwd is already loaded
2364 //
2365 // Revision 1.58  2004/04/20 17:08:28  rurban
2366 // Some IniConfig fixes: prepend our private lib/pear dir
2367 //   switch from " to ' in the auth statements
2368 //   use error handling.
2369 // WikiUserNew changes for the new "'$variable'" syntax
2370 //   in the statements
2371 // TODO: optimization to put config vars into the session.
2372 //
2373 // Revision 1.57  2004/04/19 18:27:45  rurban
2374 // Prevent from some PHP5 warnings (ref args, no :: object init)
2375 //   php5 runs now through, just one wrong XmlElement object init missing
2376 // Removed unneccesary UpgradeUser lines
2377 // Changed WikiLink to omit version if current (RecentChanges)
2378 //
2379 // Revision 1.56  2004/04/19 09:13:24  rurban
2380 // new pref: googleLink
2381 //
2382 // Revision 1.54  2004/04/18 00:24:45  rurban
2383 // re-use our simple prepare: just for table prefix warnings
2384 //
2385 // Revision 1.53  2004/04/12 18:29:15  rurban
2386 // exp. Session auth for already authenticated users from another app
2387 //
2388 // Revision 1.52  2004/04/12 13:04:50  rurban
2389 // added auth_create: self-registering Db users
2390 // fixed IMAP auth
2391 // removed rating recommendations
2392 // ziplib reformatting
2393 //
2394 // Revision 1.51  2004/04/11 10:42:02  rurban
2395 // pgsrc/CreatePagePlugin
2396 //
2397 // Revision 1.50  2004/04/10 05:34:35  rurban
2398 // sf bug#830912
2399 //
2400 // Revision 1.49  2004/04/07 23:13:18  rurban
2401 // fixed pear/File_Passwd for Windows
2402 // fixed FilePassUser sessions (filehandle revive) and password update
2403 //
2404 // Revision 1.48  2004/04/06 20:00:10  rurban
2405 // Cleanup of special PageList column types
2406 // Added support of plugin and theme specific Pagelist Types
2407 // Added support for theme specific UserPreferences
2408 // Added session support for ip-based throttling
2409 //   sql table schema change: ALTER TABLE session ADD sess_ip CHAR(15);
2410 // Enhanced postgres schema
2411 // Added DB_Session_dba support
2412 //
2413 // Revision 1.47  2004/04/02 15:06:55  rurban
2414 // fixed a nasty ADODB_mysql session update bug
2415 // improved UserPreferences layout (tabled hints)
2416 // fixed UserPreferences auth handling
2417 // improved auth stability
2418 // improved old cookie handling: fixed deletion of old cookies with paths
2419 //
2420 // Revision 1.46  2004/04/01 06:29:51  rurban
2421 // better wording
2422 // RateIt also for ADODB
2423 //
2424
2425 // Local Variables:
2426 // mode: php
2427 // tab-width: 8
2428 // c-basic-offset: 4
2429 // c-hanging-comment-ender-p: nil
2430 // indent-tabs-mode: nil
2431 // End:
2432 ?>