diff --git a/esbuild.config.mjs b/esbuild.config.mjs index 959ca2c..12b749e 100644 --- a/esbuild.config.mjs +++ b/esbuild.config.mjs @@ -81,7 +81,7 @@ if (process.env.SENTRY_DSN) { // https://sentry.io/orgredirect/organizations/:orgslug/settings/auth-tokens/ authToken: process.env.SENTRY_AUTH_TOKEN }) - ) + ); } await esbuild.build({ diff --git a/src/embed/status.ts b/src/embed/status.ts index 6f2a793..4205a92 100644 --- a/src/embed/status.ts +++ b/src/embed/status.ts @@ -36,7 +36,11 @@ export const handleStatus = async ( let fetchWithThreads = false; - if (c.req.header('user-agent')?.includes('Telegram') && !flags?.direct && flags.instantViewUnrollThreads) { + if ( + c.req.header('user-agent')?.includes('Telegram') && + !flags?.direct && + flags.instantViewUnrollThreads + ) { fetchWithThreads = true; } diff --git a/src/providers/twitter/conversation.ts b/src/providers/twitter/conversation.ts index 3119b44..c61cc60 100644 --- a/src/providers/twitter/conversation.ts +++ b/src/providers/twitter/conversation.ts @@ -90,17 +90,16 @@ export const fetchTweetDetail = async ( useElongator, (_conversation: unknown) => { const conversation = _conversation as TweetDetailResult; - const response = processResponse(conversation?.data?.threaded_conversation_with_injections_v2?.instructions); - const tweet = findStatusInBucket( - status, - response + const response = processResponse( + conversation?.data?.threaded_conversation_with_injections_v2?.instructions ); + const tweet = findStatusInBucket(status, response); if (tweet && isGraphQLTwitterStatus(tweet)) { return true; } console.log('invalid graphql tweet', tweet); console.log('finding status', status); - console.log('from response', JSON.stringify(response)) + console.log('from response', JSON.stringify(response)); return Array.isArray(conversation?.errors); }, @@ -268,13 +267,15 @@ const findNextStatus = (id: string, bucket: GraphQLProcessBucket): number => { }; const findPreviousStatus = (id: string, bucket: GraphQLProcessBucket): number => { - const status = bucket.allStatuses.find(status => (status.rest_id ?? status.legacy?.id_str) === id); + const status = bucket.allStatuses.find( + status => (status.rest_id ?? status.legacy?.id_str) === id + ); if (!status) { console.log('uhhh, we could not even find that tweet, dunno how that happened'); return -1; } if ((status.rest_id ?? status.legacy?.id_str) === status.legacy?.in_reply_to_status_id_str) { - console.log('Tweet does not have a parent') + console.log('Tweet does not have a parent'); return 0; } return bucket.allStatuses.findIndex( @@ -317,7 +318,7 @@ export const constructTwitterThread = async ( let response: TweetDetailResult | TweetResultsByRestIdResult | null = null; let status: APITwitterStatus; - console.log('env', c.env) + console.log('env', c.env); /* We can use TweetDetail on elongator accounts to increase per-account rate limit. We also use TweetDetail to process threads (WIP) @@ -543,11 +544,19 @@ export const constructTwitterThread = async ( author: author, code: 200 }; - - await Promise.all(threadStatuses.map(async status => { - const builtStatus = await buildAPITwitterStatus(c, status, undefined, author, false) as APITwitterStatus; - socialThread.thread?.push(builtStatus); - })); + + await Promise.all( + threadStatuses.map(async status => { + const builtStatus = (await buildAPITwitterStatus( + c, + status, + undefined, + author, + false + )) as APITwitterStatus; + socialThread.thread?.push(builtStatus); + }) + ); // Sort socialThread.thread by id converted to bigint socialThread.thread?.sort((a, b) => { diff --git a/src/providers/twitter/processor.ts b/src/providers/twitter/processor.ts index fefe4f7..05a721e 100644 --- a/src/providers/twitter/processor.ts +++ b/src/providers/twitter/processor.ts @@ -59,24 +59,24 @@ export const buildAPITwitterStatus = async ( linkFixer(status.legacy.entities?.urls, status.legacy.full_text || '') ); // if (threadAuthor && threadAuthor.id !== apiUser.id) { - apiStatus.author = { - id: apiUser.id, - name: apiUser.name, - screen_name: apiUser.screen_name, - avatar_url: apiUser.avatar_url?.replace?.('_normal', '_200x200') ?? null, - banner_url: apiUser.banner_url, - description: apiUser.description, - location: apiUser.location, - url: apiUser.url, - followers: apiUser.followers, - following: apiUser.following, - joined: apiUser.joined, - statuses: apiUser.statuses, - likes: apiUser.likes, - protected: apiUser.protected, - birthday: apiUser.birthday, - website: apiUser.website - }; + apiStatus.author = { + id: apiUser.id, + name: apiUser.name, + screen_name: apiUser.screen_name, + avatar_url: apiUser.avatar_url?.replace?.('_normal', '_200x200') ?? null, + banner_url: apiUser.banner_url, + description: apiUser.description, + location: apiUser.location, + url: apiUser.url, + followers: apiUser.followers, + following: apiUser.following, + joined: apiUser.joined, + statuses: apiUser.statuses, + likes: apiUser.likes, + protected: apiUser.protected, + birthday: apiUser.birthday, + website: apiUser.website + }; // } apiStatus.replies = status.legacy.reply_count; if (legacyAPI) { @@ -95,7 +95,7 @@ export const buildAPITwitterStatus = async ( } else { apiStatus.reposts = status.legacy.retweet_count; // if ((threadAuthor && threadAuthor.id !== apiUser.id)) { - apiStatus.author.global_screen_name = apiUser.global_screen_name; + apiStatus.author.global_screen_name = apiUser.global_screen_name; // } } apiStatus.likes = status.legacy.favorite_count; diff --git a/src/realms/twitter/routes/status.ts b/src/realms/twitter/routes/status.ts index e70b32f..dea9c21 100644 --- a/src/realms/twitter/routes/status.ts +++ b/src/realms/twitter/routes/status.ts @@ -56,7 +56,10 @@ export const statusRequest = async (c: Context) => { } else if (Constants.INSTANT_VIEW_DOMAINS.includes(url.hostname)) { console.log('Forced instant view request'); flags.forceInstantView = true; - } else if (experimentCheck(Experiment.IV_FORCE_THREAD_UNROLL, userAgent.includes('Telegram')) || Constants.INSTANT_VIEW_THREADS_DOMAINS.includes(url.hostname)) { + } else if ( + experimentCheck(Experiment.IV_FORCE_THREAD_UNROLL, userAgent.includes('Telegram')) || + Constants.INSTANT_VIEW_THREADS_DOMAINS.includes(url.hostname) + ) { console.log('Forced unroll instant view'); flags.forceInstantView = true; flags.instantViewUnrollThreads = true; diff --git a/src/render/instantview.ts b/src/render/instantview.ts index d11b8be..f2594cc 100644 --- a/src/render/instantview.ts +++ b/src/render/instantview.ts @@ -123,11 +123,22 @@ const truncateSocialCount = (count: number): string => { } }; -const generateInlineAuthorHeader = (status: APIStatus, author: APIUser, authorActionType: AuthorActionType | null): string => { - return `