Handle trailing slashes for API routes and such as well

This commit is contained in:
dangered wolf 2023-11-10 20:18:32 -05:00
parent 932511f769
commit 83257b4870
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 5 additions and 0 deletions

View file

@ -8,9 +8,12 @@ export const api = new Hono();
/* Current v1 API endpoints. Currently, these still go through the Twitter embed requests. API v2+ won't do this. */
api.get('/status/:id/:language?', statusRequest);
api.get('/status/:id/:language?/', statusRequest);
api.get('/:handle/status/:id/:language?', statusRequest);
api.get('/:handle/status/:id/:language?/', statusRequest);
api.get('/robots.txt', async c => c.text(Strings.ROBOTS_TXT_API));
api.get('/:handle', profileRequest);
api.get('/:handle/', profileRequest);
api.get('/', async c => c.redirect(Constants.API_DOCS_URL, 302));

View file

@ -55,6 +55,7 @@ twitter.get(
tweetRequest
);
twitter.get('/version/', versionRoute);
twitter.get('/version', versionRoute);
twitter.get('/set_base_redirect', setRedirectRequest);
twitter.get('/owoembed', oembed);
@ -64,6 +65,7 @@ twitter.get('/robots.txt', async c => c.text(Strings.ROBOTS_TXT));
twitter.get('/i/events/:id', genericTwitterRedirect);
twitter.get('/hashtag/:hashtag', genericTwitterRedirect);
twitter.get('/:handle/', _profileRequest);
twitter.get('/:handle', _profileRequest);
twitter.all('*', async c => c.redirect(Constants.REDIRECT_URL, 302));