You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UserController.php 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  6. * @author Lukas Reschke <lukas@statuscode.ch>
  7. * @author Morris Jobke <hey@morrisjobke.de>
  8. * @author Roeland Jago Douma <roeland@famdouma.nl>
  9. *
  10. * @license AGPL-3.0
  11. *
  12. * This code is free software: you can redistribute it and/or modify
  13. * it under the terms of the GNU Affero General Public License, version 3,
  14. * as published by the Free Software Foundation.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU Affero General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU Affero General Public License, version 3,
  22. * along with this program. If not, see <http://www.gnu.org/licenses/>
  23. *
  24. */
  25. namespace OC\Core\Controller;
  26. use OCP\AppFramework\Controller;
  27. use OCP\AppFramework\Http\JSONResponse;
  28. use OCP\IRequest;
  29. use OCP\IUserManager;
  30. class UserController extends Controller {
  31. protected IUserManager $userManager;
  32. public function __construct($appName,
  33. IRequest $request,
  34. IUserManager $userManager
  35. ) {
  36. parent::__construct($appName, $request);
  37. $this->userManager = $userManager;
  38. }
  39. /**
  40. * Lookup user display names
  41. *
  42. * @NoAdminRequired
  43. *
  44. * @param array $users
  45. *
  46. * @return JSONResponse
  47. */
  48. public function getDisplayNames($users) {
  49. $result = [];
  50. foreach ($users as $user) {
  51. $userObject = $this->userManager->get($user);
  52. if (is_object($userObject)) {
  53. $result[$user] = $userObject->getDisplayName();
  54. } else {
  55. $result[$user] = $user;
  56. }
  57. }
  58. $json = [
  59. 'users' => $result,
  60. 'status' => 'success'
  61. ];
  62. return new JSONResponse($json);
  63. }
  64. }