Apply shorter cache TTL for ongoing polls

This commit is contained in:
dangered wolf 2022-11-17 01:37:57 -05:00
parent ad8d1081c5
commit c36432152b
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
3 changed files with 16 additions and 2 deletions

View file

@ -108,9 +108,15 @@ const statusRequest = async (
return Response.redirect(`${Constants.TWITTER_ROOT}/${handle}/status/${id}`, 302);
}
let headers = Constants.RESPONSE_HEADERS;
if (statusResponse.cacheControl) {
headers = { ...headers, 'cache-control': statusResponse.cacheControl };
}
/* Return the response containing embed information */
return new Response(statusResponse.text, {
headers: Constants.RESPONSE_HEADERS,
headers: headers,
status: 200
});
} else {

View file

@ -81,6 +81,7 @@ export const handleStatus = async (
const engagementText = authorText.replace(/ {4}/g, ' ');
let siteName = Constants.BRANDING_NAME;
let newText = tweet.text;
let cacheControl: string | null = null;
/* Base headers included in all responses */
const headers = [
@ -273,6 +274,11 @@ export const handleStatus = async (
/* Finally, add the footer of the poll with # of votes and time left */
str += `\n${poll.total_votes} votes · ${poll.time_left_en}`;
/* Check if the poll is ongoing and apply low TTL cache control */
if (poll.time_left_en !== 'Final results') {
cacheControl = Constants.POLL_TWEET_CACHE;
}
/* And now we'll put the poll right after the Tweet text! */
newText += `\n\n${str}`;
}
@ -338,6 +344,7 @@ export const handleStatus = async (
text: Strings.BASE_HTML.format({
lang: `lang="${lang}"`,
headers: headers.join('')
})
}),
cacheControl: cacheControl
};
};

View file

@ -11,6 +11,7 @@ type InputFlags = {
interface StatusResponse {
text?: string;
response?: Response;
cacheControl?: string | null;
}
interface Request {