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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. /**
  32. * @var IUserManager
  33. */
  34. protected $userManager;
  35. public function __construct($appName,
  36. IRequest $request,
  37. IUserManager $userManager
  38. ) {
  39. parent::__construct($appName, $request);
  40. $this->userManager = $userManager;
  41. }
  42. /**
  43. * Lookup user display names
  44. *
  45. * @NoAdminRequired
  46. *
  47. * @param array $users
  48. *
  49. * @return JSONResponse
  50. */
  51. public function getDisplayNames($users) {
  52. $result = [];
  53. foreach ($users as $user) {
  54. $userObject = $this->userManager->get($user);
  55. if (is_object($userObject)) {
  56. $result[$user] = $userObject->getDisplayName();
  57. } else {
  58. $result[$user] = $user;
  59. }
  60. }
  61. $json = [
  62. 'users' => $result,
  63. 'status' => 'success'
  64. ];
  65. return new JSONResponse($json);
  66. }
  67. }