mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Apply shorter cache TTL for ongoing polls
This commit is contained in:
parent
ad8d1081c5
commit
c36432152b
3 changed files with 16 additions and 2 deletions
|
@ -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 {
|
||||
|
|
|
@ -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
|
||||
};
|
||||
};
|
||||
|
|
1
src/types/types.d.ts
vendored
1
src/types/types.d.ts
vendored
|
@ -11,6 +11,7 @@ type InputFlags = {
|
|||
interface StatusResponse {
|
||||
text?: string;
|
||||
response?: Response;
|
||||
cacheControl?: string | null;
|
||||
}
|
||||
|
||||
interface Request {
|
||||
|
|
Loading…
Add table
Reference in a new issue