mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
IV fixes & archive improvements
This commit is contained in:
parent
df35ec14dd
commit
d1816545af
4 changed files with 35 additions and 10 deletions
|
@ -48,6 +48,11 @@ export const handleStatus = async (
|
||||||
tweet.translation ||
|
tweet.translation ||
|
||||||
flags?.forceInstantView);
|
flags?.forceInstantView);
|
||||||
|
|
||||||
|
/* Force enable IV for archivers */
|
||||||
|
if (flags?.archive) {
|
||||||
|
useIV = true;
|
||||||
|
}
|
||||||
|
|
||||||
let ivbody = '';
|
let ivbody = '';
|
||||||
|
|
||||||
/* Catch this request if it's an API response */
|
/* Catch this request if it's an API response */
|
||||||
|
@ -136,7 +141,11 @@ export const handleStatus = async (
|
||||||
|
|
||||||
if (useIV) {
|
if (useIV) {
|
||||||
try {
|
try {
|
||||||
const instructions = renderInstantView({ tweet: tweet, text: newText });
|
const instructions = renderInstantView({
|
||||||
|
tweet: tweet,
|
||||||
|
text: newText,
|
||||||
|
flags: flags
|
||||||
|
});
|
||||||
headers.push(...instructions.addHeaders);
|
headers.push(...instructions.addHeaders);
|
||||||
if (instructions.authorText) {
|
if (instructions.authorText) {
|
||||||
authorText = instructions.authorText;
|
authorText = instructions.authorText;
|
||||||
|
|
|
@ -130,7 +130,7 @@ const generateTweetFooter = (tweet: APITweet, isQuote = false): string => {
|
||||||
<h3>About author</h3>
|
<h3>About author</h3>
|
||||||
${
|
${
|
||||||
!isQuote
|
!isQuote
|
||||||
? `<table>
|
? `
|
||||||
<img src="${author.avatar_url?.replace('_200x200', '_400x400')}" alt="${
|
<img src="${author.avatar_url?.replace('_200x200', '_400x400')}" alt="${
|
||||||
author.name
|
author.name
|
||||||
}'s profile picture" />
|
}'s profile picture" />
|
||||||
|
@ -144,8 +144,7 @@ const generateTweetFooter = (tweet: APITweet, isQuote = false): string => {
|
||||||
}${' '}${author.joined ? `📆 ${formatDate(new Date(author.joined))}` : ''}</p>
|
}${' '}${author.joined ? `📆 ${formatDate(new Date(author.joined))}` : ''}</p>
|
||||||
<p>${truncateSocialCount(author.following)} <b>Following</b>
|
<p>${truncateSocialCount(author.following)} <b>Following</b>
|
||||||
${truncateSocialCount(author.followers)} <b>Followers</b>
|
${truncateSocialCount(author.followers)} <b>Followers</b>
|
||||||
${truncateSocialCount(author.tweets)} <b>Posts</b></p>
|
${truncateSocialCount(author.tweets)} <b>Posts</b></p>`
|
||||||
</table>`
|
|
||||||
: ''
|
: ''
|
||||||
}`;
|
}`;
|
||||||
};
|
};
|
||||||
|
@ -182,7 +181,7 @@ const generateTweet = (tweet: APITweet, isQuote = false): string => {
|
||||||
|
|
||||||
export const renderInstantView = (properties: RenderProperties): ResponseInstructions => {
|
export const renderInstantView = (properties: RenderProperties): ResponseInstructions => {
|
||||||
console.log('Generating Instant View...');
|
console.log('Generating Instant View...');
|
||||||
const { tweet } = properties;
|
const { tweet, flags } = properties;
|
||||||
const instructions: ResponseInstructions = { addHeaders: [] };
|
const instructions: ResponseInstructions = { addHeaders: [] };
|
||||||
/* Use ISO date for Medium template */
|
/* Use ISO date for Medium template */
|
||||||
const postDate = new Date(tweet.created_at).toISOString();
|
const postDate = new Date(tweet.created_at).toISOString();
|
||||||
|
@ -194,16 +193,21 @@ export const renderInstantView = (properties: RenderProperties): ResponseInstruc
|
||||||
contact me https://t.me/dangeredwolf */
|
contact me https://t.me/dangeredwolf */
|
||||||
instructions.addHeaders = [
|
instructions.addHeaders = [
|
||||||
`<meta property="al:android:app_name" content="Medium"/>`,
|
`<meta property="al:android:app_name" content="Medium"/>`,
|
||||||
`<meta property="article:published_time" content="${postDate}"/>`
|
`<meta property="article:published_time" content="${postDate}"/>`,
|
||||||
|
flags?.archive
|
||||||
|
? `<style>img,video{width:100%;max-width:500px}html{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif}</style>`
|
||||||
|
: ``
|
||||||
];
|
];
|
||||||
|
|
||||||
instructions.text = `
|
instructions.text = `
|
||||||
<section class="section-backgroundImage">
|
<section class="section-backgroundImage">
|
||||||
<figure class="graf--layoutFillWidth"></figure>
|
<figure class="graf--layoutFillWidth"></figure>
|
||||||
</section>
|
</section>
|
||||||
<section class="section--first" style="font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: 64px;">${''}If you can see this, your browser is doing something weird with your user agent.<a href="${
|
<section class="section--first">${
|
||||||
tweet.url
|
flags?.archive
|
||||||
}">View original post</a>
|
? `${Constants.BRANDING_NAME} archive`
|
||||||
|
: 'If you can see this, your browser is doing something weird with your user agent.'
|
||||||
|
} <a href="${tweet.url}">View original post</a>
|
||||||
</section>
|
</section>
|
||||||
<article>
|
<article>
|
||||||
<h1>${tweet.author.name} (@${tweet.author.screen_name})</h1>
|
<h1>${tweet.author.name} (@${tweet.author.screen_name})</h1>
|
||||||
|
|
|
@ -22,6 +22,16 @@ const statusRequest = async (
|
||||||
// eslint-disable-next-line sonarjs/no-duplicate-string
|
// eslint-disable-next-line sonarjs/no-duplicate-string
|
||||||
const userAgent = request.headers.get('User-Agent') || '';
|
const userAgent = request.headers.get('User-Agent') || '';
|
||||||
|
|
||||||
|
/* Let's return our HTML version for wayback machine (we can add other archivers too in future) */
|
||||||
|
if (
|
||||||
|
['archive.org', 'Wayback Machine'].some(service =>
|
||||||
|
request.headers.get('Via').includes(service)
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
console.log('Request from archive.org');
|
||||||
|
flags.archive = true;
|
||||||
|
}
|
||||||
|
|
||||||
/* User Agent matching for embed generators, bots, crawlers, and other automated
|
/* User Agent matching for embed generators, bots, crawlers, and other automated
|
||||||
tools. It's pretty all-encompassing. Note that Firefox/92 is in here because
|
tools. It's pretty all-encompassing. Note that Firefox/92 is in here because
|
||||||
Discord sometimes uses the following UA:
|
Discord sometimes uses the following UA:
|
||||||
|
@ -33,7 +43,7 @@ const statusRequest = async (
|
||||||
|
|
||||||
On the very rare off chance someone happens to be using specifically Firefox 92,
|
On the very rare off chance someone happens to be using specifically Firefox 92,
|
||||||
the http-equiv="refresh" meta tag will ensure an actual human is sent to the destination. */
|
the http-equiv="refresh" meta tag will ensure an actual human is sent to the destination. */
|
||||||
const isBotUA = userAgent.match(Constants.BOT_UA_REGEX) !== null;
|
const isBotUA = userAgent.match(Constants.BOT_UA_REGEX) !== null || flags?.archive;
|
||||||
|
|
||||||
/* Check if domain is a direct media domain (i.e. d.fxtwitter.com),
|
/* Check if domain is a direct media domain (i.e. d.fxtwitter.com),
|
||||||
the tweet is prefixed with /dl/ or /dir/ (for TwitFix interop), or the
|
the tweet is prefixed with /dl/ or /dir/ (for TwitFix interop), or the
|
||||||
|
|
2
src/types/types.d.ts
vendored
2
src/types/types.d.ts
vendored
|
@ -9,6 +9,7 @@ type InputFlags = {
|
||||||
textOnly?: boolean;
|
textOnly?: boolean;
|
||||||
isXDomain?: boolean;
|
isXDomain?: boolean;
|
||||||
forceInstantView?: boolean;
|
forceInstantView?: boolean;
|
||||||
|
archive?: boolean;
|
||||||
};
|
};
|
||||||
|
|
||||||
interface StatusResponse {
|
interface StatusResponse {
|
||||||
|
@ -33,6 +34,7 @@ interface RenderProperties {
|
||||||
isOverrideMedia?: boolean;
|
isOverrideMedia?: boolean;
|
||||||
userAgent?: string;
|
userAgent?: string;
|
||||||
text?: string;
|
text?: string;
|
||||||
|
flags?: InputFlags;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Request {
|
interface Request {
|
||||||
|
|
Loading…
Add table
Reference in a new issue