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
|
|
|
}
|
|
|
|
|
2012-05-04 13:13:07 +04:00
|
|
|
/**
|
2013-10-17 02:07:29 +04:00
|
|
|
* Get a list of all users
|
2014-05-12 00:51:30 +04:00
|
|
|
* @param string $search search pattern
|
|
|
|
* @param int|null $limit
|
|
|
|
* @param int|null $offset
|
2014-05-11 21:13:51 +04:00
|
|
|
* @return array an array of all uids
|
2015-04-19 01:20:09 +03:00
|
|
|
* @deprecated 8.1.0 use method search() of \OCP\IUserManager - \OC::$server->getUserManager()
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 5.0.0
|
2012-05-04 13:13:07 +04:00
|
|
|
*/
|
2013-10-17 02:07:29 +04:00
|
|
|
public static function getUsers( $search = '', $limit = null, $offset = null ) {
|
|
|
|
return \OC_User::getUsers( $search, $limit, $offset );
|
2012-05-04 13:13:07 +04:00
|
|
|
}
|
2013-02-22 20:21:57 +04:00
|
|
|
|
|
|
|
/**
|
2013-10-17 02:07:29 +04:00
|
|
|
* Get the user display name of the user currently logged in.
|
2014-05-12 00:51:30 +04:00
|
|
|
* @param string|null $user user id or null for current user
|
2013-02-22 20:21:57 +04:00
|
|
|
* @return string display name
|
2015-04-19 01:20:09 +03:00
|
|
|
* @deprecated 8.1.0 fetch \OCP\IUser (has getDisplayName()) by using method
|
|
|
|
* get() of \OCP\IUserManager - \OC::$server->getUserManager()
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 5.0.0
|
2013-02-22 20:21:57 +04:00
|
|
|
*/
|
2013-10-17 02:07:29 +04:00
|
|
|
public static function getDisplayName( $user = null ) {
|
|
|
|
return \OC_User::getDisplayName( $user );
|
2013-01-24 16:07:59 +04:00
|
|
|
}
|
2013-02-22 20:21:57 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a list of all display names and user ids.
|
2014-05-12 00:51:30 +04:00
|
|
|
* @param string $search search pattern
|
|
|
|
* @param int|null $limit
|
|
|
|
* @param int|null $offset
|
2014-05-11 21:13:51 +04:00
|
|
|
* @return array an array of all display names (value) and the correspondig uids (key)
|
2015-04-19 01:20:09 +03:00
|
|
|
* @deprecated 8.1.0 use method searchDisplayName() of \OCP\IUserManager - \OC::$server->getUserManager()
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 5.0.0
|
2017-07-19 19:46:43 +03:00
|
|
|
* @suppress PhanDeprecatedFunction
|
2013-02-22 20:21:57 +04:00
|
|
|
*/
|
2013-10-17 02:07:29 +04:00
|
|
|
public static function getDisplayNames( $search = '', $limit = null, $offset = null ) {
|
|
|
|
return \OC_User::getDisplayNames( $search, $limit, $offset );
|
2013-01-25 14:05:00 +04:00
|
|
|
}
|
2013-02-22 20:21:57 +04:00
|
|
|
|
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-05-01 23:07:08 +04:00
|
|
|
/**
|
2013-10-17 02:07:29 +04:00
|
|
|
* Check if a user exists
|
2012-05-01 23:07:08 +04:00
|
|
|
* @param string $uid the username
|
2013-01-14 23:30:39 +04:00
|
|
|
* @param string $excludingBackend (default none)
|
2012-05-01 23:07:08 +04:00
|
|
|
* @return boolean
|
2015-04-19 01:20:09 +03:00
|
|
|
* @deprecated 8.1.0 use method userExists() of \OCP\IUserManager - \OC::$server->getUserManager()
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 5.0.0
|
2012-05-01 23:07:08 +04:00
|
|
|
*/
|
2017-07-19 19:30:33 +03:00
|
|
|
public static function userExists($uid, $excludingBackend = null) {
|
|
|
|
return \OC_User::userExists($uid);
|
2012-05-01 23:07:08 +04:00
|
|
|
}
|
|
|
|
/**
|
2013-10-17 02:07:29 +04:00
|
|
|
* Logs the user out including all the session data
|
2012-05-01 23:07:08 +04:00
|
|
|
* Logout, destroys session
|
2015-04-19 02:04:59 +03:00
|
|
|
* @deprecated 8.0.0 Use \OC::$server->getUserSession()->logout();
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 5.0.0
|
2012-05-01 23:07:08 +04:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function logout() {
|
2016-04-18 13:14:07 +03:00
|
|
|
\OC::$server->getUserSession()->logout();
|
2012-05-01 23:07:08 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-10-17 02:07:29 +04:00
|
|
|
* Check if the password is correct
|
2014-02-08 14:47:55 +04:00
|
|
|
* @param string $uid The username
|
|
|
|
* @param string $password The password
|
2014-02-06 19:30:58 +04:00
|
|
|
* @return string|false username on success, false otherwise
|
2012-05-01 23:07:08 +04:00
|
|
|
*
|
|
|
|
* Check if the password is correct without logging in the user
|
2015-04-19 02:04:59 +03:00
|
|
|
* @deprecated 8.0.0 Use \OC::$server->getUserManager()->checkPassword();
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 5.0.0
|
2012-05-01 23:07:08 +04:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function checkPassword( $uid, $password ) {
|
2013-07-19 19:32:31 +04:00
|
|
|
return \OC_User::checkPassword( $uid, $password );
|
2012-05-01 23:07:08 +04:00
|
|
|
}
|
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
|
|
|
}
|