]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/main.php
new sql access log (for spam prevention), and restructured access log class
[SourceForge/phpwiki.git] / lib / main.php
1 <?php //-*-php-*-
2 rcs_id('$Id: main.php,v 1.188 2004-11-07 16:02:52 rurban Exp $');
3
4 define ('USE_PREFS_IN_PAGE', true);
5
6 //include "lib/config.php";
7 require_once(dirname(__FILE__)."/stdlib.php");
8 require_once('lib/Request.php');
9 require_once('lib/WikiDB.php');
10 if (ENABLE_USER_NEW)
11     require_once("lib/WikiUserNew.php");
12 else
13     require_once("lib/WikiUser.php");
14 require_once("lib/WikiGroup.php");
15 require_once("lib/PagePerm.php");
16
17 class WikiRequest extends Request {
18     // var $_dbi;
19
20     function WikiRequest () {
21         $this->_dbi = WikiDB::open($GLOBALS['DBParams']);
22         //if ((DEBUG & _DEBUG_TRACE) or (time() % 50 == 0))
23         //    $this->_dbi->_backend->optimize();
24         if (in_array('File', $this->_dbi->getAuthParam('USER_AUTH_ORDER'))) {
25             // force our local copy, until the pear version is fixed.
26             include_once(dirname(__FILE__)."/pear/File_Passwd.php");
27         }
28         if (ENABLE_USER_NEW) {
29             // load all necessary userclasses (otherwise session => __PHP_Incomplete_Class_Name)
30             // There's no way to demandload it later. (This way its slower but needs less memory than loading all)
31             if (ALLOW_BOGO_LOGIN)
32                 include_once("lib/WikiUser/BogoLogin.php");
33             foreach ($GLOBALS['USER_AUTH_ORDER'] as $method) {
34                 include_once("lib/WikiUser/$method.php");
35                 if ($method == 'Db')
36                     switch($GLOBALS['DBParams']['dbtype']) {
37                         case 'SQL' : include_once("lib/WikiUser/PearDb.php"); break;
38                         case 'ADODB': include_once("lib/WikiUser/AdoDb.php"); break;
39                     }
40             }
41         }
42         if (USE_DB_SESSION) {
43             include_once('lib/DbSession.php');
44             $dbi =& $this->_dbi;
45             $this->_dbsession = & new DbSession($dbi, $dbi->getParam('prefix') . $dbi->getParam('db_session_table'));
46         }
47 // Fixme: Does pear reset the error mask to 1? We have to find the culprit
48 //$x = error_reporting();
49 $this->version = phpwiki_version();
50         $this->Request();
51
52         // Normalize args...
53         $this->setArg('pagename', $this->_deducePagename());
54         $this->setArg('action', $this->_deduceAction());
55         
56         // Restore auth state. This doesn't check for proper authorization!
57         if (ENABLE_USER_NEW) {
58             $userid = $this->_deduceUsername(); 
59             if (isset($this->_user) and 
60                 !empty($this->_user->_authhow) and 
61                 $this->_user->_authhow == 'session')
62             {
63                 // users might switch in a session between the two objects.
64                 // restore old auth level here or in updateAuthAndPrefs?
65                 //$user = $this->getSessionVar('wiki_user');
66                 // revive db handle, because these don't survive sessions
67                 if (isset($this->_user) and 
68                      ( ! isa($this->_user, WikiUserClassname())
69                        or (strtolower(get_class($this->_user)) == '_passuser')))
70                 {
71                     $this->_user = WikiUser($userid, $this->_user->_prefs);
72                 }
73                 // revive other db handle
74                 if (isset($this->_user->_prefs->_method) and 
75                          ($this->_user->_prefs->_method == 'SQL' or 
76                          $this->_user->_prefs->_method == 'ADODB'))
77                     $this->_user->_HomePagehandle = $this->getPage($userid);
78                 // need to update the lockfile filehandle
79                 if (  isa($this->_user,'_FilePassUser') and 
80                       $this->_user->_file->lockfile and 
81                       !$this->_user->_file->fplock  )
82                 {
83                     //$level = $this->_user->_level;
84                     $this->_user = UpgradeUser($this->_user, 
85                                                new _FilePassUser($userid, $this->_user->_prefs, $this->_user->_file->filename));
86                     //$this->_user->_level = $level;
87                 }
88                 $this->_prefs = & $this->_user->_prefs;
89             } else {
90                 $user = WikiUser($userid);
91                 $this->_user = & $user;
92                 $this->_prefs = & $this->_user->_prefs;
93             }
94         } else {
95             $this->_user = new WikiUser($this, $this->_deduceUsername());
96             $this->_prefs = $this->_user->getPreferences();
97         }
98     }
99
100     function initializeLang () {
101         $user_lang = $this->getPref('lang');
102         $_lang = @$this->_prefs->_prefs['lang'];
103         //check changed LANG and THEME inside a session. 
104         // (e.g. by using another baseurl)
105         if (isset($this->_user->_authhow) and 
106             $this->_user->_authhow == 'session' and 
107             !isset($_lang->lang) and 
108             $user_lang != $GLOBALS['LANG'])
109         {
110             $user_lang = $GLOBALS['LANG'];
111         }
112         if (isset($user_lang)) {
113             //trigger_error("DEBUG: initializeLang() ". $user_lang ." calling update_locale()...");
114             update_locale($user_lang);
115             FindLocalizedButtonFile(".",'missing_ok','reinit');
116         }
117     }
118
119     function initializeTheme () {
120         global $WikiTheme;
121
122         // Load theme
123         $user_theme = $this->getPref('theme');
124         $_theme = @$this->_prefs->_prefs['theme'];
125         //check changed LANG and THEME inside a session. 
126         // (e.g. by using another baseurl)
127         if (isset($this->_user->_authhow) and 
128             $this->_user->_authhow == 'session' and 
129             !isset($_theme->theme) and
130             defined('THEME') and 
131             $user_theme != THEME)
132         {
133             include_once("themes/" . THEME . "/themeinfo.php");
134         }
135         if (empty($WikiTheme) and isset($user_theme)) {
136             if (strcspn($user_theme,"./\x00]") != strlen($user_theme)) {
137                 trigger_error(sprintf("invalid theme '%s': Invalid characters detected", $user_theme),
138                               E_USER_WARNING);
139                 $user_theme = "default";
140             }
141             include_once("themes/$user_theme/themeinfo.php");
142         }
143         if (empty($WikiTheme) and defined('THEME'))
144             include_once("themes/" . THEME . "/themeinfo.php");
145         if (empty($WikiTheme))
146             include_once("themes/default/themeinfo.php");
147         assert(!empty($WikiTheme));
148     }
149
150     // This really maybe should be part of the constructor, but since it
151     // may involve HTML/template output, the global $request really needs
152     // to be initialized before we do this stuff.
153     function updateAuthAndPrefs () {
154
155         if (isset($this->_user) and (!isa($this->_user,WikiUserClassname()))) {
156             $this->_user = false;       
157         }
158         // Handle authentication request, if any.
159         if ($auth_args = $this->getArg('auth')) {
160             $this->setArg('auth', false);
161             $this->_handleAuthRequest($auth_args); // possible NORETURN
162         }
163         elseif ( ! $this->_user or 
164                  (isa($this->_user,WikiUserClassname()) and ! $this->_user->isSignedIn())) {
165             // If not auth request, try to sign in as saved user.
166             if (($saved_user = $this->getPref('userid')) != false) {
167                 $this->_signIn($saved_user);
168             }
169         }
170
171         // Save preferences in session and cookie
172         if (isset($this->_user) and 
173             (!isset($this->_user->_authhow) or $this->_user->_authhow != 'session')) {
174             $id_only = true; 
175             $this->_user->setPreferences($this->_prefs, $id_only);
176         } else {
177             $this->setSessionVar('wiki_user', $this->_user);
178             //$this->setSessionVar('wiki_prefs', $this->_prefs);
179         }
180
181         // Ensure user has permissions for action
182         // HACK ALERT: We may not set the request arg to create, 
183         // since the pageeditor has an ugly logic for action == create.
184         $action = $this->getArg('action');
185         if ($action == 'edit' or $action == 'create') {
186             $page = $this->getPage();
187             if (! $page->exists() )
188                 $action = 'create';
189             else
190                 $action = 'edit';
191         }
192         $require_level = $this->requiredAuthority($action);
193         if (! $this->_user->hasAuthority($require_level))
194             $this->_notAuthorized($require_level); // NORETURN
195     }
196
197     function & getUser () {
198         if (isset($this->_user))
199             return $this->_user;
200         else
201             return $GLOBALS['ForbiddenUser'];
202     }
203     
204     function & getGroup () {
205         if (isset($this->_user) and isset($this->_user->_group))
206             return $this->_user->_group;
207         else
208             return WikiGroup::getGroup();
209     }
210
211     function getPrefs () {
212         return $this->_prefs;
213     }
214
215     // Convenience function:
216     function getPref ($key) {
217         if (isset($this->_prefs)) {
218             return $this->_prefs->get($key);
219         }
220     }
221     function getDbh () {
222         return $this->_dbi;
223     }
224
225     /**
226      * Get requested page from the page database.
227      * By default it will grab the page requested via the URL
228      *
229      * This is a convenience function.
230      * @param string $pagename Name of page to get.
231      * @return WikiDB_Page Object with methods to pull data from
232      * database for the page requested.
233      */
234     function getPage ($pagename = false) {
235         //if (!isset($this->_dbi)) $this->getDbh();
236         if (!$pagename) 
237             $pagename = $this->getArg('pagename');
238         return $this->_dbi->getPage($pagename);
239     }
240
241     /** Get URL for POST actions.
242      *
243      * Officially, we should just use SCRIPT_NAME (or some such),
244      * but that causes problems when we try to issue a redirect, e.g.
245      * after saving a page.
246      *
247      * Some browsers (at least NS4 and Mozilla 0.97 won't accept
248      * a redirect from a page to itself.)
249      *
250      * So, as a HACK, we include pagename and action as query args in
251      * the URL.  (These should be ignored when we receive the POST
252      * request.)
253      */
254     function getPostURL ($pagename=false) {
255         global $HTTP_GET_VARS;
256
257         if ($pagename === false)
258             $pagename = $this->getArg('pagename');
259         $action = $this->getArg('action');
260         if (!empty($HTTP_GET_VARS['start_debug'])) // zend ide support
261             return WikiURL($pagename, array('action' => $action, 'start_debug' => 1));
262         else
263             return WikiURL($pagename, array('action' => $action));
264     }
265     
266     function _handleAuthRequest ($auth_args) {
267         if (!is_array($auth_args))
268             return;
269
270         // Ignore password unless POST'ed.
271         if (!$this->isPost())
272             unset($auth_args['passwd']);
273
274         $olduser = $this->_user;
275         $user = $this->_user->AuthCheck($auth_args);
276         if (isa($user, WikiUserClassname())) {
277             // Successful login (or logout.)
278             $this->_setUser($user);
279         }
280         elseif (is_string($user)) {
281             // Login attempt failed.
282             $fail_message = $user;
283             $auth_args['pass_required'] = true;
284             // If no password was submitted, it's not really
285             // a failure --- just need to prompt for password...
286             if (!ALLOW_USER_PASSWORDS 
287                 and ALLOW_BOGO_LOGIN 
288                 and !isset($auth_args['passwd'])) 
289             {
290                 $fail_message = false;
291             }
292             $olduser->PrintLoginForm($this, $auth_args, $fail_message, 'newpage');
293             $this->finish();    //NORETURN
294         }
295         else {
296             // Login request cancelled.
297         }
298     }
299
300     /**
301      * Attempt to sign in (bogo-login).
302      *
303      * Fails silently.
304      *
305      * @param $userid string Userid to attempt to sign in as.
306      * @access private
307      */
308     function _signIn ($userid) {
309         if (ENABLE_USER_NEW) {
310             if (! $this->_user )
311                 $this->_user = new _BogoUser($userid);
312             // FIXME: is this always false? shouldn't we try passuser first?
313             if (! $this->_user ) 
314                 $this->_user = new _PassUser($userid);
315         }
316         $user = $this->_user->AuthCheck(array('userid' => $userid));
317         if (isa($user,WikiUserClassname())) {
318             $this->_setUser($user); // success!
319         }
320     }
321
322     // login or logout or restore state
323     function _setUser ($user) {
324         $this->_user = $user;
325         if (defined('MAIN_setUser')) return;
326         define('MAIN_setUser',true);
327         $this->setCookieVar('WIKI_ID', $user->getAuthenticatedId(),
328                             COOKIE_EXPIRATION_DAYS, COOKIE_DOMAIN);
329         if ($user->isSignedIn())
330             $user->_authhow = 'signin';
331
332         // Save userid to prefs..
333         if ( empty($this->_user->_prefs)) {
334             $this->_user->_prefs = $this->_user->getPreferences();
335             $this->_prefs =& $this->_user->_prefs;
336         }
337         $this->_user->_group = $this->getGroup();
338         // avoid recursive objects and session resource handles
339         // avoid overlarge session data (max 4000 byte!)
340         if (isset($user->_group)) {
341             unset($user->_group->_request);
342             unset($user->_group->_user);
343         }
344         if (ENABLE_USER_NEW) {
345             unset($user->_HomePagehandle);
346             unset($user->_auth_dbi);
347         } else {
348             unset($user->_dbi);
349             unset($user->_authdbi);
350             unset($user->_homepage);
351             unset($user->_request);
352         }
353         if (empty($user->page))
354             $user->page = $this->getArg('pagename');
355         if (empty($user->action))
356             $user->action = $this->getArg('action');
357         $this->setSessionVar('wiki_user', $user);
358         $this->_prefs->set('userid',
359                            $user->isSignedIn() ? $user->getId() : '');
360         $this->initializeTheme();
361     }
362
363     /* Permission system */
364     function getLevelDescription($level) {
365         static $levels = false;
366         if (!$levels) 
367             $levels = array('x-1' => _("FORBIDDEN"),
368                             'x0'  => _("ANON"),
369                             'x1'  => _("BOGO"),
370                             'x2'  => _("USER"),
371                             'x10' => _("ADMIN"),
372                             'x100'=> _("UNOBTAINABLE"));
373         return $levels["x".$level];
374     }
375     
376     function _notAuthorized ($require_level) {
377         // Display the authority message in the Wiki's default
378         // language, in case it is not english.
379         //
380         // Note that normally a user will not see such an error once
381         // logged in, unless the admin has altered the default
382         // disallowed wikiactions. In that case we should probably
383         // check the user's language prefs too at this point; this
384         // would be a situation which is not really handled with the
385         // current code.
386         if (empty($GLOBALS['LANG']))
387             update_locale(DEFAULT_LANGUAGE);
388
389         // User does not have required authority.  Prompt for login.
390         $what = $this->getActionDescription($this->getArg('action'));
391         $pass_required = ($require_level >= WIKIAUTH_USER);
392         if ($require_level == WIKIAUTH_UNOBTAINABLE) {
393             global $DisabledActions;
394             if ($DisabledActions and in_array($action, $DisabledActions)) {
395                 $msg = fmt("%s is disallowed on this wiki.",
396                            $this->getDisallowedActionDescription($this->getArg('action')));
397                 $this->finish();
398                 return;
399             }
400             // Is the reason a missing ACL or just wrong user or password?
401             if (class_exists('PagePermission')) {
402                 $user =& $this->_user;
403                 $status = $user->isAuthenticated() ? _("authenticated") : _("not authenticated");
404                 $msg = fmt("%s %s %s is disallowed on this wiki for %s user '%s' (level: %s).",
405                            _("Missing PagePermission:"),
406                            action2access($this->getArg('action')),
407                            $this->getArg('pagename'),
408                            $status, $user->getId(), $this->getLevelDescription($user->_level));
409                 // TODO: add link to action=setacl
410                 $user->PrintLoginForm($this, compact('pass_required'), $msg);
411                 $this->finish();
412                 return;
413             } else {
414                 $msg = fmt("%s is disallowed on this wiki.",
415                            $this->getDisallowedActionDescription($this->getArg('action')));
416                 $this->_user->PrintLoginForm($this, compact('require_level','pass_required'), $msg);
417                 $this->finish();
418                 return;
419             }
420         }
421         elseif ($require_level == WIKIAUTH_BOGO)
422             $msg = fmt("You must sign in to %s.", $what);
423         elseif ($require_level == WIKIAUTH_USER)
424             $msg = fmt("You must log in to %s.", $what);
425         elseif ($require_level == WIKIAUTH_ANON)
426             $msg = fmt("Access for you is forbidden to %s.", $what);
427         else
428             $msg = fmt("You must be an administrator to %s.", $what);
429
430         $this->_user->PrintLoginForm($this, compact('require_level','pass_required'), $msg);
431         $this->finish();    // NORETURN
432     }
433
434     // Fixme: for PagePermissions we'll need other strings, 
435     // relevant to the requested page, not just for the action on the whole wiki.
436     function getActionDescription($action) {
437         static $actionDescriptions;
438         if (! $actionDescriptions) {
439             $actionDescriptions
440             = array('browse'     => _("view this page"),
441                     'diff'       => _("diff this page"),
442                     'dumphtml'   => _("dump html pages"),
443                     'dumpserial' => _("dump serial pages"),
444                     'edit'       => _("edit this page"),
445                     'revert'     => _("revert to a previous version of this page"),
446                     'create'     => _("create this page"),
447                     'loadfile'   => _("load files into this wiki"),
448                     'lock'       => _("lock this page"),
449                     'remove'     => _("remove this page"),
450                     'unlock'     => _("unlock this page"),
451                     'upload'     => _("upload a zip dump"),
452                     'verify'     => _("verify the current action"),
453                     'viewsource' => _("view the source of this page"),
454                     'xmlrpc'     => _("access this wiki via XML-RPC"),
455                     'soap'       => _("access this wiki via SOAP"),
456                     'zip'        => _("download a zip dump from this wiki"),
457                     'ziphtml'    => _("download an html zip dump from this wiki")
458                     );
459         }
460         if (in_array($action, array_keys($actionDescriptions)))
461             return $actionDescriptions[$action];
462         else
463             return $action;
464     }
465     
466     /**
467 TODO: check against these cases:
468         if ($DisabledActions and in_array($action, $DisabledActions))
469             return WIKIAUTH_UNOBTAINABLE;
470
471         if (ENABLE_PAGEPERM and class_exists("PagePermission")) {
472            return requiredAuthorityForPage($action);
473            
474 => Browsing pages is disallowed on this wiki for authenticated user 'rurban' (level: BOGO).
475     */
476     function getDisallowedActionDescription($action) {
477         static $disallowedActionDescriptions;
478         
479         if (! $disallowedActionDescriptions) {
480             $disallowedActionDescriptions
481             = array('browse'     => _("Browsing pages"),
482                     'diff'       => _("Diffing pages"),
483                     'dumphtml'   => _("Dumping html pages"),
484                     'dumpserial' => _("Dumping serial pages"),
485                     'edit'       => _("Editing pages"),
486                     'revert'     => _("Reverting to a previous version of pages"),
487                     'create'     => _("Creating pages"),
488                     'loadfile'   => _("Loading files"),
489                     'lock'       => _("Locking pages"),
490                     'remove'     => _("Removing pages"),
491                     'unlock'     => _("Unlocking pages"),
492                     'upload'     => _("Uploading zip dumps"),
493                     'verify'     => _("Verify the current action"),
494                     'viewsource' => _("Viewing the source of pages"),
495                     'xmlrpc'     => _("XML-RPC access"),
496                     'soap'       => _("SOAP access"),
497                     'zip'        => _("Downloading zip dumps"),
498                     'ziphtml'    => _("Downloading html zip dumps")
499                     );
500         }
501         if (in_array($action, array_keys($disallowedActionDescriptions)))
502             return $disallowedActionDescriptions[$action];
503         else
504             return $action;
505     }
506
507     function requiredAuthority ($action) {
508         $auth = $this->requiredAuthorityForAction($action);
509         if (!ALLOW_ANON_USER) return WIKIAUTH_USER;
510         
511         /*
512          * This is a hook for plugins to require authority
513          * for posting to them.
514          *
515          * IMPORTANT: this is not a secure check, so the plugin
516          * may not assume that any POSTs to it are authorized.
517          * All this does is cause PhpWiki to prompt for login
518          * if the user doesn't have the required authority.
519          */
520         if ($this->isPost()) {
521             $post_auth = $this->getArg('require_authority_for_post');
522             if ($post_auth !== false)
523                 $auth = max($auth, $post_auth);
524         }
525         return $auth;
526     }
527         
528     function requiredAuthorityForAction ($action) {
529         global $DisabledActions;
530         
531         if ($DisabledActions and in_array($action, $DisabledActions))
532             return WIKIAUTH_UNOBTAINABLE;
533             
534         if (ENABLE_PAGEPERM and class_exists("PagePermission")) {
535            return requiredAuthorityForPage($action);
536         } else {
537           // FIXME: clean up. 
538           switch ($action) {
539             case 'browse':
540             case 'viewsource':
541             case 'diff':
542             case 'select':
543             case 'xmlrpc':
544             case 'search':
545             case 'pdf':
546                 return WIKIAUTH_ANON;
547
548             case 'zip':
549             case 'ziphtml':
550                 if (defined('ZIPDUMP_AUTH') && ZIPDUMP_AUTH)
551                     return WIKIAUTH_ADMIN;
552                 return WIKIAUTH_ANON;
553
554             case 'edit':
555             case 'revert':
556             case 'soap':
557                 if (defined('REQUIRE_SIGNIN_BEFORE_EDIT') && REQUIRE_SIGNIN_BEFORE_EDIT)
558                     return WIKIAUTH_BOGO;
559                 return WIKIAUTH_ANON;
560                 // return WIKIAUTH_BOGO;
561
562             case 'create':
563                 $page = $this->getPage();
564                 $current = $page->getCurrentRevision();
565                 if ($current->hasDefaultContents())
566                     return $this->requiredAuthorityForAction('edit');
567                 return $this->requiredAuthorityForAction('browse');
568
569             case 'upload':
570             case 'dumpserial':
571             case 'dumphtml':
572             case 'loadfile':
573             case 'remove':
574             case 'lock':
575             case 'unlock':
576             case 'upgrade':
577             case 'chown':
578             case 'setacl':
579             case 'rename':
580                 return WIKIAUTH_ADMIN;
581
582             /* authcheck occurs only in the plugin.
583                required actionpage RateIt */
584             /*
585             case 'rate':
586             case 'delete_rating':
587                 // Perhaps this should be WIKIAUTH_USER
588                 return WIKIAUTH_BOGO;
589             */
590
591             default:
592                 global $WikiNameRegexp;
593                 if (preg_match("/$WikiNameRegexp\Z/A", $action))
594                     return WIKIAUTH_ANON; // ActionPage.
595                 else
596                     return WIKIAUTH_ADMIN;
597           }
598         }
599     }
600     /* End of Permission system */
601
602     function possiblyDeflowerVirginWiki () {
603         if ($this->getArg('action') != 'browse')
604             return;
605         if ($this->getArg('pagename') != HOME_PAGE)
606             return;
607
608         $page = $this->getPage();
609         $current = $page->getCurrentRevision();
610         if ($current->getVersion() > 0)
611             return;             // Homepage exists.
612
613         include('lib/loadsave.php');
614         SetupWiki($this);
615         $this->finish();        // NORETURN
616     }
617
618     function handleAction () {
619         $action = $this->getArg('action');
620         $method = "action_$action";
621         if (method_exists($this, $method)) {
622             $this->{$method}();
623         }
624         elseif ($page = $this->findActionPage($action)) {
625             $this->actionpage($page);
626         }
627         else {
628             $this->finish(fmt("%s: Bad action", $action));
629         }
630     }
631     
632     function finish ($errormsg = false) {
633         static $in_exit = 0;
634
635         if ($in_exit)
636             exit();        // just in case CloseDataBase calls us
637         $in_exit = true;
638
639         global $ErrorManager;
640         $ErrorManager->flushPostponedErrors();
641
642         if (!empty($errormsg)) {
643             PrintXML(HTML::br(),
644                      HTML::hr(),
645                      HTML::h2(_("Fatal PhpWiki Error")),
646                      $errormsg);
647             // HACK:
648             echo "\n</body></html>";
649         }
650         if (is_object($this->_user)) {
651             $this->_user->page   = $this->getArg('pagename');
652             $this->_user->action = $this->getArg('action');
653             unset($this->_user->_HomePagehandle);
654             unset($this->_user->_auth_dbi);
655         }
656         Request::finish();
657         exit;
658     }
659
660     /**
661      * Generally pagename is rawurlencoded for older browsers or mozilla.
662      * Typing a pagename into the IE bar will utf-8 encode it, so we have to 
663      * fix that with fixTitleEncoding().
664      * If USE_PATH_INFO = true, the pagename is stripped from the "/DATA_PATH/PageName&arg=value" line.
665      * If false, we support either "/index.php?pagename=PageName&arg=value",
666      * or the first arg (1.2.x style): "/index.php?PageName&arg=value"
667      */
668     function _deducePagename () {
669         if (trim(rawurldecode($this->getArg('pagename'))))
670             return fixTitleEncoding(rawurldecode($this->getArg('pagename')));
671
672         if (USE_PATH_INFO) {
673             $pathinfo = $this->get('PATH_INFO');
674             if (empty($pathinfo)) { // fix for CGI
675                 $path = $this->get('REQUEST_URI');
676                 $script = $this->get('SCRIPT_NAME');
677                 $pathinfo = substr($path,strlen($script));
678                 $pathinfo = preg_replace('/\?.+$/','',$pathinfo);
679             }
680             $tail = substr($pathinfo, strlen(PATH_INFO_PREFIX));
681
682             if (trim($tail) != '' and $pathinfo == PATH_INFO_PREFIX . $tail) {
683                 return fixTitleEncoding($tail);
684             }
685         }
686         elseif ($this->isPost()) {
687             /*
688              * In general, for security reasons, HTTP_GET_VARS should be ignored
689              * on POST requests, but we make an exception here (only for pagename).
690              *
691              * The justification for this hack is the following
692              * asymmetry: When POSTing with USE_PATH_INFO set, the
693              * pagename can (and should) be communicated through the
694              * request URL via PATH_INFO.  When POSTing with
695              * USE_PATH_INFO off, this cannot be done --- the only way
696              * to communicate the pagename through the URL is via
697              * QUERY_ARGS (HTTP_GET_VARS).
698              */
699             global $HTTP_GET_VARS;
700             if (isset($HTTP_GET_VARS['pagename']) and trim($HTTP_GET_VARS['pagename'])) { 
701                 return fixTitleEncoding(rawurldecode($HTTP_GET_VARS['pagename']));
702             }
703         }
704
705         /*
706          * Support for PhpWiki 1.2 style requests.
707          * Strip off "&" args (?PageName&action=...&start_debug,...)
708          */
709         $query_string = $this->get('QUERY_STRING');
710         if (trim(rawurldecode($query_string)) and preg_match('/^([^&=]+)(&.+)?$/', $query_string, $m)) {
711             return fixTitleEncoding(rawurldecode($m[1]));
712         }
713
714         return fixTitleEncoding(HOME_PAGE);
715     }
716
717     function _deduceAction () {
718         if (!($action = $this->getArg('action'))) {
719             // Detect XML-RPC requests
720             if ($this->isPost()
721                 && $this->get('CONTENT_TYPE') == 'text/xml') {
722                 global $HTTP_RAW_POST_DATA;
723                 if (strstr($HTTP_RAW_POST_DATA, '<methodCall>')) {
724                     return 'xmlrpc';
725                 }
726             }
727             return 'browse';    // Default if no action specified.
728         }
729
730         if (method_exists($this, "action_$action"))
731             return $action;
732
733         // Allow for, e.g. action=LikePages
734         if ($this->isActionPage($action))
735             return $action;
736
737         // Handle untranslated actionpages in non-english
738         // (people playing with switching languages)
739         if (0 and $GLOBALS['LANG'] != 'en') {
740             require_once("lib/plugin/_WikiTranslation.php");
741             $trans = new WikiPlugin__WikiTranslation();
742             $en_action = $trans->translate($action,'en',$GLOBALS['LANG']);
743             if ($this->isActionPage($en_action))
744                 return $en_action;
745         }
746
747         trigger_error("$action: Unknown action", E_USER_NOTICE);
748         return 'browse';
749     }
750
751     function _deduceUsername() {
752         global $HTTP_SERVER_VARS, $HTTP_ENV_VARS;
753
754         if (!empty($this->args['auth']) and !empty($this->args['auth']['userid']))
755             return $this->args['auth']['userid'];
756
757         if (!empty($HTTP_SERVER_VARS['PHP_AUTH_USER']))
758             return $HTTP_SERVER_VARS['PHP_AUTH_USER'];
759         if (!empty($HTTP_ENV_VARS['REMOTE_USER']))
760             return $HTTP_ENV_VARS['REMOTE_USER'];
761             
762         if ($user = $this->getSessionVar('wiki_user')) {
763             // switched auth between sessions. 
764             // Note: There's no way to demandload a missing class-definition afterwards! (Stupid php)
765             if (isa($user, WikiUserClassname())) {
766                 $this->_user = $user;
767                 $this->_user->_authhow = 'session';
768                 return ENABLE_USER_NEW ? $user->UserName() : $this->_user;
769             }
770         }
771         if ($userid = $this->getCookieVar('WIKI_ID')) {
772             if (!empty($userid) and substr($userid,0,2) != 's:') {
773                 $this->_user->authhow = 'cookie';
774                 return $userid;
775             }
776         }
777         return false;
778     }
779     
780     function _isActionPage ($pagename) {
781         $dbi = $this->getDbh();
782         $page = $dbi->getPage($pagename);
783         if (!$page) return false;
784         $rev = $page->getCurrentRevision();
785         // FIXME: more restrictive check for sane plugin?
786         if (strstr($rev->getPackedContent(), '<?plugin'))
787             return true;
788         if (!$rev->hasDefaultContents())
789             trigger_error("$pagename: Does not appear to be an 'action page'", E_USER_NOTICE);
790         return false;
791     }
792
793     function findActionPage ($action) {
794         static $cache;
795
796         // check for translated version, as per users preferred language
797         // (or system default in case it is not en)
798         $translation = gettext($action);
799
800         if (isset($cache) and isset($cache[$translation]))
801             return $cache[$translation];
802
803         // check for cached translated version
804         if ($this->_isActionPage($translation))
805             return $cache[$action] = $translation;
806
807         // Allow for, e.g. action=LikePages
808         if (!isWikiWord($action))
809             return $cache[$action] = false;
810
811         // check for translated version (default language)
812         global $LANG;
813         if ($LANG != "en") {
814             require_once("lib/WikiPlugin.php");
815             require_once("lib/plugin/_WikiTranslation.php");
816             $trans = new WikiPlugin__WikiTranslation();
817             $trans->lang = $LANG;
818             $default = $trans->translate_to_en($action, $LANG);
819             if ($this->_isActionPage($default))
820                 return $cache[$action] = $default;
821         } else {
822             $default = $translation;
823         }
824         
825         // check for english version
826         if ($action != $translation and $action != $default) {
827             if ($this->_isActionPage($action))
828                 return $cache[$action] = $action;
829         }
830
831         trigger_error("$action: Cannot find action page", E_USER_NOTICE);
832         return $cache[$action] = false;
833     }
834     
835     function isActionPage ($pagename) {
836         return $this->findActionPage($pagename);
837     }
838
839     function action_browse () {
840         $this->buffer_output();
841         include_once("lib/display.php");
842         displayPage($this);
843     }
844
845     function action_verify () {
846         $this->action_browse();
847     }
848
849     function actionpage ($action) {
850         $this->buffer_output();
851         include_once("lib/display.php");
852         actionPage($this, $action);
853     }
854
855     function adminActionSubpage ($subpage) {
856         $page = _("PhpWikiAdministration")."/".$subpage;
857         $action = $this->findActionPage($page);
858         if ($action) {
859             $this->setArg('s',$this->getArg('pagename'));
860             $this->setArg('verify',1);
861             $this->setArg('action',$action);
862             $this->actionpage($action);
863         } else {
864             trigger_error($page.": Cannot find action page", E_USER_WARNING);
865         }
866     }
867
868     function action_chown () {
869         $this->adminActionSubpage(_("Chown"));
870     }
871
872     function action_setacl () {
873         $this->adminActionSubpage(_("SetAcl"));
874     }
875
876     function action_rename () {
877         $this->adminActionSubpage(_("Rename"));
878     }
879
880     function action_dump () {
881         $action = $this->findActionPage(_("PageDump"));
882         if ($action) {
883             $this->actionpage($action);
884         } else {
885             // redirect to action=upgrade if admin?
886             trigger_error(_("PageDump").": Cannot find action page", E_USER_WARNING);
887         }
888     }
889
890     function action_diff () {
891         $this->buffer_output();
892         include_once "lib/diff.php";
893         showDiff($this);
894     }
895
896     function action_search () {
897         // This is obsolete: reformulate URL and redirect.
898         // FIXME: this whole section should probably be deleted.
899         if ($this->getArg('searchtype') == 'full') {
900             $search_page = _("FullTextSearch");
901         }
902         else {
903             $search_page = _("TitleSearch");
904         }
905         $this->redirect(WikiURL($search_page,
906                                 array('s' => $this->getArg('searchterm')),
907                                 'absolute_url'));
908     }
909
910     function action_edit () {
911         $this->buffer_output();
912         include "lib/editpage.php";
913         $e = new PageEditor ($this);
914         $e->editPage();
915     }
916
917     function action_create () {
918         $this->action_edit();
919     }
920     
921     function action_viewsource () {
922         $this->buffer_output();
923         include "lib/editpage.php";
924         $e = new PageEditor ($this);
925         $e->viewSource();
926     }
927
928     function action_lock () {
929         $page = $this->getPage();
930         $page->set('locked', true);
931         $this->_dbi->touch();
932         $this->action_browse();
933     }
934
935     function action_unlock () {
936         // FIXME: This check is redundant.
937         //$user->requireAuth(WIKIAUTH_ADMIN);
938         $page = $this->getPage();
939         $page->set('locked', false);
940         $this->_dbi->touch();
941         $this->action_browse();
942     }
943
944     function action_remove () {
945         // FIXME: This check is redundant.
946         //$user->requireAuth(WIKIAUTH_ADMIN);
947         $pagename = $this->getArg('pagename');
948         if (strstr($pagename,_('PhpWikiAdministration'))) {
949             $this->action_browse();
950         } else {
951             include('lib/removepage.php');
952             RemovePage($this);
953         }
954     }
955
956     function action_xmlrpc () {
957         include_once("lib/XmlRpcServer.php");
958         $xmlrpc = new XmlRpcServer($this);
959         $xmlrpc->service();
960     }
961     
962     function action_revert () {
963         include_once "lib/loadsave.php";
964         RevertPage($this);
965     }
966
967     function action_zip () {
968         include_once("lib/loadsave.php");
969         MakeWikiZip($this);
970         // I don't think it hurts to add cruft at the end of the zip file.
971         //echo "\n========================================================\n";
972         //echo "PhpWiki " . PHPWIKI_VERSION . " source:\n$GLOBALS[RCS_IDS]\n";
973     }
974
975     function action_ziphtml () {
976         include_once("lib/loadsave.php");
977         MakeWikiZipHtml($this);
978         // I don't think it hurts to add cruft at the end of the zip file.
979         echo "\n========================================================\n";
980         echo "PhpWiki " . PHPWIKI_VERSION . " source:\n$GLOBALS[RCS_IDS]\n";
981     }
982
983     function action_dumpserial () {
984         include_once("lib/loadsave.php");
985         DumpToDir($this);
986     }
987
988     function action_dumphtml () {
989         include_once("lib/loadsave.php");
990         DumpHtmlToDir($this);
991     }
992
993     function action_upload () {
994         include_once("lib/loadsave.php");
995         LoadPostFile($this);
996     }
997
998     function action_upgrade () {
999         include_once("lib/loadsave.php");
1000         include_once("lib/upgrade.php");
1001         DoUpgrade($this);
1002     }
1003
1004     function action_loadfile () {
1005         include_once("lib/loadsave.php");
1006         LoadFileOrDir($this);
1007     }
1008
1009     function action_pdf () {
1010         include_once("lib/pdf.php");
1011         ConvertAndDisplayPdf($this);
1012     }
1013     
1014 }
1015
1016 //FIXME: deprecated
1017 function is_safe_action ($action) {
1018     return WikiRequest::requiredAuthorityForAction($action) < WIKIAUTH_ADMIN;
1019 }
1020
1021 function validateSessionPath() {
1022     // Try to defer any session.save_path PHP errors before any html
1023     // is output, which causes some versions of IE to display a blank
1024     // page (due to its strict mode while parsing a page?).
1025     if (! is_writeable(ini_get('session.save_path'))) {
1026         $tmpdir = defined('SESSION_SAVE_PATH') ? SESSION_SAVE_PATH : '/tmp';
1027         if (!is_writeable($tmpdir))
1028             $tmpdir = '/tmp';
1029         trigger_error
1030             (sprintf(_("%s is not writable."),
1031                      _("The session.save_path directory"))
1032              . "\n"
1033              . sprintf(_("Please ensure that %s is writable, or redefine %s in config/config.ini."),
1034                        sprintf(_("the directory '%s'"),
1035                                ini_get('session.save_path')),
1036                        'session.save_path')
1037              . "\n"
1038              . sprintf(_("Attempting to use the directory '%s' instead."),
1039                        $tmpdir)
1040              , E_USER_NOTICE);
1041         if (! is_writeable($tmpdir)) {
1042             trigger_error
1043                 (sprintf(_("%s is not writable."), $tmpdir)
1044                  . "\n"
1045                  . _("Users will not be able to sign in.")
1046                  , E_USER_NOTICE);
1047         }
1048         else
1049             ini_set('session.save_path', $tmpdir);
1050     }
1051 }
1052
1053 function main () {
1054     if (!USE_DB_SESSION)
1055         validateSessionPath();
1056
1057     global $request;
1058     if ((DEBUG & _DEBUG_APD) and extension_loaded("apd"))
1059         apd_set_session_trace(9);
1060
1061     // Postpone warnings
1062     global $ErrorManager;
1063     if (defined('E_STRICT')) // and (E_ALL & E_STRICT)) // strict php5?
1064         $ErrorManager->setPostponedErrorMask(E_NOTICE|E_USER_NOTICE|E_USER_WARNING|E_WARNING|E_STRICT);
1065     else
1066         $ErrorManager->setPostponedErrorMask(E_NOTICE|E_USER_NOTICE|E_USER_WARNING|E_WARNING);
1067     $request = new WikiRequest();
1068
1069     $action = $request->getArg('action');
1070     if (substr($action, 0, 3) != 'zip') {
1071         if ($action == 'pdf')
1072             $ErrorManager->setPostponedErrorMask(-1); // everything
1073         //else // reject postponing of warnings
1074         //    $ErrorManager->setPostponedErrorMask(E_NOTICE|E_USER_NOTICE);
1075     }
1076
1077     /*
1078      * Allow for disabling of markup cache.
1079      * (Mostly for debugging ... hopefully.)
1080      *
1081      * See also <?plugin WikiAdminUtils action=purge-cache ?>
1082      */
1083     if (!defined('WIKIDB_NOCACHE_MARKUP') and $request->getArg('nocache'))
1084         define('WIKIDB_NOCACHE_MARKUP', $request->getArg('nocache'));
1085     
1086     // Initialize with system defaults in case user not logged in.
1087     // Should this go into constructor?
1088     $request->initializeTheme();
1089
1090     $request->updateAuthAndPrefs();
1091     $request->initializeLang();
1092     
1093     //FIXME:
1094     //if ($user->is_authenticated())
1095     //  $LogEntry->user = $user->getId();
1096
1097     // Memory optimization:
1098     // http://www.procata.com/blog/archives/2004/05/27/rephlux-and-php-memory-usage/
1099     // kill the global PEAR _PEAR_destructor_object_list
1100     if (!empty($_PEAR_destructor_object_list))
1101         $_PEAR_destructor_object_list = array();
1102     $request->possiblyDeflowerVirginWiki();
1103     
1104 // hack! define proper actions for these.
1105 if (defined('WIKI_XMLRPC') and WIKI_XMLRPC) return;
1106 if (defined('WIKI_SOAP')   and WIKI_SOAP)   return;
1107
1108     $validators = array('wikiname' => WIKI_NAME,
1109                         'args'     => hash($request->getArgs()),
1110                         'prefs'    => hash($request->getPrefs()));
1111     if (CACHE_CONTROL == 'STRICT') {
1112         $dbi = $request->getDbh();
1113         $timestamp = $dbi->getTimestamp();
1114         $validators['mtime'] = $timestamp;
1115         $validators['%mtime'] = (int)$timestamp;
1116     }
1117     // FIXME: we should try to generate strong validators when possible,
1118     // but for now, our validator is weak, since equal validators do not
1119     // indicate byte-level equality of content.  (Due to DEBUG timing output, etc...)
1120     //
1121     // (If DEBUG if off, this may be a strong validator, but I'm going
1122     // to go the paranoid route here pending further study and testing.)
1123     //
1124     $validators['%weak'] = true;
1125     $request->setValidators($validators);
1126    
1127     $request->handleAction();
1128
1129     if (DEBUG and DEBUG & _DEBUG_INFO) phpinfo(INFO_VARIABLES);
1130     $request->finish();
1131 }
1132
1133 //$x = error_reporting();  // DEBUG: why is it 1 here? should be E_ALL
1134 if (defined('E_STRICT') and (E_ALL & E_STRICT)) // strict php5?
1135     error_reporting(E_ALL & ~E_STRICT);         // exclude E_STRICT
1136 else
1137     error_reporting(E_ALL); // php4
1138 // don't run the main loop for special requests (test, getimg, xmlrpc, soap, ...)
1139 if (!defined('PHPWIKI_NOMAIN') or !PHPWIKI_NOMAIN)
1140     main();
1141
1142
1143 // $Log: not supported by cvs2svn $
1144 // Revision 1.187  2004/11/05 22:08:52  rurban
1145 // Ok: Fix loading all required userclasses beforehand. This is much slower than before but safes a few bytes RAM
1146 //
1147 // Revision 1.186  2004/11/05 20:53:35  rurban
1148 // login cleanup: better debug msg on failing login,
1149 // checked password less immediate login (bogo or anon),
1150 // checked olduser pref session error,
1151 // better PersonalPage without password warning on minimal password length=0
1152 //   (which is default now)
1153 //
1154 // Revision 1.185  2004/11/01 13:55:05  rurban
1155 // fix against switching user new/old between sessions
1156 //
1157 // Revision 1.184  2004/11/01 10:43:57  rurban
1158 // seperate PassUser methods into seperate dir (memory usage)
1159 // fix WikiUser (old) overlarge data session
1160 // remove wikidb arg from various page class methods, use global ->_dbi instead
1161 // ...
1162 //
1163 // Revision 1.183  2004/10/14 19:23:58  rurban
1164 // remove debugging prints
1165 //
1166 // Revision 1.182  2004/10/12 13:13:19  rurban
1167 // php5 compatibility (5.0.1 ok)
1168 //
1169 // Revision 1.181  2004/10/07 16:08:58  rurban
1170 // fixed broken FileUser session handling.
1171 //   thanks to Arnaud Fontaine for detecting this.
1172 // enable file user Administrator membership.
1173 //
1174 // Revision 1.180  2004/10/04 23:39:34  rurban
1175 // just aesthetics
1176 //
1177 // Revision 1.179  2004/09/25 18:57:42  rurban
1178 // better ACL error message: view not browse, change not setacl, ...
1179 //
1180 // Revision 1.178  2004/09/25 16:27:36  rurban
1181 // better not allowed description: on global disallowed, and on missing pageperms
1182 //
1183 // Revision 1.177  2004/09/14 10:31:09  rurban
1184 // exclude E_STRICT for php5: untested. I believe this must be set earlier because the parsing step is already strict, and this is called at run-time
1185 //
1186 // Revision 1.176  2004/08/05 17:33:22  rurban
1187 // aesthetic typo
1188 //
1189 // Revision 1.175  2004/07/13 13:08:25  rurban
1190 // fix PEAR memory waste issues
1191 //
1192 // Revision 1.174  2004/07/08 13:50:32  rurban
1193 // various unit test fixes: print error backtrace on _DEBUG_TRACE; allusers fix; new PHPWIKI_NOMAIN constant for omitting the mainloop
1194 //
1195 // Revision 1.173  2004/07/05 12:57:54  rurban
1196 // add mysql timeout
1197 //
1198 // Revision 1.172  2004/07/03 08:04:19  rurban
1199 // fixed implicit PersonalPage login (e.g. on edit), fixed to check against create ACL on create, not edit
1200 //
1201 // Revision 1.171  2004/06/29 09:30:42  rurban
1202 // force string hash
1203 //
1204 // Revision 1.170  2004/06/25 14:29:20  rurban
1205 // WikiGroup refactoring:
1206 //   global group attached to user, code for not_current user.
1207 //   improved helpers for special groups (avoid double invocations)
1208 // new experimental config option ENABLE_XHTML_XML (fails with IE, and document.write())
1209 // fixed a XHTML validation error on userprefs.tmpl
1210 //
1211 // Revision 1.169  2004/06/20 14:42:54  rurban
1212 // various php5 fixes (still broken at blockparser)
1213 //
1214 // Revision 1.168  2004/06/17 10:39:18  rurban
1215 // fix reverse translation of possible actionpage
1216 //
1217 // Revision 1.167  2004/06/16 13:21:16  rurban
1218 // stabilize on failing ldap queries or bind
1219 //
1220 // Revision 1.166  2004/06/15 09:15:52  rurban
1221 // IMPORTANT: fixed passwd handling for passwords stored in prefs:
1222 //   fix encrypted usage, actually store and retrieve them from db
1223 //   fix bogologin with passwd set.
1224 // fix php crashes with call-time pass-by-reference (references wrongly used
1225 //   in declaration AND call). This affected mainly Apache2 and IIS.
1226 //   (Thanks to John Cole to detect this!)
1227 //
1228 // Revision 1.165  2004/06/14 11:31:37  rurban
1229 // renamed global $Theme to $WikiTheme (gforge nameclash)
1230 // inherit PageList default options from PageList
1231 //   default sortby=pagename
1232 // use options in PageList_Selectable (limit, sortby, ...)
1233 // added action revert, with button at action=diff
1234 // added option regex to WikiAdminSearchReplace
1235 //
1236 // Revision 1.164  2004/06/13 13:54:25  rurban
1237 // Catch fatals on the four dump calls (as file and zip, as html and mimified)
1238 // FoafViewer: Check against external requirements, instead of fatal.
1239 // Change output for xhtmldumps: using file:// urls to the local fs.
1240 // Catch SOAP fatal by checking for GOOGLE_LICENSE_KEY
1241 // Import GOOGLE_LICENSE_KEY and FORTUNE_DIR from config.ini.
1242 //
1243 // Revision 1.163  2004/06/13 11:35:32  rurban
1244 // check for create action on action=edit not to fool PagePerm checks
1245 //
1246 // Revision 1.162  2004/06/08 10:05:11  rurban
1247 // simplified admin action shortcuts
1248 //
1249 // Revision 1.161  2004/06/07 22:58:40  rurban
1250 // simplified chown, setacl, dump actions
1251 //
1252 // Revision 1.160  2004/06/07 22:44:14  rurban
1253 // added simplified chown, setacl actions
1254 //
1255 // Revision 1.159  2004/06/06 16:58:51  rurban
1256 // added more required ActionPages for foreign languages
1257 // install now english ActionPages if no localized are found. (again)
1258 // fixed default anon user level to be 0, instead of -1
1259 //   (wrong "required administrator to view this page"...)
1260 //
1261 // Revision 1.158  2004/06/04 20:32:53  rurban
1262 // Several locale related improvements suggested by Pierrick Meignen
1263 // LDAP fix by John Cole
1264 // reanable admin check without ENABLE_PAGEPERM in the admin plugins
1265 //
1266 // Revision 1.157  2004/06/04 12:40:21  rurban
1267 // Restrict valid usernames to prevent from attacks against external auth or compromise
1268 // possible holes.
1269 // Fix various WikiUser old issues with default IMAP,LDAP,POP3 configs. Removed these.
1270 // Fxied more warnings
1271 //
1272 // Revision 1.156  2004/06/03 17:58:16  rurban
1273 // support immediate LANG and THEME switch inside a session
1274 //
1275 // Revision 1.155  2004/06/03 10:18:19  rurban
1276 // fix FileUser locking issues, new config ENABLE_PAGEPERM
1277 //
1278 // Revision 1.154  2004/06/02 18:01:46  rurban
1279 // init global FileFinder to add proper include paths at startup
1280 //   adds PHPWIKI_DIR if started from another dir, lib/pear also
1281 // fix slashify for Windows
1282 // fix USER_AUTH_POLICY=old, use only USER_AUTH_ORDER methods (besides HttpAuth)
1283 //
1284 // Revision 1.153  2004/06/01 15:28:00  rurban
1285 // AdminUser only ADMIN_USER not member of Administrators
1286 // some RateIt improvements by dfrankow
1287 // edit_toolbar buttons
1288 //
1289 // Revision 1.152  2004/05/27 17:49:06  rurban
1290 // renamed DB_Session to DbSession (in CVS also)
1291 // added WikiDB->getParam and WikiDB->getAuthParam method to get rid of globals
1292 // remove leading slash in error message
1293 // added force_unlock parameter to File_Passwd (no return on stale locks)
1294 // fixed adodb session AffectedRows
1295 // added FileFinder helpers to unify local filenames and DATA_PATH names
1296 // editpage.php: new edit toolbar javascript on ENABLE_EDIT_TOOLBAR
1297 //
1298 // Revision 1.151  2004/05/25 12:40:48  rurban
1299 // trim the pagename
1300 //
1301 // Revision 1.150  2004/05/25 10:18:44  rurban
1302 // Check for UTF-8 URLs; Internet Explorer produces these if you
1303 // type non-ASCII chars in the URL bar or follow unescaped links.
1304 // Fixes sf.net bug #953949
1305 // src: languages/Language.php:checkTitleEncoding() from mediawiki
1306 //
1307 // Revision 1.149  2004/05/18 13:31:19  rurban
1308 // hold warnings until headers are sent. new Error-style with collapsed output of repeated messages
1309 //
1310 // Revision 1.148  2004/05/17 17:43:29  rurban
1311 // CGI: no PATH_INFO fix
1312 //
1313 // Revision 1.147  2004/05/15 19:48:33  rurban
1314 // fix some too loose PagePerms for signed, but not authenticated users
1315 //  (admin, owner, creator)
1316 // no double login page header, better login msg.
1317 // moved action_pdf to lib/pdf.php
1318 //
1319 // Revision 1.146  2004/05/15 18:31:01  rurban
1320 // some action=pdf Request fixes: With MSIE it works now. Now the work with the page formatting begins.
1321 //
1322 // Revision 1.145  2004/05/12 10:49:55  rurban
1323 // require_once fix for those libs which are loaded before FileFinder and
1324 //   its automatic include_path fix, and where require_once doesn't grok
1325 //   dirname(__FILE__) != './lib'
1326 // upgrade fix with PearDB
1327 // navbar.tmpl: remove spaces for IE &nbsp; button alignment
1328 //
1329 // Revision 1.144  2004/05/06 19:26:16  rurban
1330 // improve stability, trying to find the InlineParser endless loop on sf.net
1331 //
1332 // remove end-of-zip comments to fix sf.net bug #777278 and probably #859628
1333 //
1334 // Revision 1.143  2004/05/06 17:30:38  rurban
1335 // CategoryGroup: oops, dos2unix eol
1336 // improved phpwiki_version:
1337 //   pre -= .0001 (1.3.10pre: 1030.099)
1338 //   -p1 += .001 (1.3.9-p1: 1030.091)
1339 // improved InstallTable for mysql and generic SQL versions and all newer tables so far.
1340 // abstracted more ADODB/PearDB methods for action=upgrade stuff:
1341 //   backend->backendType(), backend->database(),
1342 //   backend->listOfFields(),
1343 //   backend->listOfTables(),
1344 //
1345 // Revision 1.142  2004/05/04 22:34:25  rurban
1346 // more pdf support
1347 //
1348 // Revision 1.141  2004/05/03 13:16:47  rurban
1349 // fixed UserPreferences update, esp for boolean and int
1350 //
1351 // Revision 1.140  2004/05/02 21:26:38  rurban
1352 // limit user session data (HomePageHandle and auth_dbi have to invalidated anyway)
1353 //   because they will not survive db sessions, if too large.
1354 // extended action=upgrade
1355 // some WikiTranslation button work
1356 // revert WIKIAUTH_UNOBTAINABLE (need it for main.php)
1357 // some temp. session debug statements
1358 //
1359 // Revision 1.139  2004/05/02 15:10:07  rurban
1360 // new finally reliable way to detect if /index.php is called directly
1361 //   and if to include lib/main.php
1362 // new global AllActionPages
1363 // SetupWiki now loads all mandatory pages: HOME_PAGE, action pages, and warns if not.
1364 // WikiTranslation what=buttons for Carsten to create the missing MacOSX buttons
1365 // PageGroupTestOne => subpages
1366 // renamed PhpWikiRss to PhpWikiRecentChanges
1367 // more docs, default configs, ...
1368 //
1369 // Revision 1.138  2004/05/01 15:59:29  rurban
1370 // more php-4.0.6 compatibility: superglobals
1371 //
1372 // Revision 1.137  2004/04/29 19:39:44  rurban
1373 // special support for formatted plugins (one-liners)
1374 //   like <small><plugin BlaBla ></small>
1375 // iter->asArray() helper for PopularNearby
1376 // db_session for older php's (no &func() allowed)
1377 //
1378 // Revision 1.136  2004/04/29 17:18:19  zorloc
1379 // Fixes permission failure issues.  With PagePermissions and Disabled Actions when user did not have permission WIKIAUTH_FORBIDDEN was returned.  In WikiUser this was ok because WIKIAUTH_FORBIDDEN had a value of 11 -- thus no user could perform that action.  But WikiUserNew has a WIKIAUTH_FORBIDDEN value of -1 -- thus a user without sufficent permission to do anything.  The solution is a new high value permission level (WIKIAUTH_UNOBTAINABLE) to be the default level for access failure.
1380 //
1381 // Revision 1.135  2004/04/26 12:15:01  rurban
1382 // check default config values
1383 //
1384 // Revision 1.134  2004/04/23 06:46:37  zorloc
1385 // Leave DB connection open when USE_DB_SESSION is true so that session info can be written to the DB.
1386 //
1387 // Revision 1.133  2004/04/20 18:10:31  rurban
1388 // config refactoring:
1389 //   FileFinder is needed for WikiFarm scripts calling index.php
1390 //   config run-time calls moved to lib/IniConfig.php:fix_configs()
1391 //   added PHPWIKI_DIR smart-detection code (Theme finder)
1392 //   moved FileFind to lib/FileFinder.php
1393 //   cleaned lib/config.php
1394 //
1395 // Revision 1.132  2004/04/19 21:51:41  rurban
1396 // php5 compatibility: it works!
1397 //
1398 // Revision 1.131  2004/04/19 18:27:45  rurban
1399 // Prevent from some PHP5 warnings (ref args, no :: object init)
1400 //   php5 runs now through, just one wrong XmlElement object init missing
1401 // Removed unneccesary UpgradeUser lines
1402 // Changed WikiLink to omit version if current (RecentChanges)
1403 //
1404 // Revision 1.130  2004/04/18 00:25:53  rurban
1405 // allow "0" pagename
1406 //
1407 // Revision 1.129  2004/04/07 23:13:19  rurban
1408 // fixed pear/File_Passwd for Windows
1409 // fixed FilePassUser sessions (filehandle revive) and password update
1410 //
1411 // Revision 1.128  2004/04/02 15:06:55  rurban
1412 // fixed a nasty ADODB_mysql session update bug
1413 // improved UserPreferences layout (tabled hints)
1414 // fixed UserPreferences auth handling
1415 // improved auth stability
1416 // improved old cookie handling: fixed deletion of old cookies with paths
1417 //
1418 // Revision 1.127  2004/03/25 17:00:31  rurban
1419 // more code to convert old-style pref array to new hash
1420 //
1421 // Revision 1.126  2004/03/24 19:39:03  rurban
1422 // php5 workaround code (plus some interim debugging code in XmlElement)
1423 //   php5 doesn't work yet with the current XmlElement class constructors,
1424 //   WikiUserNew does work better than php4.
1425 // rewrote WikiUserNew user upgrading to ease php5 update
1426 // fixed pref handling in WikiUserNew
1427 // added Email Notification
1428 // added simple Email verification
1429 // removed emailVerify userpref subclass: just a email property
1430 // changed pref binary storage layout: numarray => hash of non default values
1431 // print optimize message only if really done.
1432 // forced new cookie policy: delete pref cookies, use only WIKI_ID as plain string.
1433 //   prefs should be stored in db or homepage, besides the current session.
1434 //
1435 // Revision 1.125  2004/03/14 16:30:52  rurban
1436 // db-handle session revivification, dba fixes
1437 //
1438 // Revision 1.124  2004/03/12 15:48:07  rurban
1439 // fixed explodePageList: wrong sortby argument order in UnfoldSubpages
1440 // simplified lib/stdlib.php:explodePageList
1441 //
1442 // Revision 1.123  2004/03/10 15:41:27  rurban
1443 // use default pref mysql table
1444 //
1445 // Revision 1.122  2004/03/08 18:17:09  rurban
1446 // added more WikiGroup::getMembersOf methods, esp. for special groups
1447 // fixed $LDAP_SET_OPTIONS
1448 // fixed _AuthInfo group methods
1449 //
1450 // Revision 1.121  2004/03/01 13:48:45  rurban
1451 // rename fix
1452 // p[] consistency fix
1453 //
1454 // Revision 1.120  2004/03/01 10:22:41  rurban
1455 // initializeTheme optimize
1456 //
1457 // Revision 1.119  2004/02/26 20:45:06  rurban
1458 // check for ALLOW_ANON_USER = false
1459 //
1460 // Revision 1.118  2004/02/26 01:32:03  rurban
1461 // fixed session login with old WikiUser object. strangely, the errormask gets corruoted to 1, Pear???
1462 //
1463 // Revision 1.117  2004/02/24 17:19:37  rurban
1464 // debugging helpers only
1465 //
1466 // Revision 1.116  2004/02/24 15:17:14  rurban
1467 // improved auth errors with individual pages. the fact that you may not browse a certain admin page does not conclude that you may not browse the whole wiki. renamed browse => view
1468 //
1469 // Revision 1.115  2004/02/15 21:34:37  rurban
1470 // PageList enhanced and improved.
1471 // fixed new WikiAdmin... plugins
1472 // editpage, Theme with exp. htmlarea framework
1473 //   (htmlarea yet committed, this is really questionable)
1474 // WikiUser... code with better session handling for prefs
1475 // enhanced UserPreferences (again)
1476 // RecentChanges for show_deleted: how should pages be deleted then?
1477 //
1478 // Revision 1.114  2004/02/15 17:30:13  rurban
1479 // workaround for lost db connnection handle on session restauration (->_auth_dbi)
1480 // fixed getPreferences() (esp. from sessions)
1481 // fixed setPreferences() (update and set),
1482 // fixed AdoDb DB statements,
1483 // update prefs only at UserPreferences POST (for testing)
1484 // unified db prefs methods (but in external pref classes yet)
1485 //
1486 // Revision 1.113  2004/02/12 13:05:49  rurban
1487 // Rename functional for PearDB backend
1488 // some other minor changes
1489 // SiteMap comes with a not yet functional feature request: includepages (tbd)
1490 //
1491 // Revision 1.112  2004/02/09 03:58:12  rurban
1492 // for now default DB_SESSION to false
1493 // PagePerm:
1494 //   * not existing perms will now query the parent, and not
1495 //     return the default perm
1496 //   * added pagePermissions func which returns the object per page
1497 //   * added getAccessDescription
1498 // WikiUserNew:
1499 //   * added global ->prepare (not yet used) with smart user/pref/member table prefixing.
1500 //   * force init of authdbh in the 2 db classes
1501 // main:
1502 //   * fixed session handling (not triple auth request anymore)
1503 //   * don't store cookie prefs with sessions
1504 // stdlib: global obj2hash helper from _AuthInfo, also needed for PagePerm
1505 //
1506 // Revision 1.111  2004/02/07 10:41:25  rurban
1507 // fixed auth from session (still double code but works)
1508 // fixed GroupDB
1509 // fixed DbPassUser upgrade and policy=old
1510 // added GroupLdap
1511 //
1512 // Revision 1.110  2004/02/03 09:45:39  rurban
1513 // LDAP cleanup, start of new Pref classes
1514 //
1515 // Revision 1.109  2004/01/30 19:57:58  rurban
1516 // fixed DBAuthParams['pref_select']: wrong _auth_dbi object used.
1517 //
1518 // Revision 1.108  2004/01/28 14:34:14  rurban
1519 // session table takes the common prefix
1520 // + various minor stuff
1521 // reallow password changing
1522 //
1523 // Revision 1.107  2004/01/27 23:23:39  rurban
1524 // renamed ->Username => _userid for consistency
1525 // renamed mayCheckPassword => mayCheckPass
1526 // fixed recursion problem in WikiUserNew
1527 // fixed bogo login (but not quite 100% ready yet, password storage)
1528 //
1529 // Revision 1.106  2004/01/26 09:17:49  rurban
1530 // * changed stored pref representation as before.
1531 //   the array of objects is 1) bigger and 2)
1532 //   less portable. If we would import packed pref
1533 //   objects and the object definition was changed, PHP would fail.
1534 //   This doesn't happen with an simple array of non-default values.
1535 // * use $prefs->retrieve and $prefs->store methods, where retrieve
1536 //   understands the interim format of array of objects also.
1537 // * simplified $prefs->get() and fixed $prefs->set()
1538 // * added $user->_userid and class '_WikiUser' portability functions
1539 // * fixed $user object ->_level upgrading, mostly using sessions.
1540 //   this fixes yesterdays problems with loosing authorization level.
1541 // * fixed WikiUserNew::checkPass to return the _level
1542 // * fixed WikiUserNew::isSignedIn
1543 // * added explodePageList to class PageList, support sortby arg
1544 // * fixed UserPreferences for WikiUserNew
1545 // * fixed WikiPlugin for empty defaults array
1546 // * UnfoldSubpages: added pagename arg, renamed pages arg,
1547 //   removed sort arg, support sortby arg
1548 //
1549 // Revision 1.105  2004/01/25 03:57:15  rurban
1550 // WikiUserNew support (temp. ENABLE_USER_NEW constant)
1551 //
1552 // Revision 1.104  2003/12/26 06:41:16  carstenklapp
1553 // Bugfix: Try to defer OS errors about session.save_path and ACCESS_LOG,
1554 // so they don't prevent IE from partially (or not at all) rendering the
1555 // page. This should help a little for the IE user who encounters trouble
1556 // when setting up a new PhpWiki for the first time.
1557 //
1558 // Revision 1.103  2003/12/02 00:10:00  carstenklapp
1559 // Bugfix: Ongoing work to untangle UserPreferences/WikiUser/request code
1560 // mess: UserPreferences should take effect immediately now upon signing
1561 // in.
1562 //
1563 // Revision 1.102  2003/11/25 22:55:32  carstenklapp
1564 // Localization bugfix: For wikis where English is not the default system
1565 // language, make sure that the authority error message (i.e. "You must
1566 // sign in to edit pages in this wiki" etc.) is displayed in the wiki's
1567 // default language. Previously it would always display in English.
1568 // (Added call to update_locale() before displaying any messages prior to
1569 // the login prompt.)
1570 //
1571 // Revision 1.101  2003/11/25 21:49:44  carstenklapp
1572 // Bugfix: For a non-english wiki or when the user's preference is not
1573 // english, the wiki would always use the english ActionPage first if it
1574 // was present rather than the appropriate localised variant. (PhpWikis
1575 // running only in english or Wikis running ONLY without any english
1576 // ActionPages would not notice this bug, only when both english and
1577 // localised ActionPages were in the DB.) Now we check for the localised
1578 // variant first.
1579 //
1580 // Revision 1.100  2003/11/18 16:54:18  carstenklapp
1581 // Reformatting only: Tabs to spaces, added rcs log.
1582 //
1583
1584
1585 // Local Variables:
1586 // mode: php
1587 // tab-width: 8
1588 // c-basic-offset: 4
1589 // c-hanging-comment-ender-p: nil
1590 // indent-tabs-mode: nil
1591 // End:
1592 ?>