From 4ae10034db605a080d1041a5debfa2ab1ab39914 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Thu, 18 Aug 2022 00:49:57 -0400 Subject: [PATCH] switch on guest token cache (borked) --- src/api.ts | 5 +++-- src/fetch.ts | 5 ++--- src/server.ts | 3 ++- src/status.ts | 5 +++-- 4 files changed, 10 insertions(+), 8 deletions(-) diff --git a/src/api.ts b/src/api.ts index 90bb46e..5ae648e 100644 --- a/src/api.ts +++ b/src/api.ts @@ -138,9 +138,10 @@ const populateTweetProperties = async ( available for free using api.fxtwitter.com. */ export const statusAPI = async ( status: string, - language: string | undefined + language: string | undefined, + event: FetchEvent ): Promise => { - const conversation = await fetchUsingGuest(status); + const conversation = await fetchUsingGuest(status, event); const tweet = conversation?.globalObjects?.tweets?.[status] || {}; /* Fallback for if Tweet did not load */ diff --git a/src/fetch.ts b/src/fetch.ts index ef9f6c8..09786e9 100644 --- a/src/fetch.ts +++ b/src/fetch.ts @@ -1,6 +1,6 @@ import { Constants } from './constants'; -export const fetchUsingGuest = async (status: string): Promise => { +export const fetchUsingGuest = async (status: string, event: FetchEvent): Promise => { let apiAttempts = 0; let cachedTokenFailed = false; @@ -121,9 +121,8 @@ export const fetchUsingGuest = async (status: string): Promise => { console.log('Direct?', flags?.direct); - const api = await statusAPI(status, language); + const api = await statusAPI(status, language, event as FetchEvent); const tweet = api?.tweet as APITweet; /* Catch this request if it's an API response */