Fix strings and oembed

This commit is contained in:
dangered wolf 2022-07-14 20:48:04 -04:00
parent 41f770e09a
commit a225868992
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
3 changed files with 10 additions and 6 deletions

View file

@ -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);
});

View file

@ -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';

View file

@ -17,4 +17,6 @@ String.prototype.format = function (options: any) {
});
};
export const Strings = {};
export const Strings = {
TWITTER: 'Twitter'
};