Keep rcube_session->lifetime and keep_alive in sync

release-0.6
thomascube 14 years ago
parent b2442d93ef
commit 88ca38a356

@ -768,6 +768,7 @@ class rcmail
// login succeeded
if (is_object($user) && $user->ID) {
$this->set_user($user);
$this->session_configure();
// set session vars
$_SESSION['user_id'] = $user->ID;

@ -50,14 +50,10 @@ class rcube_session
public function __construct($db, $lifetime=60)
{
$this->db = $db;
$this->lifetime = $lifetime;
$this->start = microtime(true);
$this->ip = $_SERVER['REMOTE_ADDR'];
// valid time range is now - 1/2 lifetime to now + 1/2 lifetime
$now = time();
$this->now = $now - ($now % ($this->lifetime / 2));
$this->prev = $this->now - ($this->lifetime / 2);
$this->set_lifetime($lifetime);
// set custom functions for PHP session management
session_set_save_handler(
@ -365,12 +361,29 @@ class rcube_session
return unserialize( 'a:' . $items . ':{' . $serialized . '}' );
}
/**
* Setter for session lifetime
*/
public function set_lifetime($lifetime)
{
$this->lifetime = max(120, $lifetime);
// valid time range is now - 1/2 lifetime to now + 1/2 lifetime
$now = time();
$this->now = $now - ($now % ($this->lifetime / 2));
$this->prev = $this->now - ($this->lifetime / 2);
}
/**
* Setter for keep_alive interval
*/
public function set_keep_alive($keep_alive)
{
$this->keep_alive = $keep_alive;
if ($this->lifetime < $keep_alive)
$this->set_lifetime($keep_alive + 30);
}
/**

Loading…
Cancel
Save