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