2016-01-25 19:15:54 +03:00
|
|
|
<?php
|
2019-12-03 21:57:53 +03:00
|
|
|
|
2018-03-05 17:01:02 +03:00
|
|
|
declare(strict_types=1);
|
2019-12-03 21:57:53 +03:00
|
|
|
|
2016-01-25 19:15:54 +03:00
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2016-01-25 19:15:54 +03:00
|
|
|
*
|
|
|
|
* @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/>
|
2016-01-25 19:15:54 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OC\Security\CSRF\TokenStorage;
|
|
|
|
|
|
|
|
use OCP\ISession;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class SessionStorage provides the session storage
|
|
|
|
*
|
|
|
|
* @package OC\Security\CSRF\TokenStorage
|
|
|
|
*/
|
|
|
|
class SessionStorage {
|
|
|
|
/** @var ISession */
|
|
|
|
private $session;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param ISession $session
|
|
|
|
*/
|
|
|
|
public function __construct(ISession $session) {
|
|
|
|
$this->session = $session;
|
|
|
|
}
|
|
|
|
|
2016-10-28 12:29:02 +03:00
|
|
|
/**
|
|
|
|
* @param ISession $session
|
|
|
|
*/
|
|
|
|
public function setSession(ISession $session) {
|
|
|
|
$this->session = $session;
|
|
|
|
}
|
|
|
|
|
2016-01-25 19:15:54 +03:00
|
|
|
/**
|
|
|
|
* Returns the current token or throws an exception if none is found.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
2018-03-05 17:01:02 +03:00
|
|
|
public function getToken(): string {
|
2016-01-25 19:15:54 +03:00
|
|
|
$token = $this->session->get('requesttoken');
|
2020-04-10 15:19:56 +03:00
|
|
|
if (empty($token)) {
|
2016-01-25 19:15:54 +03:00
|
|
|
throw new \Exception('Session does not contain a requesttoken');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $token;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the valid current token to $value.
|
|
|
|
*
|
|
|
|
* @param string $value
|
|
|
|
*/
|
2018-03-05 17:01:02 +03:00
|
|
|
public function setToken(string $value) {
|
2016-01-25 19:15:54 +03:00
|
|
|
$this->session->set('requesttoken', $value);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes the current token.
|
|
|
|
*/
|
|
|
|
public function removeToken() {
|
|
|
|
$this->session->remove('requesttoken');
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Whether the storage has a storage.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
2018-03-05 17:01:02 +03:00
|
|
|
public function hasToken(): bool {
|
2016-01-25 19:15:54 +03:00
|
|
|
return $this->session->exists('requesttoken');
|
|
|
|
}
|
|
|
|
}
|