nextcloud/lib/public/User.php

86 lines
2.5 KiB
PHP
Raw Normal View History

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>
* @author Georg Ehrke <oc.list@georgehrke.com>
2015-03-26 06:44:34 -04:00
* @author Morris Jobke <hey@morrisjobke.de>
* @author Roeland Jago Douma <roeland@famdouma.nl>
* @author Sebastian Wessalowski <sebastian@wessalowski.org>
2015-03-26 06:44:34 -04:00
* @author Thomas Müller <thomas.mueller@tmit.eu>
*
2015-03-26 06:44:34 -04:00
* @license AGPL-3.0
*
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.
*
2015-03-26 06:44:34 -04:00
* This program is distributed in the hope that it will be useful,
* 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.
*
2015-03-26 06:44:34 -04: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/>
*
*/
/**
* 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
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
* @since 5.0.0
* @deprecated 13.0.0
2012-05-19 04:36:57 -04:00
*/
2012-05-01 03:39:12 -04:00
class User {
/**
* 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()
* @since 5.0.0
2012-05-01 03:39:12 -04:00
*/
2012-09-07 09:22:01 -04:00
public static function getUser() {
return \OC_User::getUser();
2012-05-01 03:39:12 -04:00
}
/**
* Check if the user is logged in
* @return boolean
* @since 5.0.0
* @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() {
return \OC::$server->getUserSession()->isLoggedIn();
2012-05-01 03:39:12 -04:00
}
2012-09-08 10:17:01 -04:00
/**
* Check if the user is a admin, redirects to home if not
* @since 5.0.0
* @deprecated 13.0.0 Use annotation based ACLs from the AppFramework instead
*/
2012-09-08 10:17:01 -04:00
public static function checkAdminUser() {
\OC_Util::checkAdminUser();
}
2012-09-08 10:17:01 -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
* @deprecated 13.0.0 Use annotation based ACLs from the AppFramework instead
*/
2012-09-08 10:17:01 -04:00
public static function checkLoggedIn() {
\OC_Util::checkLoggedIn();
}
2012-05-01 15:07:08 -04:00
}