Add passthrough for Twitter profiles

This commit is contained in:
dangered wolf 2022-07-14 20:19:28 -04:00
parent cd9086f63a
commit bdd4f0a814
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 14 additions and 1 deletions

View file

@ -26,7 +26,6 @@ Licensed under the permissive MIT license. Feel free to send a pull request!
### Things to tackle in the future
- Embed profiles! (and maybe more from Twitter?)
- Combining multiple images together (would be outside CF Worker)
- Caching responses (I haven't done this yet as this is still being actively worked on!)
- Caching guest token (So we don't have to bother Twitter for one on every request)

View file

@ -38,12 +38,26 @@ const statusRequest = async (request: any) => {
}
};
// TODO: Create richer embeds for profiles
const profileRequest = async (request: any) => {
const { handle } = request.params;
const url = new URL(request.url);
if (handle.match(/[a-z0-9_]{1,15}/gi) !== handle) {
return Response.redirect(Constants.REDIRECT_URL, 302);
} else {
return Response.redirect(`${Constants.TWITTER_ROOT}${url.pathname}`, 302);
}
};
router.get('/:handle/status/:id', statusRequest);
router.get('/:handle/status/:id/photo/:mediaNumber', statusRequest);
router.get('/:handle/status/:id/video/:mediaNumber', statusRequest);
router.get('/:handle/statuses/:id', statusRequest);
router.get('/:handle/statuses/:id/photo/:mediaNumber', statusRequest);
router.get('/:handle/statuses/:id/video/:mediaNumber', statusRequest);
router.get('/:handle', profileRequest);
router.get('/:handle/', profileRequest);
router.get('/owoembed', async (request: any) => {
console.log('oembed hit!');