]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/WikiDB.php
Revert the previous wrong bugfix #1175761: USECACHE was mixed with WIKIDB_NOCACHE_MARKUP.
[SourceForge/phpwiki.git] / lib / WikiDB.php
1 <?php //-*-php-*-
2 rcs_id('$Id: WikiDB.php,v 1.130 2005-04-06 06:19:30 rurban Exp $');
3
4 require_once('lib/PageType.php');
5
6 /**
7  * The classes in the file define the interface to the
8  * page database.
9  *
10  * @package WikiDB
11  * @author Geoffrey T. Dairiki <dairiki@dairiki.org>
12  *         Reini Urban
13  */
14
15 /**
16  * Force the creation of a new revision.
17  * @see WikiDB_Page::createRevision()
18  */
19 if (!defined('WIKIDB_FORCE_CREATE'))
20     define('WIKIDB_FORCE_CREATE', -1);
21
22 /** 
23  * Abstract base class for the database used by PhpWiki.
24  *
25  * A <tt>WikiDB</tt> is a container for <tt>WikiDB_Page</tt>s which in
26  * turn contain <tt>WikiDB_PageRevision</tt>s.
27  *
28  * Conceptually a <tt>WikiDB</tt> contains all possible
29  * <tt>WikiDB_Page</tt>s, whether they have been initialized or not.
30  * Since all possible pages are already contained in a WikiDB, a call
31  * to WikiDB::getPage() will never fail (barring bugs and
32  * e.g. filesystem or SQL database problems.)
33  *
34  * Also each <tt>WikiDB_Page</tt> always contains at least one
35  * <tt>WikiDB_PageRevision</tt>: the default content (e.g. "Describe
36  * [PageName] here.").  This default content has a version number of
37  * zero.
38  *
39  * <tt>WikiDB_PageRevision</tt>s have read-only semantics. One can
40  * only create new revisions or delete old ones --- one can not modify
41  * an existing revision.
42  */
43 class WikiDB {
44     /**
45      * Open a WikiDB database.
46      *
47      * This is a static member function. This function inspects its
48      * arguments to determine the proper subclass of WikiDB to
49      * instantiate, and then it instantiates it.
50      *
51      * @access public
52      *
53      * @param hash $dbparams Database configuration parameters.
54      * Some pertinent paramters are:
55      * <dl>
56      * <dt> dbtype
57      * <dd> The back-end type.  Current supported types are:
58      *   <dl>
59      *   <dt> SQL
60      *     <dd> Generic SQL backend based on the PEAR/DB database abstraction
61      *       library. (More stable and conservative)
62      *   <dt> ADODB
63      *     <dd> Another generic SQL backend. (More current features are tested here. Much faster)
64      *   <dt> dba
65      *     <dd> Dba based backend. The default and by far the fastest.
66      *   <dt> cvs
67      *     <dd> 
68      *   <dt> file
69      *     <dd> flat files
70      *   </dl>
71      *
72      * <dt> dsn
73      * <dd> (Used by the SQL and ADODB backends.)
74      *      The DSN specifying which database to connect to.
75      *
76      * <dt> prefix
77      * <dd> Prefix to be prepended to database tables (and file names).
78      *
79      * <dt> directory
80      * <dd> (Used by the dba backend.)
81      *      Which directory db files reside in.
82      *
83      * <dt> timeout
84      * <dd> Used only by the dba backend so far. 
85      *      And: When optimizing mysql it closes timed out mysql processes.
86      *      otherwise only used for dba: Timeout in seconds for opening (and 
87      *      obtaining lock) on the dbm file.
88      *
89      * <dt> dba_handler
90      * <dd> (Used by the dba backend.)
91      *
92      *      Which dba handler to use. Good choices are probably either
93      *      'gdbm' or 'db2'.
94      * </dl>
95      *
96      * @return WikiDB A WikiDB object.
97      **/
98     function open ($dbparams) {
99         $dbtype = $dbparams{'dbtype'};
100         include_once("lib/WikiDB/$dbtype.php");
101                                 
102         $class = 'WikiDB_' . $dbtype;
103         return new $class ($dbparams);
104     }
105
106
107     /**
108      * Constructor.
109      *
110      * @access private
111      * @see open()
112      */
113     function WikiDB (&$backend, $dbparams) {
114         $this->_backend = &$backend;
115         // don't do the following with the auth_dsn!
116         if (isset($dbparams['auth_dsn'])) return;
117         
118         $this->_cache = new WikiDB_cache($backend);
119         if (!empty($GLOBALS['request'])) $GLOBALS['request']->_dbi = $this;
120
121         // If the database doesn't yet have a timestamp, initialize it now.
122         if ($this->get('_timestamp') === false)
123             $this->touch();
124         
125         //FIXME: devel checking.
126         //$this->_backend->check();
127     }
128     
129     /**
130      * Close database connection.
131      *
132      * The database may no longer be used after it is closed.
133      *
134      * Closing a WikiDB invalidates all <tt>WikiDB_Page</tt>s,
135      * <tt>WikiDB_PageRevision</tt>s and <tt>WikiDB_PageIterator</tt>s
136      * which have been obtained from it.
137      *
138      * @access public
139      */
140     function close () {
141         $this->_backend->close();
142         $this->_cache->close();
143     }
144     
145     /**
146      * Get a WikiDB_Page from a WikiDB.
147      *
148      * A {@link WikiDB} consists of the (infinite) set of all possible pages,
149      * therefore this method never fails.
150      *
151      * @access public
152      * @param string $pagename Which page to get.
153      * @return WikiDB_Page The requested WikiDB_Page.
154      */
155     function getPage($pagename) {
156         static $error_displayed = false;
157         $pagename = (string) $pagename;
158         if (DEBUG) {
159             if ($pagename === '') {
160                 if ($error_displayed) return false;
161                 $error_displayed = true;
162                 if (function_exists("xdebug_get_function_stack"))
163                     var_dump(xdebug_get_function_stack());
164                 trigger_error("empty pagename", E_USER_WARNING);
165                 return false;
166             }
167         } else {
168             assert($pagename != '');
169         }
170         return new WikiDB_Page($this, $pagename);
171     }
172
173     /**
174      * Determine whether page exists (in non-default form).
175      *
176      * <pre>
177      *   $is_page = $dbi->isWikiPage($pagename);
178      * </pre>
179      * is equivalent to
180      * <pre>
181      *   $page = $dbi->getPage($pagename);
182      *   $current = $page->getCurrentRevision();
183      *   $is_page = ! $current->hasDefaultContents();
184      * </pre>
185      * however isWikiPage may be implemented in a more efficient
186      * manner in certain back-ends.
187      *
188      * @access public
189      *
190      * @param string $pagename string Which page to check.
191      *
192      * @return boolean True if the page actually exists with
193      * non-default contents in the WikiDataBase.
194      */
195     function isWikiPage ($pagename) {
196         $page = $this->getPage($pagename);
197         return $page->exists();
198     }
199
200     /**
201      * Delete page from the WikiDB. 
202      *
203      * Deletes the page from the WikiDB with the possibility to revert and diff.
204      * //Also resets all page meta-data to the default values.
205      *
206      * Note: purgePage() effectively destroys all revisions of the page from the WikiDB. 
207      *
208      * @access public
209      *
210      * @param string $pagename Name of page to delete.
211      */
212     function deletePage($pagename) {
213         // don't create empty revisions of already purged pages.
214         if ($this->_backend->get_latest_version($pagename))
215             $result = $this->_cache->delete_page($pagename);
216         else 
217             $result = -1;
218
219         /* Generate notification emails? */
220         if (! $this->isWikiPage($pagename) and !isa($GLOBALS['request'],'MockRequest')) {
221             $notify = $this->get('notify');
222             if (!empty($notify) and is_array($notify)) {
223                 //TODO: deferr it (quite a massive load if you remove some pages).
224                 //TODO: notification class which catches all changes,
225                 //  and decides at the end of the request what to mail. (type, page, who, what, users, emails)
226                 // could be used for PageModeration and RSS2 Cloud xml-rpc also.
227                 $page = new WikiDB_Page($this, $pagename);
228                 list($emails, $userids) = $page->getPageChangeEmails($notify);
229                 if (!empty($emails)) {
230                     $editedby = sprintf(_("Removed by: %s"), $GLOBALS['request']->_user->getId()); // Todo: host_id
231                     $emails = join(',', $emails);
232                     $subject = sprintf(_("Page removed %s"), urlencode($pagename));
233                     if (mail($emails,"[".WIKI_NAME."] ".$subject, 
234                              $subject."\n".
235                              $editedby."\n\n".
236                              "Deleted $pagename"))
237                         trigger_error(sprintf(_("PageChange Notification of %s sent to %s"),
238                                               $pagename, join(',',$userids)), E_USER_NOTICE);
239                     else
240                         trigger_error(sprintf(_("PageChange Notification Error: Couldn't send %s to %s"),
241                                               $pagename, join(',',$userids)), E_USER_WARNING);
242                 }
243             }
244         }
245
246         //How to create a RecentChanges entry with explaining summary? Dynamically
247         /*
248         $page = $this->getPage($pagename);
249         $current = $page->getCurrentRevision();
250         $meta = $current->_data;
251         $version = $current->getVersion();
252         $meta['summary'] = _("removed");
253         $page->save($current->getPackedContent(), $version + 1, $meta);
254         */
255         return $result;
256     }
257
258     /**
259      * Completely remove the page from the WikiDB, without undo possibility.
260      */
261     function purgePage($pagename) {
262         $result = $this->_cache->purge_page($pagename);
263         $this->deletePage($pagename); // just for the notification
264         return $result;
265     }
266     
267     /**
268      * Retrieve all pages.
269      *
270      * Gets the set of all pages with non-default contents.
271      *
272      * @access public
273      *
274      * @param boolean $include_defaulted Normally pages whose most
275      * recent revision has empty content are considered to be
276      * non-existant. Unless $include_defaulted is set to true, those
277      * pages will not be returned.
278      *
279      * @return WikiDB_PageIterator A WikiDB_PageIterator which contains all pages
280      *     in the WikiDB which have non-default contents.
281      */
282     function getAllPages($include_empty=false, $sortby=false, $limit=false, 
283                          $exclude=false) 
284     {
285         // HACK: memory_limit=8M will fail on too large pagesets. old php on unix only!
286         if (USECACHE) {
287             $mem = ini_get("memory_limit");
288             if ($mem and !$limit and !isWindows() and !check_php_version(4,3)) {
289                 $limit = 450;
290                 $GLOBALS['request']->setArg('limit', $limit);
291                 $GLOBALS['request']->setArg('paging', 'auto');
292             }
293         }
294         $result = $this->_backend->get_all_pages($include_empty, $sortby, $limit, 
295                                                  $exclude);
296         return new WikiDB_PageIterator($this, $result, 
297                                        array('include_empty' => $include_empty, 
298                                              'exclude' => $exclude,
299                                              'limit' => $limit));
300     }
301
302     /**
303      * $include_empty = true: include also empty pages
304      * exclude: comma-seperated list pagenames: TBD: array of pagenames
305      */
306     function numPages($include_empty=false, $exclude='') {
307         if (method_exists($this->_backend, 'numPages'))
308             // FIXME: currently are all args ignored.
309             $count = $this->_backend->numPages($include_empty, $exclude);
310         else {
311             // FIXME: exclude ignored.
312             $iter = $this->getAllPages($include_empty, false, false, $exclude);
313             $count = $iter->count();
314             $iter->free();
315         }
316         return (int)$count;
317     }
318     
319     /**
320      * Title search.
321      *
322      * Search for pages containing (or not containing) certain words
323      * in their names.
324      *
325      * Pages are returned in alphabetical order whenever it is
326      * practical to do so.
327      *
328      * FIXME: clarify $search syntax. provide glob=>TextSearchQuery converters
329      *
330      * @access public
331      * @param TextSearchQuery $search A TextSearchQuery object
332      * @return WikiDB_PageIterator A WikiDB_PageIterator containing the matching pages.
333      * @see TextSearchQuery
334      */
335     function titleSearch($search) {
336         $result = $this->_backend->text_search($search, false);
337         return new WikiDB_PageIterator($this, $result);
338     }
339
340     /**
341      * Full text search.
342      *
343      * Search for pages containing (or not containing) certain words
344      * in their entire text (this includes the page content and the
345      * page name).
346      *
347      * Pages are returned in alphabetical order whenever it is
348      * practical to do so.
349      *
350      * @access public
351      *
352      * @param TextSearchQuery $search A TextSearchQuery object.
353      * @return WikiDB_PageIterator A WikiDB_PageIterator containing the matching pages.
354      * @see TextSearchQuery
355      */
356     function fullSearch($search) {
357         $result = $this->_backend->text_search($search, true);
358         return new WikiDB_PageIterator($this, $result);
359     }
360
361     /**
362      * Find the pages with the greatest hit counts.
363      *
364      * Pages are returned in reverse order by hit count.
365      *
366      * @access public
367      *
368      * @param integer $limit The maximum number of pages to return.
369      * Set $limit to zero to return all pages.  If $limit < 0, pages will
370      * be sorted in decreasing order of popularity.
371      *
372      * @return WikiDB_PageIterator A WikiDB_PageIterator containing the matching
373      * pages.
374      */
375     function mostPopular($limit = 20, $sortby = '-hits') {
376         $result = $this->_backend->most_popular($limit, $sortby);
377         return new WikiDB_PageIterator($this, $result);
378     }
379
380     /**
381      * Find recent page revisions.
382      *
383      * Revisions are returned in reverse order by creation time.
384      *
385      * @access public
386      *
387      * @param hash $params This hash is used to specify various optional
388      *   parameters:
389      * <dl>
390      * <dt> limit 
391      *    <dd> (integer) At most this many revisions will be returned.
392      * <dt> since
393      *    <dd> (integer) Only revisions since this time (unix-timestamp) will be returned. 
394      * <dt> include_minor_revisions
395      *    <dd> (boolean) Also include minor revisions.  (Default is not to.)
396      * <dt> exclude_major_revisions
397      *    <dd> (boolean) Don't include non-minor revisions.
398      *         (Exclude_major_revisions implies include_minor_revisions.)
399      * <dt> include_all_revisions
400      *    <dd> (boolean) Return all matching revisions for each page.
401      *         Normally only the most recent matching revision is returned
402      *         for each page.
403      * </dl>
404      *
405      * @return WikiDB_PageRevisionIterator A WikiDB_PageRevisionIterator containing the
406      * matching revisions.
407      */
408     function mostRecent($params = false) {
409         $result = $this->_backend->most_recent($params);
410         return new WikiDB_PageRevisionIterator($this, $result);
411     }
412
413     /**
414      * @access public
415      *
416      * @return Iterator A generic iterator containing rows of (duplicate) pagename, wantedfrom.
417      */
418     function wantedPages($exclude_from='', $exclude='', $sortby=false, $limit=false) {
419         return $this->_backend->wanted_pages($exclude_from, $exclude, $sortby, $limit);
420         //return new WikiDB_PageIterator($this, $result);
421     }
422
423
424     /**
425      * Call the appropriate backend method.
426      *
427      * @access public
428      * @param string $from Page to rename
429      * @param string $to   New name
430      * @param boolean $updateWikiLinks If the text in all pages should be replaced.
431      * @return boolean     true or false
432      */
433     function renamePage($from, $to, $updateWikiLinks = false) {
434         assert(is_string($from) && $from != '');
435         assert(is_string($to) && $to != '');
436         $result = false;
437         if (method_exists($this->_backend, 'rename_page')) {
438             $oldpage = $this->getPage($from);
439             $newpage = $this->getPage($to);
440             //update all WikiLinks in existing pages
441             //non-atomic! i.e. if rename fails the links are not undone
442             if ($updateWikiLinks) {
443                 require_once('lib/plugin/WikiAdminSearchReplace.php');
444                 $links = $oldpage->getBackLinks();
445                 while ($linked_page = $links->next()) {
446                     WikiPlugin_WikiAdminSearchReplace::replaceHelper($this,
447                                                                      $linked_page->getName(),
448                                                                      $from, $to);
449                 }
450                 $links = $newpage->getBackLinks();
451                 while ($linked_page = $links->next()) {
452                     WikiPlugin_WikiAdminSearchReplace::replaceHelper($this,
453                                                                      $linked_page->getName(),
454                                                                      $from, $to);
455                 }
456             }
457             if ($oldpage->exists() and ! $newpage->exists()) {
458                 if ($result = $this->_backend->rename_page($from, $to)) {
459                     //create a RecentChanges entry with explaining summary
460                     $page = $this->getPage($to);
461                     $current = $page->getCurrentRevision();
462                     $meta = $current->_data;
463                     $version = $current->getVersion();
464                     $meta['summary'] = sprintf(_("renamed from %s"), $from);
465                     $page->save($current->getPackedContent(), $version + 1, $meta);
466                 }
467             } elseif (!$oldpage->getCurrentRevision(false) and !$newpage->exists()) {
468                 // if a version 0 exists try it also.
469                 $result = $this->_backend->rename_page($from, $to);
470             }
471         } else {
472             trigger_error(_("WikiDB::renamePage() not yet implemented for this backend"),
473                           E_USER_WARNING);
474         }
475         /* Generate notification emails? */
476         if ($result and !isa($GLOBALS['request'], 'MockRequest')) {
477             $notify = $this->get('notify');
478             if (!empty($notify) and is_array($notify)) {
479                 list($emails, $userids) = $oldpage->getPageChangeEmails($notify);
480                 if (!empty($emails)) {
481                     $oldpage->sendPageRenameNotification($to, $meta, $emails, $userids);
482                 }
483             }
484         }
485         return $result;
486     }
487
488     /** Get timestamp when database was last modified.
489      *
490      * @return string A string consisting of two integers,
491      * separated by a space.  The first is the time in
492      * unix timestamp format, the second is a modification
493      * count for the database.
494      *
495      * The idea is that you can cast the return value to an
496      * int to get a timestamp, or you can use the string value
497      * as a good hash for the entire database.
498      */
499     function getTimestamp() {
500         $ts = $this->get('_timestamp');
501         return sprintf("%d %d", $ts[0], $ts[1]);
502     }
503     
504     /**
505      * Update the database timestamp.
506      *
507      */
508     function touch() {
509         $ts = $this->get('_timestamp');
510         $this->set('_timestamp', array(time(), $ts[1] + 1));
511     }
512
513         
514     /**
515      * Access WikiDB global meta-data.
516      *
517      * NOTE: this is currently implemented in a hackish and
518      * not very efficient manner.
519      *
520      * @access public
521      *
522      * @param string $key Which meta data to get.
523      * Some reserved meta-data keys are:
524      * <dl>
525      * <dt>'_timestamp' <dd> Data used by getTimestamp().
526      * </dl>
527      *
528      * @return scalar The requested value, or false if the requested data
529      * is not set.
530      */
531     function get($key) {
532         if (!$key || $key[0] == '%')
533             return false;
534         /*
535          * Hack Alert: We can use any page (existing or not) to store
536          * this data (as long as we always use the same one.)
537          */
538         $gd = $this->getPage('global_data');
539         $data = $gd->get('__global');
540
541         if ($data && isset($data[$key]))
542             return $data[$key];
543         else
544             return false;
545     }
546
547     /**
548      * Set global meta-data.
549      *
550      * NOTE: this is currently implemented in a hackish and
551      * not very efficient manner.
552      *
553      * @see get
554      * @access public
555      *
556      * @param string $key  Meta-data key to set.
557      * @param string $newval  New value.
558      */
559     function set($key, $newval) {
560         if (!$key || $key[0] == '%')
561             return;
562         
563         $gd = $this->getPage('global_data');
564         $data = $gd->get('__global');
565         if ($data === false)
566             $data = array();
567
568         if (empty($newval))
569             unset($data[$key]);
570         else
571             $data[$key] = $newval;
572
573         $gd->set('__global', $data);
574     }
575
576     /* TODO: these are really backend methods */
577
578     // SQL result: for simple select or create/update queries
579     // returns the database specific resource type
580     function genericSqlQuery($sql, $args=false) {
581         if (function_exists('debug_backtrace')) { // >= 4.3.0
582             echo "<pre>", printSimpleTrace(debug_backtrace()), "</pre>\n";
583         }
584         trigger_error("no SQL database", E_USER_ERROR);
585         return false;
586     }
587
588     // SQL iter: for simple select or create/update queries
589     // returns the generic iterator object (count,next)
590     function genericSqlIter($sql, $field_list = NULL) {
591         if (function_exists('debug_backtrace')) { // >= 4.3.0
592             echo "<pre>", printSimpleTrace(debug_backtrace()), "</pre>\n";
593         }
594         trigger_error("no SQL database", E_USER_ERROR);
595         return false;
596     }
597     
598     // see backend upstream methods
599     // ADODB adds surrounding quotes, SQL not yet!
600     function quote ($s) {
601         return $s;
602     }
603
604     function isOpen () {
605         global $request;
606         if (!$request->_dbi) return false;
607         else return false; /* so far only needed for sql so false it. 
608                             later we have to check dba also */
609     }
610
611     function getParam($param) {
612         global $DBParams;
613         if (isset($DBParams[$param])) return $DBParams[$param];
614         elseif ($param == 'prefix') return '';
615         else return false;
616     }
617
618     function getAuthParam($param) {
619         global $DBAuthParams;
620         if (isset($DBAuthParams[$param])) return $DBAuthParams[$param];
621         elseif ($param == 'USER_AUTH_ORDER') return $GLOBALS['USER_AUTH_ORDER'];
622         elseif ($param == 'USER_AUTH_POLICY') return $GLOBALS['USER_AUTH_POLICY'];
623         else return false;
624     }
625 };
626
627
628 /**
629  * An abstract base class which representing a wiki-page within a
630  * WikiDB.
631  *
632  * A WikiDB_Page contains a number (at least one) of
633  * WikiDB_PageRevisions.
634  */
635 class WikiDB_Page 
636 {
637     function WikiDB_Page(&$wikidb, $pagename) {
638         $this->_wikidb = &$wikidb;
639         $this->_pagename = $pagename;
640         if (DEBUG) {
641             if (!(is_string($pagename) and $pagename != '')) {
642                 if (function_exists("xdebug_get_function_stack")) {
643                     echo "xdebug_get_function_stack(): "; var_dump(xdebug_get_function_stack());
644                 } elseif (function_exists("debug_backtrace")) { // >= 4.3.0
645                     printSimpleTrace(debug_backtrace());
646                 }
647                 trigger_error("empty pagename", E_USER_WARNING);
648                 return false;
649             }
650         } else 
651             assert(is_string($pagename) and $pagename != '');
652     }
653
654     /**
655      * Get the name of the wiki page.
656      *
657      * @access public
658      *
659      * @return string The page name.
660      */
661     function getName() {
662         return $this->_pagename;
663     }
664     
665     // To reduce the memory footprint for larger sets of pagelists,
666     // we don't cache the content (only true or false) and 
667     // we purge the pagedata (_cached_html) also
668     function exists() {
669         if (isset($this->_wikidb->_cache->_id_cache[$this->_pagename])) return true;
670         $current = $this->getCurrentRevision(false);
671         if (!$current) return false;
672         return ! $current->hasDefaultContents();
673     }
674
675     /**
676      * Delete an old revision of a WikiDB_Page.
677      *
678      * Deletes the specified revision of the page.
679      * It is a fatal error to attempt to delete the current revision.
680      *
681      * @access public
682      *
683      * @param integer $version Which revision to delete.  (You can also
684      *  use a WikiDB_PageRevision object here.)
685      */
686     function deleteRevision($version) {
687         $backend = &$this->_wikidb->_backend;
688         $cache = &$this->_wikidb->_cache;
689         $pagename = &$this->_pagename;
690
691         $version = $this->_coerce_to_version($version);
692         if ($version == 0)
693             return;
694
695         $backend->lock(array('page','version'));
696         $latestversion = $cache->get_latest_version($pagename);
697         if ($latestversion && $version == $latestversion) {
698             $backend->unlock(array('page','version'));
699             trigger_error(sprintf("Attempt to delete most recent revision of '%s'",
700                                   $pagename), E_USER_ERROR);
701             return;
702         }
703
704         $cache->delete_versiondata($pagename, $version);
705         $backend->unlock(array('page','version'));
706     }
707
708     /*
709      * Delete a revision, or possibly merge it with a previous
710      * revision.
711      *
712      * The idea is this:
713      * Suppose an author make a (major) edit to a page.  Shortly
714      * after that the same author makes a minor edit (e.g. to fix
715      * spelling mistakes he just made.)
716      *
717      * Now some time later, where cleaning out old saved revisions,
718      * and would like to delete his minor revision (since there's
719      * really no point in keeping minor revisions around for a long
720      * time.)
721      *
722      * Note that the text after the minor revision probably represents
723      * what the author intended to write better than the text after
724      * the preceding major edit.
725      *
726      * So what we really want to do is merge the minor edit with the
727      * preceding edit.
728      *
729      * We will only do this when:
730      * <ul>
731      * <li>The revision being deleted is a minor one, and
732      * <li>It has the same author as the immediately preceding revision.
733      * </ul>
734      */
735     function mergeRevision($version) {
736         $backend = &$this->_wikidb->_backend;
737         $cache = &$this->_wikidb->_cache;
738         $pagename = &$this->_pagename;
739
740         $version = $this->_coerce_to_version($version);
741         if ($version == 0)
742             return;
743
744         $backend->lock(array('version'));
745         $latestversion = $cache->get_latest_version($pagename);
746         if ($latestversion && $version == $latestversion) {
747             $backend->unlock(array('version'));
748             trigger_error(sprintf("Attempt to merge most recent revision of '%s'",
749                                   $pagename), E_USER_ERROR);
750             return;
751         }
752
753         $versiondata = $cache->get_versiondata($pagename, $version, true);
754         if (!$versiondata) {
755             // Not there? ... we're done!
756             $backend->unlock(array('version'));
757             return;
758         }
759
760         if ($versiondata['is_minor_edit']) {
761             $previous = $backend->get_previous_version($pagename, $version);
762             if ($previous) {
763                 $prevdata = $cache->get_versiondata($pagename, $previous);
764                 if ($prevdata['author_id'] == $versiondata['author_id']) {
765                     // This is a minor revision, previous version is
766                     // by the same author. We will merge the
767                     // revisions.
768                     $cache->update_versiondata($pagename, $previous,
769                                                array('%content' => $versiondata['%content'],
770                                                      '_supplanted' => $versiondata['_supplanted']));
771                 }
772             }
773         }
774
775         $cache->delete_versiondata($pagename, $version);
776         $backend->unlock(array('version'));
777     }
778
779     
780     /**
781      * Create a new revision of a {@link WikiDB_Page}.
782      *
783      * @access public
784      *
785      * @param int $version Version number for new revision.  
786      * To ensure proper serialization of edits, $version must be
787      * exactly one higher than the current latest version.
788      * (You can defeat this check by setting $version to
789      * {@link WIKIDB_FORCE_CREATE} --- not usually recommended.)
790      *
791      * @param string $content Contents of new revision.
792      *
793      * @param hash $metadata Metadata for new revision.
794      * All values in the hash should be scalars (strings or integers).
795      *
796      * @param array $links List of pagenames which this page links to.
797      *
798      * @return WikiDB_PageRevision  Returns the new WikiDB_PageRevision object. If
799      * $version was incorrect, returns false
800      */
801     function createRevision($version, &$content, $metadata, $links) {
802         $backend = &$this->_wikidb->_backend;
803         $cache = &$this->_wikidb->_cache;
804         $pagename = &$this->_pagename;
805         $cache->invalidate_cache($pagename);
806         
807         $backend->lock(array('version','page','recent','link','nonempty'));
808
809         $latestversion = $backend->get_latest_version($pagename);
810         $newversion = ($latestversion ? $latestversion : 0) + 1;
811         assert($newversion >= 1);
812
813         if ($version != WIKIDB_FORCE_CREATE and $version != $newversion) {
814             $backend->unlock(array('version','page','recent','link','nonempty'));
815             return false;
816         }
817
818         $data = $metadata;
819         
820         foreach ($data as $key => $val) {
821             if (empty($val) || $key[0] == '_' || $key[0] == '%')
822                 unset($data[$key]);
823         }
824                         
825         assert(!empty($data['author']));
826         if (empty($data['author_id']))
827             @$data['author_id'] = $data['author'];
828                 
829         if (empty($data['mtime']))
830             $data['mtime'] = time();
831
832         if ($latestversion and $version != WIKIDB_FORCE_CREATE) {
833             // Ensure mtimes are monotonic.
834             $pdata = $cache->get_versiondata($pagename, $latestversion);
835             if ($data['mtime'] < $pdata['mtime']) {
836                 trigger_error(sprintf(_("%s: Date of new revision is %s"),
837                                       $pagename,"'non-monotonic'"),
838                               E_USER_NOTICE);
839                 $data['orig_mtime'] = $data['mtime'];
840                 $data['mtime'] = $pdata['mtime'];
841             }
842             
843             // FIXME: use (possibly user specified) 'mtime' time or
844             // time()?
845             $cache->update_versiondata($pagename, $latestversion,
846                                        array('_supplanted' => $data['mtime']));
847         }
848
849         $data['%content'] = &$content;
850
851         $cache->set_versiondata($pagename, $newversion, $data);
852
853         //$cache->update_pagedata($pagename, array(':latestversion' => $newversion,
854         //':deleted' => empty($content)));
855         
856         $backend->set_links($pagename, $links);
857
858         $backend->unlock(array('version','page','recent','link','nonempty'));
859
860         return new WikiDB_PageRevision($this->_wikidb, $pagename, $newversion,
861                                        $data);
862     }
863
864     /** A higher-level interface to createRevision.
865      *
866      * This takes care of computing the links, and storing
867      * a cached version of the transformed wiki-text.
868      *
869      * @param string $wikitext  The page content.
870      *
871      * @param int $version Version number for new revision.  
872      * To ensure proper serialization of edits, $version must be
873      * exactly one higher than the current latest version.
874      * (You can defeat this check by setting $version to
875      * {@link WIKIDB_FORCE_CREATE} --- not usually recommended.)
876      *
877      * @param hash $meta  Meta-data for new revision.
878      */
879     function save($wikitext, $version, $meta) {
880         $formatted = new TransformedText($this, $wikitext, $meta);
881         $type = $formatted->getType();
882         $meta['pagetype'] = $type->getName();
883         $links = $formatted->getWikiPageLinks();
884
885         $backend = &$this->_wikidb->_backend;
886         $newrevision = $this->createRevision($version, $wikitext, $meta, $links);
887         if ($newrevision and !WIKIDB_NOCACHE_MARKUP)
888             $this->set('_cached_html', $formatted->pack());
889
890         // FIXME: probably should have some global state information
891         // in the backend to control when to optimize.
892         //
893         // We're doing this here rather than in createRevision because
894         // postgres can't optimize while locked.
895         if ((DEBUG & _DEBUG_SQL) or (time() % 5 == 0)) {
896             if ($backend->optimize())
897                 trigger_error(_("Optimizing database"), E_USER_NOTICE);
898         }
899
900         /* Generate notification emails? */
901         if (isa($newrevision, 'WikiDB_PageRevision')) {
902             // Save didn't fail because of concurrent updates.
903             $notify = $this->_wikidb->get('notify');
904             if (!empty($notify) and is_array($notify) and !isa($GLOBALS['request'],'MockRequest')) {
905                 list($emails, $userids) = $this->getPageChangeEmails($notify);
906                 if (!empty($emails)) {
907                     $this->sendPageChangeNotification($wikitext, $version, $meta, $emails, $userids);
908                 }
909             }
910             $newrevision->_transformedContent = $formatted;
911         }
912
913         return $newrevision;
914     }
915
916     function getPageChangeEmails($notify) {
917         $emails = array(); $userids = array();
918         foreach ($notify as $page => $users) {
919             if (glob_match($page, $this->_pagename)) {
920                 foreach ($users as $userid => $user) {
921                     if (!$user) { // handle the case for ModeratePage: no prefs, just userid's.
922                         global $request;
923                         $u = $request->getUser();
924                         if ($u->UserName() == $userid) {
925                             $prefs = $u->getPreferences();
926                         } else {
927                             // not current user
928                             if (ENABLE_USER_NEW) {
929                                 $u = WikiUser($userid);
930                                 $u->getPreferences();
931                                 $prefs = &$u->_prefs;
932                             } else {
933                                 $u = new WikiUser($GLOBALS['request'], $userid);
934                                 $prefs = $u->getPreferences();
935                             }
936                         }
937                         $emails[] = $prefs->get('email');
938                         $userids[] = $userid;
939                     } else {
940                       if (!empty($user['verified']) and !empty($user['email'])) {
941                         $emails[]  = $user['email'];
942                         $userids[] = $userid;
943                       } elseif (!empty($user['email'])) {
944                         global $request;
945                         // do a dynamic emailVerified check update
946                         $u = $request->getUser();
947                         if ($u->UserName() == $userid) {
948                             if ($request->_prefs->get('emailVerified')) {
949                                 $emails[] = $user['email'];
950                                 $userids[] = $userid;
951                                 $notify[$page][$userid]['verified'] = 1;
952                                 $request->_dbi->set('notify', $notify);
953                             }
954                         } else {
955                             // not current user
956                             if (ENABLE_USER_NEW) {
957                                 $u = WikiUser($userid);
958                                 $u->getPreferences();
959                                 $prefs = &$u->_prefs;
960                             } else {
961                                 $u = new WikiUser($GLOBALS['request'], $userid);
962                                 $prefs = $u->getPreferences();
963                             }
964                             if ($prefs->get('emailVerified')) {
965                                 $emails[] = $user['email'];
966                                 $userids[] = $userid;
967                                 $notify[$page][$userid]['verified'] = 1;
968                                 $request->_dbi->set('notify', $notify);
969                             }
970                         }
971                         // ignore verification
972                         /*
973                         if (DEBUG) {
974                             if (!in_array($user['email'],$emails))
975                                 $emails[] = $user['email'];
976                         }
977                         */
978                     }
979                   }
980                 }
981             }
982         }
983         $emails = array_unique($emails);
984         $userids = array_unique($userids);
985         return array($emails, $userids);
986     }
987
988     /**
989      * Send udiff for a changed page to multiple users.
990      * See rename and remove methods also
991      */
992     function sendPageChangeNotification(&$wikitext, $version, $meta, $emails, $userids) {
993         global $request;
994         if (@is_array($request->_deferredPageChangeNotification)) {
995             // collapse multiple changes (loaddir) into one email
996             $request->_deferredPageChangeNotification[] = array($this->_pagename, $emails, $userids);
997             return;
998         }
999         $backend = &$this->_wikidb->_backend;
1000         //$backend = &$request->_dbi->_backend;
1001         $subject = _("Page change").' '.urlencode($this->_pagename);
1002         $previous = $backend->get_previous_version($this->_pagename, $version);
1003         if (!isset($meta['mtime'])) $meta['mtime'] = time();
1004         if ($previous) {
1005             $difflink = WikiURL($this->_pagename, array('action'=>'diff'), true);
1006             $cache = &$this->_wikidb->_cache;
1007             //$cache = &$request->_dbi->_cache;
1008             $this_content = explode("\n", $wikitext);
1009             $prevdata = $cache->get_versiondata($this->_pagename, $previous, true);
1010             if (empty($prevdata['%content']))
1011                 $prevdata = $backend->get_versiondata($this->_pagename, $previous, true);
1012             $other_content = explode("\n", $prevdata['%content']);
1013             
1014             include_once("lib/difflib.php");
1015             $diff2 = new Diff($other_content, $this_content);
1016             //$context_lines = max(4, count($other_content) + 1,
1017             //                     count($this_content) + 1);
1018             $fmt = new UnifiedDiffFormatter(/*$context_lines*/);
1019             $content  = $this->_pagename . " " . $previous . " " . 
1020                 Iso8601DateTime($prevdata['mtime']) . "\n";
1021             $content .= $this->_pagename . " " . $version . " " .  
1022                 Iso8601DateTime($meta['mtime']) . "\n";
1023             $content .= $fmt->format($diff2);
1024             
1025         } else {
1026             $difflink = WikiURL($this->_pagename,array(),true);
1027             $content = $this->_pagename . " " . $version . " " .  
1028                 Iso8601DateTime($meta['mtime']) . "\n";
1029             $content .= _("New page");
1030         }
1031         $editedby = sprintf(_("Edited by: %s"), $meta['author']);
1032         $emails = join(',',$emails);
1033         if (mail($emails,"[".WIKI_NAME."] ".$subject, 
1034                  $subject."\n".
1035                  $editedby."\n".
1036                  $difflink."\n\n".
1037                  $content))
1038             trigger_error(sprintf(_("PageChange Notification of %s sent to %s"),
1039                                   $this->_pagename, join(',',$userids)), E_USER_NOTICE);
1040         else
1041             trigger_error(sprintf(_("PageChange Notification Error: Couldn't send %s to %s"),
1042                                   $this->_pagename, join(',',$userids)), E_USER_WARNING);
1043     }
1044
1045     /** support mass rename / remove (not yet tested)
1046      */
1047     function sendPageRenameNotification($to, &$meta, $emails, $userids) {
1048         global $request;
1049         if (@is_array($request->_deferredPageRenameNotification)) {
1050             $request->_deferredPageRenameNotification[] = array($this->_pagename, 
1051                                                                 $to, $meta, $emails, $userids);
1052         } else {
1053             $from = $this->_pagename;
1054             $editedby = sprintf(_("Edited by: %s"), $meta['author']) . ' ' . $meta['author_id'];
1055             $emails = join(',',$emails);
1056             $subject = sprintf(_("Page rename %s to %s"), urlencode($from), urlencode($to));
1057             $link = WikiURL($to, true);
1058             if (mail($emails,"[".WIKI_NAME."] ".$subject, 
1059                      $subject."\n".
1060                      $editedby."\n".
1061                      $link."\n\n".
1062                      "Renamed $from to $to"))
1063                 trigger_error(sprintf(_("PageChange Notification of %s sent to %s"),
1064                                       $from, join(',',$userids)), E_USER_NOTICE);
1065             else
1066                 trigger_error(sprintf(_("PageChange Notification Error: Couldn't send %s to %s"),
1067                                       $from, join(',',$userids)), E_USER_WARNING);
1068         }
1069     }
1070
1071     /**
1072      * Get the most recent revision of a page.
1073      *
1074      * @access public
1075      *
1076      * @return WikiDB_PageRevision The current WikiDB_PageRevision object. 
1077      */
1078     function getCurrentRevision($need_content = true) {
1079         $backend = &$this->_wikidb->_backend;
1080         $cache = &$this->_wikidb->_cache;
1081         $pagename = &$this->_pagename;
1082         
1083         // Prevent deadlock in case of memory exhausted errors
1084         // Pure selection doesn't really need locking here.
1085         //   sf.net bug#927395
1086         // I know it would be better to lock, but with lots of pages this deadlock is more 
1087         // severe than occasionally get not the latest revision.
1088         // In spirit to wikiwiki: read fast, edit slower.
1089         //$backend->lock();
1090         $version = $cache->get_latest_version($pagename);
1091         // getRevision gets the content also!
1092         $revision = $this->getRevision($version, $need_content);
1093         //$backend->unlock();
1094         assert($revision);
1095         return $revision;
1096     }
1097
1098     /**
1099      * Get a specific revision of a WikiDB_Page.
1100      *
1101      * @access public
1102      *
1103      * @param integer $version  Which revision to get.
1104      *
1105      * @return WikiDB_PageRevision The requested WikiDB_PageRevision object, or
1106      * false if the requested revision does not exist in the {@link WikiDB}.
1107      * Note that version zero of any page always exists.
1108      */
1109     function getRevision($version, $need_content=true) {
1110         $cache = &$this->_wikidb->_cache;
1111         $pagename = &$this->_pagename;
1112         
1113         if (! $version or $version == -1) // 0 or false
1114             return new WikiDB_PageRevision($this->_wikidb, $pagename, 0);
1115
1116         assert($version > 0);
1117         $vdata = $cache->get_versiondata($pagename, $version, $need_content);
1118         if (!$vdata) {
1119             return new WikiDB_PageRevision($this->_wikidb, $pagename, 0);
1120         }
1121         return new WikiDB_PageRevision($this->_wikidb, $pagename, $version,
1122                                        $vdata);
1123     }
1124
1125     /**
1126      * Get previous page revision.
1127      *
1128      * This method find the most recent revision before a specified
1129      * version.
1130      *
1131      * @access public
1132      *
1133      * @param integer $version  Find most recent revision before this version.
1134      *  You can also use a WikiDB_PageRevision object to specify the $version.
1135      *
1136      * @return WikiDB_PageRevision The requested WikiDB_PageRevision object, or false if the
1137      * requested revision does not exist in the {@link WikiDB}.  Note that
1138      * unless $version is greater than zero, a revision (perhaps version zero,
1139      * the default revision) will always be found.
1140      */
1141     function getRevisionBefore($version, $need_content=true) {
1142         $backend = &$this->_wikidb->_backend;
1143         $pagename = &$this->_pagename;
1144
1145         $version = $this->_coerce_to_version($version);
1146
1147         if ($version == 0)
1148             return false;
1149         //$backend->lock();
1150         $previous = $backend->get_previous_version($pagename, $version);
1151         $revision = $this->getRevision($previous, $need_content);
1152         //$backend->unlock();
1153         assert($revision);
1154         return $revision;
1155     }
1156
1157     /**
1158      * Get all revisions of the WikiDB_Page.
1159      *
1160      * This does not include the version zero (default) revision in the
1161      * returned revision set.
1162      *
1163      * @return WikiDB_PageRevisionIterator A
1164      *   WikiDB_PageRevisionIterator containing all revisions of this
1165      *   WikiDB_Page in reverse order by version number.
1166      */
1167     function getAllRevisions() {
1168         $backend = &$this->_wikidb->_backend;
1169         $revs = $backend->get_all_revisions($this->_pagename);
1170         return new WikiDB_PageRevisionIterator($this->_wikidb, $revs);
1171     }
1172     
1173     /**
1174      * Find pages which link to or are linked from a page.
1175      *
1176      * @access public
1177      *
1178      * @param boolean $reversed Which links to find: true for backlinks (default).
1179      *
1180      * @return WikiDB_PageIterator A WikiDB_PageIterator containing
1181      * all matching pages.
1182      */
1183     function getLinks($reversed = true, $include_empty=false, $sortby=false, 
1184                       $limit=false, $exclude=false) {
1185         $backend = &$this->_wikidb->_backend;
1186         $result =  $backend->get_links($this->_pagename, $reversed, 
1187                                        $include_empty, $sortby, $limit, $exclude);
1188         return new WikiDB_PageIterator($this->_wikidb, $result, 
1189                                        array('include_empty' => $include_empty,
1190                                              'sortby' => $sortby, 
1191                                              'limit' => $limit, 
1192                                              'exclude' => $exclude));
1193     }
1194
1195     /**
1196      * All Links from other pages to this page.
1197      */
1198     function getBackLinks($include_empty=false, $sortby=false, $limit=false, $exclude=false) {
1199         return $this->getLinks(true, $include_empty, $sortby, $limit, $exclude);
1200     }
1201     /**
1202      * Forward Links: All Links from this page to other pages.
1203      */
1204     function getPageLinks($include_empty=false, $sortby=false, $limit=false, $exclude=false) {
1205         return $this->getLinks(false, $include_empty, $sortby, $limit, $exclude);
1206     }
1207     
1208     /**
1209      * possibly faster link existance check. not yet accelerated.
1210      */
1211     function existLink($link, $reversed=false) {
1212         $backend = &$this->_wikidb->_backend;
1213         if (method_exists($backend,'exists_link'))
1214             return $backend->exists_link($this->_pagename, $link, $reversed);
1215         //$cache = &$this->_wikidb->_cache;
1216         // TODO: check cache if it is possible
1217         $iter = $this->getLinks($reversed, false);
1218         while ($page = $iter->next()) {
1219             if ($page->getName() == $link)
1220                 return $page;
1221         }
1222         $iter->free();
1223         return false;
1224     }
1225             
1226     /**
1227      * Access WikiDB_Page meta-data.
1228      *
1229      * @access public
1230      *
1231      * @param string $key Which meta data to get.
1232      * Some reserved meta-data keys are:
1233      * <dl>
1234      * <dt>'locked'<dd> Is page locked?
1235      * <dt>'hits'  <dd> Page hit counter.
1236      * <dt>'pref'  <dd> Users preferences, stored in homepages.
1237      * <dt>'owner' <dd> Default: first author_id. We might add a group with a dot here:
1238      *                  E.g. "owner.users"
1239      * <dt>'perm'  <dd> Permission flag to authorize read/write/execution of 
1240      *                  page-headers and content.
1241      * <dt>'score' <dd> Page score (not yet implement, do we need?)
1242      * <dt>'_cached_html' <dd> Transformed CachedMarkup object, serialized + optionally gzipped.
1243      *                         In SQL stored in an extra column.
1244      * </dl>
1245      *
1246      * @return scalar The requested value, or false if the requested data
1247      * is not set.
1248      */
1249     function get($key) {
1250         $cache = &$this->_wikidb->_cache;
1251         $backend = &$this->_wikidb->_backend;
1252         if (!$key || $key[0] == '%')
1253             return false;
1254         // several new SQL backends optimize this.
1255         if (!WIKIDB_NOCACHE_MARKUP
1256             and $key == '_cached_html' 
1257             and method_exists($backend, 'get_cached_html')) 
1258         {
1259             return $backend->get_cached_html($this->_pagename);
1260         }
1261         $data = $cache->get_pagedata($this->_pagename);
1262         return isset($data[$key]) ? $data[$key] : false;
1263     }
1264
1265     /**
1266      * Get all the page meta-data as a hash.
1267      *
1268      * @return hash The page meta-data.
1269      */
1270     function getMetaData() {
1271         $cache = &$this->_wikidb->_cache;
1272         $data = $cache->get_pagedata($this->_pagename);
1273         $meta = array();
1274         foreach ($data as $key => $val) {
1275             if (/*!empty($val) &&*/ $key[0] != '%')
1276                 $meta[$key] = $val;
1277         }
1278         return $meta;
1279     }
1280
1281     /**
1282      * Set page meta-data.
1283      *
1284      * @see get
1285      * @access public
1286      *
1287      * @param string $key  Meta-data key to set.
1288      * @param string $newval  New value.
1289      */
1290     function set($key, $newval) {
1291         $cache = &$this->_wikidb->_cache;
1292         $backend = &$this->_wikidb->_backend;
1293         $pagename = &$this->_pagename;
1294         
1295         assert($key && $key[0] != '%');
1296
1297         // several new SQL backends optimize this.
1298         if (!WIKIDB_NOCACHE_MARKUP 
1299             and $key == '_cached_html' 
1300             and method_exists($backend, 'set_cached_html'))
1301         {
1302             return $backend->set_cached_html($pagename, $newval);
1303         }
1304
1305         $data = $cache->get_pagedata($pagename);
1306
1307         if (!empty($newval)) {
1308             if (!empty($data[$key]) && $data[$key] == $newval)
1309                 return;         // values identical, skip update.
1310         }
1311         else {
1312             if (empty($data[$key]))
1313                 return;         // values identical, skip update.
1314         }
1315
1316         $cache->update_pagedata($pagename, array($key => $newval));
1317     }
1318
1319     /**
1320      * Increase page hit count.
1321      *
1322      * FIXME: IS this needed?  Probably not.
1323      *
1324      * This is a convenience function.
1325      * <pre> $page->increaseHitCount(); </pre>
1326      * is functionally identical to
1327      * <pre> $page->set('hits',$page->get('hits')+1); </pre>
1328      * but less expensive (ignores the pagadata string)
1329      *
1330      * Note that this method may be implemented in more efficient ways
1331      * in certain backends.
1332      *
1333      * @access public
1334      */
1335     function increaseHitCount() {
1336         if (method_exists($this->_wikidb->_backend, 'increaseHitCount'))
1337             $this->_wikidb->_backend->increaseHitCount($this->_pagename);
1338         else {
1339             @$newhits = $this->get('hits') + 1;
1340             $this->set('hits', $newhits);
1341         }
1342     }
1343
1344     /**
1345      * Return a string representation of the WikiDB_Page
1346      *
1347      * This is really only for debugging.
1348      *
1349      * @access public
1350      *
1351      * @return string Printable representation of the WikiDB_Page.
1352      */
1353     function asString () {
1354         ob_start();
1355         printf("[%s:%s\n", get_class($this), $this->getName());
1356         print_r($this->getMetaData());
1357         echo "]\n";
1358         $strval = ob_get_contents();
1359         ob_end_clean();
1360         return $strval;
1361     }
1362
1363
1364     /**
1365      * @access private
1366      * @param integer_or_object $version_or_pagerevision
1367      * Takes either the version number (and int) or a WikiDB_PageRevision
1368      * object.
1369      * @return integer The version number.
1370      */
1371     function _coerce_to_version($version_or_pagerevision) {
1372         if (method_exists($version_or_pagerevision, "getContent"))
1373             $version = $version_or_pagerevision->getVersion();
1374         else
1375             $version = (int) $version_or_pagerevision;
1376
1377         assert($version >= 0);
1378         return $version;
1379     }
1380
1381     function isUserPage ($include_empty = true) {
1382         if (!$include_empty and !$this->exists()) return false;
1383         return $this->get('pref') ? true : false;
1384     }
1385
1386     // May be empty. Either the stored owner (/Chown), or the first authorized author
1387     function getOwner() {
1388         if ($owner = $this->get('owner'))
1389             return ($owner == "The PhpWiki programming team") ? ADMIN_USER : $owner;
1390         // check all revisions forwards for the first author_id
1391         $backend = &$this->_wikidb->_backend;
1392         $pagename = &$this->_pagename;
1393         $latestversion = $backend->get_latest_version($pagename);
1394         for ($v=1; $v <= $latestversion; $v++) {
1395             $rev = $this->getRevision($v,false);
1396             if ($rev and $owner = $rev->get('author_id')) {
1397                 return ($owner == "The PhpWiki programming team") ? ADMIN_USER : $owner;
1398             }
1399         }
1400         return '';
1401     }
1402
1403     // The authenticated author of the first revision or empty if not authenticated then.
1404     function getCreator() {
1405         if ($current = $this->getRevision(1,false)) return $current->get('author_id');
1406         else return '';
1407     }
1408
1409     // The authenticated author of the current revision.
1410     function getAuthor() {
1411         if ($current = $this->getCurrentRevision(false)) return $current->get('author_id');
1412         else return '';
1413     }
1414
1415 };
1416
1417 /**
1418  * This class represents a specific revision of a WikiDB_Page within
1419  * a WikiDB.
1420  *
1421  * A WikiDB_PageRevision has read-only semantics. You may only create
1422  * new revisions (and delete old ones) --- you cannot modify existing
1423  * revisions.
1424  */
1425 class WikiDB_PageRevision
1426 {
1427     //var $_transformedContent = false; // set by WikiDB_Page::save()
1428     
1429     function WikiDB_PageRevision(&$wikidb, $pagename, $version, $versiondata = false) {
1430         $this->_wikidb = &$wikidb;
1431         $this->_pagename = $pagename;
1432         $this->_version = $version;
1433         $this->_data = $versiondata ? $versiondata : array();
1434         $this->_transformedContent = false; // set by WikiDB_Page::save()
1435     }
1436     
1437     /**
1438      * Get the WikiDB_Page which this revision belongs to.
1439      *
1440      * @access public
1441      *
1442      * @return WikiDB_Page The WikiDB_Page which this revision belongs to.
1443      */
1444     function getPage() {
1445         return new WikiDB_Page($this->_wikidb, $this->_pagename);
1446     }
1447
1448     /**
1449      * Get the version number of this revision.
1450      *
1451      * @access public
1452      *
1453      * @return integer The version number of this revision.
1454      */
1455     function getVersion() {
1456         return $this->_version;
1457     }
1458     
1459     /**
1460      * Determine whether this revision has defaulted content.
1461      *
1462      * The default revision (version 0) of each page, as well as any
1463      * pages which are created with empty content have their content
1464      * defaulted to something like:
1465      * <pre>
1466      *   Describe [ThisPage] here.
1467      * </pre>
1468      *
1469      * @access public
1470      *
1471      * @return boolean Returns true if the page has default content.
1472      */
1473     function hasDefaultContents() {
1474         $data = &$this->_data;
1475         return empty($data['%content']); // FIXME: what if it's the number 0? <>'' or === false
1476     }
1477
1478     /**
1479      * Get the content as an array of lines.
1480      *
1481      * @access public
1482      *
1483      * @return array An array of lines.
1484      * The lines should contain no trailing white space.
1485      */
1486     function getContent() {
1487         return explode("\n", $this->getPackedContent());
1488     }
1489         
1490    /**
1491      * Get the pagename of the revision.
1492      *
1493      * @access public
1494      *
1495      * @return string pagename.
1496      */
1497     function getPageName() {
1498         return $this->_pagename;
1499     }
1500     function getName() {
1501         return $this->_pagename;
1502     }
1503
1504     /**
1505      * Determine whether revision is the latest.
1506      *
1507      * @access public
1508      *
1509      * @return boolean True iff the revision is the latest (most recent) one.
1510      */
1511     function isCurrent() {
1512         if (!isset($this->_iscurrent)) {
1513             $page = $this->getPage();
1514             $current = $page->getCurrentRevision(false);
1515             $this->_iscurrent = $this->getVersion() == $current->getVersion();
1516         }
1517         return $this->_iscurrent;
1518     }
1519
1520     /**
1521      * Get the transformed content of a page.
1522      *
1523      * @param string $pagetype  Override the page-type of the revision.
1524      *
1525      * @return object An XmlContent-like object containing the page transformed
1526      * contents.
1527      */
1528     function getTransformedContent($pagetype_override=false) {
1529         $backend = &$this->_wikidb->_backend;
1530         
1531         if ($pagetype_override) {
1532             // Figure out the normal page-type for this page.
1533             $type = PageType::GetPageType($this->get('pagetype'));
1534             if ($type->getName() == $pagetype_override)
1535                 $pagetype_override = false; // Not really an override...
1536         }
1537
1538         if ($pagetype_override) {
1539             // Overriden page type, don't cache (or check cache).
1540             return new TransformedText($this->getPage(),
1541                                        $this->getPackedContent(),
1542                                        $this->getMetaData(),
1543                                        $pagetype_override);
1544         }
1545
1546         $possibly_cache_results = true;
1547
1548         if (!USECACHE or WIKIDB_NOCACHE_MARKUP) {
1549             if (WIKIDB_NOCACHE_MARKUP == 'purge') {
1550                 // flush cache for this page.
1551                 $page = $this->getPage();
1552                 $page->set('_cached_html', ''); // ignored with !USECACHE 
1553             }
1554             $possibly_cache_results = false;
1555         }
1556         elseif (USECACHE and !$this->_transformedContent) {
1557             //$backend->lock();
1558             if ($this->isCurrent()) {
1559                 $page = $this->getPage();
1560                 $this->_transformedContent = TransformedText::unpack($page->get('_cached_html'));
1561             }
1562             else {
1563                 $possibly_cache_results = false;
1564             }
1565             //$backend->unlock();
1566         }
1567         
1568         if (!$this->_transformedContent) {
1569             $this->_transformedContent
1570                 = new TransformedText($this->getPage(),
1571                                       $this->getPackedContent(),
1572                                       $this->getMetaData());
1573             
1574             if ($possibly_cache_results and !WIKIDB_NOCACHE_MARKUP) {
1575                 // If we're still the current version, cache the transfomed page.
1576                 //$backend->lock();
1577                 if ($this->isCurrent()) {
1578                     $page->set('_cached_html', $this->_transformedContent->pack());
1579                 }
1580                 //$backend->unlock();
1581             }
1582         }
1583
1584         return $this->_transformedContent;
1585     }
1586
1587     /**
1588      * Get the content as a string.
1589      *
1590      * @access public
1591      *
1592      * @return string The page content.
1593      * Lines are separated by new-lines.
1594      */
1595     function getPackedContent() {
1596         $data = &$this->_data;
1597
1598         
1599         if (empty($data['%content'])) {
1600             include_once('lib/InlineParser.php');
1601
1602             // A feature similar to taglines at http://www.wlug.org.nz/
1603             // Lib from http://www.aasted.org/quote/
1604             if (defined('FORTUNE_DIR') 
1605                 and is_dir(FORTUNE_DIR) 
1606                 and in_array($GLOBALS['request']->getArg('action'), 
1607                              array('create','edit')))
1608             {
1609                 include_once("lib/fortune.php");
1610                 $fortune = new Fortune();
1611                 $quote = str_replace("\n<br>","\n", $fortune->quoteFromDir(FORTUNE_DIR));
1612                 return sprintf("<verbatim>\n%s</verbatim>\n\n"._("Describe %s here."), 
1613                                $quote, "[" . WikiEscape($this->_pagename) . "]");
1614             }
1615             // Replace empty content with default value.
1616             return sprintf(_("Describe %s here."), 
1617                            "[" . WikiEscape($this->_pagename) . "]");
1618         }
1619
1620         // There is (non-default) content.
1621         assert($this->_version > 0);
1622         
1623         if (!is_string($data['%content'])) {
1624             // Content was not provided to us at init time.
1625             // (This is allowed because for some backends, fetching
1626             // the content may be expensive, and often is not wanted
1627             // by the user.)
1628             //
1629             // In any case, now we need to get it.
1630             $data['%content'] = $this->_get_content();
1631             assert(is_string($data['%content']));
1632         }
1633         
1634         return $data['%content'];
1635     }
1636
1637     function _get_content() {
1638         $cache = &$this->_wikidb->_cache;
1639         $pagename = $this->_pagename;
1640         $version = $this->_version;
1641
1642         assert($version > 0);
1643         
1644         $newdata = $cache->get_versiondata($pagename, $version, true);
1645         if ($newdata) {
1646             assert(is_string($newdata['%content']));
1647             return $newdata['%content'];
1648         }
1649         else {
1650             // else revision has been deleted... What to do?
1651             return __sprintf("Oops! Revision %s of %s seems to have been deleted!",
1652                              $version, $pagename);
1653         }
1654     }
1655
1656     /**
1657      * Get meta-data for this revision.
1658      *
1659      *
1660      * @access public
1661      *
1662      * @param string $key Which meta-data to access.
1663      *
1664      * Some reserved revision meta-data keys are:
1665      * <dl>
1666      * <dt> 'mtime' <dd> Time this revision was created (seconds since midnight Jan 1, 1970.)
1667      *        The 'mtime' meta-value is normally set automatically by the database
1668      *        backend, but it may be specified explicitly when creating a new revision.
1669      * <dt> orig_mtime
1670      *  <dd> To ensure consistency of RecentChanges, the mtimes of the versions
1671      *       of a page must be monotonically increasing.  If an attempt is
1672      *       made to create a new revision with an mtime less than that of
1673      *       the preceeding revision, the new revisions timestamp is force
1674      *       to be equal to that of the preceeding revision.  In that case,
1675      *       the originally requested mtime is preserved in 'orig_mtime'.
1676      * <dt> '_supplanted' <dd> Time this revision ceased to be the most recent.
1677      *        This meta-value is <em>always</em> automatically maintained by the database
1678      *        backend.  (It is set from the 'mtime' meta-value of the superceding
1679      *        revision.)  '_supplanted' has a value of 'false' for the current revision.
1680      *
1681      * FIXME: this could be refactored:
1682      * <dt> author
1683      *  <dd> Author of the page (as he should be reported in, e.g. RecentChanges.)
1684      * <dt> author_id
1685      *  <dd> Authenticated author of a page.  This is used to identify
1686      *       the distinctness of authors when cleaning old revisions from
1687      *       the database.
1688      * <dt> 'is_minor_edit' <dd> Set if change was marked as a minor revision by the author.
1689      * <dt> 'summary' <dd> Short change summary entered by page author.
1690      * </dl>
1691      *
1692      * Meta-data keys must be valid C identifers (they have to start with a letter
1693      * or underscore, and can contain only alphanumerics and underscores.)
1694      *
1695      * @return string The requested value, or false if the requested value
1696      * is not defined.
1697      */
1698     function get($key) {
1699         if (!$key || $key[0] == '%')
1700             return false;
1701         $data = &$this->_data;
1702         return isset($data[$key]) ? $data[$key] : false;
1703     }
1704
1705     /**
1706      * Get all the revision page meta-data as a hash.
1707      *
1708      * @return hash The revision meta-data.
1709      */
1710     function getMetaData() {
1711         $meta = array();
1712         foreach ($this->_data as $key => $val) {
1713             if (!empty($val) && $key[0] != '%')
1714                 $meta[$key] = $val;
1715         }
1716         return $meta;
1717     }
1718     
1719             
1720     /**
1721      * Return a string representation of the revision.
1722      *
1723      * This is really only for debugging.
1724      *
1725      * @access public
1726      *
1727      * @return string Printable representation of the WikiDB_Page.
1728      */
1729     function asString () {
1730         ob_start();
1731         printf("[%s:%d\n", get_class($this), $this->get('version'));
1732         print_r($this->_data);
1733         echo $this->getPackedContent() . "\n]\n";
1734         $strval = ob_get_contents();
1735         ob_end_clean();
1736         return $strval;
1737     }
1738 };
1739
1740
1741 /**
1742  * Class representing a sequence of WikiDB_Pages.
1743  * TODO: Enhance to php5 iterators
1744  */
1745 class WikiDB_PageIterator
1746 {
1747     function WikiDB_PageIterator(&$wikidb, &$iter, $options=false) {
1748         $this->_iter = $iter; // a WikiDB_backend_iterator
1749         $this->_wikidb = &$wikidb;
1750         $this->_options = $options;
1751     }
1752     
1753     function count () {
1754         return $this->_iter->count();
1755     }
1756
1757     /**
1758      * Get next WikiDB_Page in sequence.
1759      *
1760      * @access public
1761      *
1762      * @return WikiDB_Page The next WikiDB_Page in the sequence.
1763      */
1764     function next () {
1765         if ( ! ($next = $this->_iter->next()) )
1766             return false;
1767
1768         $pagename = &$next['pagename'];
1769         if (!$pagename) {
1770             trigger_error('empty pagename in WikiDB_PageIterator::next()', E_USER_WARNING);
1771             var_dump($next);
1772             return false;
1773         }
1774         // there's always hits, but we cache only if more 
1775         // (well not with file, cvs and dba)
1776         if (isset($next['pagedata']) and count($next['pagedata']) > 1) {
1777             $this->_wikidb->_cache->cache_data($next);
1778         // cache existing page id's since we iterate over all links in GleanDescription 
1779         // and need them later for LinkExistingWord
1780         } elseif ($this->_options and array_key_exists('include_empty', $this->_options)
1781                   and !$this->_options['include_empty'] and isset($next['id'])) {
1782             $this->_wikidb->_cache->_id_cache[$next['pagename']] = $next['id'];
1783         }
1784         return new WikiDB_Page($this->_wikidb, $pagename);
1785     }
1786
1787     /**
1788      * Release resources held by this iterator.
1789      *
1790      * The iterator may not be used after free() is called.
1791      *
1792      * There is no need to call free(), if next() has returned false.
1793      * (I.e. if you iterate through all the pages in the sequence,
1794      * you do not need to call free() --- you only need to call it
1795      * if you stop before the end of the iterator is reached.)
1796      *
1797      * @access public
1798      */
1799     function free() {
1800         $this->_iter->free();
1801     }
1802     
1803     function asArray() {
1804         $result = array();
1805         while ($page = $this->next())
1806             $result[] = $page;
1807         //$this->reset();
1808         return $result;
1809     }
1810   
1811
1812 };
1813
1814 /**
1815  * A class which represents a sequence of WikiDB_PageRevisions.
1816  * TODO: Enhance to php5 iterators
1817  */
1818 class WikiDB_PageRevisionIterator
1819 {
1820     function WikiDB_PageRevisionIterator(&$wikidb, &$revisions, $options=false) {
1821         $this->_revisions = $revisions;
1822         $this->_wikidb = &$wikidb;
1823         $this->_options = $options;
1824     }
1825     
1826     function count () {
1827         return $this->_revisions->count();
1828     }
1829
1830     /**
1831      * Get next WikiDB_PageRevision in sequence.
1832      *
1833      * @access public
1834      *
1835      * @return WikiDB_PageRevision
1836      * The next WikiDB_PageRevision in the sequence.
1837      */
1838     function next () {
1839         if ( ! ($next = $this->_revisions->next()) )
1840             return false;
1841
1842         //$this->_wikidb->_cache->cache_data($next);
1843
1844         $pagename = $next['pagename'];
1845         $version = $next['version'];
1846         $versiondata = $next['versiondata'];
1847         if (DEBUG) {
1848             if (!(is_string($pagename) and $pagename != '')) {
1849                 trigger_error("empty pagename",E_USER_WARNING);
1850                 return false;
1851             }
1852         } else assert(is_string($pagename) and $pagename != '');
1853         if (DEBUG) {
1854             if (!is_array($versiondata)) {
1855                 trigger_error("empty versiondata",E_USER_WARNING);
1856                 return false;
1857             }
1858         } else assert(is_array($versiondata));
1859         if (DEBUG) {
1860             if (!($version > 0)) {
1861                 trigger_error("invalid version",E_USER_WARNING);
1862                 return false;
1863             }
1864         } else assert($version > 0);
1865
1866         return new WikiDB_PageRevision($this->_wikidb, $pagename, $version,
1867                                        $versiondata);
1868     }
1869
1870     /**
1871      * Release resources held by this iterator.
1872      *
1873      * The iterator may not be used after free() is called.
1874      *
1875      * There is no need to call free(), if next() has returned false.
1876      * (I.e. if you iterate through all the revisions in the sequence,
1877      * you do not need to call free() --- you only need to call it
1878      * if you stop before the end of the iterator is reached.)
1879      *
1880      * @access public
1881      */
1882     function free() { 
1883         $this->_revisions->free();
1884     }
1885
1886     function asArray() {
1887         $result = array();
1888         while ($rev = $this->next())
1889             $result[] = $rev;
1890         $this->free();
1891         return $result;
1892     }
1893 };
1894
1895 /** pseudo iterator
1896  */
1897 class WikiDB_Array_PageIterator
1898 {
1899     function WikiDB_Array_PageIterator(&$pagenames) {
1900         global $request;
1901         $this->_dbi = $request->getDbh();
1902         $this->_pages = $pagenames;
1903         reset($this->_pages);
1904     }
1905     function next() {
1906         $c =& current($this->_pages);
1907         next($this->_pages);
1908         return $c !== false ? $this->_dbi->getPage($c) : false;
1909     }
1910     function count() {
1911         return count($this->_pages);
1912     }
1913     function free() {}
1914     function asArray() {
1915         reset($this->_pages);
1916         return $this->_pages;
1917     }
1918 }
1919
1920 class WikiDB_Array_generic_iter
1921 {
1922     function WikiDB_Array_generic_iter($result) {
1923         // $result may be either an array or a query result
1924         if (is_array($result)) {
1925             $this->_array = $result;
1926         } elseif (is_object($result)) {
1927             $this->_array = $result->asArray();
1928         } else {
1929             $this->_array = array();
1930         }
1931         if (!empty($this->_array))
1932             reset($this->_array);
1933     }
1934     function next() {
1935         $c =& current($this->_array);
1936         next($this->_array);
1937         return $c !== false ? $c : false;
1938     }
1939     function count() {
1940         return count($this->_array);
1941     }
1942     function free() {}
1943     function asArray() {
1944         if (!empty($this->_array))
1945             reset($this->_array);
1946         return $this->_array;
1947     }
1948 }
1949
1950 /**
1951  * Data cache used by WikiDB.
1952  *
1953  * FIXME: Maybe rename this to caching_backend (or some such).
1954  *
1955  * @access private
1956  */
1957 class WikiDB_cache 
1958 {
1959     // FIXME: beautify versiondata cache.  Cache only limited data?
1960
1961     function WikiDB_cache (&$backend) {
1962         $this->_backend = &$backend;
1963
1964         $this->_pagedata_cache = array();
1965         $this->_versiondata_cache = array();
1966         array_push ($this->_versiondata_cache, array());
1967         $this->_glv_cache = array();
1968         $this->_id_cache = array(); // formerly ->_dbi->_iwpcache (nonempty pages => id)
1969     }
1970     
1971     function close() {
1972         $this->_pagedata_cache = array();
1973         $this->_versiondata_cache = array();
1974         $this->_glv_cache = array();
1975         $this->_id_cache = array();
1976     }
1977
1978     function get_pagedata($pagename) {
1979         assert(is_string($pagename) && $pagename != '');
1980         if (USECACHE) {
1981             $cache = &$this->_pagedata_cache;
1982             if (!isset($cache[$pagename]) || !is_array($cache[$pagename])) {
1983                 $cache[$pagename] = $this->_backend->get_pagedata($pagename);
1984                 if (empty($cache[$pagename]))
1985                     $cache[$pagename] = array();
1986             }
1987             return $cache[$pagename];
1988         } else {
1989             return $this->_backend->get_pagedata($pagename);
1990         }
1991     }
1992     
1993     function update_pagedata($pagename, $newdata) {
1994         assert(is_string($pagename) && $pagename != '');
1995        
1996         $this->_backend->update_pagedata($pagename, $newdata);
1997
1998         if (USECACHE) {
1999             if (!empty($this->_pagedata_cache[$pagename]) 
2000                 and is_array($this->_pagedata_cache[$pagename])) 
2001             {
2002                 $cachedata = &$this->_pagedata_cache[$pagename];
2003                 foreach($newdata as $key => $val)
2004                     $cachedata[$key] = $val;
2005             } else 
2006                 $this->_pagedata_cache[$pagename] = $newdata;
2007         }
2008     }
2009
2010     function invalidate_cache($pagename) {
2011         unset ($this->_pagedata_cache[$pagename]);
2012         unset ($this->_versiondata_cache[$pagename]);
2013         unset ($this->_glv_cache[$pagename]);
2014         unset ($this->_id_cache[$pagename]);
2015         //unset ($this->_backend->_page_data);
2016     }
2017     
2018     function delete_page($pagename) {
2019         $result = $this->_backend->delete_page($pagename);
2020         $this->invalidate_cache($pagename);
2021         return $result;
2022     }
2023
2024     function purge_page($pagename) {
2025         $result = $this->_backend->purge_page($pagename);
2026         $this->invalidate_cache($pagename);
2027         return $result;
2028     }
2029
2030     // FIXME: ugly and wrong. may overwrite full cache with partial cache
2031     function cache_data($data) {
2032         ;
2033         //if (isset($data['pagedata']))
2034         //    $this->_pagedata_cache[$data['pagename']] = $data['pagedata'];
2035     }
2036     
2037     function get_versiondata($pagename, $version, $need_content = false) {
2038         //  FIXME: Seriously ugly hackage
2039         $readdata = false;
2040         if (USECACHE) {   //temporary - for debugging
2041             assert(is_string($pagename) && $pagename != '');
2042             // There is a bug here somewhere which results in an assertion failure at line 105
2043             // of ArchiveCleaner.php  It goes away if we use the next line.
2044             //$need_content = true;
2045             $nc = $need_content ? '1':'0';
2046             $cache = &$this->_versiondata_cache;
2047             if (!isset($cache[$pagename][$version][$nc]) 
2048                 || !(is_array ($cache[$pagename])) 
2049                 || !(is_array ($cache[$pagename][$version]))) 
2050             {
2051                 $cache[$pagename][$version][$nc] = 
2052                     $this->_backend->get_versiondata($pagename, $version, $need_content);
2053                 $readdata = true;
2054                 // If we have retrieved all data, we may as well set the cache for 
2055                 // $need_content = false
2056                 if ($need_content){
2057                     $cache[$pagename][$version]['0'] =& $cache[$pagename][$version]['1'];
2058                 }
2059             }
2060             $vdata = $cache[$pagename][$version][$nc];
2061         } else {
2062             $vdata = $this->_backend->get_versiondata($pagename, $version, $need_content);
2063             $readdata = true;
2064         }
2065         if ($readdata && $vdata && !empty($vdata['%pagedata'])) {
2066             $this->_pagedata_cache[$pagename] =& $vdata['%pagedata'];
2067         }
2068         return $vdata;
2069     }
2070
2071     function set_versiondata($pagename, $version, $data) {
2072         //unset($this->_versiondata_cache[$pagename][$version]);
2073         
2074         $new = $this->_backend->set_versiondata($pagename, $version, $data);
2075         // Update the cache
2076         $this->_versiondata_cache[$pagename][$version]['1'] = $data;
2077         $this->_versiondata_cache[$pagename][$version]['0'] = $data;
2078         // Is this necessary?
2079         unset($this->_glv_cache[$pagename]);
2080     }
2081
2082     function update_versiondata($pagename, $version, $data) {
2083         $new = $this->_backend->update_versiondata($pagename, $version, $data);
2084         // Update the cache
2085         $this->_versiondata_cache[$pagename][$version]['1'] = $data;
2086         // FIXME: hack
2087         $this->_versiondata_cache[$pagename][$version]['0'] = $data;
2088         // Is this necessary?
2089         unset($this->_glv_cache[$pagename]);
2090     }
2091
2092     function delete_versiondata($pagename, $version) {
2093         $new = $this->_backend->delete_versiondata($pagename, $version);
2094         if (isset($this->_versiondata_cache[$pagename][$version]['1']))
2095             unset ($this->_versiondata_cache[$pagename][$version]['1']);
2096         if (isset($this->_versiondata_cache[$pagename][$version]['0']))
2097             unset ($this->_versiondata_cache[$pagename][$version]['0']);
2098         if (isset($this->_glv_cache[$pagename]))
2099             unset ($this->_glv_cache[$pagename]);
2100     }
2101         
2102     function get_latest_version($pagename)  {
2103         if (USECACHE) {
2104             assert (is_string($pagename) && $pagename != '');
2105             $cache = &$this->_glv_cache;
2106             if (!isset($cache[$pagename])) {
2107                 $cache[$pagename] = $this->_backend->get_latest_version($pagename);
2108                 if (empty($cache[$pagename]))
2109                     $cache[$pagename] = 0;
2110             }
2111             return $cache[$pagename];
2112         } else {
2113             return $this->_backend->get_latest_version($pagename); 
2114         }
2115     }
2116 };
2117
2118 function _sql_debuglog($msg, $newline=true, $shutdown=false) {
2119     static $fp = false;
2120     static $i = 0;
2121     if (!$fp) {
2122         $stamp = strftime("%y%m%d-%H%M%S");
2123         $fp = fopen("/tmp/sql-$stamp.log", "a");
2124         register_shutdown_function("_sql_debuglog_shutdown_function");
2125     } elseif ($shutdown) {
2126         fclose($fp);
2127         return;
2128     }
2129     if ($newline) fputs($fp, "[$i++] $msg");
2130     else fwrite($fp, $msg);
2131 }
2132
2133 function _sql_debuglog_shutdown_function() {
2134     _sql_debuglog('',false,true);
2135 }
2136
2137 // $Log: not supported by cvs2svn $
2138 // Revision 1.129  2005/04/06 05:50:29  rurban
2139 // honor !USECACHE for _cached_html, fixes #1175761
2140 //
2141 // Revision 1.128  2005/04/01 16:11:42  rurban
2142 // just whitespace
2143 //
2144 // Revision 1.127  2005/02/18 20:43:40  uckelman
2145 // WikiDB::genericWarnings() is no longer used.
2146 //
2147 // Revision 1.126  2005/02/04 17:58:06  rurban
2148 // minor versioncache improvement. part 2/3 of Charles Corrigan cache patch. not sure about the 0/1 issue
2149 //
2150 // Revision 1.125  2005/02/03 05:08:39  rurban
2151 // ref fix by Charles Corrigan
2152 //
2153 // Revision 1.124  2005/01/29 20:43:32  rurban
2154 // protect against empty request: on some occasion this happens
2155 //
2156 // Revision 1.123  2005/01/25 06:58:21  rurban
2157 // reformatting
2158 //
2159 // Revision 1.122  2005/01/20 10:18:17  rurban
2160 // reformatting
2161 //
2162 // Revision 1.121  2005/01/04 20:25:01  rurban
2163 // remove old [%pagedata][_cached_html] code
2164 //
2165 // Revision 1.120  2004/12/23 14:12:31  rurban
2166 // dont email on unittest
2167 //
2168 // Revision 1.119  2004/12/20 16:05:00  rurban
2169 // gettext msg unification
2170 //
2171 // Revision 1.118  2004/12/13 13:22:57  rurban
2172 // new BlogArchives plugin for the new blog theme. enable default box method
2173 // for all plugins. Minor search improvement.
2174 //
2175 // Revision 1.117  2004/12/13 08:15:09  rurban
2176 // false is wrong. null might be better but lets play safe.
2177 //
2178 // Revision 1.116  2004/12/10 22:15:00  rurban
2179 // fix $page->get('_cached_html)
2180 // refactor upgrade db helper _convert_cached_html() to be able to call them from WikiAdminUtils also.
2181 // support 2nd genericSqlQuery param (bind huge arg)
2182 //
2183 // Revision 1.115  2004/12/10 02:45:27  rurban
2184 // SQL optimization:
2185 //   put _cached_html from pagedata into a new seperate blob, not huge serialized string.
2186 //   it is only rarelely needed: for current page only, if-not-modified
2187 //   but was extracted for every simple page iteration.
2188 //
2189 // Revision 1.114  2004/12/09 22:24:44  rurban
2190 // optimize on _DEBUG_SQL only. but now again on every 50th request, not just save.
2191 //
2192 // Revision 1.113  2004/12/06 19:49:55  rurban
2193 // enable action=remove which is undoable and seeable in RecentChanges: ADODB ony for now.
2194 // renamed delete_page to purge_page.
2195 // enable action=edit&version=-1 to force creation of a new version.
2196 // added BABYCART_PATH config
2197 // fixed magiqc in adodb.inc.php
2198 // and some more docs
2199 //
2200 // Revision 1.112  2004/11/30 17:45:53  rurban
2201 // exists_links backend implementation
2202 //
2203 // Revision 1.111  2004/11/28 20:39:43  rurban
2204 // deactivate pagecache overwrite: it is wrong
2205 //
2206 // Revision 1.110  2004/11/26 18:39:01  rurban
2207 // new regex search parser and SQL backends (90% complete, glob and pcre backends missing)
2208 //
2209 // Revision 1.109  2004/11/25 17:20:50  rurban
2210 // and again a couple of more native db args: backlinks
2211 //
2212 // Revision 1.108  2004/11/23 13:35:31  rurban
2213 // add case_exact search
2214 //
2215 // Revision 1.107  2004/11/21 11:59:16  rurban
2216 // remove final \n to be ob_cache independent
2217 //
2218 // Revision 1.106  2004/11/20 17:35:56  rurban
2219 // improved WantedPages SQL backends
2220 // PageList::sortby new 3rd arg valid_fields (override db fields)
2221 // WantedPages sql pager inexact for performance reasons:
2222 //   assume 3 wantedfrom per page, to be correct, no getTotal()
2223 // support exclude argument for get_all_pages, new _sql_set()
2224 //
2225 // Revision 1.105  2004/11/20 09:16:27  rurban
2226 // Fix bad-style Cut&Paste programming errors, detected by Charles Corrigan.
2227 //
2228 // Revision 1.104  2004/11/19 19:22:03  rurban
2229 // ModeratePage part1: change status
2230 //
2231 // Revision 1.103  2004/11/16 17:29:04  rurban
2232 // fix remove notification error
2233 // fix creation + update id_cache update
2234 //
2235 // Revision 1.102  2004/11/11 18:31:26  rurban
2236 // add simple backtrace on such general failures to get at least an idea where
2237 //
2238 // Revision 1.101  2004/11/10 19:32:22  rurban
2239 // * optimize increaseHitCount, esp. for mysql.
2240 // * prepend dirs to the include_path (phpwiki_dir for faster searches)
2241 // * Pear_DB version logic (awful but needed)
2242 // * fix broken ADODB quote
2243 // * _extract_page_data simplification
2244 //
2245 // Revision 1.100  2004/11/10 15:29:20  rurban
2246 // * requires newer Pear_DB (as the internal one): quote() uses now escapeSimple for strings
2247 // * ACCESS_LOG_SQL: fix cause request not yet initialized
2248 // * WikiDB: moved SQL specific methods upwards
2249 // * new Pear_DB quoting: same as ADODB and as newer Pear_DB.
2250 //   fixes all around: WikiGroup, WikiUserNew SQL methods, SQL logging
2251 //
2252 // Revision 1.99  2004/11/09 17:11:05  rurban
2253 // * revert to the wikidb ref passing. there's no memory abuse there.
2254 // * use new wikidb->_cache->_id_cache[] instead of wikidb->_iwpcache, to effectively
2255 //   store page ids with getPageLinks (GleanDescription) of all existing pages, which
2256 //   are also needed at the rendering for linkExistingWikiWord().
2257 //   pass options to pageiterator.
2258 //   use this cache also for _get_pageid()
2259 //   This saves about 8 SELECT count per page (num all pagelinks).
2260 // * fix passing of all page fields to the pageiterator.
2261 // * fix overlarge session data which got broken with the latest ACCESS_LOG_SQL changes
2262 //
2263 // Revision 1.98  2004/11/07 18:34:29  rurban
2264 // more logging fixes
2265 //
2266 // Revision 1.97  2004/11/07 16:02:51  rurban
2267 // new sql access log (for spam prevention), and restructured access log class
2268 // dbh->quote (generic)
2269 // pear_db: mysql specific parts seperated (using replace)
2270 //
2271 // Revision 1.96  2004/11/05 22:32:15  rurban
2272 // encode the subject to be 7-bit safe
2273 //
2274 // Revision 1.95  2004/11/05 20:53:35  rurban
2275 // login cleanup: better debug msg on failing login,
2276 // checked password less immediate login (bogo or anon),
2277 // checked olduser pref session error,
2278 // better PersonalPage without password warning on minimal password length=0
2279 //   (which is default now)
2280 //
2281 // Revision 1.94  2004/11/01 10:43:56  rurban
2282 // seperate PassUser methods into seperate dir (memory usage)
2283 // fix WikiUser (old) overlarge data session
2284 // remove wikidb arg from various page class methods, use global ->_dbi instead
2285 // ...
2286 //
2287 // Revision 1.93  2004/10/14 17:17:57  rurban
2288 // remove dbi WikiDB_Page param: use global request object instead. (memory)
2289 // allow most_popular sortby arguments
2290 //
2291 // Revision 1.92  2004/10/05 17:00:04  rurban
2292 // support paging for simple lists
2293 // fix RatingDb sql backend.
2294 // remove pages from AllPages (this is ListPages then)
2295 //
2296 // Revision 1.91  2004/10/04 23:41:19  rurban
2297 // delete notify: fix, @unset syntax error
2298 //
2299 // Revision 1.90  2004/09/28 12:50:22  rurban
2300 // https://sourceforge.net/forum/forum.php?thread_id=1150924&forum_id=18929
2301 //
2302 // Revision 1.89  2004/09/26 10:54:42  rurban
2303 // silence deferred check
2304 //
2305 // Revision 1.88  2004/09/25 18:16:40  rurban
2306 // unset more unneeded _cached_html. (Guess this should fix sf.net now)
2307 //
2308 // Revision 1.87  2004/09/25 16:25:40  rurban
2309 // notify on rename and remove (to be improved)
2310 //
2311 // Revision 1.86  2004/09/23 18:52:06  rurban
2312 // only fortune at create
2313 //
2314 // Revision 1.85  2004/09/16 08:00:51  rurban
2315 // just some comments
2316 //
2317 // Revision 1.84  2004/09/14 10:34:30  rurban
2318 // fix TransformedText call to use refs
2319 //
2320 // Revision 1.83  2004/09/08 13:38:00  rurban
2321 // improve loadfile stability by using markup=2 as default for undefined markup-style.
2322 // use more refs for huge objects.
2323 // fix debug=static issue in WikiPluginCached
2324 //
2325 // Revision 1.82  2004/09/06 12:08:49  rurban
2326 // memory_limit on unix workaround
2327 // VisualWiki: default autosize image
2328 //
2329 // Revision 1.81  2004/09/06 08:28:00  rurban
2330 // rename genericQuery to genericSqlQuery
2331 //
2332 // Revision 1.80  2004/07/09 13:05:34  rurban
2333 // just aesthetics
2334 //
2335 // Revision 1.79  2004/07/09 10:06:49  rurban
2336 // Use backend specific sortby and sortable_columns method, to be able to
2337 // select between native (Db backend) and custom (PageList) sorting.
2338 // Fixed PageList::AddPageList (missed the first)
2339 // Added the author/creator.. name to AllPagesBy...
2340 //   display no pages if none matched.
2341 // Improved dba and file sortby().
2342 // Use &$request reference
2343 //
2344 // Revision 1.78  2004/07/08 21:32:35  rurban
2345 // Prevent from more warnings, minor db and sort optimizations
2346 //
2347 // Revision 1.77  2004/07/08 19:04:42  rurban
2348 // more unittest fixes (file backend, metadata RatingsDb)
2349 //
2350 // Revision 1.76  2004/07/08 17:31:43  rurban
2351 // improve numPages for file (fixing AllPagesTest)
2352 //
2353 // Revision 1.75  2004/07/05 13:56:22  rurban
2354 // sqlite autoincrement fix
2355 //
2356 // Revision 1.74  2004/07/03 16:51:05  rurban
2357 // optional DBADMIN_USER:DBADMIN_PASSWD for action=upgrade (if no ALTER permission)
2358 // added atomic mysql REPLACE for PearDB as in ADODB
2359 // fixed _lock_tables typo links => link
2360 // fixes unserialize ADODB bug in line 180
2361 //
2362 // Revision 1.73  2004/06/29 08:52:22  rurban
2363 // Use ...version() $need_content argument in WikiDB also:
2364 // To reduce the memory footprint for larger sets of pagelists,
2365 // we don't cache the content (only true or false) and
2366 // we purge the pagedata (_cached_html) also.
2367 // _cached_html is only cached for the current pagename.
2368 // => Vastly improved page existance check, ACL check, ...
2369 //
2370 // Now only PagedList info=content or size needs the whole content, esp. if sortable.
2371 //
2372 // Revision 1.72  2004/06/25 14:15:08  rurban
2373 // reduce memory footprint by caching only requested pagedate content (improving most page iterators)
2374 //
2375 // Revision 1.71  2004/06/21 16:22:30  rurban
2376 // add DEFAULT_DUMP_DIR and HTML_DUMP_DIR constants, for easier cmdline dumps,
2377 // fixed dumping buttons locally (images/buttons/),
2378 // support pages arg for dumphtml,
2379 // optional directory arg for dumpserial + dumphtml,
2380 // fix a AllPages warning,
2381 // show dump warnings/errors on DEBUG,
2382 // don't warn just ignore on wikilens pagelist columns, if not loaded.
2383 // RateIt pagelist column is called "rating", not "ratingwidget" (Dan?)
2384 //
2385 // Revision 1.70  2004/06/18 14:39:31  rurban
2386 // actually check USECACHE
2387 //
2388 // Revision 1.69  2004/06/13 15:33:20  rurban
2389 // new support for arguments owner, author, creator in most relevant
2390 // PageList plugins. in WikiAdmin* via preSelectS()
2391 //
2392 // Revision 1.68  2004/06/08 21:03:20  rurban
2393 // updated RssParser for XmlParser quirks (store parser object params in globals)
2394 //
2395 // Revision 1.67  2004/06/07 19:12:49  rurban
2396 // fixed rename version=0, bug #966284
2397 //
2398 // Revision 1.66  2004/06/07 18:57:27  rurban
2399 // fix rename: Change pagename in all linked pages
2400 //
2401 // Revision 1.65  2004/06/04 20:32:53  rurban
2402 // Several locale related improvements suggested by Pierrick Meignen
2403 // LDAP fix by John Cole
2404 // reanable admin check without ENABLE_PAGEPERM in the admin plugins
2405 //
2406 // Revision 1.64  2004/06/04 16:50:00  rurban
2407 // add random quotes to empty pages
2408 //
2409 // Revision 1.63  2004/06/04 11:58:38  rurban
2410 // added USE_TAGLINES
2411 //
2412 // Revision 1.62  2004/06/03 22:24:41  rurban
2413 // reenable admin check on !ENABLE_PAGEPERM, honor s=Wildcard arg, fix warning after Remove
2414 //
2415 // Revision 1.61  2004/06/02 17:13:48  rurban
2416 // fix getRevisionBefore assertion
2417 //
2418 // Revision 1.60  2004/05/28 10:09:58  rurban
2419 // fix bug #962117, incorrect init of auth_dsn
2420 //
2421 // Revision 1.59  2004/05/27 17:49:05  rurban
2422 // renamed DB_Session to DbSession (in CVS also)
2423 // added WikiDB->getParam and WikiDB->getAuthParam method to get rid of globals
2424 // remove leading slash in error message
2425 // added force_unlock parameter to File_Passwd (no return on stale locks)
2426 // fixed adodb session AffectedRows
2427 // added FileFinder helpers to unify local filenames and DATA_PATH names
2428 // editpage.php: new edit toolbar javascript on ENABLE_EDIT_TOOLBAR
2429 //
2430 // Revision 1.58  2004/05/18 13:59:14  rurban
2431 // rename simpleQuery to genericQuery
2432 //
2433 // Revision 1.57  2004/05/16 22:07:35  rurban
2434 // check more config-default and predefined constants
2435 // various PagePerm fixes:
2436 //   fix default PagePerms, esp. edit and view for Bogo and Password users
2437 //   implemented Creator and Owner
2438 //   BOGOUSERS renamed to BOGOUSER
2439 // fixed syntax errors in signin.tmpl
2440 //
2441 // Revision 1.56  2004/05/15 22:54:49  rurban
2442 // fixed important WikiDB bug with DEBUG > 0: wrong assertion
2443 // improved SetAcl (works) and PagePerms, some WikiGroup helpers.
2444 //
2445 // Revision 1.55  2004/05/12 19:27:47  rurban
2446 // revert wrong inline optimization.
2447 //
2448 // Revision 1.54  2004/05/12 10:49:55  rurban
2449 // require_once fix for those libs which are loaded before FileFinder and
2450 //   its automatic include_path fix, and where require_once doesn't grok
2451 //   dirname(__FILE__) != './lib'
2452 // upgrade fix with PearDB
2453 // navbar.tmpl: remove spaces for IE &nbsp; button alignment
2454 //
2455 // Revision 1.53  2004/05/08 14:06:12  rurban
2456 // new support for inlined image attributes: [image.jpg size=50x30 align=right]
2457 // minor stability and portability fixes
2458 //
2459 // Revision 1.52  2004/05/06 19:26:16  rurban
2460 // improve stability, trying to find the InlineParser endless loop on sf.net
2461 //
2462 // remove end-of-zip comments to fix sf.net bug #777278 and probably #859628
2463 //
2464 // Revision 1.51  2004/05/06 17:30:37  rurban
2465 // CategoryGroup: oops, dos2unix eol
2466 // improved phpwiki_version:
2467 //   pre -= .0001 (1.3.10pre: 1030.099)
2468 //   -p1 += .001 (1.3.9-p1: 1030.091)
2469 // improved InstallTable for mysql and generic SQL versions and all newer tables so far.
2470 // abstracted more ADODB/PearDB methods for action=upgrade stuff:
2471 //   backend->backendType(), backend->database(),
2472 //   backend->listOfFields(),
2473 //   backend->listOfTables(),
2474 //
2475 // Revision 1.50  2004/05/04 22:34:25  rurban
2476 // more pdf support
2477 //
2478 // Revision 1.49  2004/05/03 11:16:40  rurban
2479 // fixed sendPageChangeNotification
2480 // subject rewording
2481 //
2482 // Revision 1.48  2004/04/29 23:03:54  rurban
2483 // fixed sf.net bug #940996
2484 //
2485 // Revision 1.47  2004/04/29 19:39:44  rurban
2486 // special support for formatted plugins (one-liners)
2487 //   like <small><plugin BlaBla ></small>
2488 // iter->asArray() helper for PopularNearby
2489 // db_session for older php's (no &func() allowed)
2490 //
2491 // Revision 1.46  2004/04/26 20:44:34  rurban
2492 // locking table specific for better databases
2493 //
2494 // Revision 1.45  2004/04/20 00:06:03  rurban
2495 // themable paging support
2496 //
2497 // Revision 1.44  2004/04/19 18:27:45  rurban
2498 // Prevent from some PHP5 warnings (ref args, no :: object init)
2499 //   php5 runs now through, just one wrong XmlElement object init missing
2500 // Removed unneccesary UpgradeUser lines
2501 // Changed WikiLink to omit version if current (RecentChanges)
2502 //
2503 // Revision 1.43  2004/04/18 01:34:20  rurban
2504 // protect most_popular from sortby=mtime
2505 //
2506 // Revision 1.42  2004/04/18 01:11:51  rurban
2507 // more numeric pagename fixes.
2508 // fixed action=upload with merge conflict warnings.
2509 // charset changed from constant to global (dynamic utf-8 switching)
2510 //
2511
2512 // Local Variables:
2513 // mode: php
2514 // tab-width: 8
2515 // c-basic-offset: 4
2516 // c-hanging-comment-ender-p: nil
2517 // indent-tabs-mode: nil
2518 // End:   
2519 ?>