Revert "Moved some headers out of fetch function"

This reverts commit a410c0c044.
This commit is contained in:
dangered wolf 2022-08-18 16:50:26 -04:00
parent a410c0c044
commit 6b4ab57f17
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -1,9 +1,11 @@
import { Constants } from './constants'; import { Constants } from './constants';
const invalidateTokenCache = (event: FetchEvent, cache: Cache) => { export const fetchUsingGuest = async (
console.log('Invalidating token cache'); status: string,
event && event.waitUntil(cache.delete(guestTokenRequestCacheDummy)); event: FetchEvent
} ): Promise<TimelineBlobPartial> => {
let apiAttempts = 0;
let newTokenGenerated = false;
const tokenHeaders: { [header: string]: string } = { const tokenHeaders: { [header: string]: string } = {
Authorization: Constants.GUEST_BEARER_TOKEN, Authorization: Constants.GUEST_BEARER_TOKEN,
@ -36,13 +38,6 @@ const guestTokenRequest = new Request(
} }
); );
export const fetchUsingGuest = async (
status: string,
event: FetchEvent
): Promise<TimelineBlobPartial> => {
let apiAttempts = 0;
let newTokenGenerated = false;
const cache = caches.default; const cache = caches.default;
while (apiAttempts < 10) { while (apiAttempts < 10) {
@ -80,7 +75,7 @@ export const fetchUsingGuest = async (
This can effectively mean virtually unlimited (read) access to Twitter's API, This can effectively mean virtually unlimited (read) access to Twitter's API,
which is very funny. */ which is very funny. */
activate = await fetch(guestTokenRequest.clone()); activate = await fetch(guestTokenRequest);
} }
/* Let's grab that guest_token so we can use it */ /* Let's grab that guest_token so we can use it */
@ -128,7 +123,7 @@ export const fetchUsingGuest = async (
/* We'll usually only hit this if we get an invalid response from Twitter. /* We'll usually only hit this if we get an invalid response from Twitter.
It's uncommon, but it happens */ It's uncommon, but it happens */
console.error('Unknown error while fetching conversation from API'); console.error('Unknown error while fetching conversation from API');
invalidateTokenCache(event, cache); event && event.waitUntil(cache.delete(guestTokenRequestCacheDummy));
newTokenGenerated = true; newTokenGenerated = true;
continue; continue;
} }
@ -140,7 +135,7 @@ export const fetchUsingGuest = async (
/* Running out of requests within our rate limit, let's purge the cache */ /* Running out of requests within our rate limit, let's purge the cache */
if (remainingRateLimit < 20) { if (remainingRateLimit < 20) {
console.log(`Purging token on this edge due to low rate limit remaining`); console.log(`Purging token on this edge due to low rate limit remaining`);
invalidateTokenCache(event, cache); event && event.waitUntil(cache.delete(guestTokenRequestCacheDummy));
} }
if ( if (