]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/WikiDB/backend/PearDB.php
add comments
[SourceForge/phpwiki.git] / lib / WikiDB / backend / PearDB.php
1 <?php // -*-php-*-
2 rcs_id('$Id: PearDB.php,v 1.88 2005-08-06 13:20:05 rurban Exp $');
3
4 require_once('lib/WikiDB/backend.php');
5 //require_once('lib/FileFinder.php');
6 //require_once('lib/ErrorManager.php');
7
8 class WikiDB_backend_PearDB
9 extends WikiDB_backend
10 {
11     var $_dbh;
12
13     function WikiDB_backend_PearDB ($dbparams) {
14         // Find and include PEAR's DB.php. maybe we should force our private version again...
15         // if DB would have exported its version number, it would be easier.
16         @require_once('DB/common.php'); // Either our local pear copy or the system one
17         // check the version!
18         $name = check_php_version(5) ? "escapeSimple" : strtolower("escapeSimple");
19         // TODO: apparently some Pear::Db version adds LIMIT 1,0 to getOne(), 
20         // which is invalid for "select version()"
21         if (!in_array($name, get_class_methods("DB_common"))) {
22             $finder = new FileFinder;
23             $dir = dirname(__FILE__)."/../../pear";
24             $finder->_prepend_to_include_path($dir);
25             include_once("$dir/DB/common.php"); // use our version instead.
26             if (!in_array($name, get_class_methods("DB_common"))) {
27                 $pearFinder = new PearFileFinder("lib/pear");
28                 $pearFinder->includeOnce('DB.php');
29             } else {
30                 include_once("$dir/DB.php");
31             }
32         } else {
33           include_once("DB.php");
34         }
35
36         // Install filter to handle bogus error notices from buggy DB.php's.
37         // TODO: check the Pear_DB version, but how?
38         if (0) {
39             global $ErrorManager;
40             $ErrorManager->pushErrorHandler(new WikiMethodCb($this, '_pear_notice_filter'));
41             $this->_pearerrhandler = true;
42         }
43         
44         // Open connection to database
45         $this->_dsn = $dbparams['dsn'];
46         $this->_dbparams = $dbparams;
47         $this->_lock_count = 0;
48
49         // persistent is usually a DSN option: we override it with a config value.
50         //   phptype://username:password@hostspec/database?persistent=false
51         $dboptions = array('persistent' => DATABASE_PERSISTENT,
52                            'debug' => 2);
53         //if (preg_match('/^pgsql/', $this->_dsn)) $dboptions['persistent'] = false;
54         $this->_dbh = DB::connect($this->_dsn, $dboptions);
55         $dbh = &$this->_dbh;
56         if (DB::isError($dbh)) {
57             trigger_error(sprintf("Can't connect to database: %s",
58                                   $this->_pear_error_message($dbh)),
59                           E_USER_ERROR);
60         }
61         $dbh->setErrorHandling(PEAR_ERROR_CALLBACK,
62                                array($this, '_pear_error_callback'));
63         $dbh->setFetchMode(DB_FETCHMODE_ASSOC);
64
65         $prefix = isset($dbparams['prefix']) ? $dbparams['prefix'] : '';
66         $this->_table_names
67             = array('page_tbl'     => $prefix . 'page',
68                     'version_tbl'  => $prefix . 'version',
69                     'link_tbl'     => $prefix . 'link',
70                     'recent_tbl'   => $prefix . 'recent',
71                     'nonempty_tbl' => $prefix . 'nonempty');
72         $page_tbl = $this->_table_names['page_tbl'];
73         $version_tbl = $this->_table_names['version_tbl'];
74         $this->page_tbl_fields = "$page_tbl.id AS id, $page_tbl.pagename AS pagename, $page_tbl.hits AS hits";
75         $this->version_tbl_fields = "$version_tbl.version AS version, $version_tbl.mtime AS mtime, ".
76             "$version_tbl.minor_edit AS minor_edit, $version_tbl.content AS content, $version_tbl.versiondata AS versiondata";
77
78         $this->_expressions
79             = array('maxmajor'     => "MAX(CASE WHEN minor_edit=0 THEN version END)",
80                     'maxminor'     => "MAX(CASE WHEN minor_edit<>0 THEN version END)",
81                     'maxversion'   => "MAX(version)",
82                     'notempty'     => "<>''",
83                     'iscontent'    => "content<>''");
84         
85     }
86     
87     /**
88      * Close database connection.
89      */
90     function close () {
91         if (!$this->_dbh)
92             return;
93         if ($this->_lock_count) {
94             trigger_error( "WARNING: database still locked " . '(lock_count = $this->_lock_count)' . "\n<br />",
95                           E_USER_WARNING);
96         }
97         $this->_dbh->setErrorHandling(PEAR_ERROR_PRINT);        // prevent recursive loops.
98         $this->unlock('force');
99
100         $this->_dbh->disconnect();
101
102         if (!empty($this->_pearerrhandler)) {
103             $GLOBALS['ErrorManager']->popErrorHandler();
104         }
105     }
106
107
108     /*
109      * Test fast wikipage.
110      */
111     function is_wiki_page($pagename) {
112         $dbh = &$this->_dbh;
113         extract($this->_table_names);
114         return $dbh->getOne(sprintf("SELECT $page_tbl.id as id"
115                                     . " FROM $nonempty_tbl, $page_tbl"
116                                     . " WHERE $nonempty_tbl.id=$page_tbl.id"
117                                     . "   AND pagename='%s'",
118                                     $dbh->escapeSimple($pagename)));
119     }
120         
121     function get_all_pagenames() {
122         $dbh = &$this->_dbh;
123         extract($this->_table_names);
124         return $dbh->getCol("SELECT pagename"
125                             . " FROM $nonempty_tbl, $page_tbl"
126                             . " WHERE $nonempty_tbl.id=$page_tbl.id");
127     }
128
129     function numPages($filter=false, $exclude='') {
130         $dbh = &$this->_dbh;
131         extract($this->_table_names);
132         return $dbh->getOne("SELECT count(*)"
133                             . " FROM $nonempty_tbl, $page_tbl"
134                             . " WHERE $nonempty_tbl.id=$page_tbl.id");
135     }
136     
137     function increaseHitCount($pagename) {
138         $dbh = &$this->_dbh;
139         // Hits is the only thing we can update in a fast manner.
140         // Note that this will fail silently if the page does not
141         // have a record in the page table.  Since it's just the
142         // hit count, who cares?
143         $dbh->query(sprintf("UPDATE %s SET hits=hits+1 WHERE pagename='%s'",
144                             $this->_table_names['page_tbl'],
145                             $dbh->escapeSimple($pagename)));
146         return;
147     }
148
149     /**
150      * Read page information from database.
151      */
152     function get_pagedata($pagename) {
153         $dbh = &$this->_dbh;
154         //trigger_error("GET_PAGEDATA $pagename", E_USER_NOTICE);
155         $result = $dbh->getRow(sprintf("SELECT hits,pagedata FROM %s WHERE pagename='%s'",
156                                        $this->_table_names['page_tbl'],
157                                        $dbh->escapeSimple($pagename)),
158                                DB_FETCHMODE_ASSOC);
159         return $result ? $this->_extract_page_data($result) : false;
160     }
161
162     function  _extract_page_data($data) {
163         if (empty($data)) return array();
164         elseif (empty($data['pagedata'])) return $data;
165         else {
166             $data = array_merge($data, $this->_unserialize($data['pagedata']));
167             unset($data['pagedata']);
168             return $data;
169         }
170     }
171
172     function update_pagedata($pagename, $newdata) {
173         $dbh = &$this->_dbh;
174         $page_tbl = $this->_table_names['page_tbl'];
175
176         // Hits is the only thing we can update in a fast manner.
177         if (count($newdata) == 1 && isset($newdata['hits'])) {
178             // Note that this will fail silently if the page does not
179             // have a record in the page table.  Since it's just the
180             // hit count, who cares?
181             $dbh->query(sprintf("UPDATE $page_tbl SET hits=%d WHERE pagename='%s'",
182                                 $newdata['hits'], $dbh->escapeSimple($pagename)));
183             return;
184         }
185
186         $this->lock(array($page_tbl), true);
187         $data = $this->get_pagedata($pagename);
188         if (!$data) {
189             $data = array();
190             $this->_get_pageid($pagename, true); // Creates page record
191         }
192         
193         @$hits = (int)$data['hits'];
194         unset($data['hits']);
195
196         foreach ($newdata as $key => $val) {
197             if ($key == 'hits')
198                 $hits = (int)$val;
199             else if (empty($val))
200                 unset($data[$key]);
201             else
202                 $data[$key] = $val;
203         }
204
205         /* Portability issue -- not all DBMS supports huge strings 
206          * so we need to 'bind' instead of building a simple SQL statment.
207          * Note that we do not need to escapeSimple when we bind
208         $dbh->query(sprintf("UPDATE $page_tbl"
209                             . " SET hits=%d, pagedata='%s'"
210                             . " WHERE pagename='%s'",
211                             $hits,
212                             $dbh->escapeSimple($this->_serialize($data)),
213                             $dbh->escapeSimple($pagename)));
214         */
215         $sth = $dbh->query("UPDATE $page_tbl"
216                            . " SET hits=?, pagedata=?"
217                            . " WHERE pagename=?",
218                            array($hits, $this->_serialize($data), $pagename));
219         $this->unlock(array($page_tbl));
220     }
221
222     function get_cached_html($pagename) {
223         $dbh = &$this->_dbh;
224         $page_tbl = $this->_table_names['page_tbl'];
225         return $dbh->GetOne(sprintf("SELECT cached_html FROM $page_tbl WHERE pagename='%s'",
226                                     $dbh->escapeSimple($pagename)));
227     }
228
229     function set_cached_html($pagename, $data) {
230         $dbh = &$this->_dbh;
231         $page_tbl = $this->_table_names['page_tbl'];
232         $sth = $dbh->query("UPDATE $page_tbl"
233                            . " SET cached_html=?"
234                            . " WHERE pagename=?",
235                            array($data, $pagename));
236     }
237
238     function _get_pageid($pagename, $create_if_missing = false) {
239         
240         // check id_cache
241         global $request;
242         $cache =& $request->_dbi->_cache->_id_cache;
243         if (isset($cache[$pagename])) {
244             if ($cache[$pagename] or !$create_if_missing) {
245                 return $cache[$pagename];
246             }
247         }
248
249         $dbh = &$this->_dbh;
250         $page_tbl = $this->_table_names['page_tbl'];
251         
252         $query = sprintf("SELECT id FROM $page_tbl WHERE pagename='%s'",
253                          $dbh->escapeSimple($pagename));
254
255         if (!$create_if_missing)
256             return $dbh->getOne($query);
257
258         $id = $dbh->getOne($query);
259         if (empty($id)) {
260             $this->lock(array($page_tbl), true); // write lock
261             $max_id = $dbh->getOne("SELECT MAX(id) FROM $page_tbl");
262             $id = $max_id + 1;
263             $dbh->query(sprintf("INSERT INTO $page_tbl"
264                                 . " (id,pagename,hits)"
265                                 . " VALUES (%d,'%s',0)",
266                                 $id, $dbh->escapeSimple($pagename)));
267             $this->unlock(array($page_tbl));
268         }
269         return $id;
270     }
271
272     function get_latest_version($pagename) {
273         $dbh = &$this->_dbh;
274         extract($this->_table_names);
275         return
276             (int)$dbh->getOne(sprintf("SELECT latestversion"
277                                       . " FROM $page_tbl, $recent_tbl"
278                                       . " WHERE $page_tbl.id=$recent_tbl.id"
279                                       . "  AND pagename='%s'",
280                                       $dbh->escapeSimple($pagename)));
281     }
282
283     function get_previous_version($pagename, $version) {
284         $dbh = &$this->_dbh;
285         extract($this->_table_names);
286         
287         return
288             (int)$dbh->getOne(sprintf("SELECT version"
289                                       . " FROM $version_tbl, $page_tbl"
290                                       . " WHERE $version_tbl.id=$page_tbl.id"
291                                       . "  AND pagename='%s'"
292                                       . "  AND version < %d"
293                                       . " ORDER BY version DESC",
294                                       /* Non portable and useless anyway with getOne
295                                       . " LIMIT 1",
296                                       */
297                                       $dbh->escapeSimple($pagename),
298                                       $version));
299     }
300     
301     /**
302      * Get version data.
303      *
304      * @param $version int Which version to get.
305      *
306      * @return hash The version data, or false if specified version does not
307      *              exist.
308      */
309     function get_versiondata($pagename, $version, $want_content = false) {
310         $dbh = &$this->_dbh;
311         extract($this->_table_names);
312         extract($this->_expressions);
313
314         assert(is_string($pagename) and $pagename != "");
315         assert($version > 0);
316         
317         //trigger_error("GET_REVISION $pagename $version $want_content", E_USER_NOTICE);
318         // FIXME: optimization: sometimes don't get page data?
319         if ($want_content) {
320             $fields = $this->page_tbl_fields 
321                 . ",$page_tbl.pagedata as pagedata," 
322                 . $this->version_tbl_fields;
323         }
324         else {
325             $fields = $this->page_tbl_fields . ","
326                 . "mtime, minor_edit, versiondata,"
327                 . "$iscontent AS have_content";
328         }
329
330         $result = $dbh->getRow(sprintf("SELECT $fields"
331                                        . " FROM $page_tbl, $version_tbl"
332                                        . " WHERE $page_tbl.id=$version_tbl.id"
333                                        . "  AND pagename='%s'"
334                                        . "  AND version=%d",
335                                        $dbh->escapeSimple($pagename), $version),
336                                DB_FETCHMODE_ASSOC);
337
338         return $this->_extract_version_data($result);
339     }
340
341     function _extract_version_data($query_result) {
342         if (!$query_result)
343             return false;
344
345         $data = $this->_unserialize($query_result['versiondata']);
346         
347         $data['mtime'] = $query_result['mtime'];
348         $data['is_minor_edit'] = !empty($query_result['minor_edit']);
349         
350         if (isset($query_result['content']))
351             $data['%content'] = $query_result['content'];
352         elseif ($query_result['have_content'])
353             $data['%content'] = true;
354         else
355             $data['%content'] = '';
356
357         // FIXME: this is ugly.
358         if (isset($query_result['pagedata'])) {
359             // Query also includes page data.
360             // We might as well send that back too...
361             unset($query_result['versiondata']);
362             $data['%pagedata'] = $this->_extract_page_data($query_result);
363         }
364
365         return $data;
366     }
367
368
369     /**
370      * Create a new revision of a page.
371      */
372     function set_versiondata($pagename, $version, $data) {
373         $dbh = &$this->_dbh;
374         $version_tbl = $this->_table_names['version_tbl'];
375         
376         $minor_edit = (int) !empty($data['is_minor_edit']);
377         unset($data['is_minor_edit']);
378         
379         $mtime = (int)$data['mtime'];
380         unset($data['mtime']);
381         assert(!empty($mtime));
382
383         @$content = (string) $data['%content'];
384         unset($data['%content']);
385
386         unset($data['%pagedata']);
387         
388         $this->lock();
389         $id = $this->_get_pageid($pagename, true);
390
391         // FIXME: optimize: mysql can do this with one REPLACE INTO (I think).
392         $dbh->query(sprintf("DELETE FROM $version_tbl"
393                             . " WHERE id=%d AND version=%d",
394                             $id, $version));
395
396         /* mysql optimized version. 
397         $dbh->query(sprintf("INSERT INTO $version_tbl"
398                             . " (id,version,mtime,minor_edit,content,versiondata)"
399                             . " VALUES(%d,%d,%d,%d,'%s','%s')",
400                             $id, $version, $mtime, $minor_edit,
401                             $dbh->quoteSmart($content),
402                             $dbh->quoteSmart($this->_serialize($data))));
403         */
404         // generic slow PearDB bind eh quoting.
405         $dbh->query("INSERT INTO $version_tbl"
406                     . " (id,version,mtime,minor_edit,content,versiondata)"
407                     . " VALUES(?, ?, ?, ?, ?, ?)",
408                     array($id, $version, $mtime, $minor_edit, $content,
409                     $this->_serialize($data)));
410
411         $this->_update_recent_table($id);
412         $this->_update_nonempty_table($id);
413         
414         $this->unlock();
415     }
416     
417     /**
418      * Delete an old revision of a page.
419      */
420     function delete_versiondata($pagename, $version) {
421         $dbh = &$this->_dbh;
422         extract($this->_table_names);
423
424         $this->lock();
425         if ( ($id = $this->_get_pageid($pagename)) ) {
426             $dbh->query("DELETE FROM $version_tbl"
427                         . " WHERE id=$id AND version=$version");
428             $this->_update_recent_table($id);
429             // This shouldn't be needed (as long as the latestversion
430             // never gets deleted.)  But, let's be safe.
431             $this->_update_nonempty_table($id);
432         }
433         $this->unlock();
434     }
435
436     /**
437      * Delete page from the database with backup possibility.
438      * i.e save_page('') and DELETE nonempty id
439      * Can be undone and is seen in RecentChanges.
440      */
441     /* // see parent backend.php
442     function delete_page($pagename) {
443         $mtime = time();
444         $user =& $GLOBALS['request']->_user;
445         $vdata = array('author' => $user->getId(),
446                        'author_id' => $user->getAuthenticatedId(),
447                        'mtime' => $mtime);
448
449         $this->lock();
450         $version = $this->get_latest_version($pagename);
451         $this->set_versiondata($pagename, $version+1, $vdata);
452         $this->set_links($pagename, false);
453         $pagedata = get_pagedata($pagename);
454         $this->update_pagedata($pagename, array('hits' => $pagedata['hits']));
455         $this->unlock();
456     }
457     */
458
459     /**
460      * Delete page completely from the database.
461      * I'm not sure if this is what we want. Maybe just delete the revisions
462      */
463     function purge_page($pagename) {
464         $dbh = &$this->_dbh;
465         extract($this->_table_names);
466         
467         $this->lock();
468         if ( ($id = $this->_get_pageid($pagename, false)) ) {
469             $dbh->query("DELETE FROM $version_tbl  WHERE id=$id");
470             $dbh->query("DELETE FROM $recent_tbl   WHERE id=$id");
471             $dbh->query("DELETE FROM $nonempty_tbl WHERE id=$id");
472             $dbh->query("DELETE FROM $link_tbl     WHERE linkfrom=$id");
473             $nlinks = $dbh->getOne("SELECT COUNT(*) FROM $link_tbl WHERE linkto=$id");
474             if ($nlinks) {
475                 // We're still in the link table (dangling link) so we can't delete this
476                 // altogether.
477                 $dbh->query("UPDATE $page_tbl SET hits=0, pagedata='' WHERE id=$id");
478                 $result = 0;
479             }
480             else {
481                 $dbh->query("DELETE FROM $page_tbl WHERE id=$id");
482                 $result = 1;
483             }
484             $this->_update_recent_table();
485             $this->_update_nonempty_table();
486         } else {
487             $result = -1; // already purged or not existing
488         }
489         $this->unlock();
490         return $result;
491     }
492
493     // The only thing we might be interested in updating which we can
494     // do fast in the flags (minor_edit).   I think the default
495     // update_versiondata will work fine...
496     //function update_versiondata($pagename, $version, $data) {
497     //}
498
499     function set_links($pagename, $links) {
500         // Update link table.
501         // FIXME: optimize: mysql can do this all in one big INSERT.
502
503         $dbh = &$this->_dbh;
504         extract($this->_table_names);
505
506         $this->lock();
507         $pageid = $this->_get_pageid($pagename, true);
508
509         $dbh->query("DELETE FROM $link_tbl WHERE linkfrom=$pageid");
510
511         if ($links) {
512             foreach($links as $link) {
513                 if (isset($linkseen[$link]))
514                     continue;
515                 $linkseen[$link] = true;
516                 $linkid = $this->_get_pageid($link, true);
517                 $dbh->query("INSERT INTO $link_tbl (linkfrom, linkto)"
518                             . " VALUES ($pageid, $linkid)");
519             }
520         }
521         $this->unlock();
522     }
523     
524     /**
525      * Find pages which link to or are linked from a page.
526      */
527     function get_links($pagename, $reversed=true, $include_empty=false,
528                        $sortby=false, $limit=false, $exclude='') {
529         $dbh = &$this->_dbh;
530         extract($this->_table_names);
531
532         if ($reversed)
533             list($have,$want) = array('linkee', 'linker');
534         else
535             list($have,$want) = array('linker', 'linkee');
536         $orderby = $this->sortby($sortby, 'db', array('pagename'));
537         if ($orderby) $orderby = ' ORDER BY $want.' . $orderby;
538         if ($exclude) // array of pagenames
539             $exclude = " AND $want.pagename NOT IN ".$this->_sql_set($exclude);
540         else 
541             $exclude='';
542
543         $qpagename = $dbh->escapeSimple($pagename);
544         $sql = "SELECT $want.id as id, $want.pagename as pagename, $want.hits as hits"
545             // Looks like 'AS' in column alias is a MySQL thing, Oracle does not like it
546             // and the PostgresSQL manual does not have it either
547             // Since it is optional in mySQL, just remove it...
548             . " FROM $link_tbl, $page_tbl linker, $page_tbl linkee"
549             . (!$include_empty ? ", $nonempty_tbl" : '')
550             . " WHERE linkfrom=linker.id AND linkto=linkee.id"
551             . "  AND $have.pagename='$qpagename'"
552             . (!$include_empty ? " AND $nonempty_tbl.id=$want.id" : "")
553             //. " GROUP BY $want.id"
554             . $exclude
555             . $orderby;
556         if ($limit) {
557             // extract from,count from limit
558             list($from,$count) = $this->limit($limit);
559             $result = $dbh->limitQuery($sql, $from, $count);
560         } else {
561             $result = $dbh->query($sql);
562         }
563         
564         return new WikiDB_backend_PearDB_iter($this, $result);
565     }
566
567     /**
568      * Find if a page links to another page
569      */
570     function exists_link($pagename, $link, $reversed=false) {
571         $dbh = &$this->_dbh;
572         extract($this->_table_names);
573
574         if ($reversed)
575             list($have, $want) = array('linkee', 'linker');
576         else
577             list($have, $want) = array('linker', 'linkee');
578         $qpagename = $dbh->escapeSimple($pagename);
579         $qlink = $dbh->escapeSimple($link);
580         $row = $dbh->GetRow("SELECT IF($want.pagename,1,0) as result"
581                                 . " FROM $link_tbl, $page_tbl linker, $page_tbl linkee, $nonempty_tbl"
582                                 . " WHERE linkfrom=linker.id AND linkto=linkee.id"
583                                 . " AND $have.pagename='$qpagename'"
584                                 . " AND $want.pagename='$qlink'"
585                                 . " LIMIT 1");
586         return $row['result'];
587     }
588
589     function get_all_pages($include_empty=false, $sortby=false, $limit=false, $exclude='') {
590         $dbh = &$this->_dbh;
591         extract($this->_table_names);
592         $orderby = $this->sortby($sortby, 'db');
593         if ($orderby) $orderby = ' ORDER BY ' . $orderby;
594         if ($exclude) // array of pagenames
595             $exclude = " AND $page_tbl.pagename NOT IN ".$this->_sql_set($exclude);
596         else 
597             $exclude='';
598
599         if (strstr($orderby, 'mtime ')) { // multiple columns possible
600             if ($include_empty) {
601                 $sql = "SELECT "
602                     . $this->page_tbl_fields
603                     . " FROM $page_tbl, $recent_tbl, $version_tbl"
604                     . " WHERE $page_tbl.id=$recent_tbl.id"
605                     . " AND $page_tbl.id=$version_tbl.id AND latestversion=version"
606                     . $exclude
607                     . $orderby;
608             }
609             else {
610                 $sql = "SELECT "
611                     . $this->page_tbl_fields
612                     . " FROM $nonempty_tbl, $page_tbl, $recent_tbl, $version_tbl"
613                     . " WHERE $nonempty_tbl.id=$page_tbl.id"
614                     . " AND $page_tbl.id=$recent_tbl.id"
615                     . " AND $page_tbl.id=$version_tbl.id AND latestversion=version"
616                     . $exclude
617                     . $orderby;
618             }
619         } else {
620             if ($include_empty) {
621                 $sql = "SELECT "
622                     . $this->page_tbl_fields 
623                     ." FROM $page_tbl"
624                     . ($exclude ? " WHERE $exclude" : '')
625                     . $orderby;
626             }
627             else {
628                 $sql = "SELECT "
629                     . $this->page_tbl_fields
630                     . " FROM $nonempty_tbl, $page_tbl"
631                     . " WHERE $nonempty_tbl.id=$page_tbl.id"
632                     . $exclude
633                     . $orderby;
634             }
635         }
636         if ($limit) {
637             // extract from,count from limit
638             list($from,$count) = $this->limit($limit);
639             $result = $dbh->limitQuery($sql, $from, $count);
640         } else {
641             $result = $dbh->query($sql);
642         }
643         return new WikiDB_backend_PearDB_iter($this, $result);
644     }
645         
646     /**
647      * Title search.
648      */
649     function text_search($search, $fulltext=false) {
650         $dbh = &$this->_dbh;
651         extract($this->_table_names);
652
653         $searchclass = get_class($this)."_search";
654         // no need to define it everywhere and then fallback. memory!
655         if (!class_exists($searchclass))
656             $searchclass = "WikiDB_backend_PearDB_search";
657         $searchobj = new $searchclass($search, $dbh);
658         
659         $table = "$nonempty_tbl, $page_tbl";
660         $join_clause = "$nonempty_tbl.id=$page_tbl.id";
661         $fields = $this->page_tbl_fields;
662
663         if ($fulltext) {
664             $table .= ", $recent_tbl";
665             $join_clause .= " AND $page_tbl.id=$recent_tbl.id";
666
667             $table .= ", $version_tbl";
668             $join_clause .= " AND $page_tbl.id=$version_tbl.id AND latestversion=version";
669
670             $fields .= ", $page_tbl.pagedata as pagedata, " . $this->version_tbl_fields;
671             $callback = new WikiMethodCb($searchobj, "_fulltext_match_clause");
672         } else {
673             $callback = new WikiMethodCb($searchobj, "_pagename_match_clause");
674         }
675         $search_clause = $search->makeSqlClauseObj($callback);
676         
677         $result = $dbh->query("SELECT $fields FROM $table"
678                               . " WHERE $join_clause"
679                               . "  AND ($search_clause)"
680                               . " ORDER BY pagename");
681         
682         return new WikiDB_backend_PearDB_iter($this, $result);
683     }
684
685     //Todo: check if the better Mysql MATCH operator is supported,
686     // (ranked search) and also google like expressions.
687     function _sql_match_clause($word) {
688         $word = preg_replace('/(?=[%_\\\\])/', "\\", $word);
689         $word = $this->_dbh->escapeSimple($word);
690         //$page_tbl = $this->_table_names['page_tbl'];
691         //Note: Mysql 4.1.0 has a bug which fails with binary fields.
692         //      e.g. if word is lowercased.
693         // http://bugs.mysql.com/bug.php?id=1491
694         return "LOWER(pagename) LIKE '%$word%'";
695     }
696     function _sql_casematch_clause($word) {
697         $word = preg_replace('/(?=[%_\\\\])/', "\\", $word);
698         $word = $this->_dbh->escapeSimple($word);
699         return "pagename LIKE '%$word%'";
700     }
701     function _fullsearch_sql_match_clause($word) {
702         $word = preg_replace('/(?=[%_\\\\])/', "\\", $word);
703         $word = $this->_dbh->escapeSimple($word);
704         //$page_tbl = $this->_table_names['page_tbl'];
705         //Mysql 4.1.1 has a bug which fails here if word is lowercased.
706         return "LOWER(pagename) LIKE '%$word%' OR content LIKE '%$word%'";
707     }
708     function _fullsearch_sql_casematch_clause($word) {
709         $word = preg_replace('/(?=[%_\\\\])/', "\\", $word);
710         $word = $this->_dbh->escapeSimple($word);
711         return "pagename LIKE '%$word%' OR content LIKE '%$word%'";
712     }
713
714     /**
715      * Find highest or lowest hit counts.
716      */
717     function most_popular($limit=0, $sortby='-hits') {
718         $dbh = &$this->_dbh;
719         extract($this->_table_names);
720         if ($limit < 0){ 
721             $order = "hits ASC";
722             $limit = -$limit;
723             $where = ""; 
724         } else {
725             $order = "hits DESC";
726             $where = " AND hits > 0";
727         }
728         $orderby = '';
729         if ($sortby != '-hits') {
730             if ($order = $this->sortby($sortby, 'db'))
731                 $orderby = " ORDER BY " . $order;
732         } else {
733             $orderby = " ORDER BY $order";
734         }
735         //$limitclause = $limit ? " LIMIT $limit" : '';
736         $sql = "SELECT "
737             . $this->page_tbl_fields
738             . " FROM $nonempty_tbl, $page_tbl"
739             . " WHERE $nonempty_tbl.id=$page_tbl.id" 
740             . $where
741             . $orderby;
742          if ($limit) {
743              list($from, $count) = $this->limit($limit);
744              $result = $dbh->limitQuery($sql, $from, $count);
745          } else {
746              $result = $dbh->query($sql);
747          }
748
749         return new WikiDB_backend_PearDB_iter($this, $result);
750     }
751
752     /**
753      * Find recent changes.
754      */
755     function most_recent($params) {
756         $limit = 0;
757         $since = 0;
758         $include_minor_revisions = false;
759         $exclude_major_revisions = false;
760         $include_all_revisions = false;
761         extract($params);
762
763         $dbh = &$this->_dbh;
764         extract($this->_table_names);
765
766         $pick = array();
767         if ($since)
768             $pick[] = "mtime >= $since";
769                         
770         
771         if ($include_all_revisions) {
772             // Include all revisions of each page.
773             $table = "$page_tbl, $version_tbl";
774             $join_clause = "$page_tbl.id=$version_tbl.id";
775
776             if ($exclude_major_revisions) {
777                 // Include only minor revisions
778                 $pick[] = "minor_edit <> 0";
779             }
780             elseif (!$include_minor_revisions) {
781                 // Include only major revisions
782                 $pick[] = "minor_edit = 0";
783             }
784         }
785         else {
786             $table = "$page_tbl, $recent_tbl";
787             $join_clause = "$page_tbl.id=$recent_tbl.id";
788             $table .= ", $version_tbl";
789             $join_clause .= " AND $version_tbl.id=$page_tbl.id";
790             
791             if ($exclude_major_revisions) {
792                 // Include only most recent minor revision
793                 $pick[] = 'version=latestminor';
794             }
795             elseif (!$include_minor_revisions) {
796                 // Include only most recent major revision
797                 $pick[] = 'version=latestmajor';
798             }
799             else {
800                 // Include only the latest revision (whether major or minor).
801                 $pick[] ='version=latestversion';
802             }
803         }
804         $order = "DESC";
805         if($limit < 0){
806             $order = "ASC";
807             $limit = -$limit;
808         }
809         // $limitclause = $limit ? " LIMIT $limit" : '';
810         $where_clause = $join_clause;
811         if ($pick)
812             $where_clause .= " AND " . join(" AND ", $pick);
813
814         // FIXME: use SQL_BUFFER_RESULT for mysql?
815         $sql = "SELECT " 
816                . $this->page_tbl_fields . ", " . $this->version_tbl_fields
817                . " FROM $table"
818                . " WHERE $where_clause"
819                . " ORDER BY mtime $order";
820         if ($limit) {
821              list($from, $count) = $this->limit($limit);
822              $result = $dbh->limitQuery($sql, $from, $count);
823         } else {
824             $result = $dbh->query($sql);
825         }
826         return new WikiDB_backend_PearDB_iter($this, $result);
827     }
828
829     /**
830      * Find referenced empty pages.
831      */
832     function wanted_pages($exclude_from='', $exclude='', $sortby=false, $limit=false) {
833         $dbh = &$this->_dbh;
834         extract($this->_table_names);
835         if ($orderby = $this->sortby($sortby, 'db', array('pagename','wantedfrom')))
836             $orderby = 'ORDER BY ' . $orderby;
837
838         if ($exclude_from) // array of pagenames
839             $exclude_from = " AND linked.pagename NOT IN ".$this->_sql_set($exclude_from);
840         if ($exclude) // array of pagenames
841             $exclude = " AND $page_tbl.pagename NOT IN ".$this->_sql_set($exclude);
842
843         $sql = "SELECT $page_tbl.pagename,linked.pagename as wantedfrom"
844             . " FROM $link_tbl,$page_tbl as linked "
845             . " LEFT JOIN $page_tbl ON($link_tbl.linkto=$page_tbl.id)"
846             . " LEFT JOIN $nonempty_tbl ON($link_tbl.linkto=$nonempty_tbl.id)" 
847             . " WHERE ISNULL($nonempty_tbl.id) AND linked.id=$link_tbl.linkfrom"
848             . $exclude_from
849             . $exclude
850             . $orderby;
851         if ($limit) {
852             list($from, $count) = $this->limit($limit);
853             $result = $dbh->limitQuery($sql, $from, $count * 3);
854         } else {
855             $result = $dbh->query($sql);
856         }
857         return new WikiDB_backend_PearDB_generic_iter($this, $result);
858     }
859
860     function _sql_set(&$pagenames) {
861         $s = '(';
862         foreach ($pagenames as $p) {
863             $s .= ("'".$this->_dbh->escapeSimple($p)."',");
864         }
865         return substr($s,0,-1).")";
866     }
867
868     /**
869      * Rename page in the database.
870      */
871     function rename_page($pagename, $to) {
872         $dbh = &$this->_dbh;
873         extract($this->_table_names);
874         
875         $this->lock();
876         if (($id = $this->_get_pageid($pagename, false)) ) {
877             if ($new = $this->_get_pageid($to, false)) {
878                 // Cludge Alert!
879                 // This page does not exist (already verified before), but exists in the page table.
880                 // So we delete this page.
881                 $dbh->query("DELETE FROM $page_tbl WHERE id=$new");
882                 $dbh->query("DELETE FROM $version_tbl WHERE id=$new");
883                 $dbh->query("DELETE FROM $recent_tbl WHERE id=$new");
884                 $dbh->query("DELETE FROM $nonempty_tbl WHERE id=$new");
885                 // We have to fix all referring tables to the old id
886                 $dbh->query("UPDATE $link_tbl SET linkfrom=$id WHERE linkfrom=$new");
887                 $dbh->query("UPDATE $link_tbl SET linkto=$id WHERE linkto=$new");
888             }
889             $dbh->query(sprintf("UPDATE $page_tbl SET pagename='%s' WHERE id=$id",
890                                 $dbh->escapeSimple($to)));
891         }
892         $this->unlock();
893         return $id;
894     }
895
896     function _update_recent_table($pageid = false) {
897         $dbh = &$this->_dbh;
898         extract($this->_table_names);
899         extract($this->_expressions);
900
901         $pageid = (int)$pageid;
902
903         $this->lock();
904         $dbh->query("DELETE FROM $recent_tbl"
905                     . ( $pageid ? " WHERE id=$pageid" : ""));
906         $dbh->query( "INSERT INTO $recent_tbl"
907                      . " (id, latestversion, latestmajor, latestminor)"
908                      . " SELECT id, $maxversion, $maxmajor, $maxminor"
909                      . " FROM $version_tbl"
910                      . ( $pageid ? " WHERE id=$pageid" : "")
911                      . " GROUP BY id" );
912         $this->unlock();
913     }
914
915     function _update_nonempty_table($pageid = false) {
916         $dbh = &$this->_dbh;
917         extract($this->_table_names);
918
919         $pageid = (int)$pageid;
920
921         extract($this->_expressions);
922         $this->lock();
923         $dbh->query("DELETE FROM $nonempty_tbl"
924                     . ( $pageid ? " WHERE id=$pageid" : ""));
925         $dbh->query("INSERT INTO $nonempty_tbl (id)"
926                     . " SELECT $recent_tbl.id"
927                     . " FROM $recent_tbl, $version_tbl"
928                     . " WHERE $recent_tbl.id=$version_tbl.id"
929                     . "       AND version=latestversion"
930                     // We have some specifics here (Oracle)
931                     //. "  AND content<>''"
932                     . "  AND content $notempty"
933                     . ( $pageid ? " AND $recent_tbl.id=$pageid" : ""));
934         
935         $this->unlock();
936     }
937
938
939     /**
940      * Grab a write lock on the tables in the SQL database.
941      *
942      * Calls can be nested.  The tables won't be unlocked until
943      * _unlock_database() is called as many times as _lock_database().
944      *
945      * @access protected
946      */
947     function lock($tables = false, $write_lock = true) {
948         if ($this->_lock_count++ == 0)
949             $this->_lock_tables($write_lock);
950     }
951
952     /**
953      * Actually lock the required tables.
954      */
955     function _lock_tables($write_lock) {
956         trigger_error("virtual", E_USER_ERROR);
957     }
958     
959     /**
960      * Release a write lock on the tables in the SQL database.
961      *
962      * @access protected
963      *
964      * @param $force boolean Unlock even if not every call to lock() has been matched
965      * by a call to unlock().
966      *
967      * @see _lock_database
968      */
969     function unlock($tables = false, $force = false) {
970         if ($this->_lock_count == 0)
971             return;
972         if (--$this->_lock_count <= 0 || $force) {
973             $this->_unlock_tables();
974             $this->_lock_count = 0;
975         }
976     }
977
978     /**
979      * Actually unlock the required tables.
980      */
981     function _unlock_tables($write_lock) {
982         trigger_error("virtual", E_USER_ERROR);
983     }
984
985
986     /**
987      * Serialize data
988      */
989     function _serialize($data) {
990         if (empty($data))
991             return '';
992         assert(is_array($data));
993         return serialize($data);
994     }
995
996     /**
997      * Unserialize data
998      */
999     function _unserialize($data) {
1000         return empty($data) ? array() : unserialize($data);
1001     }
1002     
1003     /**
1004      * Callback for PEAR (DB) errors.
1005      *
1006      * @access protected
1007      *
1008      * @param A PEAR_error object.
1009      */
1010     function _pear_error_callback($error) {
1011         if ($this->_is_false_error($error))
1012             return;
1013         
1014         $this->_dbh->setErrorHandling(PEAR_ERROR_PRINT);        // prevent recursive loops.
1015         $this->close();
1016         trigger_error($this->_pear_error_message($error), E_USER_ERROR);
1017     }
1018
1019     /**
1020      * Detect false errors messages from PEAR DB.
1021      *
1022      * The version of PEAR DB which ships with PHP 4.0.6 has a bug in that
1023      * it doesn't recognize "LOCK" and "UNLOCK" as SQL commands which don't
1024      * return any data.  (So when a "LOCK" command doesn't return any data,
1025      * DB reports it as an error, when in fact, it's not.)
1026      *
1027      * @access private
1028      * @return bool True iff error is not really an error.
1029      */
1030     function _is_false_error($error) {
1031         if ($error->getCode() != DB_ERROR)
1032             return false;
1033
1034         $query = $this->_dbh->last_query;
1035
1036         if (! preg_match('/^\s*"?(INSERT|UPDATE|DELETE|REPLACE|CREATE'
1037                          . '|DROP|ALTER|GRANT|REVOKE|LOCK|UNLOCK)\s/', $query)) {
1038             // Last query was not of the sort which doesn't return any data.
1039             //" <--kludge for brain-dead syntax coloring
1040             return false;
1041         }
1042         
1043         if (! in_array('ismanip', get_class_methods('DB'))) {
1044             // Pear shipped with PHP 4.0.4pl1 (and before, presumably)
1045             // does not have the DB::isManip method.
1046             return true;
1047         }
1048         
1049         if (DB::isManip($query)) {
1050             // If Pear thinks it's an isManip then it wouldn't have thrown
1051             // the error we're testing for....
1052             return false;
1053         }
1054
1055         return true;
1056     }
1057
1058     function _pear_error_message($error) {
1059         $class = get_class($this);
1060         $message = "$class: fatal database error\n"
1061              . "\t" . $error->getMessage() . "\n"
1062              . "\t(" . $error->getDebugInfo() . ")\n";
1063
1064         // Prevent password from being exposed during a connection error
1065         $safe_dsn = preg_replace('| ( :// .*? ) : .* (?=@) |xs',
1066                                  '\\1:XXXXXXXX', $this->_dsn);
1067         return str_replace($this->_dsn, $safe_dsn, $message);
1068     }
1069
1070     /**
1071      * Filter PHP errors notices from PEAR DB code.
1072      *
1073      * The PEAR DB code which ships with PHP 4.0.6 produces spurious
1074      * errors and notices.  This is an error callback (for use with
1075      * ErrorManager which will filter out those spurious messages.)
1076      * @see _is_false_error, ErrorManager
1077      * @access private
1078      */
1079     function _pear_notice_filter($err) {
1080         return ( $err->isNotice()
1081                  && preg_match('|DB[/\\\\]common.php$|', $err->errfile)
1082                  && $err->errline == 126
1083                  && preg_match('/Undefined offset: +0\b/', $err->errstr) );
1084     }
1085
1086     /* some variables and functions for DB backend abstraction (action=upgrade) */
1087     function database () {
1088         return $this->_dbh->dsn['database'];
1089     }
1090     function backendType() {
1091         return $this->_dbh->phptype;
1092     }
1093     function connection() {
1094         return $this->_dbh->connection;
1095     }
1096     function getRow($query) {
1097         return $this->_dbh->getRow($query);
1098     }
1099
1100     function listOfTables() {
1101         return $this->_dbh->getListOf('tables');
1102     }
1103     function listOfFields($database,$table) {
1104         if ($this->backendType() == 'mysql') {
1105             $fields = array();
1106             assert(!empty($database));
1107             assert(!empty($table));
1108             $result = mysql_list_fields($database, $table, $this->_dbh->connection) or 
1109                 trigger_error(__FILE__.':'.__LINE__.' '.mysql_error(), E_USER_WARNING);
1110             if (!$result) return array();
1111               $columns = mysql_num_fields($result);
1112             for ($i = 0; $i < $columns; $i++) {
1113                 $fields[] = mysql_field_name($result, $i);
1114             }
1115             mysql_free_result($result);
1116             return $fields;
1117         } else {
1118             // TODO: try ADODB version?
1119             trigger_error("Unsupported dbtype and backend. Either switch to ADODB or check it manually.");
1120         }
1121     }
1122
1123 };
1124
1125 /**
1126  * This class is a generic iterator.
1127  *
1128  * WikiDB_backend_PearDB_iter only iterates over things that have
1129  * 'pagename', 'pagedata', etc. etc.
1130  *
1131  * Probably WikiDB_backend_PearDB_iter and this class should be merged
1132  * (most of the code is cut-and-paste :-( ), but I am trying to make
1133  * changes that could be merged easily.
1134  *
1135  * @author: Dan Frankowski
1136  */
1137 class WikiDB_backend_PearDB_generic_iter
1138 extends WikiDB_backend_iterator
1139 {
1140     function WikiDB_backend_PearDB_generic_iter($backend, $query_result, $field_list = NULL) {
1141         if (DB::isError($query_result)) {
1142             // This shouldn't happen, I thought.
1143             $backend->_pear_error_callback($query_result);
1144         }
1145         
1146         $this->_backend = &$backend;
1147         $this->_result = $query_result;
1148     }
1149
1150     function count() {
1151         if (!$this->_result)
1152             return false;
1153         return $this->_result->numRows();
1154     }
1155     
1156     function next() {
1157         $backend = &$this->_backend;
1158         if (!$this->_result)
1159             return false;
1160
1161         $record = $this->_result->fetchRow(DB_FETCHMODE_ASSOC);
1162         if (!$record) {
1163             $this->free();
1164             return false;
1165         }
1166         
1167         return $record;
1168     }
1169
1170     function free () {
1171         if ($this->_result) {
1172             $this->_result->free();
1173             $this->_result = false;
1174         }
1175     }
1176 }
1177
1178 class WikiDB_backend_PearDB_iter
1179 extends WikiDB_backend_PearDB_generic_iter
1180 {
1181
1182     function next() {
1183         $backend = &$this->_backend;
1184         if (!$this->_result)
1185             return false;
1186
1187         $record = $this->_result->fetchRow(DB_FETCHMODE_ASSOC);
1188         if (!$record) {
1189             $this->free();
1190             return false;
1191         }
1192         
1193         $pagedata = $backend->_extract_page_data($record);
1194         $rec = array('pagename' => $record['pagename'],
1195                      'pagedata' => $pagedata);
1196
1197         if (!empty($record['version'])) {
1198             $rec['versiondata'] = $backend->_extract_version_data($record);
1199             $rec['version'] = $record['version'];
1200         }
1201         
1202         return $rec;
1203     }
1204 }
1205
1206 // word search
1207 class WikiDB_backend_PearDB_search
1208 extends WikiDB_backend_search
1209 {
1210     function WikiDB_backend_PearDB_search(&$search, &$dbh) {
1211         $this->_dbh = $dbh;
1212         $this->_case_exact = $search->_case_exact;
1213     }
1214     function _pagename_match_clause($node) { 
1215         $word = $node->sql();
1216         if ($node->op == 'REGEX') { // posix regex extensions
1217             if (preg_match("/mysql/i", $this->_dbh->phptype))
1218                 return "pagename REGEXP '$word'";
1219         } else {
1220             return ($this->_case_exact 
1221                     ? "pagename LIKE '$word'" 
1222                     : "LOWER(pagename) LIKE '$word'");
1223         }
1224     }
1225     function _fulltext_match_clause($node) { 
1226         $word = $node->sql();
1227         return $this->_pagename_match_clause($node)
1228                // probably convert this MATCH AGAINST or SUBSTR/POSITION without wildcards
1229                . ($this->_case_exact ? " OR content LIKE '$word'" 
1230                                      : " OR LOWER(content) LIKE '$word'");
1231     }
1232 }
1233
1234 // $Log: not supported by cvs2svn $
1235 // Revision 1.87  2005/02/10 19:04:24  rurban
1236 // move getRow up one level to our backend class
1237 //
1238 // Revision 1.86  2005/01/29 19:51:02  rurban
1239 // Bugs item #1077769 fixed by frugal.
1240 // Deleted the wrong page. Fix all other tables also.
1241 //
1242 // Revision 1.85  2005/01/25 08:03:35  rurban
1243 // support DATABASE_PERSISTENT besides dsn database?persistent=false; move lock_count up (per Charles Corrigan)
1244 //
1245 // Revision 1.84  2005/01/18 20:55:47  rurban
1246 // reformatting and two bug fixes: adding missing parens
1247 //
1248 // Revision 1.83  2005/01/18 10:11:29  rurban
1249 // Oops. Again thanks to Charles Corrigan
1250 //
1251 // Revision 1.82  2005/01/18 08:55:51  rurban
1252 // fix quoting
1253 //
1254 // Revision 1.81  2005/01/17 08:53:09  rurban
1255 // pagedata fix by Charles Corrigan
1256 //
1257 // Revision 1.80  2004/12/22 18:33:31  rurban
1258 // fix page _id_cache logic for _get_pageid create_if_missing
1259 //
1260 // Revision 1.79  2004/12/10 02:45:27  rurban
1261 // SQL optimization:
1262 //   put _cached_html from pagedata into a new seperate blob, not huge serialized string.
1263 //   it is only rarelely needed: for current page only, if-not-modified
1264 //   but was extracted for every simple page iteration.
1265 //
1266 // Revision 1.78  2004/12/08 12:55:51  rurban
1267 // support new non-destructive delete_page via generic backend method
1268 //
1269 // Revision 1.77  2004/12/06 19:50:04  rurban
1270 // enable action=remove which is undoable and seeable in RecentChanges: ADODB ony for now.
1271 // renamed delete_page to purge_page.
1272 // enable action=edit&version=-1 to force creation of a new version.
1273 // added BABYCART_PATH config
1274 // fixed magiqc in adodb.inc.php
1275 // and some more docs
1276 //
1277 // Revision 1.76  2004/11/30 17:45:53  rurban
1278 // exists_links backend implementation
1279 //
1280 // Revision 1.75  2004/11/28 20:42:33  rurban
1281 // Optimize PearDB _extract_version_data and _extract_page_data.
1282 //
1283 // Revision 1.74  2004/11/27 14:39:05  rurban
1284 // simpified regex search architecture:
1285 //   no db specific node methods anymore,
1286 //   new sql() method for each node
1287 //   parallel to regexp() (which returns pcre)
1288 //   regex types bitmasked (op's not yet)
1289 // new regex=sql
1290 // clarified WikiDB::quote() backend methods:
1291 //   ->quote() adds surrounsing quotes
1292 //   ->qstr() (new method) assumes strings and adds no quotes! (in contrast to ADODB)
1293 //   pear and adodb have now unified quote methods for all generic queries.
1294 //
1295 // Revision 1.73  2004/11/26 18:39:02  rurban
1296 // new regex search parser and SQL backends (90% complete, glob and pcre backends missing)
1297 //
1298 // Revision 1.72  2004/11/25 17:20:51  rurban
1299 // and again a couple of more native db args: backlinks
1300 //
1301 // Revision 1.71  2004/11/23 13:35:48  rurban
1302 // add case_exact search
1303 //
1304 // Revision 1.70  2004/11/21 11:59:26  rurban
1305 // remove final \n to be ob_cache independent
1306 //
1307 // Revision 1.69  2004/11/20 17:49:39  rurban
1308 // add fast exclude support to SQL get_all_pages
1309 //
1310 // Revision 1.68  2004/11/20 17:35:58  rurban
1311 // improved WantedPages SQL backends
1312 // PageList::sortby new 3rd arg valid_fields (override db fields)
1313 // WantedPages sql pager inexact for performance reasons:
1314 //   assume 3 wantedfrom per page, to be correct, no getTotal()
1315 // support exclude argument for get_all_pages, new _sql_set()
1316 //
1317 // Revision 1.67  2004/11/10 19:32:24  rurban
1318 // * optimize increaseHitCount, esp. for mysql.
1319 // * prepend dirs to the include_path (phpwiki_dir for faster searches)
1320 // * Pear_DB version logic (awful but needed)
1321 // * fix broken ADODB quote
1322 // * _extract_page_data simplification
1323 //
1324 // Revision 1.66  2004/11/10 15:29:21  rurban
1325 // * requires newer Pear_DB (as the internal one): quote() uses now escapeSimple for strings
1326 // * ACCESS_LOG_SQL: fix cause request not yet initialized
1327 // * WikiDB: moved SQL specific methods upwards
1328 // * new Pear_DB quoting: same as ADODB and as newer Pear_DB.
1329 //   fixes all around: WikiGroup, WikiUserNew SQL methods, SQL logging
1330 //
1331 // Revision 1.65  2004/11/09 17:11:17  rurban
1332 // * revert to the wikidb ref passing. there's no memory abuse there.
1333 // * use new wikidb->_cache->_id_cache[] instead of wikidb->_iwpcache, to effectively
1334 //   store page ids with getPageLinks (GleanDescription) of all existing pages, which
1335 //   are also needed at the rendering for linkExistingWikiWord().
1336 //   pass options to pageiterator.
1337 //   use this cache also for _get_pageid()
1338 //   This saves about 8 SELECT count per page (num all pagelinks).
1339 // * fix passing of all page fields to the pageiterator.
1340 // * fix overlarge session data which got broken with the latest ACCESS_LOG_SQL changes
1341 //
1342 // Revision 1.64  2004/11/07 16:02:52  rurban
1343 // new sql access log (for spam prevention), and restructured access log class
1344 // dbh->quote (generic)
1345 // pear_db: mysql specific parts seperated (using replace)
1346 //
1347 // Revision 1.63  2004/11/01 10:43:58  rurban
1348 // seperate PassUser methods into seperate dir (memory usage)
1349 // fix WikiUser (old) overlarge data session
1350 // remove wikidb arg from various page class methods, use global ->_dbi instead
1351 // ...
1352 //
1353 // Revision 1.62  2004/10/14 19:19:34  rurban
1354 // loadsave: check if the dumped file will be accessible from outside.
1355 // and some other minor fixes. (cvsclient native not yet ready)
1356 //
1357 // Revision 1.61  2004/10/14 17:19:17  rurban
1358 // allow most_popular sortby arguments
1359 //
1360 // Revision 1.60  2004/07/09 10:06:50  rurban
1361 // Use backend specific sortby and sortable_columns method, to be able to
1362 // select between native (Db backend) and custom (PageList) sorting.
1363 // Fixed PageList::AddPageList (missed the first)
1364 // Added the author/creator.. name to AllPagesBy...
1365 //   display no pages if none matched.
1366 // Improved dba and file sortby().
1367 // Use &$request reference
1368 //
1369 // Revision 1.59  2004/07/08 21:32:36  rurban
1370 // Prevent from more warnings, minor db and sort optimizations
1371 //
1372 // Revision 1.58  2004/07/08 16:56:16  rurban
1373 // use the backendType abstraction
1374 //
1375 // Revision 1.57  2004/07/05 12:57:54  rurban
1376 // add mysql timeout
1377 //
1378 // Revision 1.56  2004/07/04 10:24:43  rurban
1379 // forgot the expressions
1380 //
1381 // Revision 1.55  2004/07/03 16:51:06  rurban
1382 // optional DBADMIN_USER:DBADMIN_PASSWD for action=upgrade (if no ALTER permission)
1383 // added atomic mysql REPLACE for PearDB as in ADODB
1384 // fixed _lock_tables typo links => link
1385 // fixes unserialize ADODB bug in line 180
1386 //
1387 // Revision 1.54  2004/06/29 08:52:24  rurban
1388 // Use ...version() $need_content argument in WikiDB also:
1389 // To reduce the memory footprint for larger sets of pagelists,
1390 // we don't cache the content (only true or false) and
1391 // we purge the pagedata (_cached_html) also.
1392 // _cached_html is only cached for the current pagename.
1393 // => Vastly improved page existance check, ACL check, ...
1394 //
1395 // Now only PagedList info=content or size needs the whole content, esp. if sortable.
1396 //
1397 // Revision 1.53  2004/06/27 10:26:03  rurban
1398 // oci8 patch by Philippe Vanhaesendonck + some ADODB notes+fixes
1399 //
1400 // Revision 1.52  2004/06/25 14:15:08  rurban
1401 // reduce memory footprint by caching only requested pagedate content (improving most page iterators)
1402 //
1403 // Revision 1.51  2004/05/12 10:49:55  rurban
1404 // require_once fix for those libs which are loaded before FileFinder and
1405 //   its automatic include_path fix, and where require_once doesn't grok
1406 //   dirname(__FILE__) != './lib'
1407 // upgrade fix with PearDB
1408 // navbar.tmpl: remove spaces for IE &nbsp; button alignment
1409 //
1410 // Revision 1.50  2004/05/06 17:30:39  rurban
1411 // CategoryGroup: oops, dos2unix eol
1412 // improved phpwiki_version:
1413 //   pre -= .0001 (1.3.10pre: 1030.099)
1414 //   -p1 += .001 (1.3.9-p1: 1030.091)
1415 // improved InstallTable for mysql and generic SQL versions and all newer tables so far.
1416 // abstracted more ADODB/PearDB methods for action=upgrade stuff:
1417 //   backend->backendType(), backend->database(),
1418 //   backend->listOfFields(),
1419 //   backend->listOfTables(),
1420 //
1421 // Revision 1.49  2004/05/03 21:35:30  rurban
1422 // don't use persistent connections with postgres
1423 //
1424 // Revision 1.48  2004/04/26 20:44:35  rurban
1425 // locking table specific for better databases
1426 //
1427 // Revision 1.47  2004/04/20 00:06:04  rurban
1428 // themable paging support
1429 //
1430 // Revision 1.46  2004/04/19 21:51:41  rurban
1431 // php5 compatibility: it works!
1432 //
1433 // Revision 1.45  2004/04/16 14:19:39  rurban
1434 // updated ADODB notes
1435 //
1436
1437 // (c-file-style: "gnu")
1438 // Local Variables:
1439 // mode: php
1440 // tab-width: 8
1441 // c-basic-offset: 4
1442 // c-hanging-comment-ender-p: nil
1443 // indent-tabs-mode: nil
1444 // End:   
1445 ?>