HoverCardController.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * @copyright 2021 Joas Schilling <coding@schilljs.com>
  5. *
  6. * @author Joas Schilling <coding@schilljs.com>
  7. *
  8. * @license GNU AGPL version 3 or any later version
  9. *
  10. * This program is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU Affero General Public License as
  12. * published by the Free Software Foundation, either version 3 of the
  13. * License, or (at your option) any later version.
  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
  21. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. *
  23. */
  24. namespace OC\Core\Controller;
  25. use OC\Contacts\ContactsMenu\Manager;
  26. use OCP\AppFramework\Http;
  27. use OCP\AppFramework\Http\DataResponse;
  28. use OCP\Contacts\ContactsMenu\IEntry;
  29. use OCP\IRequest;
  30. use OCP\IUserSession;
  31. use OCP\Share\IShare;
  32. class HoverCardController extends \OCP\AppFramework\OCSController {
  33. private Manager $manager;
  34. private IUserSession $userSession;
  35. public function __construct(IRequest $request, IUserSession $userSession, Manager $manager) {
  36. parent::__construct('core', $request);
  37. $this->userSession = $userSession;
  38. $this->manager = $manager;
  39. }
  40. /**
  41. * @NoAdminRequired
  42. */
  43. public function getUser(string $userId): DataResponse {
  44. $contact = $this->manager->findOne($this->userSession->getUser(), IShare::TYPE_USER, $userId);
  45. if (!$contact) {
  46. return new DataResponse([], Http::STATUS_NOT_FOUND);
  47. }
  48. $data = $this->entryToArray($contact);
  49. $actions = $data['actions'];
  50. if ($data['topAction']) {
  51. array_unshift($actions, $data['topAction']);
  52. }
  53. return new DataResponse([
  54. 'userId' => $userId,
  55. 'displayName' => $contact->getFullName(),
  56. 'actions' => $actions,
  57. ]);
  58. }
  59. protected function entryToArray(IEntry $entry): array {
  60. return json_decode(json_encode($entry), true);
  61. }
  62. }