HoverCardController.php 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. public function __construct(
  34. IRequest $request,
  35. private IUserSession $userSession,
  36. private Manager $manager,
  37. ) {
  38. parent::__construct('core', $request);
  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. }