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

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