mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-04 18:10:56 +01:00
Add social proof for videos on discord
This commit is contained in:
parent
b00032808b
commit
e394cbc931
4 changed files with 14 additions and 11 deletions
|
@ -3,7 +3,7 @@ import { Constants } from '../constants';
|
|||
import { handleQuote } from '../helpers/quote';
|
||||
import { formatNumber, sanitizeText, truncateWithEllipsis } from '../helpers/utils';
|
||||
import { Strings } from '../strings';
|
||||
import { getAuthorText } from '../helpers/author';
|
||||
import { getSocialProof } from '../helpers/socialproof';
|
||||
import { renderPhoto } from '../render/photo';
|
||||
import { renderVideo } from '../render/video';
|
||||
import { renderInstantView } from '../render/instantview';
|
||||
|
@ -157,7 +157,7 @@ export const handleStatus = async (
|
|||
/* At this point, we know we're going to have to create a
|
||||
regular embed because it's not an API or direct media request */
|
||||
|
||||
let authorText = getAuthorText(status) || Strings.DEFAULT_AUTHOR_TEXT;
|
||||
let authorText = getSocialProof(status) || Strings.DEFAULT_AUTHOR_TEXT;
|
||||
const engagementText = authorText.replace(/ {4}/g, ' ');
|
||||
let siteName = Constants.BRANDING_NAME;
|
||||
let newText = status.text;
|
||||
|
@ -435,8 +435,10 @@ export const handleStatus = async (
|
|||
if (!flags.gallery) {
|
||||
/* The additional oembed is pulled by Discord to enable improved embeds.
|
||||
Telegram does not use this. */
|
||||
let providerEngagementText = getSocialProof(status) ?? Strings.DEFAULT_AUTHOR_TEXT;
|
||||
providerEngagementText = providerEngagementText.replace(/ {4}/g, ' ');
|
||||
headers.push(
|
||||
`<link rel="alternate" href="{base}/owoembed?text={text}{deprecatedFlag}&status={status}&author={author}" type="application/json+oembed" title="{name}">`.format(
|
||||
`<link rel="alternate" href="{base}/owoembed?text={text}{deprecatedFlag}&status={status}&author={author}{provider}" type="application/json+oembed" title="{name}">`.format(
|
||||
{
|
||||
base: Constants.HOST_URL,
|
||||
text: flags.gallery
|
||||
|
@ -445,7 +447,8 @@ export const handleStatus = async (
|
|||
deprecatedFlag: flags?.deprecated ? '&deprecated=true' : '',
|
||||
status: encodeURIComponent(statusId),
|
||||
author: encodeURIComponent(status.author.screen_name || ''),
|
||||
name: status.author.name || ''
|
||||
name: status.author.name || '',
|
||||
provider: (status.embed_card === 'player' && providerEngagementText !== Strings.DEFAULT_AUTHOR_TEXT) ? `&provider=${encodeURIComponent(providerEngagementText)}` : ''
|
||||
}
|
||||
)
|
||||
);
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import { formatNumber } from './utils';
|
||||
|
||||
/* The embed "author" text we populate with replies, retweets, and likes unless it's a video */
|
||||
export const getAuthorText = (status: APITwitterStatus): string | null => {
|
||||
export const getSocialProof = (status: APITwitterStatus): string | null => {
|
||||
/* Build out reply, retweet, like counts */
|
||||
if (
|
||||
status.likes > 0 ||
|
|
@ -15,13 +15,13 @@ export const oembed = async (c: Context) => {
|
|||
const random = Math.floor(Math.random() * Object.keys(motd).length);
|
||||
const [name, url] = Object.entries(motd)[random];
|
||||
|
||||
const statusUrl = `${Constants.TWITTER_ROOT}/${encodeURIComponent(author)}/status/${status}`;
|
||||
|
||||
const data: OEmbed = {
|
||||
author_name: text,
|
||||
author_url: `${Constants.TWITTER_ROOT}/${encodeURIComponent(author)}/status/${status}`,
|
||||
/* Change provider name if status is on deprecated domain. */
|
||||
provider_name:
|
||||
searchParams.get('deprecated') === 'true' ? Strings.DEPRECATED_DOMAIN_NOTICE_DISCORD : name,
|
||||
provider_url: url,
|
||||
author_url: statusUrl,
|
||||
provider_name: searchParams.get('provider') ?? name,
|
||||
provider_url: searchParams.get('provider') ? statusUrl : url,
|
||||
title: Strings.DEFAULT_AUTHOR_TEXT,
|
||||
type: 'link',
|
||||
version: '1.0'
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* eslint-disable no-irregular-whitespace */
|
||||
import { Constants } from '../constants';
|
||||
import { getSocialTextIV } from '../helpers/author';
|
||||
import { getSocialTextIV } from '../helpers/socialproof';
|
||||
import { sanitizeText } from '../helpers/utils';
|
||||
import { Strings } from '../strings';
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue