2013-09-17 16:31:14 +00:00
|
|
|
<?php
|
2019-12-03 18:57:53 +00:00
|
|
|
|
2018-02-26 21:20:21 +00:00
|
|
|
declare(strict_types=1);
|
2013-09-17 16:31:14 +00:00
|
|
|
/**
|
2024-05-23 07:26:56 +00:00
|
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
2013-09-17 16:31:14 +00:00
|
|
|
*/
|
2013-11-03 12:38:25 +00:00
|
|
|
// use OCP namespace for all classes that are considered public.
|
2024-05-23 07:26:56 +00:00
|
|
|
// This means that they should be used by apps instead of the internal Nextcloud classes
|
2019-11-22 19:52:10 +00:00
|
|
|
|
2013-09-17 16:31:14 +00:00
|
|
|
namespace OCP;
|
|
|
|
|
2018-02-26 21:20:21 +00:00
|
|
|
use OCP\Session\Exceptions\SessionNotAvailableException;
|
|
|
|
|
2013-09-18 10:01:01 +00:00
|
|
|
/**
|
|
|
|
* Interface ISession
|
|
|
|
*
|
|
|
|
* wrap PHP's internal session handling into the ISession interface
|
2015-04-16 15:00:08 +00:00
|
|
|
* @since 6.0.0
|
2013-09-18 10:01:01 +00:00
|
|
|
*/
|
2013-09-17 16:31:14 +00:00
|
|
|
interface ISession {
|
|
|
|
/**
|
2013-09-18 10:01:01 +00:00
|
|
|
* Set a value in the session
|
|
|
|
*
|
2013-09-17 16:31:14 +00:00
|
|
|
* @param string $key
|
|
|
|
* @param mixed $value
|
2015-04-16 15:00:08 +00:00
|
|
|
* @since 6.0.0
|
2013-09-17 16:31:14 +00:00
|
|
|
*/
|
2018-02-26 21:20:21 +00:00
|
|
|
public function set(string $key, $value);
|
2013-09-17 16:31:14 +00:00
|
|
|
|
|
|
|
/**
|
2013-09-18 10:01:01 +00:00
|
|
|
* Get a value from the session
|
|
|
|
*
|
2013-09-17 16:31:14 +00:00
|
|
|
* @param string $key
|
|
|
|
* @return mixed should return null if $key does not exist
|
2015-04-16 15:00:08 +00:00
|
|
|
* @since 6.0.0
|
2013-09-17 16:31:14 +00:00
|
|
|
*/
|
2018-02-26 21:20:21 +00:00
|
|
|
public function get(string $key);
|
2013-09-17 16:31:14 +00:00
|
|
|
|
|
|
|
/**
|
2013-09-18 10:01:01 +00:00
|
|
|
* Check if a named key exists in the session
|
|
|
|
*
|
2013-09-17 16:31:14 +00:00
|
|
|
* @param string $key
|
|
|
|
* @return bool
|
2015-04-16 15:00:08 +00:00
|
|
|
* @since 6.0.0
|
2013-09-17 16:31:14 +00:00
|
|
|
*/
|
2018-02-26 21:20:21 +00:00
|
|
|
public function exists(string $key): bool;
|
2013-09-17 16:31:14 +00:00
|
|
|
|
|
|
|
/**
|
2013-09-18 10:01:01 +00:00
|
|
|
* Remove a $key/$value pair from the session
|
2013-09-17 16:31:14 +00:00
|
|
|
*
|
|
|
|
* @param string $key
|
2015-04-16 15:00:08 +00:00
|
|
|
* @since 6.0.0
|
2013-09-17 16:31:14 +00:00
|
|
|
*/
|
2018-02-26 21:20:21 +00:00
|
|
|
public function remove(string $key);
|
2013-09-17 16:31:14 +00:00
|
|
|
|
|
|
|
/**
|
2013-09-18 10:01:01 +00:00
|
|
|
* Reset and recreate the session
|
2015-04-16 15:00:08 +00:00
|
|
|
* @since 6.0.0
|
2013-09-17 16:31:14 +00:00
|
|
|
*/
|
|
|
|
public function clear();
|
|
|
|
|
2022-04-26 10:57:58 +00:00
|
|
|
/**
|
|
|
|
* Reopen a session for writing again
|
|
|
|
*
|
|
|
|
* @return bool true if the session was actually reopened, otherwise false
|
|
|
|
* @since 25.0.0
|
|
|
|
*/
|
|
|
|
public function reopen(): bool;
|
|
|
|
|
2014-03-10 13:21:12 +00:00
|
|
|
/**
|
|
|
|
* Close the session and release the lock
|
2015-04-16 15:00:08 +00:00
|
|
|
* @since 7.0.0
|
2014-03-10 13:21:12 +00:00
|
|
|
*/
|
|
|
|
public function close();
|
|
|
|
|
2016-01-04 14:00:58 +00:00
|
|
|
/**
|
|
|
|
* Wrapper around session_regenerate_id
|
|
|
|
*
|
|
|
|
* @param bool $deleteOldSession Whether to delete the old associated session file or not.
|
2018-06-11 08:45:19 +00:00
|
|
|
* @param bool $updateToken Wheater to update the associated auth token
|
2016-01-04 14:00:58 +00:00
|
|
|
* @return void
|
2018-06-11 08:45:19 +00:00
|
|
|
* @since 9.0.0, $updateToken added in 14.0.0
|
2016-01-04 14:00:58 +00:00
|
|
|
*/
|
2018-06-11 08:45:19 +00:00
|
|
|
public function regenerateId(bool $deleteOldSession = true, bool $updateToken = false);
|
2016-04-25 08:23:06 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Wrapper around session_id
|
|
|
|
*
|
|
|
|
* @return string
|
2016-04-26 07:29:15 +00:00
|
|
|
* @throws SessionNotAvailableException
|
2016-04-25 08:23:06 +00:00
|
|
|
* @since 9.1.0
|
|
|
|
*/
|
2018-02-26 21:20:21 +00:00
|
|
|
public function getId(): string;
|
2013-09-17 16:31:14 +00:00
|
|
|
}
|