2014-07-09 17:32:33 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
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-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
|
|
|
* @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/>
|
|
|
|
*
|
2014-07-09 17:32:33 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2014-07-09 17:32:33 +04:00
|
|
|
namespace OCP;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class Manager
|
|
|
|
*
|
|
|
|
* Hooks available in scope \OC\User:
|
|
|
|
* - preSetPassword(\OC\User\User $user, string $password, string $recoverPassword)
|
|
|
|
* - postSetPassword(\OC\User\User $user, string $password, string $recoverPassword)
|
|
|
|
* - preDelete(\OC\User\User $user)
|
|
|
|
* - postDelete(\OC\User\User $user)
|
|
|
|
* - preCreateUser(string $uid, string $password)
|
|
|
|
* - postCreateUser(\OC\User\User $user, string $password)
|
|
|
|
*
|
|
|
|
* @package OC\User
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.0.0
|
2014-07-09 17:32:33 +04:00
|
|
|
*/
|
|
|
|
interface IUserManager {
|
|
|
|
/**
|
|
|
|
* register a user backend
|
|
|
|
*
|
|
|
|
* @param \OCP\UserInterface $backend
|
2015-04-19 01:20:09 +03:00
|
|
|
* @since 8.0.0
|
2014-07-09 17:32:33 +04:00
|
|
|
*/
|
|
|
|
public function registerBackend($backend);
|
|
|
|
|
2014-12-09 20:36:40 +03:00
|
|
|
/**
|
|
|
|
* Get the active backends
|
2014-12-11 14:29:58 +03:00
|
|
|
* @return \OCP\UserInterface[]
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.0.0
|
2014-12-09 20:36:40 +03:00
|
|
|
*/
|
|
|
|
public function getBackends();
|
|
|
|
|
2014-07-09 17:32:33 +04:00
|
|
|
/**
|
|
|
|
* remove a user backend
|
|
|
|
*
|
|
|
|
* @param \OCP\UserInterface $backend
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.0.0
|
2014-07-09 17:32:33 +04:00
|
|
|
*/
|
|
|
|
public function removeBackend($backend);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* remove all user backends
|
2015-06-19 11:51:36 +03:00
|
|
|
* @since 8.0.0
|
2014-07-09 17:32:33 +04:00
|
|
|
*/
|
|
|
|
public function clearBackends() ;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get a user by user id
|
|
|
|
*
|
|
|
|
* @param string $uid
|
2015-03-13 15:19:29 +03:00
|
|
|
* @return \OCP\IUser|null Either the user or null if the specified user does not exist
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.0.0
|
2014-07-09 17:32:33 +04:00
|
|
|
*/
|
|
|
|
public function get($uid);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* check if a user exists
|
|
|
|
*
|
|
|
|
* @param string $uid
|
|
|
|
* @return bool
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.0.0
|
2014-07-09 17:32:33 +04:00
|
|
|
*/
|
|
|
|
public function userExists($uid);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the password is valid for the user
|
|
|
|
*
|
2016-04-05 11:26:04 +03:00
|
|
|
* @param string $loginName
|
2014-07-09 17:32:33 +04:00
|
|
|
* @param string $password
|
|
|
|
* @return mixed the User object on success, false otherwise
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.0.0
|
2014-07-09 17:32:33 +04:00
|
|
|
*/
|
2016-04-05 11:26:04 +03:00
|
|
|
public function checkPassword($loginName, $password);
|
2014-07-09 17:32:33 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* search by user id
|
|
|
|
*
|
|
|
|
* @param string $pattern
|
|
|
|
* @param int $limit
|
|
|
|
* @param int $offset
|
|
|
|
* @return \OCP\IUser[]
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.0.0
|
2014-07-09 17:32:33 +04:00
|
|
|
*/
|
|
|
|
public function search($pattern, $limit = null, $offset = null);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* search by displayName
|
|
|
|
*
|
|
|
|
* @param string $pattern
|
|
|
|
* @param int $limit
|
|
|
|
* @param int $offset
|
|
|
|
* @return \OCP\IUser[]
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.0.0
|
2014-07-09 17:32:33 +04:00
|
|
|
*/
|
|
|
|
public function searchDisplayName($pattern, $limit = null, $offset = null);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $uid
|
|
|
|
* @param string $password
|
2017-04-27 09:56:51 +03:00
|
|
|
* @throws \InvalidArgumentException
|
2014-07-09 17:32:33 +04:00
|
|
|
* @return bool|\OCP\IUser the created user of false
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.0.0
|
2014-07-09 17:32:33 +04:00
|
|
|
*/
|
|
|
|
public function createUser($uid, $password);
|
|
|
|
|
2017-04-26 16:07:11 +03:00
|
|
|
/**
|
|
|
|
* @param string $uid
|
|
|
|
* @param string $password
|
|
|
|
* @param UserInterface $backend
|
|
|
|
* @return IUser|null
|
2017-04-27 09:56:51 +03:00
|
|
|
* @throws \InvalidArgumentException
|
2017-04-26 16:07:11 +03:00
|
|
|
* @since 12.0.0
|
|
|
|
*/
|
|
|
|
public function createUserFromBackend($uid, $password, UserInterface $backend);
|
|
|
|
|
2014-07-09 17:32:33 +04:00
|
|
|
/**
|
|
|
|
* returns how many users per backend exist (if supported by backend)
|
|
|
|
*
|
|
|
|
* @return array an array of backend class as key and count number as value
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.0.0
|
2014-07-09 17:32:33 +04:00
|
|
|
*/
|
|
|
|
public function countUsers();
|
2015-12-01 14:48:23 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param \Closure $callback
|
2016-04-05 11:26:04 +03:00
|
|
|
* @param string $search
|
2015-12-01 14:48:23 +03:00
|
|
|
* @since 9.0.0
|
|
|
|
*/
|
2016-10-28 10:07:40 +03:00
|
|
|
public function callForAllUsers(\Closure $callback, $search = '');
|
2016-05-02 15:19:10 +03:00
|
|
|
|
2017-04-26 13:37:48 +03:00
|
|
|
/**
|
|
|
|
* returns how many users have logged in once
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
* @since 11.0.0
|
|
|
|
*/
|
|
|
|
public function countDisabledUsers();
|
|
|
|
|
2016-10-19 11:03:29 +03:00
|
|
|
/**
|
|
|
|
* returns how many users have logged in once
|
|
|
|
*
|
|
|
|
* @return int
|
2016-11-15 20:51:52 +03:00
|
|
|
* @since 11.0.0
|
2016-10-19 11:03:29 +03:00
|
|
|
*/
|
|
|
|
public function countSeenUsers();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param \Closure $callback
|
2016-11-15 20:51:52 +03:00
|
|
|
* @since 11.0.0
|
2016-10-19 11:03:29 +03:00
|
|
|
*/
|
2016-10-28 10:07:40 +03:00
|
|
|
public function callForSeenUsers(\Closure $callback);
|
2016-10-19 11:03:29 +03:00
|
|
|
|
2016-05-02 15:19:10 +03:00
|
|
|
/**
|
|
|
|
* @param string $email
|
|
|
|
* @return IUser[]
|
|
|
|
* @since 9.1.0
|
|
|
|
*/
|
|
|
|
public function getByEmail($email);
|
2014-07-09 17:32:33 +04:00
|
|
|
}
|