From a22586899260ef0fb904858f6ddfc822043ef893 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Thu, 14 Jul 2022 20:48:04 -0400 Subject: [PATCH] Fix strings and oembed --- src/server.ts | 8 +++++--- src/status.ts | 4 ++-- src/strings.ts | 4 +++- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/src/server.ts b/src/server.ts index 3b2a5f6..7d58c55 100644 --- a/src/server.ts +++ b/src/server.ts @@ -1,6 +1,7 @@ import { Router } from 'itty-router'; import { Constants } from './constants'; import { handleStatus } from './status'; +import { Strings } from './strings'; const router = Router(); @@ -60,8 +61,6 @@ 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!'); @@ -79,7 +78,7 @@ router.get('/owoembed', async (request: any) => { )}/status/${encodeURIComponent(status)}`, provider_name: Constants.BRANDING_NAME, provider_url: Constants.REDIRECT_URL, - title: 'Twitter', + title: Strings.TWITTER, type: 'link', version: '1.0' }; @@ -89,6 +88,9 @@ router.get('/owoembed', async (request: any) => { }); }); +router.get('/:handle', profileRequest); +router.get('/:handle/', profileRequest); + router.all('*', async request => { return Response.redirect(Constants.REDIRECT_URL, 307); }); diff --git a/src/status.ts b/src/status.ts index 542ffd5..5091c75 100644 --- a/src/status.ts +++ b/src/status.ts @@ -20,7 +20,7 @@ export const handleStatus = async ( it in case a user appears multiple times in a thread. */ tweet.user = conversation?.globalObjects?.users?.[tweet.user_id_str] || {}; - console.log(tweet); + // console.log(tweet); /* Try to deep link to mobile apps, just like Twitter does. No idea if this actually works.*/ @@ -236,7 +236,7 @@ export const handleStatus = async ( )}" type="application/json+oembed" title="${name}">` ); - console.log(JSON.stringify(tweet)); + // console.log(JSON.stringify(tweet)); /* When dealing with a Tweet of unknown lang, fall back to en */ let lang = tweet.lang === 'unk' ? 'en' : tweet.lang || 'en'; diff --git a/src/strings.ts b/src/strings.ts index b765abe..8a2814f 100644 --- a/src/strings.ts +++ b/src/strings.ts @@ -17,4 +17,6 @@ String.prototype.format = function (options: any) { }); }; -export const Strings = {}; +export const Strings = { + TWITTER: 'Twitter' +};