IV fixes & archive improvements

This commit is contained in:
dangered wolf 2023-08-22 00:36:10 -04:00
parent df35ec14dd
commit d1816545af
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
4 changed files with 35 additions and 10 deletions

View file

@ -48,6 +48,11 @@ export const handleStatus = async (
tweet.translation ||
flags?.forceInstantView);
/* Force enable IV for archivers */
if (flags?.archive) {
useIV = true;
}
let ivbody = '';
/* Catch this request if it's an API response */
@ -136,7 +141,11 @@ export const handleStatus = async (
if (useIV) {
try {
const instructions = renderInstantView({ tweet: tweet, text: newText });
const instructions = renderInstantView({
tweet: tweet,
text: newText,
flags: flags
});
headers.push(...instructions.addHeaders);
if (instructions.authorText) {
authorText = instructions.authorText;

View file

@ -130,7 +130,7 @@ const generateTweetFooter = (tweet: APITweet, isQuote = false): string => {
<h3>About author</h3>
${
!isQuote
? `<table>
? `
<img src="${author.avatar_url?.replace('_200x200', '_400x400')}" alt="${
author.name
}'s profile picture" />
@ -144,8 +144,7 @@ const generateTweetFooter = (tweet: APITweet, isQuote = false): string => {
}${''}${author.joined ? `📆 ${formatDate(new Date(author.joined))}` : ''}</p>
<p>${truncateSocialCount(author.following)} <b>Following</b>
${truncateSocialCount(author.followers)} <b>Followers</b>
${truncateSocialCount(author.tweets)} <b>Posts</b></p>
</table>`
${truncateSocialCount(author.tweets)} <b>Posts</b></p>`
: ''
}`;
};
@ -182,7 +181,7 @@ const generateTweet = (tweet: APITweet, isQuote = false): string => {
export const renderInstantView = (properties: RenderProperties): ResponseInstructions => {
console.log('Generating Instant View...');
const { tweet } = properties;
const { tweet, flags } = properties;
const instructions: ResponseInstructions = { addHeaders: [] };
/* Use ISO date for Medium template */
const postDate = new Date(tweet.created_at).toISOString();
@ -194,16 +193,21 @@ export const renderInstantView = (properties: RenderProperties): ResponseInstruc
contact me https://t.me/dangeredwolf */
instructions.addHeaders = [
`<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 = `
<section class="section-backgroundImage">
<figure class="graf--layoutFillWidth"></figure>
</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="${
tweet.url
}">View original post</a>
<section class="section--first">${
flags?.archive
? `${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>
<article>
<h1>${tweet.author.name} (@${tweet.author.screen_name})</h1>

View file

@ -22,6 +22,16 @@ const statusRequest = async (
// eslint-disable-next-line sonarjs/no-duplicate-string
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
tools. It's pretty all-encompassing. Note that Firefox/92 is in here because
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,
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),
the tweet is prefixed with /dl/ or /dir/ (for TwitFix interop), or the

View file

@ -9,6 +9,7 @@ type InputFlags = {
textOnly?: boolean;
isXDomain?: boolean;
forceInstantView?: boolean;
archive?: boolean;
};
interface StatusResponse {
@ -33,6 +34,7 @@ interface RenderProperties {
isOverrideMedia?: boolean;
userAgent?: string;
text?: string;
flags?: InputFlags;
}
interface Request {