diff --git a/src/card.ts b/src/card.ts index e44d2c0..87f9550 100644 --- a/src/card.ts +++ b/src/card.ts @@ -41,8 +41,8 @@ export const renderCard = async ( let totalVotes = 0; let timeLeft = ''; - /* TODO: make poll code cleaner */ if (typeof values !== 'undefined') { + /* TODO: make poll code cleaner */ if ( typeof values.choice1_count !== 'undefined' && typeof values.choice2_count !== 'undefined' @@ -83,6 +83,7 @@ export const renderCard = async ( console.log(str); } + /* Oh good, a non-Twitter video URL! This enables YouTube embeds*/ } else if (typeof values.player_url !== 'undefined') { headers.push( ``, @@ -102,7 +103,8 @@ export const renderCard = async ( values.player_height?.string_value || '720' }">` ); - + + /* A control sequence I made up to tell status.ts that external media is being embedded */ str = 'EMBED_CARD'; } } diff --git a/src/html.ts b/src/html.ts deleted file mode 100644 index b27236d..0000000 --- a/src/html.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { Strings } from './strings'; - -export const Html = { - BASE_HTML: ` - - -{headers}` -}; diff --git a/src/server.ts b/src/server.ts index 7d58c55..7d5eb74 100644 --- a/src/server.ts +++ b/src/server.ts @@ -55,6 +55,7 @@ const profileRequest = async (request: any, _event: FetchEvent) => { } }; +/* Handlers for Twitter statuses */ router.get('/:handle/status/:id', statusRequest); router.get('/:handle/status/:id/photo/:mediaNumber', statusRequest); router.get('/:handle/status/:id/video/:mediaNumber', statusRequest); diff --git a/src/status.ts b/src/status.ts index eb21157..435d3bf 100644 --- a/src/status.ts +++ b/src/status.ts @@ -1,11 +1,11 @@ import { Constants } from './constants'; import { fetchUsingGuest } from './fetch'; -import { Html } from './html'; import { linkFixer } from './linkFixer'; import { colorFromPalette } from './palette'; import { renderCard } from './card'; import { handleQuote } from './quote'; import { sanitizeText } from './utils'; +import { Strings } from './strings'; export const handleStatus = async ( status: string, @@ -39,7 +39,7 @@ export const handleStatus = async ( `` ); - return Html.BASE_HTML.format({ + return Strings.BASE_HTML.format({ lang: '', headers: headers.join(''), tweet: JSON.stringify(tweet) @@ -247,7 +247,7 @@ export const handleStatus = async ( /* When dealing with a Tweet of unknown lang, fall back to en */ let lang = tweet.lang === 'unk' ? 'en' : tweet.lang || 'en'; - return Html.BASE_HTML.format({ + return Strings.BASE_HTML.format({ lang: `lang="${lang}"`, headers: headers.join('') }); diff --git a/src/strings.ts b/src/strings.ts index 8a2814f..0ebfc45 100644 --- a/src/strings.ts +++ b/src/strings.ts @@ -17,6 +17,22 @@ String.prototype.format = function (options: any) { }); }; +/* Maybe we should, but pxTwitter doesn't use strings as much as pronouns bot did */ export const Strings = { - TWITTER: 'Twitter' + TWITTER: 'Twitter', + BASE_HTML: ` + + +{headers}` }; diff --git a/src/tweetTypes.ts b/src/tweetTypes.ts index 15f4740..6b56150 100644 --- a/src/tweetTypes.ts +++ b/src/tweetTypes.ts @@ -1,3 +1,8 @@ +/* + Types for various objects. + Note that a lot of these are not actually complete types. Many unused values may be missing. +*/ + type TimelineBlobPartial = { globalObjects: { tweets: {