|NotFoundResponse * * 303: Redirected to notification * 404: Notification not found */ #[PublicPage] #[NoCSRFRequired] public function view(string $id): RedirectResponse|NotFoundResponse { $currentUser = $this->userSession->getUser(); if (!$currentUser instanceof IUser) { return new RedirectResponse( $this->urlGenerator->linkToRoute('core.login.showLoginForm', [ 'redirect_url' => $this->urlGenerator->linkToRoute( 'comments.Notifications.view', ['id' => $id] ), ]) ); } try { $comment = $this->commentsManager->get($id); if ($comment->getObjectType() !== 'files') { return new NotFoundResponse(); } $userFolder = $this->rootFolder->getUserFolder($currentUser->getUID()); $files = $userFolder->getById((int)$comment->getObjectId()); $this->markProcessed($comment, $currentUser); if (empty($files)) { return new NotFoundResponse(); } $url = $this->urlGenerator->linkToRouteAbsolute( 'files.viewcontroller.showFile', [ 'fileid' => $comment->getObjectId() ] ); return new RedirectResponse($url); } catch (\Exception $e) { return new NotFoundResponse(); } } /** * Marks the notification about a comment as processed */ protected function markProcessed(IComment $comment, IUser $currentUser): void { $notification = $this->notificationManager->createNotification(); $notification->setApp('comments') ->setObject('comment', $comment->getId()) ->setSubject('mention') ->setUser($currentUser->getUID()); $this->notificationManager->markProcessed($notification); } }