diff options
author | Roeland Douma <rullzer@users.noreply.github.com> | 2016-05-02 16:49:38 +0200 |
---|---|---|
committer | Roeland Douma <rullzer@users.noreply.github.com> | 2016-05-02 16:49:38 +0200 |
commit | b84825f0301fb073bfcc6e05132675d104afcfe3 (patch) | |
tree | ae63c55f897761e5fd068bc328fcb9d19ffd4bcc /lib/public | |
parent | fd844f3eb3bdfe1186c42df382b3de2e02c98cd4 (diff) | |
parent | e93bf80b29cde236c5d78023b49435283e4b2562 (diff) | |
download | nextcloud-server-b84825f0301fb073bfcc6e05132675d104afcfe3.tar.gz nextcloud-server-b84825f0301fb073bfcc6e05132675d104afcfe3.zip |
Merge pull request #24229 from owncloud/session-id-wrapper
add ISession::getId() wrapper for session_id
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/Session/Exceptions/SessionNotAvailableException.php | 32 | ||||
-rw-r--r-- | lib/public/isession.php | 9 |
2 files changed, 41 insertions, 0 deletions
diff --git a/lib/public/Session/Exceptions/SessionNotAvailableException.php b/lib/public/Session/Exceptions/SessionNotAvailableException.php new file mode 100644 index 00000000000..d347e0df15e --- /dev/null +++ b/lib/public/Session/Exceptions/SessionNotAvailableException.php @@ -0,0 +1,32 @@ +<?php + +/** + * @author Christoph Wurst <christoph@owncloud.com> + * + * @copyright Copyright (c) 2016, 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/> + * + */ + +namespace OCP\Session\Exceptions; + +use Exception; + +/** + * @since 9.1.0 + */ +class SessionNotAvailableException extends Exception { + +} diff --git a/lib/public/isession.php b/lib/public/isession.php index 25c76906d63..7bc8654a1b9 100644 --- a/lib/public/isession.php +++ b/lib/public/isession.php @@ -95,4 +95,13 @@ interface ISession { * @since 9.0.0 */ public function regenerateId($deleteOldSession = true); + + /** + * Wrapper around session_id + * + * @return string + * @throws SessionNotAvailableException + * @since 9.1.0 + */ + public function getId(); } |