* @copyright 2018, Maxence Lange * @license GNU AGPL version 3 or any later version * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . * */ namespace OCA\Social\Controller; use daita\MySmallPhpTools\Traits\Nextcloud\TNCDataResponse; use Exception; use OCA\Social\AppInfo\Application; use OCA\Social\Exceptions\CacheActorDoesNotExistException; use OCA\Social\Model\ActivityPub\Person; use OCA\Social\Service\ActivityPub\PersonService; use OCA\Social\Service\ActorService; use OCA\Social\Service\MiscService; use OCP\AppFramework\Controller; use OCP\AppFramework\Http\NotFoundResponse; use OCP\AppFramework\Http\Response; use OCP\AppFramework\Http\Template\PublicTemplateResponse; use OCP\AppFramework\Http\TemplateResponse; use OCP\IL10N; use OCP\IRequest; class SocialPubController extends Controller { use TNCDataResponse; /** @var string */ private $userId; /** @var IL10N */ private $l10n; /** @var ActorService */ private $actorService; /** @var PersonService */ private $personService; /** @var MiscService */ private $miscService; /** * SocialPubController constructor. * * @param $userId * @param IRequest $request * @param IL10N $l10n * @param ActorService $actorService * @param PersonService $personService * @param MiscService $miscService */ public function __construct( $userId, IRequest $request, IL10N $l10n, ActorService $actorService, PersonService $personService, MiscService $miscService ) { parent::__construct(Application::APP_NAME, $request); $this->userId = $userId; $this->l10n = $l10n; $this->actorService = $actorService; $this->personService = $personService; $this->miscService = $miscService; } /** * return webpage content for human navigation. * Should return information about a Social account, based on username. * * @NoCSRFRequired * @PublicPage * * @param string $username * * @return Response */ public function actor(string $username): Response { try { $actor = $this->personService->getFromLocalAccount($username); $actor->setCompleteDetails(true); $logged = false; $ownAccount = false; if ($this->userId !== null) { $logged = true; $local = $this->actorService->getActorFromUserId($this->userId, true); if ($local->getId() === $actor->getId()) { $ownAccount = true; } else { $this->fillActorWithLinks($actor, $local); } } $data = [ 'serverData' => [ 'public' => true, ], 'actor' => $actor, 'logged' => $logged, 'ownAccount' => $ownAccount ]; $page = new PublicTemplateResponse(Application::APP_NAME, 'main', $data); $page->setHeaderTitle($this->l10n->t('Social') . ' ' . $username); return $page; } catch (CacheActorDoesNotExistException $e) { return new NotFoundResponse(); } catch (Exception $e) { return $this->fail($e); } } /** * return webpage content for human navigation. * Should return followers of a Social account, based on username. * * @NoCSRFRequired * @PublicPage * * @param string $username * * @return TemplateResponse */ public function followers(string $username): TemplateResponse { return new TemplateResponse(Application::APP_NAME, 'followers', [], 'blank'); } /** * return webpage content for human navigation. * Should return following of a Social account, based on username. * * @NoCSRFRequired * @PublicPage * * @param string $username * * @return TemplateResponse */ public function following(string $username): TemplateResponse { return new TemplateResponse(Application::APP_NAME, 'following', [], 'blank'); } /** * Should return post, do nothing. * * @NoCSRFRequired * @PublicPage * * @param string $username * @param $postId * * @return Response */ public function displayPost(string $username, int $postId) { return $this->success([$username, $postId]); } /** * @param Person $actor * @param Person $local */ private function fillActorWithLinks(Person $actor, Person $local) { $links = $this->actorService->getLinksBetweenPersons($local, $actor); $actor->addDetailArray('link', $links); } }