actionFactory = $actionFactory; $this->urlGenerator = $urlGenerator; $this->userManager = $userManager; $this->l10n = $l10n; $this->accountService = $accountService; } /** * @param IEntry $entry */ public function process(IEntry $entry): void { try { $user = $this->getUserFromEntry($entry); $actor = $this->accountService->getActorFromUserId($user->getUID()); $action = $this->l10n->t('Follow %s on Social', [$user->getDisplayName()]); $icon = $this->urlGenerator->getAbsoluteURL( $this->urlGenerator->imagePath('social', 'social-dark.svg') ); $link = $this->urlGenerator->linkToRouteAbsolute( 'social.ActivityPub.actorAlias', ['username' => $actor->getPreferredUsername()] ); $action = $this->actionFactory->newLinkAction($icon, $action, $link, Application::APP_ID); $entry->addAction($action); } catch (Exception $e) { return; } } /** * @param IEntry $entry * * @return IUser * @throws NoUserException */ private function getUserFromEntry(IEntry $entry): IUser { $userId = $entry->getProperty('UID'); if ($userId === null) { throw new NoUserException(); } if ($entry->getProperty('isLocalSystemBook') !== true) { throw new NoUserException(); } $user = $this->userManager->get($userId); if (!$user instanceof IUser) { throw new NoUserException(); } return $user; } }