Andrey Andreev | c5536aa | 2012-11-01 17:33:58 +0200 | [diff] [blame] | 1 | <?php |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 2 | /** |
| 3 | * CodeIgniter |
| 4 | * |
Andrey Andreev | 9ffcee6 | 2012-09-05 16:25:16 +0300 | [diff] [blame] | 5 | * An open source application development framework for PHP 5.2.4 or newer |
| 6 | * |
Andrey Andreev | bdb96ca | 2014-10-28 00:13:31 +0200 | [diff] [blame] | 7 | * This content is released under the MIT License (MIT) |
Andrey Andreev | 9ffcee6 | 2012-09-05 16:25:16 +0300 | [diff] [blame] | 8 | * |
Andrey Andreev | bdb96ca | 2014-10-28 00:13:31 +0200 | [diff] [blame] | 9 | * Copyright (c) 2014, British Columbia Institute of Technology |
Andrey Andreev | 9ffcee6 | 2012-09-05 16:25:16 +0300 | [diff] [blame] | 10 | * |
Andrey Andreev | bdb96ca | 2014-10-28 00:13:31 +0200 | [diff] [blame] | 11 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 12 | * of this software and associated documentation files (the "Software"), to deal |
| 13 | * in the Software without restriction, including without limitation the rights |
| 14 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 15 | * copies of the Software, and to permit persons to whom the Software is |
| 16 | * furnished to do so, subject to the following conditions: |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 17 | * |
Andrey Andreev | bdb96ca | 2014-10-28 00:13:31 +0200 | [diff] [blame] | 18 | * The above copyright notice and this permission notice shall be included in |
| 19 | * all copies or substantial portions of the Software. |
| 20 | * |
| 21 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 22 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 23 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 24 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 25 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 26 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 27 | * THE SOFTWARE. |
| 28 | * |
| 29 | * @package CodeIgniter |
| 30 | * @author EllisLab Dev Team |
darwinel | 871754a | 2014-02-11 17:34:57 +0100 | [diff] [blame] | 31 | * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/) |
Andrey Andreev | bdb96ca | 2014-10-28 00:13:31 +0200 | [diff] [blame] | 32 | * @copyright Copyright (c) 2014, British Columbia Institute of Technology (http://bcit.ca/) |
| 33 | * @license http://opensource.org/licenses/MIT MIT License |
| 34 | * @link http://codeigniter.com |
| 35 | * @since Version 2.0.0 |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 36 | * @filesource |
| 37 | */ |
Andrey Andreev | c5536aa | 2012-11-01 17:33:58 +0200 | [diff] [blame] | 38 | defined('BASEPATH') OR exit('No direct script access allowed'); |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 39 | |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 40 | /** |
Andrey Andreev | 9ffcee6 | 2012-09-05 16:25:16 +0300 | [diff] [blame] | 41 | * CodeIgniter Session Class |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 42 | * |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 43 | * @package CodeIgniter |
| 44 | * @subpackage Libraries |
| 45 | * @category Sessions |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 46 | * @author Andrey Andreev |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 47 | * @link http://codeigniter.com/user_guide/libraries/sessions.html |
| 48 | */ |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 49 | class CI_Session { |
Andrey Andreev | 9ffcee6 | 2012-09-05 16:25:16 +0300 | [diff] [blame] | 50 | |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 51 | protected $_driver = 'files'; |
Andrey Andreev | dfb39be | 2014-10-06 01:50:14 +0300 | [diff] [blame] | 52 | protected $_config; |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 53 | |
Andrey Andreev | 0fa95bd | 2012-11-01 23:33:14 +0200 | [diff] [blame] | 54 | // ------------------------------------------------------------------------ |
| 55 | |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 56 | /** |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 57 | * Class constructor |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 58 | * |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 59 | * @param array $params Configuration parameters |
Andrey Andreev | 2e3e230 | 2012-10-09 15:52:34 +0300 | [diff] [blame] | 60 | * @return void |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 61 | */ |
| 62 | public function __construct(array $params = array()) |
| 63 | { |
Andrey Andreev | 2e3e230 | 2012-10-09 15:52:34 +0300 | [diff] [blame] | 64 | // No sessions under CLI |
Andrey Andreev | f964b16 | 2013-11-12 17:04:55 +0200 | [diff] [blame] | 65 | if (is_cli()) |
Andrey Andreev | 2e3e230 | 2012-10-09 15:52:34 +0300 | [diff] [blame] | 66 | { |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 67 | log_message('debug', 'Session: Initialization under CLI aborted.'); |
| 68 | return; |
| 69 | } |
| 70 | elseif ((bool) ini_get('session.auto_start')) |
| 71 | { |
| 72 | log_message('error', 'Session: session.auto_start is enabled in php.ini. Aborting.'); |
| 73 | return; |
| 74 | } |
| 75 | elseif ( ! empty($params['driver'])) |
| 76 | { |
| 77 | $this->_driver = $params['driver']; |
| 78 | unset($params['driver']); |
| 79 | } |
Andrey Andreev | dfb39be | 2014-10-06 01:50:14 +0300 | [diff] [blame] | 80 | elseif ($driver = config_item('sess_driver')) |
Andrey Andreev | 34b1ef5 | 2014-05-31 21:23:41 +0300 | [diff] [blame] | 81 | { |
| 82 | $this->_driver = $driver; |
| 83 | } |
Andrey Andreev | ac4f472 | 2014-06-02 11:16:32 +0300 | [diff] [blame] | 84 | // Note: BC workaround |
| 85 | elseif (config_item('sess_use_database')) |
| 86 | { |
| 87 | $this->_driver = 'database'; |
| 88 | } |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 89 | |
| 90 | if (($class = $this->_ci_load_classes($this->_driver)) === FALSE) |
| 91 | { |
Andrey Andreev | 2e3e230 | 2012-10-09 15:52:34 +0300 | [diff] [blame] | 92 | return; |
| 93 | } |
| 94 | |
Andrey Andreev | dfb39be | 2014-10-06 01:50:14 +0300 | [diff] [blame] | 95 | // Configuration ... |
| 96 | $this->_configure($params); |
| 97 | |
| 98 | $class = new $class($this->_config); |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 99 | if ($class instanceof SessionHandlerInterface) |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 100 | { |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 101 | if (is_php('5.4')) |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 102 | { |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 103 | session_set_save_handler($class, TRUE); |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 104 | } |
| 105 | else |
| 106 | { |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 107 | session_set_save_handler( |
| 108 | array($class, 'open'), |
| 109 | array($class, 'close'), |
| 110 | array($class, 'read'), |
| 111 | array($class, 'write'), |
| 112 | array($class, 'destroy'), |
| 113 | array($class, 'gc') |
| 114 | ); |
| 115 | |
| 116 | register_shutdown_function('session_write_close'); |
| 117 | } |
| 118 | } |
| 119 | else |
| 120 | { |
| 121 | log_message('error', "Session: Driver '".$this->_driver."' doesn't implement SessionHandlerInterface. Aborting."); |
| 122 | return; |
| 123 | } |
| 124 | |
Andrey Andreev | 562e39b | 2014-11-12 15:38:58 +0200 | [diff] [blame^] | 125 | // Sanitize the cookie, because apparently PHP doesn't do that for userspace handlers |
| 126 | if (isset($_COOKIE[$this->_config['cookie_name']]) |
| 127 | && ( |
| 128 | ! is_string($_COOKIE[$this->_config['cookie_name']]) |
| 129 | OR ! preg_match('/^[0-9a-f]{40}$/', $_COOKIE[$this->_config['cookie_name']]) |
| 130 | ) |
| 131 | ) |
Andrey Andreev | dfb39be | 2014-10-06 01:50:14 +0300 | [diff] [blame] | 132 | { |
Andrey Andreev | 562e39b | 2014-11-12 15:38:58 +0200 | [diff] [blame^] | 133 | unset($_COOKIE[$this->_config['cookie_name']]); |
Andrey Andreev | dfb39be | 2014-10-06 01:50:14 +0300 | [diff] [blame] | 134 | } |
| 135 | |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 136 | session_start(); |
Andrey Andreev | dfb39be | 2014-10-06 01:50:14 +0300 | [diff] [blame] | 137 | |
Andrey Andreev | ff37ffe | 2014-11-04 12:28:57 +0200 | [diff] [blame] | 138 | // Is session ID auto-regeneration configured? (ignoring ajax requests) |
| 139 | if ( ! empty($_SERVER['HTTP_X_REQUESTED_WITH']) |
| 140 | && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) === 'xmlhttprequest' |
Andrey Andreev | de5c246 | 2014-11-04 12:31:03 +0200 | [diff] [blame] | 141 | && ($regenerate_time = config_item('sess_time_to_update')) > 0 |
Andrey Andreev | ff37ffe | 2014-11-04 12:28:57 +0200 | [diff] [blame] | 142 | ) |
Andrey Andreev | 8e60b9a | 2014-11-04 11:08:06 +0200 | [diff] [blame] | 143 | { |
| 144 | if ( ! isset($_SESSION['__ci_last_regenerate'])) |
| 145 | { |
| 146 | $_SESSION['__ci_last_regenerate'] = time(); |
| 147 | } |
| 148 | elseif ($_SESSION['__ci_last_regenerate'] < (time() - $regenerate_time)) |
| 149 | { |
| 150 | $this->sess_regenerate(FALSE); |
| 151 | } |
| 152 | } |
Andrey Andreev | dfb39be | 2014-10-06 01:50:14 +0300 | [diff] [blame] | 153 | // Another work-around ... PHP doesn't seem to send the session cookie |
| 154 | // unless it is being currently created or regenerated |
Andrey Andreev | 8e60b9a | 2014-11-04 11:08:06 +0200 | [diff] [blame] | 155 | elseif (isset($_COOKIE[$this->_config['cookie_name']]) && $_COOKIE[$this->_config['cookie_name']] === session_id()) |
Andrey Andreev | dfb39be | 2014-10-06 01:50:14 +0300 | [diff] [blame] | 156 | { |
| 157 | setcookie( |
| 158 | $this->_config['cookie_name'], |
| 159 | session_id(), |
| 160 | (empty($this->_config['cookie_lifetime']) ? 0 : time() + $this->_config['cookie_lifetime']), |
| 161 | $this->_config['cookie_path'], |
| 162 | $this->_config['cookie_domain'], |
| 163 | $this->_config['cookie_secure'], |
| 164 | TRUE |
| 165 | ); |
| 166 | } |
| 167 | |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 168 | $this->_ci_init_vars(); |
Andrey Andreev | dfb39be | 2014-10-06 01:50:14 +0300 | [diff] [blame] | 169 | |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 170 | log_message('debug', "Session: Class initialized using '".$this->_driver."' driver."); |
| 171 | } |
| 172 | |
| 173 | // ------------------------------------------------------------------------ |
| 174 | |
| 175 | protected function _ci_load_classes($driver) |
| 176 | { |
| 177 | // PHP 5.4 compatibility |
| 178 | interface_exists('SessionHandlerInterface', FALSE) OR require_once(BASEPATH.'libraries/Session/SessionHandlerInterface.php'); |
| 179 | |
| 180 | $prefix = config_item('subclass_prefix'); |
| 181 | |
| 182 | if ( ! class_exists('CI_Session_driver', FALSE)) |
| 183 | { |
Andrey Andreev | e86603f | 2014-06-11 14:03:36 +0300 | [diff] [blame] | 184 | require_once( |
| 185 | file_exists(APPPATH.'libraries/Session/Session_driver.php') |
| 186 | ? APPPATH.'libraries/Session/Session_driver.php' |
| 187 | : BASEPATH.'libraries/Session/Session_driver.php' |
| 188 | ); |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 189 | |
| 190 | if (file_exists($file_path = APPPATH.'libraries/Session/'.$prefix.'Session_driver.php')) |
| 191 | { |
| 192 | require_once($file_path); |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | $class = 'Session_'.$driver.'_driver'; |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 197 | if ( ! class_exists('CI_'.$class, FALSE)) |
| 198 | { |
| 199 | if (file_exists($file_path = APPPATH.'libraries/Session/drivers/'.$class.'.php') OR file_exists($file_path = BASEPATH.'libraries/Session/drivers/'.$class.'.php')) |
| 200 | { |
| 201 | require_once($file_path); |
| 202 | } |
| 203 | |
| 204 | if ( ! class_exists('CI_'.$class, FALSE)) |
| 205 | { |
| 206 | log_message('error', "Session: Configured driver '".$driver."' was not found. Aborting."); |
| 207 | return FALSE; |
| 208 | } |
| 209 | } |
| 210 | |
| 211 | if ( ! class_exists($prefix.$class) && file_exists($file_path = APPPATH.'libraries/Session/drivers/'.$prefix.$class.'.php')) |
| 212 | { |
| 213 | require_once($file_path); |
| 214 | if (class_exists($prefix.$class, FALSE)) |
| 215 | { |
| 216 | return $prefix.$class; |
| 217 | } |
| 218 | else |
| 219 | { |
| 220 | log_message('debug', 'Session: '.$prefix.$class.".php found but it doesn't declare class ".$prefix.$class.'.'); |
| 221 | } |
| 222 | } |
| 223 | |
| 224 | return 'CI_'.$class; |
| 225 | } |
| 226 | |
| 227 | // ------------------------------------------------------------------------ |
| 228 | |
| 229 | /** |
Andrey Andreev | dfb39be | 2014-10-06 01:50:14 +0300 | [diff] [blame] | 230 | * Configuration |
| 231 | * |
| 232 | * Handle input parameters and configuration defaults |
| 233 | * |
| 234 | * @param array &$params Input parameters |
| 235 | * @return void |
| 236 | */ |
| 237 | protected function _configure(&$params) |
| 238 | { |
| 239 | $expiration = config_item('sess_expiration'); |
| 240 | |
| 241 | if (isset($params['cookie_lifetime'])) |
| 242 | { |
| 243 | $params['cookie_lifetime'] = (int) $params['cookie_lifetime']; |
| 244 | } |
| 245 | else |
| 246 | { |
| 247 | $params['cookie_lifetime'] = ( ! isset($expiration) && config_item('sess_expire_on_close')) |
| 248 | ? 0 : (int) $expiration; |
| 249 | } |
| 250 | |
| 251 | isset($params['cookie_name']) OR $params['cookie_name'] = config_item('sess_cookie_name'); |
| 252 | if (empty($params['cookie_name'])) |
| 253 | { |
| 254 | $params['cookie_name'] = ini_get('session.name'); |
| 255 | } |
| 256 | else |
| 257 | { |
| 258 | ini_set('session.name', $params['cookie_name']); |
| 259 | } |
| 260 | |
| 261 | isset($params['cookie_path']) OR $params['cookie_path'] = config_item('cookie_path'); |
Andrey Andreev | 41b546d | 2014-10-06 03:01:22 +0300 | [diff] [blame] | 262 | isset($params['cookie_domain']) OR $params['cookie_domain'] = config_item('cookie_domain'); |
Andrey Andreev | dfb39be | 2014-10-06 01:50:14 +0300 | [diff] [blame] | 263 | isset($params['cookie_secure']) OR $params['cookie_secure'] = (bool) config_item('cookie_secure'); |
| 264 | |
| 265 | session_set_cookie_params( |
| 266 | $params['cookie_lifetime'], |
| 267 | $params['cookie_path'], |
| 268 | $params['cookie_domain'], |
| 269 | $params['cookie_secure'], |
| 270 | TRUE // HttpOnly; Yes, this is intentional and not configurable for security reasons |
| 271 | ); |
| 272 | |
| 273 | if (empty($expiration)) |
| 274 | { |
| 275 | $params['expiration'] = (int) ini_get('session.gc_maxlifetime'); |
| 276 | } |
| 277 | else |
| 278 | { |
| 279 | $params['expiration'] = (int) $expiration; |
| 280 | ini_set('session.gc_maxlifetime', $expiration); |
| 281 | } |
| 282 | |
| 283 | $params['match_ip'] = (bool) (isset($params['match_ip']) ? $params['match_ip'] : config_item('sess_match_ip')); |
| 284 | |
| 285 | isset($params['save_path']) OR $params['save_path'] = config_item('sess_save_path'); |
| 286 | |
| 287 | $this->_config = $params; |
| 288 | |
| 289 | // Security is king |
| 290 | ini_set('session.use_trans_id', 0); |
| 291 | ini_set('session.use_strict_mode', 1); |
| 292 | ini_set('session.use_cookies', 1); |
| 293 | ini_set('session.use_only_cookies', 1); |
| 294 | ini_set('session.hash_function', 1); |
| 295 | ini_set('session.hash_bits_per_character', 4); |
| 296 | } |
| 297 | |
| 298 | // ------------------------------------------------------------------------ |
| 299 | |
| 300 | /** |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 301 | * Handle temporary variables |
| 302 | * |
| 303 | * Clears old "flash" data, marks the new one for deletion and handles |
| 304 | * "temp" data deletion. |
| 305 | * |
| 306 | * @return void |
| 307 | */ |
| 308 | protected function _ci_init_vars() |
| 309 | { |
| 310 | if ( ! empty($_SESSION['__ci_vars'])) |
| 311 | { |
| 312 | $current_time = time(); |
| 313 | |
| 314 | foreach ($_SESSION['__ci_vars'] as $key => &$value) |
| 315 | { |
| 316 | if ($value === 'new') |
| 317 | { |
| 318 | $_SESSION['__ci_vars'][$key] = 'old'; |
| 319 | } |
| 320 | // Hacky, but 'old' will (implicitly) always be less than time() ;) |
| 321 | // DO NOT move this above the 'new' check! |
| 322 | elseif ($value < $current_time) |
| 323 | { |
| 324 | unset($_SESSION[$key], $_SESSION['__ci_vars'][$key]); |
| 325 | } |
| 326 | } |
| 327 | |
| 328 | if (empty($_SESSION['__ci_vars'])) |
| 329 | { |
| 330 | unset($_SESSION['__ci_vars']); |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 331 | } |
| 332 | } |
| 333 | } |
| 334 | |
Andrey Andreev | 9ffcee6 | 2012-09-05 16:25:16 +0300 | [diff] [blame] | 335 | // ------------------------------------------------------------------------ |
| 336 | |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 337 | /** |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 338 | * Mark as flash |
| 339 | * |
| 340 | * @param mixed $key Session data key(s) |
| 341 | * @return bool |
| 342 | */ |
| 343 | public function mark_as_flash($key) |
| 344 | { |
| 345 | if (is_array($key)) |
| 346 | { |
| 347 | for ($i = 0, $c = count($key); $i < $c; $i++) |
| 348 | { |
| 349 | if ( ! isset($_SESSION[$key[$i]])) |
| 350 | { |
| 351 | return FALSE; |
| 352 | } |
| 353 | } |
| 354 | |
| 355 | $new = array_fill_keys($key, 'new'); |
| 356 | |
| 357 | $_SESSION['__ci_vars'] = isset($_SESSION['__ci_vars']) |
| 358 | ? array_merge($_SESSION['__ci_vars'], $new) |
| 359 | : $new; |
| 360 | |
| 361 | return TRUE; |
| 362 | } |
| 363 | |
| 364 | if ( ! isset($_SESSION[$key])) |
| 365 | { |
| 366 | return FALSE; |
| 367 | } |
| 368 | |
| 369 | $_SESSION['__ci_vars'][$key] = 'new'; |
| 370 | return TRUE; |
| 371 | } |
| 372 | |
| 373 | // ------------------------------------------------------------------------ |
| 374 | |
| 375 | /** |
| 376 | * Get flash keys |
| 377 | * |
| 378 | * @return array |
| 379 | */ |
| 380 | public function get_flash_keys() |
| 381 | { |
| 382 | if ( ! isset($_SESSION['__ci_vars'])) |
| 383 | { |
| 384 | return array(); |
| 385 | } |
| 386 | |
| 387 | $keys = array(); |
| 388 | foreach (array_keys($_SESSION['__ci_vars']) as $key) |
| 389 | { |
| 390 | is_int($_SESSION['__ci_vars'][$key]) OR $keys[] = $key; |
| 391 | } |
| 392 | |
| 393 | return $keys; |
| 394 | } |
| 395 | |
| 396 | // ------------------------------------------------------------------------ |
| 397 | |
| 398 | /** |
| 399 | * Unmark flash |
| 400 | * |
| 401 | * @param mixed $key Session data key(s) |
| 402 | * @return void |
| 403 | */ |
| 404 | public function unmark_flash($key) |
| 405 | { |
| 406 | if (empty($_SESSION['__ci_vars'])) |
| 407 | { |
| 408 | return; |
| 409 | } |
| 410 | |
| 411 | is_array($key) OR $key = array($key); |
| 412 | |
| 413 | foreach ($key as $k) |
| 414 | { |
| 415 | if (isset($_SESSION['__ci_vars'][$k]) && ! is_int($_SESSION['__ci_vars'][$k])) |
| 416 | { |
| 417 | unset($_SESSION['__ci_vars'][$k]); |
| 418 | } |
| 419 | } |
| 420 | |
| 421 | if (empty($_SESSION['__ci_vars'])) |
| 422 | { |
| 423 | unset($_SESSION['__ci_vars']); |
| 424 | } |
| 425 | } |
| 426 | |
| 427 | // ------------------------------------------------------------------------ |
| 428 | |
| 429 | /** |
| 430 | * Mark as temp |
| 431 | * |
| 432 | * @param mixed $key Session data key(s) |
| 433 | * @param int $ttl Time-to-live in seconds |
| 434 | * @return bool |
| 435 | */ |
| 436 | public function mark_as_temp($key, $ttl = 300) |
| 437 | { |
| 438 | $ttl += time(); |
| 439 | |
| 440 | if (is_array($key)) |
| 441 | { |
| 442 | $temp = array(); |
| 443 | |
| 444 | foreach ($key as $k => $v) |
| 445 | { |
| 446 | // Do we have a key => ttl pair, or just a key? |
| 447 | if (is_int($k)) |
| 448 | { |
| 449 | $k = $v; |
| 450 | $v = $ttl; |
| 451 | } |
| 452 | else |
| 453 | { |
| 454 | $v += time(); |
| 455 | } |
| 456 | |
| 457 | if ( ! isset($_SESSION[$k])) |
| 458 | { |
| 459 | return FALSE; |
| 460 | } |
| 461 | |
| 462 | $temp[$k] = $ts; |
| 463 | } |
| 464 | |
| 465 | $_SESSION['__ci_vars'] = isset($_SESSION['__ci_vars']) |
| 466 | ? array_merge($_SESSION['__ci_vars'], $temp) |
| 467 | : $temp; |
| 468 | |
| 469 | return TRUE; |
| 470 | } |
| 471 | |
| 472 | if ( ! isset($_SESSION[$key])) |
| 473 | { |
| 474 | return FALSE; |
| 475 | } |
| 476 | |
| 477 | $_SESSION['__ci_vars'][$key] = $ttl; |
| 478 | return TRUE; |
| 479 | } |
| 480 | |
| 481 | // ------------------------------------------------------------------------ |
| 482 | |
| 483 | /** |
| 484 | * Get temp keys |
| 485 | * |
| 486 | * @return array |
| 487 | */ |
| 488 | public function get_temp_keys() |
| 489 | { |
| 490 | if ( ! isset($_SESSION['__ci_vars'])) |
| 491 | { |
| 492 | return array(); |
| 493 | } |
| 494 | |
| 495 | $keys = array(); |
| 496 | foreach (array_keys($_SESSION['__ci_vars']) as $key) |
| 497 | { |
| 498 | is_int($_SESSION['__ci_vars'][$key]) && $keys[] = $key; |
| 499 | } |
| 500 | |
| 501 | return $keys; |
| 502 | } |
| 503 | |
| 504 | // ------------------------------------------------------------------------ |
| 505 | |
| 506 | /** |
| 507 | * Unmark flash |
| 508 | * |
| 509 | * @param mixed $key Session data key(s) |
| 510 | * @return void |
| 511 | */ |
| 512 | public function unmark_temp($key) |
| 513 | { |
| 514 | if (empty($_SESSION['__ci_vars'])) |
| 515 | { |
| 516 | return; |
| 517 | } |
| 518 | |
| 519 | is_array($key) OR $key = array($key); |
| 520 | |
| 521 | foreach ($key as $k) |
| 522 | { |
| 523 | if (isset($_SESSION['__ci_vars'][$k]) && is_int($_SESSION['__ci_vars'][$k])) |
| 524 | { |
| 525 | unset($_SESSION['__ci_vars'][$k]); |
| 526 | } |
| 527 | } |
| 528 | |
| 529 | if (empty($_SESSION['__ci_vars'])) |
| 530 | { |
| 531 | unset($_SESSION['__ci_vars']); |
| 532 | } |
| 533 | } |
| 534 | |
| 535 | // ------------------------------------------------------------------------ |
| 536 | |
| 537 | /** |
| 538 | * __get() |
| 539 | * |
| 540 | * @param string $key 'session_id' or a session data key |
| 541 | * @return mixed |
| 542 | */ |
| 543 | public function __get($key) |
| 544 | { |
| 545 | // Note: Keep this order the same, just in case somebody wants to |
| 546 | // use 'session_id' as a session data key, for whatever reason |
| 547 | if (isset($_SESSION[$key])) |
| 548 | { |
| 549 | return $_SESSION[$key]; |
| 550 | } |
| 551 | elseif ($key === 'session_id') |
| 552 | { |
| 553 | return session_id(); |
| 554 | } |
| 555 | |
| 556 | return NULL; |
| 557 | } |
| 558 | |
| 559 | // ------------------------------------------------------------------------ |
| 560 | |
| 561 | /** |
| 562 | * __set() |
| 563 | * |
| 564 | * @param string $key Session data key |
| 565 | * @param mixed $value Session data value |
| 566 | * @return void |
| 567 | */ |
| 568 | public function __set($key, $value) |
| 569 | { |
| 570 | $_SESSION[$key] = $value; |
| 571 | } |
| 572 | |
| 573 | // ------------------------------------------------------------------------ |
| 574 | |
| 575 | /** |
| 576 | * Session destroy |
| 577 | * |
| 578 | * Legacy CI_Session compatibility method |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 579 | * |
Darren Hill | 5073a37 | 2011-08-31 13:54:19 -0400 | [diff] [blame] | 580 | * @return void |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 581 | */ |
| 582 | public function sess_destroy() |
| 583 | { |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 584 | session_destroy(); |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 585 | } |
| 586 | |
Andrey Andreev | 9ffcee6 | 2012-09-05 16:25:16 +0300 | [diff] [blame] | 587 | // ------------------------------------------------------------------------ |
| 588 | |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 589 | /** |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 590 | * Session regenerate |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 591 | * |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 592 | * Legacy CI_Session compatibility method |
| 593 | * |
| 594 | * @param bool $destroy Destroy old session data flag |
Darren Hill | 5073a37 | 2011-08-31 13:54:19 -0400 | [diff] [blame] | 595 | * @return void |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 596 | */ |
Andrey Andreev | 9ffcee6 | 2012-09-05 16:25:16 +0300 | [diff] [blame] | 597 | public function sess_regenerate($destroy = FALSE) |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 598 | { |
Andrey Andreev | 8e60b9a | 2014-11-04 11:08:06 +0200 | [diff] [blame] | 599 | $_SESSION['__ci_last_regenerate'] = time(); |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 600 | session_regenerate_id($destroy); |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 601 | } |
| 602 | |
Andrey Andreev | 9ffcee6 | 2012-09-05 16:25:16 +0300 | [diff] [blame] | 603 | // ------------------------------------------------------------------------ |
| 604 | |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 605 | /** |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 606 | * Get userdata reference |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 607 | * |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 608 | * Legacy CI_Session compatibility method |
| 609 | * |
| 610 | * @returns array |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 611 | */ |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 612 | public function &get_userdata() |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 613 | { |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 614 | return $_SESSION; |
| 615 | } |
| 616 | |
| 617 | // ------------------------------------------------------------------------ |
| 618 | |
| 619 | /** |
| 620 | * Userdata (fetch) |
| 621 | * |
| 622 | * Legacy CI_Session compatibility method |
| 623 | * |
| 624 | * @param string $key Session data key |
| 625 | * @return mixed Session data value or NULL if not found |
| 626 | */ |
| 627 | public function userdata($key = NULL) |
| 628 | { |
| 629 | if (isset($key)) |
Andrey Andreev | ecc260e | 2014-01-24 14:20:13 +0200 | [diff] [blame] | 630 | { |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 631 | return isset($_SESSION[$key]) ? $_SESSION[$key] : NULL; |
| 632 | } |
| 633 | elseif (empty($_SESSION)) |
| 634 | { |
| 635 | return array(); |
Andrey Andreev | ecc260e | 2014-01-24 14:20:13 +0200 | [diff] [blame] | 636 | } |
| 637 | |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 638 | $userdata = array(); |
| 639 | $_exclude = array_merge( |
Andrey Andreev | ef41786 | 2014-06-04 21:28:13 +0300 | [diff] [blame] | 640 | array('__ci_vars'), |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 641 | $this->get_flash_keys(), |
| 642 | $this->get_temp_keys() |
| 643 | ); |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 644 | |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 645 | foreach (array_keys($_SESSION) as $key) |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 646 | { |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 647 | if ( ! in_array($key, $_exclude, TRUE)) |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 648 | { |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 649 | $userdata[$key] = $_SESSION[$key]; |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 650 | } |
| 651 | } |
| 652 | |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 653 | return $userdata; |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 654 | } |
| 655 | |
Andrey Andreev | 9ffcee6 | 2012-09-05 16:25:16 +0300 | [diff] [blame] | 656 | // ------------------------------------------------------------------------ |
| 657 | |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 658 | /** |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 659 | * Set userdata |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 660 | * |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 661 | * Legacy CI_Session compatibility method |
| 662 | * |
| 663 | * @param mixed $data Session data key or an associative array |
| 664 | * @param mixed $value Value to store |
Darren Hill | 5073a37 | 2011-08-31 13:54:19 -0400 | [diff] [blame] | 665 | * @return void |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 666 | */ |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 667 | public function set_userdata($data, $value = NULL) |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 668 | { |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 669 | if (is_array($data)) |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 670 | { |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 671 | foreach ($data as $key => &$value) |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 672 | { |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 673 | $_SESSION[$key] = $value; |
Johnathan Croom | 8d8543d | 2012-11-25 10:36:57 -0700 | [diff] [blame] | 674 | } |
| 675 | |
| 676 | return; |
Johnathan Croom | 4beca5c | 2012-11-23 18:32:46 -0700 | [diff] [blame] | 677 | } |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 678 | |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 679 | $_SESSION[$data] = $value; |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 680 | } |
| 681 | |
Andrey Andreev | 9ffcee6 | 2012-09-05 16:25:16 +0300 | [diff] [blame] | 682 | // ------------------------------------------------------------------------ |
| 683 | |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 684 | /** |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 685 | * Unset userdata |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 686 | * |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 687 | * Legacy CI_Session compatibility method |
| 688 | * |
| 689 | * @param mixed $data Session data key(s) |
| 690 | * @return void |
| 691 | */ |
| 692 | public function unset_userdata($key) |
| 693 | { |
| 694 | if (is_array($key)) |
| 695 | { |
| 696 | foreach ($key as $k) |
| 697 | { |
Andrey Andreev | d069b9b | 2014-09-16 10:18:16 +0300 | [diff] [blame] | 698 | unset($_SESSION[$k]); |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 699 | } |
| 700 | |
| 701 | return; |
| 702 | } |
| 703 | |
| 704 | unset($_SESSION[$key]); |
| 705 | } |
| 706 | |
| 707 | // ------------------------------------------------------------------------ |
| 708 | |
| 709 | /** |
| 710 | * All userdata (fetch) |
| 711 | * |
| 712 | * Legacy CI_Session compatibility method |
| 713 | * |
| 714 | * @return array $_SESSION, excluding flash data items |
| 715 | */ |
| 716 | public function all_userdata() |
| 717 | { |
| 718 | return $this->userdata(); |
| 719 | } |
| 720 | |
| 721 | // ------------------------------------------------------------------------ |
| 722 | |
| 723 | /** |
| 724 | * Has userdata |
| 725 | * |
| 726 | * Legacy CI_Session compatibility method |
| 727 | * |
| 728 | * @param string $key Session data key |
| 729 | * @return bool |
| 730 | */ |
| 731 | public function has_userdata($key) |
| 732 | { |
| 733 | return isset($_SESSION[$key]); |
| 734 | } |
| 735 | |
| 736 | // ------------------------------------------------------------------------ |
| 737 | |
| 738 | /** |
| 739 | * Flashdata (fetch) |
| 740 | * |
| 741 | * Legacy CI_Session compatibility method |
| 742 | * |
| 743 | * @param string $key Session data key |
| 744 | * @return mixed Session data value or NULL if not found |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 745 | */ |
Andrey Andreev | ecc260e | 2014-01-24 14:20:13 +0200 | [diff] [blame] | 746 | public function flashdata($key = NULL) |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 747 | { |
Andrey Andreev | ecc260e | 2014-01-24 14:20:13 +0200 | [diff] [blame] | 748 | if (isset($key)) |
| 749 | { |
Andrey Andreev | ef41786 | 2014-06-04 21:28:13 +0300 | [diff] [blame] | 750 | return (isset($_SESSION['__ci_vars'], $_SESSION['__ci_vars'][$key], $_SESSION[$key]) && ! is_int($_SESSION['__ci_vars'][$key])) |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 751 | ? $_SESSION[$key] |
| 752 | : NULL; |
Andrey Andreev | ecc260e | 2014-01-24 14:20:13 +0200 | [diff] [blame] | 753 | } |
| 754 | |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 755 | $flashdata = array(); |
| 756 | |
Andrey Andreev | ef41786 | 2014-06-04 21:28:13 +0300 | [diff] [blame] | 757 | if ( ! empty($_SESSION['__ci_vars'])) |
Andrey Andreev | ecc260e | 2014-01-24 14:20:13 +0200 | [diff] [blame] | 758 | { |
Andrey Andreev | ef41786 | 2014-06-04 21:28:13 +0300 | [diff] [blame] | 759 | foreach ($_SESSION['__ci_vars'] as $key => &$value) |
Andrey Andreev | ecc260e | 2014-01-24 14:20:13 +0200 | [diff] [blame] | 760 | { |
Andrey Andreev | ef41786 | 2014-06-04 21:28:13 +0300 | [diff] [blame] | 761 | is_int($value) OR $flashdata[$key] = $_SESSION[$key]; |
Andrey Andreev | ecc260e | 2014-01-24 14:20:13 +0200 | [diff] [blame] | 762 | } |
| 763 | } |
| 764 | |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 765 | return $flashdata; |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 766 | } |
| 767 | |
Andrey Andreev | 9ffcee6 | 2012-09-05 16:25:16 +0300 | [diff] [blame] | 768 | // ------------------------------------------------------------------------ |
| 769 | |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 770 | /** |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 771 | * Set flashdata |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 772 | * |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 773 | * Legacy CI_Session compatibiliy method |
| 774 | * |
| 775 | * @param mixed $data Session data key or an associative array |
| 776 | * @param mixed $value Value to store |
Darren Hill | 5073a37 | 2011-08-31 13:54:19 -0400 | [diff] [blame] | 777 | * @return void |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 778 | */ |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 779 | public function set_flashdata($data, $value = NULL) |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 780 | { |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 781 | $this->set_userdata($data, $value); |
Andrey Andreev | c6e5098 | 2014-10-26 21:27:28 +0200 | [diff] [blame] | 782 | $this->mark_as_flash(is_array($data) ? array_keys($data) : $data); |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 783 | } |
| 784 | |
Andrey Andreev | 9ffcee6 | 2012-09-05 16:25:16 +0300 | [diff] [blame] | 785 | // ------------------------------------------------------------------------ |
| 786 | |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 787 | /** |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 788 | * Keep flashdata |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 789 | * |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 790 | * Legacy CI_Session compatibility method |
| 791 | * |
| 792 | * @param mixed $key Session data key(s) |
Darren Hill | 5073a37 | 2011-08-31 13:54:19 -0400 | [diff] [blame] | 793 | * @return void |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 794 | */ |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 795 | public function keep_flashdata($key) |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 796 | { |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 797 | $this->mark_as_flash($key); |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 798 | } |
| 799 | |
Andrey Andreev | 9ffcee6 | 2012-09-05 16:25:16 +0300 | [diff] [blame] | 800 | // ------------------------------------------------------------------------ |
| 801 | |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 802 | /** |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 803 | * Temp data (fetch) |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 804 | * |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 805 | * Legacy CI_Session compatibility method |
| 806 | * |
| 807 | * @param string $key Session data key |
| 808 | * @return mixed Session data value or NULL if not found |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 809 | */ |
Andrey Andreev | ecc260e | 2014-01-24 14:20:13 +0200 | [diff] [blame] | 810 | public function tempdata($key = NULL) |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 811 | { |
Andrey Andreev | ecc260e | 2014-01-24 14:20:13 +0200 | [diff] [blame] | 812 | if (isset($key)) |
| 813 | { |
Andrey Andreev | ef41786 | 2014-06-04 21:28:13 +0300 | [diff] [blame] | 814 | return (isset($_SESSION['__ci_vars'], $_SESSION['__ci_vars'][$key], $_SESSION[$key]) && is_int($_SESSION['__ci_vars'][$key])) |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 815 | ? $_SESSION[$key] |
| 816 | : NULL; |
Andrey Andreev | ecc260e | 2014-01-24 14:20:13 +0200 | [diff] [blame] | 817 | } |
| 818 | |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 819 | $tempdata = array(); |
| 820 | |
Andrey Andreev | ef41786 | 2014-06-04 21:28:13 +0300 | [diff] [blame] | 821 | if ( ! empty($_SESSION['__ci_vars'])) |
Andrey Andreev | ecc260e | 2014-01-24 14:20:13 +0200 | [diff] [blame] | 822 | { |
Andrey Andreev | ef41786 | 2014-06-04 21:28:13 +0300 | [diff] [blame] | 823 | foreach ($_SESSION['__ci_vars'] as $key => &$value) |
Andrey Andreev | ecc260e | 2014-01-24 14:20:13 +0200 | [diff] [blame] | 824 | { |
Andrey Andreev | ef41786 | 2014-06-04 21:28:13 +0300 | [diff] [blame] | 825 | is_int($value) && $tempdata[$key] = $_SESSION[$key]; |
Andrey Andreev | ecc260e | 2014-01-24 14:20:13 +0200 | [diff] [blame] | 826 | } |
| 827 | } |
| 828 | |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 829 | return $tempdata; |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 830 | } |
| 831 | |
Andrey Andreev | 9ffcee6 | 2012-09-05 16:25:16 +0300 | [diff] [blame] | 832 | // ------------------------------------------------------------------------ |
| 833 | |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 834 | /** |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 835 | * Set tempdata |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 836 | * |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 837 | * Legacy CI_Session compatibility method |
| 838 | * |
| 839 | * @param mixed $data Session data key or an associative array of items |
| 840 | * @param mixed $value Value to store |
| 841 | * @param int $ttl Time-to-live in seconds |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 842 | * @return void |
| 843 | */ |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 844 | public function set_tempdata($data, $value = NULL, $ttl = 300) |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 845 | { |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 846 | $this->set_userdata($data, $value); |
| 847 | $this->mark_as_temp($data, $ttl); |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 848 | } |
| 849 | |
Andrey Andreev | 9ffcee6 | 2012-09-05 16:25:16 +0300 | [diff] [blame] | 850 | // ------------------------------------------------------------------------ |
| 851 | |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 852 | /** |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 853 | * Unset tempdata |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 854 | * |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 855 | * Legacy CI_Session compatibility method |
| 856 | * |
| 857 | * @param mixed $data Session data key(s) |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 858 | * @return void |
| 859 | */ |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 860 | public function unset_tempdata($key) |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 861 | { |
Andrey Andreev | 47a47fb | 2014-05-31 16:08:30 +0300 | [diff] [blame] | 862 | $this->unmark_temp($key); |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 863 | } |
| 864 | |
Andrey Andreev | 9ffcee6 | 2012-09-05 16:25:16 +0300 | [diff] [blame] | 865 | } |
Darren Hill | c4e266b | 2011-08-30 15:40:27 -0400 | [diff] [blame] | 866 | |
| 867 | /* End of file Session.php */ |
Andrey Andreev | 9ffcee6 | 2012-09-05 16:25:16 +0300 | [diff] [blame] | 868 | /* Location: ./system/libraries/Session/Session.php */ |