mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
Add limited note tweet support
This commit is contained in:
parent
7306302051
commit
f47f298f34
3 changed files with 28 additions and 5 deletions
|
@ -104,6 +104,16 @@ const populateTweetProperties = async (
|
|||
apiTweet.color = colorFromPalette(mediaList[0].ext_media_color.palette);
|
||||
}
|
||||
*/
|
||||
console.log('note_tweet', JSON.stringify(tweet.note_tweet));
|
||||
console.log('note tweet text', tweet.note_tweet?.note_tweet_results?.result?.text)
|
||||
console.log('mediaList.length <= 0', mediaList.length <= 0)
|
||||
console.log('tweet.legacy.entities?.urls?.length <= 0', tweet.legacy.entities?.urls?.length <= 0)
|
||||
const noteTweetText = tweet.note_tweet?.note_tweet_results?.result?.text;
|
||||
/* For now, don't include note tweets */
|
||||
if (noteTweetText && mediaList.length <= 0 && tweet.legacy.entities?.urls?.length <= 0) {
|
||||
console.log('We meet the conditions to use new note tweets');
|
||||
apiTweet.text = unescapeText(noteTweetText);
|
||||
}
|
||||
|
||||
/* Handle photos and mosaic if available */
|
||||
if ((apiTweet.media?.photos?.length || 0) > 1) {
|
||||
|
@ -211,10 +221,10 @@ export const statusAPI = async (
|
|||
if (tweet.reason === 'Protected') {
|
||||
writeDataPoint(event, language, wasMediaBlockedNSFW, 'PRIVATE_TWEET', flags);
|
||||
return { code: 401, message: 'PRIVATE_TWEET' };
|
||||
} else if (tweet.reason === 'NsfwLoggedOut') {
|
||||
// API failure as elongator should have handled this
|
||||
writeDataPoint(event, language, wasMediaBlockedNSFW, 'API_FAIL', flags);
|
||||
return { code: 500, message: 'API_FAIL' };
|
||||
// } else if (tweet.reason === 'NsfwLoggedOut') {
|
||||
// // API failure as elongator should have handled this
|
||||
// writeDataPoint(event, language, wasMediaBlockedNSFW, 'API_FAIL', flags);
|
||||
// return { code: 500, message: 'API_FAIL' };
|
||||
} else {
|
||||
// Api failure at parsing status
|
||||
writeDataPoint(event, language, wasMediaBlockedNSFW, 'API_FAIL', flags);
|
||||
|
|
|
@ -295,7 +295,7 @@ export const handleStatus = async (
|
|||
/* Push basic headers relating to author, Tweet text, and site name */
|
||||
headers.push(
|
||||
`<meta property="og:title" content="${tweet.author.name} (@${tweet.author.screen_name})"/>`,
|
||||
`<meta property="og:description" content="${sanitizeText(newText)}"/>`,
|
||||
`<meta property="og:description" content="${sanitizeText(newText).replace(/\n/g, '<br>')}"/>`,
|
||||
`<meta property="og:site_name" content="${siteName}"/>`
|
||||
);
|
||||
|
||||
|
|
13
src/types/twitterTypes.d.ts
vendored
13
src/types/twitterTypes.d.ts
vendored
|
@ -366,6 +366,19 @@ type GraphQLTweet = {
|
|||
media: TweetMedia[]
|
||||
}
|
||||
}
|
||||
note_tweet: {
|
||||
is_expandable: boolean;
|
||||
entity_set: {
|
||||
hashtags: unknown[];
|
||||
urls: unknown[];
|
||||
user_mentions: unknown[];
|
||||
},
|
||||
note_tweet_results: {
|
||||
result: {
|
||||
text: string;
|
||||
}
|
||||
}
|
||||
};
|
||||
card: {
|
||||
rest_id: string; // "card://1674824189176590336",
|
||||
legacy: {
|
||||
|
|
Loading…
Add table
Reference in a new issue