| <?php |
| /** |
| * CodeIgniter |
| * |
| * An open source application development framework for PHP 5.2.4 or newer |
| * |
| * NOTICE OF LICENSE |
| * |
| * Licensed under the Open Software License version 3.0 |
| * |
| * This source file is subject to the Open Software License (OSL 3.0) that is |
| * bundled with this package in the files license.txt / license.rst. It is |
| * also available through the world wide web at this URL: |
| * http://opensource.org/licenses/OSL-3.0 |
| * If you did not receive a copy of the license and are unable to obtain it |
| * through the world wide web, please send an email to |
| * licensing@ellislab.com so we can send you a copy immediately. |
| * |
| * @package CodeIgniter |
| * @author EllisLab Dev Team |
| * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/) |
| * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) |
| * @link http://codeigniter.com |
| * @since Version 2.0 |
| * @filesource |
| */ |
| defined('BASEPATH') OR exit('No direct script access allowed'); |
| |
| /** |
| * CodeIgniter Session Class |
| * |
| * @package CodeIgniter |
| * @subpackage Libraries |
| * @category Sessions |
| * @author Andrey Andreev |
| * @link http://codeigniter.com/user_guide/libraries/sessions.html |
| */ |
| class CI_Session { |
| |
| protected $_driver = 'files'; |
| |
| // ------------------------------------------------------------------------ |
| |
| /** |
| * Class constructor |
| * |
| * @param array $params Configuration parameters |
| * @return void |
| */ |
| public function __construct(array $params = array()) |
| { |
| |
| // No sessions under CLI |
| if (is_cli()) |
| { |
| log_message('debug', 'Session: Initialization under CLI aborted.'); |
| return; |
| } |
| elseif ((bool) ini_get('session.auto_start')) |
| { |
| log_message('error', 'Session: session.auto_start is enabled in php.ini. Aborting.'); |
| return; |
| } |
| elseif ( ! empty($params['driver'])) |
| { |
| $this->_driver = $params['driver']; |
| unset($params['driver']); |
| } |
| |
| if (($class = $this->_ci_load_classes($this->_driver)) === FALSE) |
| { |
| return; |
| } |
| |
| $class = new $class($params); |
| if ($class instanceof SessionHandlerInterface) |
| { |
| if (is_php('5.4')) |
| { |
| session_set_save_handler($class, TRUE); |
| } |
| else |
| { |
| session_set_save_handler( |
| array($class, 'open'), |
| array($class, 'close'), |
| array($class, 'read'), |
| array($class, 'write'), |
| array($class, 'destroy'), |
| array($class, 'gc') |
| ); |
| |
| register_shutdown_function('session_write_close'); |
| } |
| } |
| else |
| { |
| log_message('error', "Session: Driver '".$this->_driver."' doesn't implement SessionHandlerInterface. Aborting."); |
| return; |
| } |
| |
| session_start(); |
| $this->_ci_init_vars(); |
| |
| log_message('debug', "Session: Class initialized using '".$this->_driver."' driver."); |
| } |
| |
| // ------------------------------------------------------------------------ |
| |
| protected function _ci_load_classes($driver) |
| { |
| // PHP 5.4 compatibility |
| interface_exists('SessionHandlerInterface', FALSE) OR require_once(BASEPATH.'libraries/Session/SessionHandlerInterface.php'); |
| |
| $prefix = config_item('subclass_prefix'); |
| |
| if ( ! class_exists('CI_Session_driver', FALSE)) |
| { |
| if (file_exists($file_path = APPPATH.'libraries/Session/Session_driver.php') OR file_exists($file_path = BASEPATH.'libraries/Session/Session_driver.php')) |
| { |
| require_once($file_path); |
| } |
| |
| if (file_exists($file_path = APPPATH.'libraries/Session/'.$prefix.'Session_driver.php')) |
| { |
| require_once($file_path); |
| } |
| } |
| |
| $class = 'Session_'.$driver.'_driver'; |
| |
| if ( ! class_exists('CI_'.$class, FALSE)) |
| { |
| if (file_exists($file_path = APPPATH.'libraries/Session/drivers/'.$class.'.php') OR file_exists($file_path = BASEPATH.'libraries/Session/drivers/'.$class.'.php')) |
| { |
| require_once($file_path); |
| } |
| |
| if ( ! class_exists('CI_'.$class, FALSE)) |
| { |
| log_message('error', "Session: Configured driver '".$driver."' was not found. Aborting."); |
| return FALSE; |
| } |
| } |
| |
| if ( ! class_exists($prefix.$class) && file_exists($file_path = APPPATH.'libraries/Session/drivers/'.$prefix.$class.'.php')) |
| { |
| require_once($file_path); |
| if (class_exists($prefix.$class, FALSE)) |
| { |
| return $prefix.$class; |
| } |
| else |
| { |
| log_message('debug', 'Session: '.$prefix.$class.".php found but it doesn't declare class ".$prefix.$class.'.'); |
| } |
| } |
| |
| return 'CI_'.$class; |
| } |
| |
| // ------------------------------------------------------------------------ |
| |
| /** |
| * Handle temporary variables |
| * |
| * Clears old "flash" data, marks the new one for deletion and handles |
| * "temp" data deletion. |
| * |
| * @return void |
| */ |
| protected function _ci_init_vars() |
| { |
| if ( ! empty($_SESSION['__ci_vars'])) |
| { |
| $current_time = time(); |
| |
| foreach ($_SESSION['__ci_vars'] as $key => &$value) |
| { |
| if ($value === 'new') |
| { |
| $_SESSION['__ci_vars'][$key] = 'old'; |
| } |
| // Hacky, but 'old' will (implicitly) always be less than time() ;) |
| // DO NOT move this above the 'new' check! |
| elseif ($value < $current_time) |
| { |
| unset($_SESSION[$key], $_SESSION['__ci_vars'][$key]); |
| } |
| } |
| |
| if (empty($_SESSION['__ci_vars'])) |
| { |
| unset($_SESSION['__ci_vars']); |
| } |
| } |
| } |
| |
| // ------------------------------------------------------------------------ |
| |
| /** |
| * Mark as flash |
| * |
| * @param mixed $key Session data key(s) |
| * @return bool |
| */ |
| public function mark_as_flash($key) |
| { |
| if (is_array($key)) |
| { |
| for ($i = 0, $c = count($key); $i < $c; $i++) |
| { |
| if ( ! isset($_SESSION[$key[$i]])) |
| { |
| return FALSE; |
| } |
| } |
| |
| $new = array_fill_keys($key, 'new'); |
| |
| $_SESSION['__ci_vars'] = isset($_SESSION['__ci_vars']) |
| ? array_merge($_SESSION['__ci_vars'], $new) |
| : $new; |
| |
| return TRUE; |
| } |
| |
| if ( ! isset($_SESSION[$key])) |
| { |
| return FALSE; |
| } |
| |
| $_SESSION['__ci_vars'][$key] = 'new'; |
| return TRUE; |
| } |
| |
| // ------------------------------------------------------------------------ |
| |
| /** |
| * Get flash keys |
| * |
| * @return array |
| */ |
| public function get_flash_keys() |
| { |
| if ( ! isset($_SESSION['__ci_vars'])) |
| { |
| return array(); |
| } |
| |
| $keys = array(); |
| foreach (array_keys($_SESSION['__ci_vars']) as $key) |
| { |
| is_int($_SESSION['__ci_vars'][$key]) OR $keys[] = $key; |
| } |
| |
| return $keys; |
| } |
| |
| // ------------------------------------------------------------------------ |
| |
| /** |
| * Unmark flash |
| * |
| * @param mixed $key Session data key(s) |
| * @return void |
| */ |
| public function unmark_flash($key) |
| { |
| if (empty($_SESSION['__ci_vars'])) |
| { |
| return; |
| } |
| |
| is_array($key) OR $key = array($key); |
| |
| foreach ($key as $k) |
| { |
| if (isset($_SESSION['__ci_vars'][$k]) && ! is_int($_SESSION['__ci_vars'][$k])) |
| { |
| unset($_SESSION['__ci_vars'][$k]); |
| } |
| } |
| |
| if (empty($_SESSION['__ci_vars'])) |
| { |
| unset($_SESSION['__ci_vars']); |
| } |
| } |
| |
| // ------------------------------------------------------------------------ |
| |
| /** |
| * Mark as temp |
| * |
| * @param mixed $key Session data key(s) |
| * @param int $ttl Time-to-live in seconds |
| * @return bool |
| */ |
| public function mark_as_temp($key, $ttl = 300) |
| { |
| $ttl += time(); |
| |
| if (is_array($key)) |
| { |
| $temp = array(); |
| |
| foreach ($key as $k => $v) |
| { |
| // Do we have a key => ttl pair, or just a key? |
| if (is_int($k)) |
| { |
| $k = $v; |
| $v = $ttl; |
| } |
| else |
| { |
| $v += time(); |
| } |
| |
| if ( ! isset($_SESSION[$k])) |
| { |
| return FALSE; |
| } |
| |
| $temp[$k] = $ts; |
| } |
| |
| $_SESSION['__ci_vars'] = isset($_SESSION['__ci_vars']) |
| ? array_merge($_SESSION['__ci_vars'], $temp) |
| : $temp; |
| |
| return TRUE; |
| } |
| |
| if ( ! isset($_SESSION[$key])) |
| { |
| return FALSE; |
| } |
| |
| $_SESSION['__ci_vars'][$key] = $ttl; |
| return TRUE; |
| } |
| |
| // ------------------------------------------------------------------------ |
| |
| /** |
| * Get temp keys |
| * |
| * @return array |
| */ |
| public function get_temp_keys() |
| { |
| if ( ! isset($_SESSION['__ci_vars'])) |
| { |
| return array(); |
| } |
| |
| $keys = array(); |
| foreach (array_keys($_SESSION['__ci_vars']) as $key) |
| { |
| is_int($_SESSION['__ci_vars'][$key]) && $keys[] = $key; |
| } |
| |
| return $keys; |
| } |
| |
| // ------------------------------------------------------------------------ |
| |
| /** |
| * Unmark flash |
| * |
| * @param mixed $key Session data key(s) |
| * @return void |
| */ |
| public function unmark_temp($key) |
| { |
| if (empty($_SESSION['__ci_vars'])) |
| { |
| return; |
| } |
| |
| is_array($key) OR $key = array($key); |
| |
| foreach ($key as $k) |
| { |
| if (isset($_SESSION['__ci_vars'][$k]) && is_int($_SESSION['__ci_vars'][$k])) |
| { |
| unset($_SESSION['__ci_vars'][$k]); |
| } |
| } |
| |
| if (empty($_SESSION['__ci_vars'])) |
| { |
| unset($_SESSION['__ci_vars']); |
| } |
| } |
| |
| // ------------------------------------------------------------------------ |
| |
| /** |
| * __get() |
| * |
| * @param string $key 'session_id' or a session data key |
| * @return mixed |
| */ |
| public function __get($key) |
| { |
| // Note: Keep this order the same, just in case somebody wants to |
| // use 'session_id' as a session data key, for whatever reason |
| if (isset($_SESSION[$key])) |
| { |
| return $_SESSION[$key]; |
| } |
| elseif ($key === 'session_id') |
| { |
| return session_id(); |
| } |
| |
| return NULL; |
| } |
| |
| // ------------------------------------------------------------------------ |
| |
| /** |
| * __set() |
| * |
| * @param string $key Session data key |
| * @param mixed $value Session data value |
| * @return void |
| */ |
| public function __set($key, $value) |
| { |
| $_SESSION[$key] = $value; |
| } |
| |
| // ------------------------------------------------------------------------ |
| |
| /** |
| * Session destroy |
| * |
| * Legacy CI_Session compatibility method |
| * |
| * @return void |
| */ |
| public function sess_destroy() |
| { |
| session_destroy(); |
| } |
| |
| // ------------------------------------------------------------------------ |
| |
| /** |
| * Session regenerate |
| * |
| * Legacy CI_Session compatibility method |
| * |
| * @param bool $destroy Destroy old session data flag |
| * @return void |
| */ |
| public function sess_regenerate($destroy = FALSE) |
| { |
| session_regenerate_id($destroy); |
| } |
| |
| // ------------------------------------------------------------------------ |
| |
| /** |
| * Get userdata reference |
| * |
| * Legacy CI_Session compatibility method |
| * |
| * @returns array |
| */ |
| public function &get_userdata() |
| { |
| return $_SESSION; |
| } |
| |
| // ------------------------------------------------------------------------ |
| |
| /** |
| * Userdata (fetch) |
| * |
| * Legacy CI_Session compatibility method |
| * |
| * @param string $key Session data key |
| * @return mixed Session data value or NULL if not found |
| */ |
| public function userdata($key = NULL) |
| { |
| if (isset($key)) |
| { |
| return isset($_SESSION[$key]) ? $_SESSION[$key] : NULL; |
| } |
| elseif (empty($_SESSION)) |
| { |
| return array(); |
| } |
| |
| $userdata = array(); |
| $_exclude = array_merge( |
| array('__ci_f', '__ci_t'), |
| $this->get_flash_keys(), |
| $this->get_temp_keys() |
| ); |
| |
| foreach (array_keys($_SESSION) as $key) |
| { |
| if ( ! in_array($key, $_exclude, TRUE)) |
| { |
| $userdata[$key] = $_SESSION[$key]; |
| } |
| } |
| |
| return $userdata; |
| } |
| |
| // ------------------------------------------------------------------------ |
| |
| /** |
| * Set userdata |
| * |
| * Legacy CI_Session compatibility method |
| * |
| * @param mixed $data Session data key or an associative array |
| * @param mixed $value Value to store |
| * @return void |
| */ |
| public function set_userdata($data, $value = NULL) |
| { |
| if (is_array($data)) |
| { |
| foreach ($data as $key => &$value) |
| { |
| $_SESSION[$key] = $value; |
| } |
| |
| return; |
| } |
| |
| $_SESSION[$data] = $value; |
| } |
| |
| // ------------------------------------------------------------------------ |
| |
| /** |
| * Unset userdata |
| * |
| * Legacy CI_Session compatibility method |
| * |
| * @param mixed $data Session data key(s) |
| * @return void |
| */ |
| public function unset_userdata($key) |
| { |
| if (is_array($key)) |
| { |
| foreach ($key as $k) |
| { |
| unset($_SESSION[$key]); |
| } |
| |
| return; |
| } |
| |
| unset($_SESSION[$key]); |
| } |
| |
| // ------------------------------------------------------------------------ |
| |
| /** |
| * All userdata (fetch) |
| * |
| * Legacy CI_Session compatibility method |
| * |
| * @return array $_SESSION, excluding flash data items |
| */ |
| public function all_userdata() |
| { |
| return $this->userdata(); |
| } |
| |
| // ------------------------------------------------------------------------ |
| |
| /** |
| * Has userdata |
| * |
| * Legacy CI_Session compatibility method |
| * |
| * @param string $key Session data key |
| * @return bool |
| */ |
| public function has_userdata($key) |
| { |
| return isset($_SESSION[$key]); |
| } |
| |
| // ------------------------------------------------------------------------ |
| |
| /** |
| * Flashdata (fetch) |
| * |
| * Legacy CI_Session compatibility method |
| * |
| * @param string $key Session data key |
| * @return mixed Session data value or NULL if not found |
| */ |
| public function flashdata($key = NULL) |
| { |
| if (isset($key)) |
| { |
| return isset($_SESSION['__ci_f'], $_SESSION['__ci_f'][$key], $_SESSION[$key]) |
| ? $_SESSION[$key] |
| : NULL; |
| } |
| |
| $flashdata = array(); |
| |
| if ( ! empty($_SESSION['__ci_f'])) |
| { |
| foreach (array_keys($_SESSION['__ci_f']) as $key) |
| { |
| $flashdata[$key] = $_SESSION[$key]; |
| } |
| } |
| |
| return $flashdata; |
| } |
| |
| // ------------------------------------------------------------------------ |
| |
| /** |
| * Set flashdata |
| * |
| * Legacy CI_Session compatibiliy method |
| * |
| * @param mixed $data Session data key or an associative array |
| * @param mixed $value Value to store |
| * @return void |
| */ |
| public function set_flashdata($data, $value = NULL) |
| { |
| $this->set_userdata($data, $value); |
| $this->mark_as_flash($data); |
| } |
| |
| // ------------------------------------------------------------------------ |
| |
| /** |
| * Keep flashdata |
| * |
| * Legacy CI_Session compatibility method |
| * |
| * @param mixed $key Session data key(s) |
| * @return void |
| */ |
| public function keep_flashdata($key) |
| { |
| $this->mark_as_flash($key); |
| } |
| |
| // ------------------------------------------------------------------------ |
| |
| /** |
| * Temp data (fetch) |
| * |
| * Legacy CI_Session compatibility method |
| * |
| * @param string $key Session data key |
| * @return mixed Session data value or NULL if not found |
| */ |
| public function tempdata($key = NULL) |
| { |
| if (isset($key)) |
| { |
| return isset($_SESSION['__ci_t'], $_SESSION['__ci_t'][$key], $_SESSION[$key]) |
| ? $_SESSION[$key] |
| : NULL; |
| } |
| |
| $tempdata = array(); |
| |
| if ( ! empty($_SESSION['__ci_t'])) |
| { |
| foreach (array_keys($_SESSION['__ci_t']) as $key) |
| { |
| $tempdata[$key] = $_SESSION[$key]; |
| } |
| } |
| |
| return $tempdata; |
| } |
| |
| // ------------------------------------------------------------------------ |
| |
| /** |
| * Set tempdata |
| * |
| * Legacy CI_Session compatibility method |
| * |
| * @param mixed $data Session data key or an associative array of items |
| * @param mixed $value Value to store |
| * @param int $ttl Time-to-live in seconds |
| * @return void |
| */ |
| public function set_tempdata($data, $value = NULL, $ttl = 300) |
| { |
| $this->set_userdata($data, $value); |
| $this->mark_as_temp($data, $ttl); |
| } |
| |
| // ------------------------------------------------------------------------ |
| |
| /** |
| * Unset tempdata |
| * |
| * Legacy CI_Session compatibility method |
| * |
| * @param mixed $data Session data key(s) |
| * @return void |
| */ |
| public function unset_tempdata($key) |
| { |
| $this->unmark_temp($key); |
| } |
| |
| } |
| |
| /* End of file Session.php */ |
| /* Location: ./system/libraries/Session/Session.php */ |