From 7d759f8dc7ae5d86aec70f23c9bf8421ca3467e8 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Fri, 8 Dec 2023 22:13:30 -0500 Subject: [PATCH] Improve youtube and external player handling --- src/embed/status.ts | 10 ++++++++-- src/providers/twitter/processor.ts | 27 +++++++++++++++++++++++++++ src/types/types.d.ts | 5 +++-- 3 files changed, 38 insertions(+), 4 deletions(-) diff --git a/src/embed/status.ts b/src/embed/status.ts index 8cce388..d15d2f6 100644 --- a/src/embed/status.ts +++ b/src/embed/status.ts @@ -310,8 +310,9 @@ export const handleStatus = async ( media.photos[0] ); headers.push(...instructions.addHeaders); - } else if (media?.external) { - const { external } = media; + } + if (status.media?.external && !(status.media.videos?.length)) { + const { external } = status.media; authorText = newText || ''; headers.push( ``, @@ -323,9 +324,14 @@ export const handleStatus = async ( ``, `` ); + if (external.thumbnail_url && !status.media.photos?.length) { + headers.push(``); + } } } + + /* This status contains a poll, so we'll render it */ if (status.poll) { const { poll } = status; diff --git a/src/providers/twitter/processor.ts b/src/providers/twitter/processor.ts index d0abf1a..b70ce4a 100644 --- a/src/providers/twitter/processor.ts +++ b/src/providers/twitter/processor.ts @@ -218,10 +218,37 @@ export const buildAPITwitterStatus = async ( const card = renderCard(status.card); if (card.external_media) { apiStatus.media.external = card.external_media; + if (apiStatus.media.external.url.match('https://www.youtube.com/embed/')) { + /* Add YouTube thumbnail URL */ + apiStatus.media.external.thumbnail_url = `https://img.youtube.com/vi/${apiStatus.media.external.url.replace( + 'https://www.youtube.com/embed/', + '' + )}/maxresdefault.jpg`; + } } if (card.poll) { apiStatus.poll = card.poll; } + } else { + /* Determine if the status contains a YouTube link (either youtube.com or youtu.be) so we can include it */ + const youtubeIdRegex = /(https?:\/\/)?(www\.)?(youtube\.com\/watch\?v=|youtu\.be\/)([^\s&]+)/; + const matches = apiStatus.text.match(youtubeIdRegex); + + const youtubeId = matches ? matches[4] : null; + + if (youtubeId) { + apiStatus.media.external = { + type: 'video', + url: `https://www.youtube.com/embed/${youtubeId}`, + thumbnail_url: `https://img.youtube.com/vi/${youtubeId}/maxresdefault.jpg`, + width: 1280, + height: 720 + }; + + console.log(apiStatus.media.external) + + apiStatus.embed_card = 'player'; + } } if ( diff --git a/src/types/types.d.ts b/src/types/types.d.ts index 6b1e26d..591213a 100644 --- a/src/types/types.d.ts +++ b/src/types/types.d.ts @@ -65,8 +65,9 @@ interface APITranslate { interface APIExternalMedia { type: 'video'; url: string; - height: number; - width: number; + thumbnail_url?: string; + height?: number; + width?: number; } interface APIPollChoice {