1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
|
<?php
/**
* SessionHandler:: implementation for DBM files.
* NOTE: The PHP DBM functions are deprecated.
*
* No additional configuration parameters needed.
*
* $Horde: framework/SessionHandler/SessionHandler/dbm.php,v 1.9.12.7 2006/01/01 21:28:34 jan Exp $
*
* Copyright 2002-2006 Chuck Hagenbuch <chuck@horde.org>
*
* See the enclosed file COPYING for license information (LGPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Chuck Hagenbuch <chuck@horde.org>
* @since Horde 3.0
* @package Horde_SessionHandler
*/
class SessionHandler_dbm extends SessionHandler {
/**
* Our pointer to the DBM file, if open.
*
* @var resource
*/
var $_dbm;
/**
* Open the SessionHandler backend.
*
* @param string $save_path The path to the session object.
* @param string $session_name The name of the session.
*
* @return boolean True on success, false otherwise.
*/
function open($save_path, $session_name)
{
$this->_dbm = @dbmopen("$save_path/$session_name", 'c');
return $this->_dbm;
}
/**
* Close the SessionHandler backend.
*
* @return boolean True on success, false otherwise.
*/
function close()
{
return @dbmclose($this->_dbm);
}
/**
* Read the data for a particular session identifier from the
* SessionHandler backend.
*
* @param string $id The session identifier.
*
* @return string The session data.
*/
function read($id)
{
if ($data = dbmfetch($this->_dbm, $id)) {
return base64_decode(substr($data, strpos($data, '|') + 1));
} else {
return '';
}
}
/**
* Write session data to the SessionHandler backend.
*
* @param string $id The session identifier.
* @param string $session_data The session data.
*
* @return boolean True on success, false otherwise.
*/
function write($id, $session_data)
{
return @dbmreplace($this->_dbm, $id, time() . '|' . base64_encode($session_data));
}
/**
* Destroy the data for a particular session identifier in the
* SessionHandler backend.
*
* @param string $id The session identifier.
*
* @return boolean True on success, false otherwise.
*/
function destroy($id)
{
if (!(@dbmdelete($this->_dbm, $id))) {
Horde::logMessage('Failed to delete session (id = ' . $id . ')', __FILE__, __LINE__, PEAR_LOG_ERR);
return false;
}
return true;
}
/**
* Garbage collect stale sessions from the SessionHandler backend.
*
* @param integer $maxlifetime The maximum age of a session.
*
* @return boolean True on success, false otherwise.
*/
function gc($maxlifetime = 300)
{
$expired = time() - $maxlifetime;
$id = dbmfirstkey($this->_dbm);
while ($id) {
if ($data = dbmfetch($this->_dbm, $id)) {
$age = substr($tmp, 0, strpos($data, '|'));
if ($expired > $age) {
$this->destroy($id);
}
}
$id = dbmnextkey($this->_dbm, $id);
}
return true;
}
}
|