mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
migrate iv impl to render call
This commit is contained in:
parent
5523970232
commit
fc4af168f6
3 changed files with 40 additions and 30 deletions
|
@ -1,4 +0,0 @@
|
||||||
function generateStatusIV() {
|
|
||||||
// TODO: implement
|
|
||||||
console.log('Generating Instant View (placeholder)...');
|
|
||||||
}
|
|
|
@ -6,6 +6,7 @@ import { getAuthorText } from '../helpers/author';
|
||||||
import { statusAPI } from '../api/status';
|
import { statusAPI } from '../api/status';
|
||||||
import { renderPhoto } from '../render/photo';
|
import { renderPhoto } from '../render/photo';
|
||||||
import { renderVideo } from '../render/video';
|
import { renderVideo } from '../render/video';
|
||||||
|
import { renderInstantView } from '../render/instantview';
|
||||||
|
|
||||||
export const returnError = (error: string): StatusResponse => {
|
export const returnError = (error: string): StatusResponse => {
|
||||||
return {
|
return {
|
||||||
|
@ -35,9 +36,9 @@ export const handleStatus = async (
|
||||||
const api = await statusAPI(status, language, event as FetchEvent, flags);
|
const api = await statusAPI(status, language, event as FetchEvent, flags);
|
||||||
const tweet = api?.tweet as APITweet;
|
const tweet = api?.tweet as APITweet;
|
||||||
const isTelegram = (userAgent || '').indexOf('Telegram') > -1;
|
const isTelegram = (userAgent || '').indexOf('Telegram') > -1;
|
||||||
const useIV = isTelegram && !tweet.possibly_sensitive && !flags?.direct && (tweet.media?.photos || tweet.media?.videos);
|
const useIV = isTelegram && tweet.is_note_tweet; //!tweet.possibly_sensitive && !flags?.direct && (tweet.media?.photos || tweet.media?.videos);
|
||||||
|
|
||||||
let ivbody = "";
|
let ivbody = '';
|
||||||
|
|
||||||
/* Catch this request if it's an API response */
|
/* Catch this request if it's an API response */
|
||||||
if (flags?.api) {
|
if (flags?.api) {
|
||||||
|
@ -129,22 +130,16 @@ export const handleStatus = async (
|
||||||
`<meta http-equiv="refresh" content="0;url=https://twitter.com/${tweet.author.screen_name}/status/${tweet.id}"/>`
|
`<meta http-equiv="refresh" content="0;url=https://twitter.com/${tweet.author.screen_name}/status/${tweet.id}"/>`
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (useIV) {
|
|
||||||
// Convert JS date to ISO date
|
|
||||||
const date = new Date(tweet.created_at).toISOString();
|
|
||||||
/* Include Instant-View related headers. This is an unfinished project. Thanks to https://nikstar.me/post/instant-view/ for the help! */
|
|
||||||
headers.push(
|
|
||||||
`<meta property="al:android:app_name" content="Medium"/>`,
|
|
||||||
`<meta property="article:published_time" content="${date}"/>` /* TODO: Replace with real date */
|
|
||||||
)
|
|
||||||
|
|
||||||
ivbody = `<section class="section-backgroundImage"><figure class="graf--layoutFillWidth"></figure></section><article><h1>${tweet.author.name} (@${tweet.author.screen_name})</h1><p>Instant View (✨ Beta)</p>
|
if (useIV) {
|
||||||
<blockquote class="twitter-tweet" data-dnt="true"><p lang="en" dir="ltr"> <a href="${tweet.url}">_</a></blockquote>
|
const instructions = renderInstantView({ tweet: tweet, text: newText });
|
||||||
</article>
|
headers.push(...instructions.addHeaders);
|
||||||
`;
|
if (instructions.authorText) {
|
||||||
|
authorText = instructions.authorText;
|
||||||
|
}
|
||||||
|
ivbody = instructions.text || '';
|
||||||
}
|
}
|
||||||
|
|
||||||
/* This Tweet has a translation attached to it, so we'll render it. */
|
/* This Tweet has a translation attached to it, so we'll render it. */
|
||||||
if (tweet.translation) {
|
if (tweet.translation) {
|
||||||
const { translation } = tweet;
|
const { translation } = tweet;
|
||||||
|
@ -292,10 +287,7 @@ export const handleStatus = async (
|
||||||
|
|
||||||
/* If we have no media to display, instead we'll display the user profile picture in the embed */
|
/* If we have no media to display, instead we'll display the user profile picture in the embed */
|
||||||
if (!tweet.media?.videos && !tweet.media?.photos && !flags?.textOnly) {
|
if (!tweet.media?.videos && !tweet.media?.photos && !flags?.textOnly) {
|
||||||
const avatar = tweet.author.avatar_url?.replace(
|
const avatar = tweet.author.avatar_url?.replace('_200x200', '_normal');
|
||||||
'_200x200',
|
|
||||||
'_normal'
|
|
||||||
)
|
|
||||||
if (!useIV) {
|
if (!useIV) {
|
||||||
headers.push(
|
headers.push(
|
||||||
/* Use a slightly higher resolution image for profile pics */
|
/* Use a slightly higher resolution image for profile pics */
|
||||||
|
@ -309,7 +301,7 @@ export const handleStatus = async (
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!flags?.isXDomain) {
|
if (!flags?.isXDomain) {
|
||||||
siteName = Strings.X_DOMAIN_NOTICE;
|
siteName = Strings.X_DOMAIN_NOTICE;
|
||||||
}
|
}
|
||||||
|
@ -326,12 +318,14 @@ export const handleStatus = async (
|
||||||
|
|
||||||
A possible explanation for this weird behavior is due to the Medium template we are forced to use because Telegram IV is not an open platform
|
A possible explanation for this weird behavior is due to the Medium template we are forced to use because Telegram IV is not an open platform
|
||||||
and we have to pretend to be Medium in order to get working IV, but haven't figured if the template is causing issues. */
|
and we have to pretend to be Medium in order to get working IV, but haven't figured if the template is causing issues. */
|
||||||
const text = useIV ? sanitizeText(newText).replace(/\n/g, '<br>') : sanitizeText(newText);
|
const text = useIV
|
||||||
|
? sanitizeText(newText).replace(/\n/g, '<br>')
|
||||||
|
: sanitizeText(newText);
|
||||||
|
|
||||||
/* Push basic headers relating to author, Tweet text, and site name */
|
/* Push basic headers relating to author, Tweet text, and site name */
|
||||||
headers.push(
|
headers.push(
|
||||||
`<meta property="og:title" content="${tweet.author.name} (@${tweet.author.screen_name})"/>`,
|
`<meta property="og:title" content="${tweet.author.name} (@${tweet.author.screen_name})"/>`,
|
||||||
`<meta property="og:description" content="${sanitizeText(newText).replace(/\n/g, '<br>')}"/>`,
|
`<meta property="og:description" content="${text}"/>`,
|
||||||
`<meta property="og:site_name" content="${siteName}"/>`
|
`<meta property="og:site_name" content="${siteName}"/>`
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -353,9 +347,9 @@ export const handleStatus = async (
|
||||||
authorText.substring(0, 200)
|
authorText.substring(0, 200)
|
||||||
)}${flags?.deprecated ? '&deprecated=true' : ''}&status=${encodeURIComponent(
|
)}${flags?.deprecated ? '&deprecated=true' : ''}&status=${encodeURIComponent(
|
||||||
status
|
status
|
||||||
)}&author=${encodeURIComponent(
|
)}&author=${encodeURIComponent(tweet.author?.screen_name || '')}&useXbranding=${
|
||||||
tweet.author?.screen_name || ''
|
flags?.isXDomain ? 'true' : 'false'
|
||||||
)}&useXbranding=${flags?.isXDomain ? 'true' : 'false'}" type="application/json+oembed" title="${tweet.author.name}">`
|
}" type="application/json+oembed" title="${tweet.author.name}">`
|
||||||
);
|
);
|
||||||
|
|
||||||
/* When dealing with a Tweet of unknown lang, fall back to en */
|
/* When dealing with a Tweet of unknown lang, fall back to en */
|
||||||
|
|
20
src/render/instantview.ts
Normal file
20
src/render/instantview.ts
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
export const renderInstantView = (properties: RenderProperties): ResponseInstructions => {
|
||||||
|
console.log('Generating Instant View (placeholder)...');
|
||||||
|
const { tweet } = properties;
|
||||||
|
const instructions: ResponseInstructions = { addHeaders: [] };
|
||||||
|
/* Use ISO date for Medium template */
|
||||||
|
const postDate = new Date(tweet.created_at).toISOString();
|
||||||
|
|
||||||
|
/* Include Instant-View related headers. This is an unfinished project. Thanks to https://nikstar.me/post/instant-view/ for the help! */
|
||||||
|
instructions.addHeaders = [
|
||||||
|
`<meta property="al:android:app_name" content="Medium"/>`,
|
||||||
|
`<meta property="article:published_time" content="${postDate}"/>`
|
||||||
|
];
|
||||||
|
|
||||||
|
instructions.text = `<section class="section-backgroundImage"><figure class="graf--layoutFillWidth"></figure></section><article><h1>${tweet.author.name} (@${tweet.author.screen_name})</h1><p>Instant View (✨ Beta)</p>
|
||||||
|
<blockquote class="twitter-tweet" data-dnt="true"><p lang="en" dir="ltr"> <a href="${tweet.url}">_</a></blockquote>
|
||||||
|
</article>
|
||||||
|
`;
|
||||||
|
|
||||||
|
return instructions;
|
||||||
|
};
|
Loading…
Add table
Reference in a new issue