2012-05-01 11:39:12 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Björn Schießle <bjoern@schiessle.org>
|
|
|
|
* @author Frank Karlitschek <frank@karlitschek.de>
|
2017-11-06 22:15:27 +03:00
|
|
|
* @author Georg Ehrke <oc.list@georgehrke.com>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Sebastian Wessalowski <sebastian@wessalowski.org>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2013-11-03 16:51:39 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
2013-11-03 16:51:39 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03: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 16:51:39 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2013-11-03 16:51:39 +04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 13:44:34 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2013-11-03 16:51:39 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* 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/>
|
2013-11-03 16:51:39 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Public interface of ownCloud for apps to use.
|
|
|
|
* User Class
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-08-29 10:38:33 +04:00
|
|
|
// use OCP namespace for all classes that are considered public.
|
2012-05-01 11:39:12 +04:00
|
|
|
// This means that they should be used by apps instead of the internal ownCloud classes
|
|
|
|
namespace OCP;
|
|
|
|
|
2012-05-19 12:36:57 +04:00
|
|
|
/**
|
2013-02-11 20:44:02 +04: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 18:00:08 +03:00
|
|
|
* @since 5.0.0
|
2018-01-16 12:41:55 +03:00
|
|
|
* @deprecated 13.0.0
|
2012-05-19 12:36:57 +04:00
|
|
|
*/
|
2012-05-01 11:39:12 +04:00
|
|
|
class User {
|
|
|
|
/**
|
2013-10-17 02:07:29 +04:00
|
|
|
* Get the user id of the user currently logged in.
|
2012-05-01 11:39:12 +04:00
|
|
|
* @return string uid or false
|
2015-04-19 02:04:59 +03:00
|
|
|
* @deprecated 8.0.0 Use \OC::$server->getUserSession()->getUser()->getUID()
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 5.0.0
|
2012-05-01 11:39:12 +04:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function getUser() {
|
2013-07-19 19:32:31 +04:00
|
|
|
return \OC_User::getUser();
|
2012-05-01 11:39:12 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-10-17 02:07:29 +04:00
|
|
|
* Check if the user is logged in
|
|
|
|
* @return boolean
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 5.0.0
|
2018-01-16 12:41:55 +03:00
|
|
|
* @deprecated 13.0.0 Use annotation based ACLs from the AppFramework instead
|
2012-05-01 11:39:12 +04:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function isLoggedIn() {
|
2017-03-02 18:52:05 +03:00
|
|
|
return \OC::$server->getUserSession()->isLoggedIn();
|
2012-05-01 11:39:12 +04:00
|
|
|
}
|
|
|
|
|
2012-09-08 18:17:01 +04:00
|
|
|
/**
|
2015-04-16 18:00:08 +03:00
|
|
|
* Check if the user is a admin, redirects to home if not
|
|
|
|
* @since 5.0.0
|
2018-01-16 12:41:55 +03:00
|
|
|
* @deprecated 13.0.0 Use annotation based ACLs from the AppFramework instead
|
2015-04-16 18:00:08 +03:00
|
|
|
*/
|
2012-09-08 18:17:01 +04:00
|
|
|
public static function checkAdminUser() {
|
|
|
|
\OC_Util::checkAdminUser();
|
|
|
|
}
|
2012-05-07 00:02:16 +04:00
|
|
|
|
2012-09-08 18:17:01 +04:00
|
|
|
/**
|
2015-04-16 18:00:08 +03: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 12:41:55 +03:00
|
|
|
* @deprecated 13.0.0 Use annotation based ACLs from the AppFramework instead
|
2015-04-16 18:00:08 +03:00
|
|
|
*/
|
2012-09-08 18:17:01 +04:00
|
|
|
public static function checkLoggedIn() {
|
|
|
|
\OC_Util::checkLoggedIn();
|
|
|
|
}
|
2012-05-01 23:07:08 +04:00
|
|
|
}
|