HoverCardController.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. /** @var Manager */
  34. private $manager;
  35. /** @var IUserSession */
  36. private $userSession;
  37. /**
  38. * @param IRequest $request
  39. * @param IUserSession $userSession
  40. * @param Manager $manager
  41. */
  42. public function __construct(IRequest $request, IUserSession $userSession, Manager $manager) {
  43. parent::__construct('core', $request);
  44. $this->userSession = $userSession;
  45. $this->manager = $manager;
  46. }
  47. /**
  48. * @NoAdminRequired
  49. *
  50. * @param string $userId
  51. * @return DataResponse
  52. */
  53. public function getUser(string $userId): DataResponse {
  54. $contact = $this->manager->findOne($this->userSession->getUser(), IShare::TYPE_USER, $userId);
  55. if (!$contact) {
  56. return new DataResponse([], Http::STATUS_NOT_FOUND);
  57. }
  58. $data = $this->entryToArray($contact);
  59. $actions = $data['actions'];
  60. if ($data['topAction']) {
  61. array_unshift($actions, $data['topAction']);
  62. }
  63. return new DataResponse([
  64. 'userId' => $userId,
  65. 'displayName' => $contact->getFullName(),
  66. 'actions' => $actions,
  67. ]);
  68. }
  69. protected function entryToArray(IEntry $entry): array {
  70. return json_decode(json_encode($entry), true);
  71. }
  72. }