2012-05-01 03:39:12 -04:00
|
|
|
<?php
|
|
|
|
|
/**
|
2016-07-21 11:07:57 -04:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
|
*
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
2016-05-26 13:56:05 -04:00
|
|
|
* @author Frank Karlitschek <frank@karlitschek.de>
|
2017-11-06 14:15:27 -05:00
|
|
|
* @author Georg Ehrke <oc.list@georgehrke.com>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2019-12-03 13:57:53 -05:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2017-11-06 09:56:42 -05:00
|
|
|
* @author Sebastian Wessalowski <sebastian@wessalowski.org>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2013-11-03 07:51:39 -05:00
|
|
|
*
|
2015-03-26 06:44:34 -04:00
|
|
|
* @license AGPL-3.0
|
2013-11-03 07:51:39 -05:00
|
|
|
*
|
2015-03-26 06:44:34 -04:00
|
|
|
* 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.
|
2013-11-03 07:51:39 -05:00
|
|
|
*
|
2015-03-26 06:44:34 -04:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2013-11-03 07:51:39 -05:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 06:44:34 -04:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU Affero General Public License for more details.
|
2013-11-03 07:51:39 -05:00
|
|
|
*
|
2015-03-26 06:44:34 -04:00
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
2019-12-03 13:57:53 -05:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2013-11-03 07:51:39 -05:00
|
|
|
*
|
|
|
|
|
*/
|
2015-02-26 05:37:37 -05:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Public interface of ownCloud for apps to use.
|
|
|
|
|
* User Class
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2012-08-29 02:38:33 -04:00
|
|
|
// use OCP namespace for all classes that are considered public.
|
2012-05-01 03:39:12 -04:00
|
|
|
// This means that they should be used by apps instead of the internal ownCloud classes
|
2019-11-22 14:52:10 -05:00
|
|
|
|
2012-05-01 03:39:12 -04:00
|
|
|
namespace OCP;
|
|
|
|
|
|
2012-05-19 04:36:57 -04:00
|
|
|
/**
|
2013-02-11 11:44:02 -05:00
|
|
|
* This class provides access to the user management. You can get information
|
|
|
|
|
* about the currently logged in user and the permissions for example
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 5.0.0
|
2018-01-16 04:41:55 -05:00
|
|
|
* @deprecated 13.0.0
|
2012-05-19 04:36:57 -04:00
|
|
|
*/
|
2012-05-01 03:39:12 -04:00
|
|
|
class User {
|
|
|
|
|
/**
|
2013-10-16 18:07:29 -04:00
|
|
|
* Get the user id of the user currently logged in.
|
2012-05-01 03:39:12 -04:00
|
|
|
* @return string uid or false
|
2015-04-18 19:04:59 -04:00
|
|
|
* @deprecated 8.0.0 Use \OC::$server->getUserSession()->getUser()->getUID()
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 5.0.0
|
2012-05-01 03:39:12 -04:00
|
|
|
*/
|
2012-09-07 09:22:01 -04:00
|
|
|
public static function getUser() {
|
2013-07-19 11:32:31 -04:00
|
|
|
return \OC_User::getUser();
|
2012-05-01 03:39:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2013-10-16 18:07:29 -04:00
|
|
|
* Check if the user is logged in
|
|
|
|
|
* @return boolean
|
2015-04-16 11:00:08 -04:00
|
|
|
* @since 5.0.0
|
2018-01-16 04:41:55 -05:00
|
|
|
* @deprecated 13.0.0 Use annotation based ACLs from the AppFramework instead
|
2012-05-01 03:39:12 -04:00
|
|
|
*/
|
2012-09-07 09:22:01 -04:00
|
|
|
public static function isLoggedIn() {
|
2017-03-02 10:52:05 -05:00
|
|
|
return \OC::$server->getUserSession()->isLoggedIn();
|
2012-05-01 03:39:12 -04:00
|
|
|
}
|
|
|
|
|
|
2012-09-08 10:17:01 -04:00
|
|
|
/**
|
2015-04-16 11:00:08 -04:00
|
|
|
* Check if the user is a admin, redirects to home if not
|
|
|
|
|
* @since 5.0.0
|
2018-01-16 04:41:55 -05:00
|
|
|
* @deprecated 13.0.0 Use annotation based ACLs from the AppFramework instead
|
2015-04-16 11:00:08 -04:00
|
|
|
*/
|
2012-09-08 10:17:01 -04:00
|
|
|
public static function checkAdminUser() {
|
|
|
|
|
\OC_Util::checkAdminUser();
|
|
|
|
|
}
|
2012-05-06 16:02:16 -04:00
|
|
|
|
2012-09-08 10:17:01 -04:00
|
|
|
/**
|
2015-04-16 11:00:08 -04:00
|
|
|
* Check if the user is logged in, redirects to home if not. With
|
|
|
|
|
* redirect URL parameter to the request URI.
|
|
|
|
|
* @since 5.0.0
|
2018-01-16 04:41:55 -05:00
|
|
|
* @deprecated 13.0.0 Use annotation based ACLs from the AppFramework instead
|
2015-04-16 11:00:08 -04:00
|
|
|
*/
|
2012-09-08 10:17:01 -04:00
|
|
|
public static function checkLoggedIn() {
|
|
|
|
|
\OC_Util::checkLoggedIn();
|
|
|
|
|
}
|
2012-05-01 15:07:08 -04:00
|
|
|
}
|