IUserManager.php 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
  6. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  7. * @author Joas Schilling <coding@schilljs.com>
  8. * @author Jörn Friedrich Dreyer <jfd@butonic.de>
  9. * @author Lukas Reschke <lukas@statuscode.ch>
  10. * @author Morris Jobke <hey@morrisjobke.de>
  11. * @author Robin Appelman <robin@icewind.nl>
  12. * @author Roeland Jago Douma <roeland@famdouma.nl>
  13. * @author Thomas Müller <thomas.mueller@tmit.eu>
  14. *
  15. * @license AGPL-3.0
  16. *
  17. * This code is free software: you can redistribute it and/or modify
  18. * it under the terms of the GNU Affero General Public License, version 3,
  19. * as published by the Free Software Foundation.
  20. *
  21. * This program is distributed in the hope that it will be useful,
  22. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  23. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  24. * GNU Affero General Public License for more details.
  25. *
  26. * You should have received a copy of the GNU Affero General Public License, version 3,
  27. * along with this program. If not, see <http://www.gnu.org/licenses/>
  28. *
  29. */
  30. namespace OCP;
  31. /**
  32. * Class Manager
  33. *
  34. * Hooks available in scope \OC\User:
  35. * - preSetPassword(\OC\User\User $user, string $password, string $recoverPassword)
  36. * - postSetPassword(\OC\User\User $user, string $password, string $recoverPassword)
  37. * - preDelete(\OC\User\User $user)
  38. * - postDelete(\OC\User\User $user)
  39. * - preCreateUser(string $uid, string $password)
  40. * - postCreateUser(\OC\User\User $user, string $password)
  41. * - assignedUserId(string $uid)
  42. * - preUnassignedUserId(string $uid)
  43. * - postUnassignedUserId(string $uid)
  44. *
  45. * @since 8.0.0
  46. */
  47. interface IUserManager {
  48. /**
  49. * register a user backend
  50. *
  51. * @param \OCP\UserInterface $backend
  52. * @since 8.0.0
  53. */
  54. public function registerBackend($backend);
  55. /**
  56. * Get the active backends
  57. * @return \OCP\UserInterface[]
  58. * @since 8.0.0
  59. */
  60. public function getBackends();
  61. /**
  62. * remove a user backend
  63. *
  64. * @param \OCP\UserInterface $backend
  65. * @since 8.0.0
  66. */
  67. public function removeBackend($backend);
  68. /**
  69. * remove all user backends
  70. * @since 8.0.0
  71. */
  72. public function clearBackends() ;
  73. /**
  74. * get a user by user id
  75. *
  76. * @param string $uid
  77. * @return \OCP\IUser|null Either the user or null if the specified user does not exist
  78. * @since 8.0.0
  79. */
  80. public function get($uid);
  81. /**
  82. * Get the display name of a user
  83. *
  84. * @param string $uid
  85. * @return string|null
  86. * @since 25.0.0
  87. */
  88. public function getDisplayName(string $uid): ?string;
  89. /**
  90. * check if a user exists
  91. *
  92. * @param string $uid
  93. * @return bool
  94. * @since 8.0.0
  95. */
  96. public function userExists($uid);
  97. /**
  98. * Check if the password is valid for the user
  99. *
  100. * @param string $loginName
  101. * @param string $password
  102. * @return IUser|false the User object on success, false otherwise
  103. * @since 8.0.0
  104. */
  105. public function checkPassword($loginName, $password);
  106. /**
  107. * search by user id
  108. *
  109. * @param string $pattern
  110. * @param int $limit
  111. * @param int $offset
  112. * @return \OCP\IUser[]
  113. * @since 8.0.0
  114. */
  115. public function search($pattern, $limit = null, $offset = null);
  116. /**
  117. * search by displayName
  118. *
  119. * @param string $pattern
  120. * @param int $limit
  121. * @param int $offset
  122. * @return \OCP\IUser[]
  123. * @since 8.0.0
  124. */
  125. public function searchDisplayName($pattern, $limit = null, $offset = null);
  126. /**
  127. * Search known users (from phonebook sync) by displayName
  128. *
  129. * @param string $searcher
  130. * @param string $pattern
  131. * @param int|null $limit
  132. * @param int|null $offset
  133. * @return IUser[]
  134. * @since 21.0.1
  135. */
  136. public function searchKnownUsersByDisplayName(string $searcher, string $pattern, ?int $limit = null, ?int $offset = null): array;
  137. /**
  138. * @param string $uid
  139. * @param string $password
  140. * @throws \InvalidArgumentException
  141. * @return false|\OCP\IUser the created user or false
  142. * @since 8.0.0
  143. */
  144. public function createUser($uid, $password);
  145. /**
  146. * @param string $uid
  147. * @param string $password
  148. * @param UserInterface $backend
  149. * @return IUser|null
  150. * @throws \InvalidArgumentException
  151. * @since 12.0.0
  152. */
  153. public function createUserFromBackend($uid, $password, UserInterface $backend);
  154. /**
  155. * Get how many users per backend exist (if supported by backend)
  156. *
  157. * @return array<string, int> an array of backend class name as key and count number as value
  158. * @since 8.0.0
  159. */
  160. public function countUsers();
  161. /**
  162. * @param \Closure $callback
  163. * @psalm-param \Closure(\OCP\IUser):void $callback
  164. * @param string $search
  165. * @since 9.0.0
  166. */
  167. public function callForAllUsers(\Closure $callback, $search = '');
  168. /**
  169. * returns how many users have logged in once
  170. *
  171. * @return int
  172. * @since 11.0.0
  173. */
  174. public function countDisabledUsers();
  175. /**
  176. * returns how many users have logged in once
  177. *
  178. * @return int
  179. * @since 11.0.0
  180. */
  181. public function countSeenUsers();
  182. /**
  183. * @param \Closure $callback
  184. * @psalm-param \Closure(\OCP\IUser):?bool $callback
  185. * @since 11.0.0
  186. */
  187. public function callForSeenUsers(\Closure $callback);
  188. /**
  189. * returns all users having the provided email set as system email address
  190. *
  191. * @param string $email
  192. * @return IUser[]
  193. * @since 9.1.0
  194. */
  195. public function getByEmail($email);
  196. }