2010-07-25 18:27:45 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2012-12-22 22:48:15 +00:00
|
|
|
* Cache Session save handler. Allows saving session information into Cache.
|
2010-07-25 18:27:45 +00:00
|
|
|
*
|
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2013-02-08 11:59:49 +00:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-07-25 18:27:45 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
2013-02-08 12:22:51 +00:00
|
|
|
* For full copyright and license information, please see the LICENSE.txt
|
2010-07-25 18:27:45 +00:00
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2013-02-08 11:59:49 +00:00
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-07-25 18:27:45 +00:00
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Model.Datasource.Session
|
2010-07-25 18:27:45 +00:00
|
|
|
* @since CakePHP(tm) v 2.0
|
2013-05-30 22:11:14 +00:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
2010-07-25 18:27:45 +00:00
|
|
|
*/
|
2011-04-21 22:26:03 +00:00
|
|
|
|
|
|
|
App::uses('Cache', 'Cache');
|
2012-01-07 22:50:16 +00:00
|
|
|
App::uses('CakeSessionHandlerInterface', 'Model/Datasource/Session');
|
2011-04-21 22:26:03 +00:00
|
|
|
|
2010-07-25 18:27:45 +00:00
|
|
|
/**
|
|
|
|
* CacheSession provides method for saving sessions into a Cache engine. Used with CakeSession
|
|
|
|
*
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Model.Datasource.Session
|
2010-12-24 18:57:20 +00:00
|
|
|
* @see CakeSession for configuration information.
|
2010-07-25 18:27:45 +00:00
|
|
|
*/
|
|
|
|
class CacheSession implements CakeSessionHandlerInterface {
|
2012-03-04 19:18:04 +00:00
|
|
|
|
2010-07-25 18:27:45 +00:00
|
|
|
/**
|
|
|
|
* Method called on open of a database session.
|
|
|
|
*
|
|
|
|
* @return boolean Success
|
|
|
|
*/
|
2010-09-06 04:43:58 +00:00
|
|
|
public function open() {
|
2010-07-25 18:27:45 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method called on close of a database session.
|
|
|
|
*
|
|
|
|
* @return boolean Success
|
|
|
|
*/
|
2010-09-06 04:43:58 +00:00
|
|
|
public function close() {
|
2010-07-25 18:27:45 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method used to read from a database session.
|
|
|
|
*
|
2012-05-13 00:43:31 +00:00
|
|
|
* @param string $id The key of the value to read
|
2010-07-25 18:27:45 +00:00
|
|
|
* @return mixed The value of the key or false if it does not exist
|
|
|
|
*/
|
2010-09-06 04:43:58 +00:00
|
|
|
public function read($id) {
|
2010-07-25 18:27:45 +00:00
|
|
|
return Cache::read($id, Configure::read('Session.handler.config'));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper function called on write for database sessions.
|
|
|
|
*
|
|
|
|
* @param integer $id ID that uniquely identifies session in database
|
|
|
|
* @param mixed $data The value of the data to be saved.
|
|
|
|
* @return boolean True for successful write, false otherwise.
|
|
|
|
*/
|
2010-09-06 04:43:58 +00:00
|
|
|
public function write($id, $data) {
|
2010-07-25 18:27:45 +00:00
|
|
|
return Cache::write($id, $data, Configure::read('Session.handler.config'));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method called on the destruction of a database session.
|
|
|
|
*
|
2012-03-24 20:32:31 +00:00
|
|
|
* @param integer $id ID that uniquely identifies session in cache
|
2010-07-25 18:27:45 +00:00
|
|
|
* @return boolean True for successful delete, false otherwise.
|
|
|
|
*/
|
2010-09-06 04:43:58 +00:00
|
|
|
public function destroy($id) {
|
2010-07-25 18:27:45 +00:00
|
|
|
return Cache::delete($id, Configure::read('Session.handler.config'));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-03-24 20:32:31 +00:00
|
|
|
* Helper function called on gc for cache sessions.
|
2010-07-25 18:27:45 +00:00
|
|
|
*
|
|
|
|
* @param integer $expires Timestamp (defaults to current time)
|
|
|
|
* @return boolean Success
|
|
|
|
*/
|
2010-09-06 04:43:58 +00:00
|
|
|
public function gc($expires = null) {
|
2012-03-24 20:32:31 +00:00
|
|
|
return Cache::gc(Configure::read('Session.handler.config'), $expires);
|
|
|
|
}
|
|
|
|
|
2012-03-04 19:18:04 +00:00
|
|
|
}
|