Thomas Bruederli
2014-05-22 14291c79dbc1a6ad77a5d43b28e4f3a49f3df46c
Add option to suppress session data writes to DB
1 files modified
16 ■■■■■ changed files
program/lib/Roundcube/rcube_session.php 16 ●●●●● patch | view | raw | blame | history
program/lib/Roundcube/rcube_session.php
@@ -3,7 +3,7 @@
/*
 +-----------------------------------------------------------------------+
 | This file is part of the Roundcube Webmail client                     |
 | Copyright (C) 2005-2012, The Roundcube Dev Team                       |
 | Copyright (C) 2005-2014, The Roundcube Dev Team                       |
 | Copyright (C) 2011, Kolab Systems AG                                  |
 |                                                                       |
 | Licensed under the GNU General Public License version 3 or            |
@@ -44,6 +44,7 @@
    private $secret = '';
    private $ip_check = false;
    private $logging = false;
    private $nowrite = false;
    private $storage;
    private $memcache;
@@ -200,6 +201,9 @@
        $now   = $this->db->now();
        $table = $this->db->table_name('session');
        $ts    = microtime(true);
        if ($this->nowrite)
            return true;
        // no session row in DB (db_read() returns false)
        if (!$this->key) {
@@ -726,6 +730,16 @@
    /**
     * Blocks session data from being written to database.
     * Can be used if write-race conditions are to be expected
     */
    function nowrite($block = true)
    {
        $this->nowrite = $block;
    }
    /**
     * Check session authentication cookie
     *
     * @return boolean True if valid, False if not