]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/DbSession.php
Let's assume PHP >= 4.2
[SourceForge/phpwiki.git] / lib / DbSession.php
1 <?php // rcs_id('$Id$');
2
3 /**
4  * Store sessions data in Pear DB / ADODB / dba / PDO, ....
5  *
6  * History
7  *
8  * Originally by Stanislav Shramko <stanis@movingmail.com>
9  * Minor rewrite by Reini Urban <rurban@x-ray.at> for Phpwiki.
10  * Quasi-major rewrite/decruft/fix by Jeff Dairiki <dairiki@dairiki.org>.
11  * ADODB, dba and PDO classes by Reini Urban.
12  *
13  * Warning: Enable USE_SAFE_DBSESSION if you get INSERT duplicate id warnings.
14  */
15 class DbSession
16 {
17     /**
18      * Constructor
19      *
20      * @param mixed $dbh
21      * DB handle, or WikiDB object (from which the DB handle will
22      * be extracted.
23      *
24      * @param string $table
25      * Name of SQL table containing session data.
26      */
27     function DbSession(&$dbh, $table = 'session') {
28         // Check for existing DbSession handler
29         $db_type = $dbh->getParam('dbtype');
30         if (isa($dbh, 'WikiDB')) {
31             @include_once("lib/DbSession/".$db_type.".php");
32             
33             $class = "DbSession_".$db_type;
34             if (class_exists($class)) {
35                 // dba has no ->_dbh, so this is used for the session link
36                 $this->_backend = new $class($dbh->_backend->_dbh, $table);
37                 return $this;
38             }
39         }
40         //Fixme: E_USER_WARNING ignored!
41         trigger_error(sprintf(_("Your WikiDB DB backend '%s' cannot be used for DbSession.")." ".
42                               _("Set USE_DB_SESSION to false."),
43                              $db_type), E_USER_WARNING);
44         return false;
45     }
46     
47     function currentSessions() {
48         return $this->_backend->currentSessions();
49     }
50     function query($sql) {
51         return $this->_backend->query($sql);
52     }
53     function quote($string) { return $string; }
54 }
55
56 // Local Variables:
57 // mode: php
58 // tab-width: 8
59 // c-basic-offset: 4
60 // c-hanging-comment-ender-p: nil
61 // indent-tabs-mode: nil
62 // End:
63 ?>