aboutsummaryrefslogtreecommitdiffhomepage
path: root/routes/note.php
diff options
context:
space:
mode:
authorwinter2025-03-15 18:35:59 +0000
committerwinter2025-03-15 18:52:54 +0000
commit61b122e88cc6783b4d0cf5142a22002f8e558c60 (patch)
tree847b864a93f716157456891d4526077e5f0b93f7 /routes/note.php
parentcb904ef3fb05ab106d5e5e12f6273b8117db4216 (diff)
implement pages
Diffstat (limited to 'routes/note.php')
-rw-r--r--routes/note.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/routes/note.php b/routes/note.php
index 2612f0f..6dd0025 100644
--- a/routes/note.php
+++ b/routes/note.php
@@ -2,7 +2,6 @@
use Digitigrade\HttpResponseStatus\Forbidden;
use Digitigrade\HttpResponseStatus\NotFound;
-use Digitigrade\HttpResponseStatus\PolicyRejected;
use Digitigrade\HttpResponseStatus\TemporaryRedirect;
use Digitigrade\Model\Instance;
use Digitigrade\Model\Note;
@@ -22,7 +21,7 @@ Router::getInstance()->mount('/note/:id', function (array $args) {
}
PolicyManager::getInstance()->checkFederationOrThrow($note, $instance);
if (isset($_SERVER['HTTP_ACCEPT']) && str_contains($_SERVER['HTTP_ACCEPT'], 'text/html')) {
- throw new TemporaryRedirect('/@/' . $note->author->handle . "/note/$note->id");
+ throw new TemporaryRedirect($note->getLocalUiHref());
}
// if it's not public we need to check whether the requesting instance is allowed to see it
if ($note->privacy->scope != NotePrivacyScope::PUBLIC ) {
@@ -49,7 +48,7 @@ Router::getInstance()->mount('/@/:handle/note/:id', function (array $args) {
}
// change the handle in the url if it's wrong
if ($args['handle'] != $note->author->getFullHandle()) {
- throw new TemporaryRedirect('/@/' . $note->author->getFullHandle() . "/note/$note->id");
+ throw new TemporaryRedirect($note->getLocalUiHref());
}
render_template('thread_page', ['note' => $note]);
});