2013-05-28 02:50:00 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-02-23 13:28:53 +03:00
|
|
|
* @author cetra3 <peter@parashift.com.au>
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
2013-05-28 02:50:00 +04:00
|
|
|
*/
|
|
|
|
namespace OC\Session;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class Internal
|
|
|
|
*
|
|
|
|
* wrap php's internal session handling into the Session interface
|
|
|
|
*
|
|
|
|
* @package OC\Session
|
|
|
|
*/
|
2014-08-30 12:48:13 +04:00
|
|
|
class Internal extends Session {
|
2013-05-28 02:50:00 +04:00
|
|
|
public function __construct($name) {
|
|
|
|
session_name($name);
|
2013-05-28 03:13:36 +04:00
|
|
|
session_start();
|
|
|
|
if (!isset($_SESSION)) {
|
2013-05-28 02:50:00 +04:00
|
|
|
throw new \Exception('Failed to start session');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function __destruct() {
|
2014-03-10 18:36:20 +04:00
|
|
|
$this->close();
|
2013-05-28 02:50:00 +04:00
|
|
|
}
|
|
|
|
|
2014-08-30 12:48:13 +04:00
|
|
|
/**
|
|
|
|
* @param string $key
|
|
|
|
* @param integer $value
|
|
|
|
*/
|
|
|
|
public function set($key, $value) {
|
|
|
|
$this->validateSession();
|
|
|
|
$_SESSION[$key] = $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $key
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function get($key) {
|
|
|
|
if (!$this->exists($key)) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return $_SESSION[$key];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $key
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function exists($key) {
|
|
|
|
return isset($_SESSION[$key]);
|
|
|
|
}
|
|
|
|
|
2013-12-09 15:38:27 +04:00
|
|
|
/**
|
|
|
|
* @param string $key
|
|
|
|
*/
|
|
|
|
public function remove($key) {
|
2013-12-11 15:59:48 +04:00
|
|
|
if (isset($_SESSION[$key])) {
|
|
|
|
unset($_SESSION[$key]);
|
|
|
|
}
|
2013-12-09 15:38:27 +04:00
|
|
|
}
|
|
|
|
|
2014-08-30 12:48:13 +04:00
|
|
|
|
2013-05-28 02:50:00 +04:00
|
|
|
public function clear() {
|
|
|
|
session_unset();
|
|
|
|
@session_regenerate_id(true);
|
|
|
|
@session_start();
|
2014-08-30 12:48:13 +04:00
|
|
|
$_SESSION = array();
|
2013-05-28 02:50:00 +04:00
|
|
|
}
|
2014-03-10 18:36:20 +04:00
|
|
|
|
|
|
|
public function close() {
|
|
|
|
session_write_close();
|
|
|
|
parent::close();
|
|
|
|
}
|
|
|
|
|
2014-03-18 14:44:22 +04:00
|
|
|
public function reopen() {
|
|
|
|
throw new \Exception('The session cannot be reopened - reopen() is ony to be used in unit testing.');
|
|
|
|
}
|
2014-08-30 12:48:13 +04:00
|
|
|
|
|
|
|
private function validateSession() {
|
|
|
|
if ($this->sessionClosed) {
|
|
|
|
throw new \Exception('Session has been closed - no further changes to the session as allowed');
|
|
|
|
}
|
|
|
|
}
|
2013-05-28 02:50:00 +04:00
|
|
|
}
|