]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/DbSession.php
rcs_id no longer makes sense with Subversion global version number
[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             // will fail with php4 and case-sensitive filesystem
32             //$db_type = substr(get_class($dbh),7); 
33             
34             // < 4.1.2 crash on dba sessions at session_write_close(). 
35             // (Tested with 4.1.1 and 4.1.2)
36             // Didn't try postgres sessions.
37             if (!check_php_version(4,1,2) and $db_type == 'dba')
38                 return false;
39
40             @include_once("lib/DbSession/".$db_type.".php");
41             
42             $class = "DbSession_".$db_type;
43             if (class_exists($class)) {
44                 // dba has no ->_dbh, so this is used for the session link
45                 $this->_backend = new $class($dbh->_backend->_dbh, $table);
46                 return $this;
47             }
48         }
49         //Fixme: E_USER_WARNING ignored!
50         trigger_error(sprintf(_("Your WikiDB DB backend '%s' cannot be used for DbSession.")." ".
51                               _("Set USE_DB_SESSION to false."),
52                              $db_type), E_USER_WARNING);
53         return false;
54     }
55     
56     function currentSessions() {
57         return $this->_backend->currentSessions();
58     }
59     function query($sql) {
60         return $this->_backend->query($sql);
61     }
62     function quote($string) { return $string; }
63 }
64
65 // Local Variables:
66 // mode: php
67 // tab-width: 8
68 // c-basic-offset: 4
69 // c-hanging-comment-ender-p: nil
70 // indent-tabs-mode: nil
71 // End:
72 ?>