From ae4b03163792f0b6e933933e5d37df87dc3fd566 Mon Sep 17 00:00:00 2001 From: mattab Date: Thu, 28 Mar 2013 12:42:39 +1300 Subject: Mass conversion of all files to the newly agreed coding standard: PSR 1/2 Converting Piwik core source files, PHP, JS, TPL, CSS More info: http://piwik.org/participate/coding-standards/ --- core/Session/Namespace.php | 31 +++-- core/Session/SaveHandler/DbTable.php | 246 +++++++++++++++++------------------ 2 files changed, 138 insertions(+), 139 deletions(-) (limited to 'core/Session') diff --git a/core/Session/Namespace.php b/core/Session/Namespace.php index 582363de4c..3c18aa06db 100644 --- a/core/Session/Namespace.php +++ b/core/Session/Namespace.php @@ -1,34 +1,33 @@ config = $config; - $this->maxLifetime = ini_get('session.gc_maxlifetime'); - } - - /** - * Destructor - * - * @return void - */ - public function __destruct() - { - Zend_Session::writeClose(); - } - - /** - * Open Session - retrieve resources - * - * @param string $save_path - * @param string $name - * @return boolean - */ - public function open($save_path, $name) - { - $this->config['db']->getConnection(); - - return true; - } - - /** - * Close Session - free resources - * - * @return boolean - */ - public function close() - { - return true; - } - - /** - * Read session data - * - * @param string $id - * @return string - */ - public function read($id) - { - $sql = 'SELECT '.$this->config['dataColumn'].' FROM '.$this->config['name'] - .' WHERE '.$this->config['primary'].' = ?' - .' AND '.$this->config['modifiedColumn'].' + '.$this->config['lifetimeColumn'].' >= ?'; - - $result = $this->config['db']->fetchOne($sql, array($id, time())); - if(!$result) - $result = ''; - - return $result; - } - - /** - * Write Session - commit data to resource - * - * @param string $id - * @param mixed $data - * @return boolean - */ - public function write($id, $data) - { - $sql = 'INSERT INTO '.$this->config['name'] - .' ('.$this->config['primary'].',' - .$this->config['modifiedColumn'].',' - .$this->config['lifetimeColumn'].',' - .$this->config['dataColumn'].')' - .' VALUES (?,?,?,?)' - .' ON DUPLICATE KEY UPDATE ' - .$this->config['modifiedColumn'].' = ?,' - .$this->config['lifetimeColumn'].' = ?,' - .$this->config['dataColumn'].' = ?'; - - $this->config['db']->query($sql, array($id, time(), $this->maxLifetime, $data, time(), $this->maxLifetime, $data)); - - return true; - } - - /** - * Destroy Session - remove data from resource for - * given session id - * - * @param string $id - * @return boolean - */ - public function destroy($id) - { - $sql = 'DELETE FROM '.$this->config['name'] - .' WHERE '.$this->config['primary'].' = ?'; - - $this->config['db']->query($sql, array($id)); - - return true; - } - - /** - * Garbage Collection - remove old session data older - * than $maxlifetime (in seconds) - * - * @param int $maxlifetime timestamp in seconds - * @return true - */ - public function gc($maxlifetime) - { - $sql = 'DELETE FROM '.$this->config['name'] - .' WHERE '.$this->config['modifiedColumn'].' + '.$this->config['lifetimeColumn'].' < ?'; - - $this->config['db']->query($sql, array(time())); - - return true; - } + protected $config; + protected $maxLifetime; + + /** + * @param array $config + */ + function __construct($config) + { + $this->config = $config; + $this->maxLifetime = ini_get('session.gc_maxlifetime'); + } + + /** + * Destructor + * + * @return void + */ + public function __destruct() + { + Zend_Session::writeClose(); + } + + /** + * Open Session - retrieve resources + * + * @param string $save_path + * @param string $name + * @return boolean + */ + public function open($save_path, $name) + { + $this->config['db']->getConnection(); + + return true; + } + + /** + * Close Session - free resources + * + * @return boolean + */ + public function close() + { + return true; + } + + /** + * Read session data + * + * @param string $id + * @return string + */ + public function read($id) + { + $sql = 'SELECT ' . $this->config['dataColumn'] . ' FROM ' . $this->config['name'] + . ' WHERE ' . $this->config['primary'] . ' = ?' + . ' AND ' . $this->config['modifiedColumn'] . ' + ' . $this->config['lifetimeColumn'] . ' >= ?'; + + $result = $this->config['db']->fetchOne($sql, array($id, time())); + if (!$result) + $result = ''; + + return $result; + } + + /** + * Write Session - commit data to resource + * + * @param string $id + * @param mixed $data + * @return boolean + */ + public function write($id, $data) + { + $sql = 'INSERT INTO ' . $this->config['name'] + . ' (' . $this->config['primary'] . ',' + . $this->config['modifiedColumn'] . ',' + . $this->config['lifetimeColumn'] . ',' + . $this->config['dataColumn'] . ')' + . ' VALUES (?,?,?,?)' + . ' ON DUPLICATE KEY UPDATE ' + . $this->config['modifiedColumn'] . ' = ?,' + . $this->config['lifetimeColumn'] . ' = ?,' + . $this->config['dataColumn'] . ' = ?'; + + $this->config['db']->query($sql, array($id, time(), $this->maxLifetime, $data, time(), $this->maxLifetime, $data)); + + return true; + } + + /** + * Destroy Session - remove data from resource for + * given session id + * + * @param string $id + * @return boolean + */ + public function destroy($id) + { + $sql = 'DELETE FROM ' . $this->config['name'] + . ' WHERE ' . $this->config['primary'] . ' = ?'; + + $this->config['db']->query($sql, array($id)); + + return true; + } + + /** + * Garbage Collection - remove old session data older + * than $maxlifetime (in seconds) + * + * @param int $maxlifetime timestamp in seconds + * @return true + */ + public function gc($maxlifetime) + { + $sql = 'DELETE FROM ' . $this->config['name'] + . ' WHERE ' . $this->config['modifiedColumn'] . ' + ' . $this->config['lifetimeColumn'] . ' < ?'; + + $this->config['db']->query($sql, array(time())); + + return true; + } } -- cgit v1.2.3