Added engagements for Telegram and others

This commit is contained in:
dangered wolf 2022-07-16 15:31:51 -04:00
parent 42d657924c
commit 70a6663ae5
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 28 additions and 19 deletions

View file

@ -58,22 +58,22 @@ Otherwise, it will default to the first image.
In many ways, pxTwitter has richer embeds and does more. Here's a table comparing some of pxTwitter's features compared to Twitter default embeds as well as other embedding services In many ways, pxTwitter has richer embeds and does more. Here's a table comparing some of pxTwitter's features compared to Twitter default embeds as well as other embedding services
| | pxTwitter | Twitter default | vxTwitter (BetterTwitFix) | Twxtter (sixFix) | | | pxTwitter | Twitter default | vxTwitter (BetterTwitFix) | Twxtter (sixFix) |
| --------------------------------------- | :-----------------------------: | :------------------------------: | :-----------------------------------: | :-----------------------------------: | | --------------------------------------- | :----------------: | :------------------------------: | :-----------------------------------: | :-----------------------------------: |
| Embed Tweets / Images | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | Embed Tweets / Images | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
| Embed profile pictures on text Tweets | :heavy_check_mark: | :x: | :heavy_check_mark: | :heavy_check_mark: | | Embed profile pictures on text Tweets | :heavy_check_mark: | :x: | :heavy_check_mark: | :heavy_check_mark: |
| Embed Twitter Videos | :heavy_check_mark: | :x:¹ | :heavy_check_mark: | :heavy_check_mark: | | Embed Twitter Videos | :heavy_check_mark: | :x:¹ | :heavy_check_mark: | :heavy_check_mark: |
| Embed External Videos (YouTube, etc.) | :heavy_check_mark: | :x: | :x:⁴ | :x: | | Embed External Videos (YouTube, etc.) | :heavy_check_mark: | :x: | :x:⁴ | :x: |
| Embed Poll results | :heavy_check_mark: | :x: | :x: | :x: | | Embed Poll results | :heavy_check_mark: | :x: | :x: | :x: |
| Embed Quote Tweets | :heavy_check_mark: | :x: | :ballot_box_with_check: Without Media | :ballot_box_with_check: Without Media | | Embed Quote Tweets | :heavy_check_mark: | :x: | :ballot_box_with_check: Without Media | :ballot_box_with_check: Without Media |
| Embed Multiple Images | :x: | :heavy_minus_sign: Discord Only³ | With c.vxtwitter.com | :x: | | Embed Multiple Images | :x: | :heavy_minus_sign: Discord Only³ | With c.vxtwitter.com | :x: |
| Publicly accessible embed index | :x:² | N/A | :x:² | :heavy_check_mark: | | Publicly accessible embed index | :x:² | N/A | :x:² | :heavy_check_mark: |
| Replace t.co with original links | :heavy_check_mark: | :x: | :x: | :x: | | Replace t.co with original links | :heavy_check_mark: | :x: | :x: | :x: |
| Media-based embed colors on Discord | :heavy_check_mark: | :x: | :x: | :x: | | Media-based embed colors on Discord | :heavy_check_mark: | :x: | :x: | :x: |
| Redirect to media file (wihout embed) | :heavy_check_mark: | :x: | :x: | :heavy_check_mark: | | Redirect to media file (wihout embed) | :heavy_check_mark: | :x: | :x: | :heavy_check_mark: |
| Strip Twitter tracking info on redirect | :heavy_check_mark: | :x: | :heavy_check_mark: | :heavy_check_mark: | | Strip Twitter tracking info on redirect | :heavy_check_mark: | :x: | :heavy_check_mark: | :heavy_check_mark: |
| Show retweet / like counts | :heavy_minus_sign: Discord Only | :x: | :heavy_check_mark: | :heavy_check_mark: | | Show retweet / like counts | :heavy_check_mark: | :x: | :heavy_check_mark: | :heavy_check_mark: |
| Discord / sed (`s/` replace) friendly | twittpr.com | :x: | :x: | :heavy_check_mark: | | Discord / sed (`s/` replace) friendly | twittpr.com | :x: | :x: | :heavy_check_mark: |
¹ Discord will attempt to embed Twitter's video player, but it is unreliable ¹ Discord will attempt to embed Twitter's video player, but it is unreliable

View file

@ -71,6 +71,7 @@ export const handleStatus = async (
} }
let text = tweet.full_text; let text = tweet.full_text;
let engagementText = '';
const user = tweet.user; const user = tweet.user;
const screenName = user?.screen_name || ''; const screenName = user?.screen_name || '';
const name = user?.name || ''; const name = user?.name || '';
@ -93,6 +94,9 @@ export const handleStatus = async (
authorText += `${tweet.favorite_count}`; authorText += `${tweet.favorite_count}`;
} }
authorText = authorText.trim(); authorText = authorText.trim();
// engagementText has less spacing than authorText, also Telegram interprets the other heart as emoji
engagementText = authorText.replace(/ /g, ' ');
} }
text = linkFixer(tweet, text); text = linkFixer(tweet, text);
@ -280,9 +284,14 @@ export const handleStatus = async (
authorText === Strings.DEFAULT_AUTHOR_TEXT authorText === Strings.DEFAULT_AUTHOR_TEXT
? photoCounter ? photoCounter
: `${authorText}${photoCounter}`; : `${authorText}${photoCounter}`;
headers.push(
`<meta property="og:site_name" content="${Constants.BRANDING_NAME} - ${photoCounter}"/>` let siteName = `${Constants.BRANDING_NAME} - ${photoCounter}`;
);
if (engagementText) {
siteName = `${Constants.BRANDING_NAME} - ${engagementText} - ${photoCounter}`;
}
headers.push(`<meta property="og:site_name" content="${siteName}"/>`);
} else { } else {
headers.push( headers.push(
`<meta property="og:site_name" content="${Constants.BRANDING_NAME}"/>` `<meta property="og:site_name" content="${Constants.BRANDING_NAME}"/>`