diff options
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/IServerContainer.php | 12 | ||||
-rw-r--r-- | lib/public/Session/Exceptions/SessionNotAvailableException.php | 32 | ||||
-rw-r--r-- | lib/public/isession.php | 9 | ||||
-rw-r--r-- | lib/public/iusermanager.php | 7 |
4 files changed, 60 insertions, 0 deletions
diff --git a/lib/public/IServerContainer.php b/lib/public/IServerContainer.php index de48daeef88..65754f993f8 100644 --- a/lib/public/IServerContainer.php +++ b/lib/public/IServerContainer.php @@ -519,4 +519,16 @@ interface IServerContainer { * @since 9.0.0 */ public function getContentSecurityPolicyManager(); + + /** + * @return \OCP\IDateTimeZone + * @since 8.0.0 + */ + public function getDateTimeZone(); + + /** + * @return \OCP\IDateTimeFormatter + * @since 8.0.0 + */ + public function getDateTimeFormatter(); } 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(); } diff --git a/lib/public/iusermanager.php b/lib/public/iusermanager.php index 6442938a99b..00c0bbc8721 100644 --- a/lib/public/iusermanager.php +++ b/lib/public/iusermanager.php @@ -142,4 +142,11 @@ interface IUserManager { * @since 9.0.0 */ public function callForAllUsers (\Closure $callback, $search = ''); + + /** + * @param string $email + * @return IUser[] + * @since 9.1.0 + */ + public function getByEmail($email); } |