2013-05-28 02:50:00 +04:00
|
|
|
<?php
|
2019-12-03 21:57:53 +03:00
|
|
|
|
2018-02-27 00:20:21 +03:00
|
|
|
declare(strict_types=1);
|
2019-12-03 21:57:53 +03:00
|
|
|
|
2013-05-28 02:50:00 +04:00
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
|
|
|
* @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,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
2013-05-28 02:50:00 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2013-05-28 02:50:00 +04:00
|
|
|
namespace OC\Session;
|
|
|
|
|
2016-04-26 10:29:15 +03:00
|
|
|
use Exception;
|
|
|
|
use OCP\Session\Exceptions\SessionNotAvailableException;
|
|
|
|
|
2013-05-28 02:50:00 +04:00
|
|
|
/**
|
|
|
|
* Class Internal
|
|
|
|
*
|
2013-12-09 15:38:27 +04:00
|
|
|
* store session data in an in-memory array, not persistent
|
2013-05-28 02:50:00 +04:00
|
|
|
*
|
|
|
|
* @package OC\Session
|
|
|
|
*/
|
2013-05-28 18:52:40 +04:00
|
|
|
class Memory extends Session {
|
2013-05-28 02:50:00 +04:00
|
|
|
protected $data;
|
|
|
|
|
2018-02-27 00:20:21 +03:00
|
|
|
public function __construct(string $name) {
|
2013-05-28 02:50:00 +04:00
|
|
|
//no need to use $name since all data is already scoped to this instance
|
2018-02-27 00:20:21 +03:00
|
|
|
$this->data = [];
|
2013-05-28 02:50:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $key
|
2014-02-06 19:30:58 +04:00
|
|
|
* @param integer $value
|
2013-05-28 02:50:00 +04:00
|
|
|
*/
|
2018-02-27 00:20:21 +03:00
|
|
|
public function set(string $key, $value) {
|
2014-03-10 17:21:12 +04:00
|
|
|
$this->validateSession();
|
2013-05-28 02:50:00 +04:00
|
|
|
$this->data[$key] = $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $key
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2018-02-27 00:20:21 +03:00
|
|
|
public function get(string $key) {
|
2013-05-28 02:50:00 +04:00
|
|
|
if (!$this->exists($key)) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return $this->data[$key];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $key
|
|
|
|
* @return bool
|
|
|
|
*/
|
2018-02-27 00:20:21 +03:00
|
|
|
public function exists(string $key): bool {
|
2013-05-28 02:50:00 +04:00
|
|
|
return isset($this->data[$key]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $key
|
|
|
|
*/
|
2018-02-27 00:20:21 +03:00
|
|
|
public function remove(string $key) {
|
2014-03-10 17:21:12 +04:00
|
|
|
$this->validateSession();
|
2013-05-28 02:50:00 +04:00
|
|
|
unset($this->data[$key]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function clear() {
|
2018-02-27 00:20:21 +03:00
|
|
|
$this->data = [];
|
2013-05-28 02:50:00 +04:00
|
|
|
}
|
2014-03-10 17:21:12 +04:00
|
|
|
|
2016-01-04 17:00:58 +03:00
|
|
|
/**
|
|
|
|
* Stub since the session ID does not need to get regenerated for the cache
|
|
|
|
*
|
|
|
|
* @param bool $deleteOldSession
|
|
|
|
*/
|
2020-04-10 15:19:56 +03:00
|
|
|
public function regenerateId(bool $deleteOldSession = true, bool $updateToken = false) {
|
|
|
|
}
|
2016-01-04 17:00:58 +03:00
|
|
|
|
2016-04-25 11:23:06 +03:00
|
|
|
/**
|
|
|
|
* Wrapper around session_id
|
|
|
|
*
|
|
|
|
* @return string
|
2016-04-26 10:29:15 +03:00
|
|
|
* @throws SessionNotAvailableException
|
2016-04-25 11:23:06 +03:00
|
|
|
* @since 9.1.0
|
|
|
|
*/
|
2018-02-27 00:20:21 +03:00
|
|
|
public function getId(): string {
|
2016-04-26 10:29:15 +03:00
|
|
|
throw new SessionNotAvailableException('Memory session does not have an ID');
|
2016-04-25 11:23:06 +03:00
|
|
|
}
|
|
|
|
|
2014-03-18 00:57:10 +04:00
|
|
|
/**
|
|
|
|
* Helper function for PHPUnit execution - don't use in non-test code
|
|
|
|
*/
|
|
|
|
public function reopen() {
|
|
|
|
$this->sessionClosed = false;
|
|
|
|
}
|
|
|
|
|
2014-03-10 20:15:19 +04:00
|
|
|
/**
|
|
|
|
* In case the session has already been locked an exception will be thrown
|
|
|
|
*
|
2016-04-26 10:29:15 +03:00
|
|
|
* @throws Exception
|
2014-03-10 20:15:19 +04:00
|
|
|
*/
|
2014-03-10 17:21:12 +04:00
|
|
|
private function validateSession() {
|
|
|
|
if ($this->sessionClosed) {
|
2016-04-26 10:29:15 +03:00
|
|
|
throw new Exception('Session has been closed - no further changes to the session are allowed');
|
2014-03-10 17:21:12 +04:00
|
|
|
}
|
|
|
|
}
|
2013-05-28 02:50:00 +04:00
|
|
|
}
|