Remove possible confusion on session reads - PHP expects string result not boolean

pull/7/merge
Aleksander Machniak 13 years ago
parent 7eb4f2e1be
commit 4d708e6c1d

@ -37,7 +37,7 @@ class rcube_session
private $unsets = array(); private $unsets = array();
private $gc_handlers = array(); private $gc_handlers = array();
private $cookiename = 'roundcube_sessauth'; private $cookiename = 'roundcube_sessauth';
private $vars = false; private $vars;
private $key; private $key;
private $now; private $now;
private $secret = ''; private $secret = '';
@ -134,11 +134,10 @@ class rcube_session
$this->vars = base64_decode($sql_arr['vars']); $this->vars = base64_decode($sql_arr['vars']);
$this->key = $key; $this->key = $key;
if (!empty($this->vars)) return !empty($this->vars) ? (string) $this->vars : '';
return $this->vars;
} }
return false; return null;
} }
@ -157,7 +156,7 @@ class rcube_session
// no session row in DB (db_read() returns false) // no session row in DB (db_read() returns false)
if (!$this->key) { if (!$this->key) {
$oldvars = false; $oldvars = null;
} }
// use internal data from read() for fast requests (up to 0.5 sec.) // use internal data from read() for fast requests (up to 0.5 sec.)
else if ($key == $this->key && (!$this->vars || $ts - $this->start < 0.5)) { else if ($key == $this->key && (!$this->vars || $ts - $this->start < 0.5)) {
@ -167,7 +166,7 @@ class rcube_session
$oldvars = $this->db_read($key); $oldvars = $this->db_read($key);
} }
if ($oldvars !== false) { if ($oldvars !== null) {
$newvars = $this->_fixvars($vars, $oldvars); $newvars = $this->_fixvars($vars, $oldvars);
if ($newvars !== $oldvars) { if ($newvars !== $oldvars) {
@ -197,7 +196,7 @@ class rcube_session
*/ */
private function _fixvars($vars, $oldvars) private function _fixvars($vars, $oldvars)
{ {
if ($oldvars !== false) { if ($oldvars !== null) {
$a_oldvars = $this->unserialize($oldvars); $a_oldvars = $this->unserialize($oldvars);
if (is_array($a_oldvars)) { if (is_array($a_oldvars)) {
foreach ((array)$this->unsets as $k) foreach ((array)$this->unsets as $k)
@ -265,13 +264,13 @@ class rcube_session
$this->vars = $arr['vars']; $this->vars = $arr['vars'];
$this->key = $key; $this->key = $key;
if (!empty($this->vars)) return !empty($this->vars) ? (string) $this->vars : '';
return $this->vars;
} }
return false; return null;
} }
/** /**
* Save session data. * Save session data.
* handler for session_read() * handler for session_read()
@ -286,21 +285,22 @@ class rcube_session
// no session data in cache (mc_read() returns false) // no session data in cache (mc_read() returns false)
if (!$this->key) if (!$this->key)
$oldvars = false; $oldvars = null;
// use internal data for fast requests (up to 0.5 sec.) // use internal data for fast requests (up to 0.5 sec.)
else if ($key == $this->key && (!$this->vars || $ts - $this->start < 0.5)) else if ($key == $this->key && (!$this->vars || $ts - $this->start < 0.5))
$oldvars = $this->vars; $oldvars = $this->vars;
else // else read data again else // else read data again
$oldvars = $this->mc_read($key); $oldvars = $this->mc_read($key);
$newvars = $oldvars !== false ? $this->_fixvars($vars, $oldvars) : $vars; $newvars = $oldvars !== null ? $this->_fixvars($vars, $oldvars) : $vars;
if ($newvars !== $oldvars || $ts - $this->changed > $this->lifetime / 2) if ($newvars !== $oldvars || $ts - $this->changed > $this->lifetime / 2)
return $this->memcache->set($key, serialize(array('changed' => time(), 'ip' => $this->ip, 'vars' => $newvars)), MEMCACHE_COMPRESSED, $this->lifetime); return $this->memcache->set($key, serialize(array('changed' => time(), 'ip' => $this->ip, 'vars' => $newvars)), MEMCACHE_COMPRESSED, $this->lifetime);
return true; return true;
} }
/** /**
* Handler for session_destroy() with memcache backend * Handler for session_destroy() with memcache backend
* *
@ -350,7 +350,7 @@ class rcube_session
{ {
session_regenerate_id($destroy); session_regenerate_id($destroy);
$this->vars = false; $this->vars = null;
$this->key = session_id(); $this->key = session_id();
return true; return true;
@ -373,13 +373,14 @@ class rcube_session
return true; return true;
} }
/** /**
* Kill this session * Kill this session
*/ */
public function kill() public function kill()
{ {
$this->vars = false; $this->vars = null;
$this->ip = $_SERVER['REMOTE_ADDR']; // update IP (might have changed) $this->ip = $_SERVER['REMOTE_ADDR']; // update IP (might have changed)
$this->destroy(session_id()); $this->destroy(session_id());
rcube_utils::setcookie($this->cookiename, '-del-', time() - 60); rcube_utils::setcookie($this->cookiename, '-del-', time() - 60);

Loading…
Cancel
Save