| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359 |
- <?php
- /**
- * This file is part of workerman.
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the MIT-LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @author walkor<walkor@workerman.net>
- * @copyright walkor<walkor@workerman.net>
- * @link http://www.workerman.net/
- * @license http://www.opensource.org/licenses/mit-license.php MIT License
- */
- namespace Workerman\Protocols\Http;
- /**
- * Class Session
- * @package Workerman\Protocols\Http
- */
- class Session
- {
- /**
- * Session andler class which implements SessionHandlerInterface.
- *
- * @var string
- */
- protected static $_handlerClass = 'Workerman\Protocols\Http\Session\FileSessionHandler';
- /**
- * Parameters of __constructor for session handler class.
- *
- * @var null
- */
- protected static $_handlerConfig = null;
- /**
- * Session.gc_probability
- *
- * @var int
- */
- protected static $_sessionGcProbability = 1;
- /**
- * Session.gc_divisor
- *
- * @var int
- */
- protected static $_sessionGcDivisor = 1000;
- /**
- * Session.gc_maxlifetime
- *
- * @var int
- */
- protected static $_sessionGcMaxLifeTime = 1440;
- /**
- * Session handler instance.
- *
- * @var \SessionHandlerInterface
- */
- protected static $_handler = null;
- /**
- * Session data.
- *
- * @var array
- */
- protected $_data = array();
- /**
- * Session changed and need to save.
- *
- * @var bool
- */
- protected $_needSave = false;
- /**
- * Session id.
- *
- * @var null
- */
- protected $_sessionId = null;
- /**
- * Session constructor.
- *
- * @param $session_id
- */
- public function __construct($session_id)
- {
- static::checkSessionId($session_id);
- if (static::$_handler === null) {
- static::initHandler();
- }
- $this->_sessionId = $session_id;
- if ($data = static::$_handler->read($session_id)) {
- $this->_data = \unserialize($data);
- }
- }
- /**
- * Get session id.
- *
- * @return string
- */
- public function getId()
- {
- return $this->_sessionId;
- }
- /**
- * Get session.
- *
- * @param $name
- * @param null $default
- * @return mixed|null
- */
- public function get($name, $default = null)
- {
- return isset($this->_data[$name]) ? $this->_data[$name] : $default;
- }
- /**
- * Store data in the session.
- *
- * @param $name
- * @param $value
- */
- public function set($name, $value)
- {
- $this->_data[$name] = $value;
- $this->_needSave = true;
- }
- /**
- * Delete an item from the session.
- *
- * @param $name
- */
- public function delete($name)
- {
- unset($this->_data[$name]);
- $this->_needSave = true;
- }
- /**
- * Retrieve and delete an item from the session.
- *
- * @param $name
- * @param null $default
- * @return mixed|null
- */
- public function pull($name, $default = null)
- {
- $value = $this->get($name, $default);
- $this->delete($name);
- return $value;
- }
- /**
- * Store data in the session.
- *
- * @param $key
- * @param null $value
- */
- public function put($key, $value = null)
- {
- if (!\is_array($key)) {
- $this->set($key, $value);
- return;
- }
- foreach ($key as $k => $v) {
- $this->_data[$k] = $v;
- }
- $this->_needSave = true;
- }
- /**
- * Remove a piece of data from the session.
- *
- * @param $name
- */
- public function forget($name)
- {
- if (\is_scalar($name)) {
- $this->delete($name);
- return;
- }
- if (\is_array($name)) {
- foreach ($name as $key) {
- unset($this->_data[$key]);
- }
- }
- $this->_needSave = true;
- }
- /**
- * Retrieve all the data in the session.
- *
- * @return array
- */
- public function all()
- {
- return $this->_data;
- }
- /**
- * Remove all data from the session.
- *
- * @return void
- */
- public function flush()
- {
- $this->_needSave = true;
- $this->_data = array();
- }
- /**
- * Determining If An Item Exists In The Session.
- *
- * @param $name
- * @return bool
- */
- public function has($name)
- {
- return isset($this->_data[$name]);
- }
- /**
- * To determine if an item is present in the session, even if its value is null.
- *
- * @param $name
- * @return bool
- */
- public function exists($name)
- {
- return \array_key_exists($name, $this->_data);
- }
- /**
- * Save session to store.
- *
- * @return void
- */
- public function save()
- {
- if ($this->_needSave) {
- if (empty($this->_data)) {
- static::$_handler->destroy($this->_sessionId);
- } else {
- static::$_handler->write($this->_sessionId, \serialize($this->_data));
- }
- }
- $this->_needSave = false;
- }
- /**
- * Init.
- *
- * @return void
- */
- public static function init()
- {
- if ($gc_probability = \ini_get('session.gc_probability')) {
- self::$_sessionGcProbability = (int)$gc_probability;
- }
- if ($gc_divisor = \ini_get('session.gc_divisor')) {
- self::$_sessionGcDivisor = (int)$gc_divisor;
- }
- if ($gc_max_life_time = \ini_get('session.gc_maxlifetime')) {
- self::$_sessionGcMaxLifeTime = (int)$gc_max_life_time;
- }
- }
- /**
- * Set session handler class.
- *
- * @param null $class_name
- * @param null $config
- * @return string
- */
- public static function handlerClass($class_name = null, $config = null)
- {
- if ($class_name) {
- static::$_handlerClass = $class_name;
- }
- if ($config) {
- static::$_handlerConfig = $config;
- }
- return static::$_handlerClass;
- }
- /**
- * Init handler.
- *
- * @return void
- */
- protected static function initHandler()
- {
- if (static::$_handlerConfig === null) {
- static::$_handler = new static::$_handlerClass();
- } else {
- static::$_handler = new static::$_handlerClass(static::$_handlerConfig);
- }
- }
- /**
- * Try GC sessions.
- *
- * @return void
- */
- public function tryGcSessions()
- {
- if (\rand(1, static::$_sessionGcDivisor) > static::$_sessionGcProbability) {
- return;
- }
- static::$_handler->gc(static::$_sessionGcMaxLifeTime);
- }
- /**
- * __destruct.
- *
- * @return void
- */
- public function __destruct()
- {
- $this->save();
- $this->tryGcSessions();
- }
- /**
- * Check session id.
- *
- * @param $session_id
- */
- protected static function checkSessionId($session_id)
- {
- if (!\preg_match('/^[a-zA-Z0-9]+$/', $session_id)) {
- throw new SessionException("session_id $session_id is invalid");
- }
- }
- }
- /**
- * Class SessionException
- * @package Workerman\Protocols\Http
- */
- class SessionException extends \RuntimeException
- {
- }
- // Init session.
- Session::init();
|