Test improved media addressing

This commit is contained in:
dangered wolf 2023-05-30 23:51:07 -04:00
parent 20f444415c
commit ad254177f4
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
3 changed files with 43 additions and 22 deletions

View file

@ -75,14 +75,17 @@ const populateTweetProperties = async (
mediaList.forEach(media => { mediaList.forEach(media => {
const mediaObject = processMedia(media); const mediaObject = processMedia(media);
if (mediaObject) { if (mediaObject) {
apiTweet.media = apiTweet.media || {};
apiTweet.media.all = apiTweet.media?.all || [];
apiTweet.media.all.push(mediaObject);
if (mediaObject.type === 'photo') { if (mediaObject.type === 'photo') {
apiTweet.twitter_card = 'summary_large_image'; apiTweet.twitter_card = 'summary_large_image';
apiTweet.media = apiTweet.media || {};
apiTweet.media.photos = apiTweet.media.photos || []; apiTweet.media.photos = apiTweet.media.photos || [];
apiTweet.media.photos.push(mediaObject); apiTweet.media.photos.push(mediaObject);
} else if (mediaObject.type === 'video' || mediaObject.type === 'gif') { } else if (mediaObject.type === 'video' || mediaObject.type === 'gif') {
apiTweet.twitter_card = 'player'; apiTweet.twitter_card = 'player';
apiTweet.media = apiTweet.media || {};
apiTweet.media.videos = apiTweet.media.videos || []; apiTweet.media.videos = apiTweet.media.videos || [];
apiTweet.media.videos.push(mediaObject); apiTweet.media.videos.push(mediaObject);
} }

View file

@ -43,6 +43,13 @@ export const handleStatus = async (
}; };
} }
let overrideMedia: APIPhoto | APIVideo | undefined;
// Check if mediaNumber exists, and if that media exists in tweet.media.all. If it does, we'll store overrideMedia variable
if (mediaNumber && tweet.media && tweet.media.all && tweet.media.all[mediaNumber - 1]) {
overrideMedia = tweet.media.all[mediaNumber - 1];
}
/* If there was any errors fetching the Tweet, we'll return it */ /* If there was any errors fetching the Tweet, we'll return it */
switch (api.code) { switch (api.code) {
case 401: case 401:
@ -56,13 +63,22 @@ export const handleStatus = async (
/* Catch direct media request (d.fxtwitter.com, or .mp4 / .jpg) */ /* Catch direct media request (d.fxtwitter.com, or .mp4 / .jpg) */
if (flags?.direct && tweet.media) { if (flags?.direct && tweet.media) {
let redirectUrl: string | null = null; let redirectUrl: string | null = null;
if (tweet.media.videos) { const all = tweet.media.all || [];
const { videos } = tweet.media; // if (tweet.media.videos) {
redirectUrl = (videos[(mediaNumber || 1) - 1] || videos[0]).url; // const { videos } = tweet.media;
} else if (tweet.media.photos) { // redirectUrl = (videos[(mediaNumber || 1) - 1] || videos[0]).url;
const { photos } = tweet.media; // } else if (tweet.media.photos) {
redirectUrl = (photos[(mediaNumber || 1) - 1] || photos[0]).url; // const { photos } = tweet.media;
// redirectUrl = (photos[(mediaNumber || 1) - 1] || photos[0]).url;
// }
const selectedMedia = all[(mediaNumber || 1) - 1];
if (selectedMedia) {
redirectUrl = selectedMedia.url;
} else if (all.length > 0) {
redirectUrl = all[0].url;
} }
if (redirectUrl) { if (redirectUrl) {
return { response: Response.redirect(redirectUrl, 302) }; return { response: Response.redirect(redirectUrl, 302) };
} }
@ -128,15 +144,16 @@ export const handleStatus = async (
Twitter supports multiple videos in a Tweet now. But we have no mechanism to embed more than one. Twitter supports multiple videos in a Tweet now. But we have no mechanism to embed more than one.
You can still use /video/:number to get a specific video. Otherwise, it'll pick the first. */ You can still use /video/:number to get a specific video. Otherwise, it'll pick the first. */
if (tweet.media?.videos) { if (tweet.media?.videos || overrideMedia?.type === 'video') {
authorText = newText || ''; authorText = newText || '';
if (tweet?.translation) { if (tweet?.translation) {
authorText = tweet.translation?.text || ''; authorText = tweet.translation?.text || '';
} }
const { videos } = tweet.media; const videos = tweet.media?.videos;
const video = videos[(mediaNumber || 1) - 1]; const all = tweet.media?.all || [];
const video = overrideMedia as APIVideo || videos?.[(mediaNumber || 1) - 1];
/* This fix is specific to Discord not wanting to render videos that are too large, /* This fix is specific to Discord not wanting to render videos that are too large,
or rendering low quality videos too small. or rendering low quality videos too small.
@ -157,10 +174,10 @@ export const handleStatus = async (
/* Like photos when picking a specific one (not using mosaic), /* Like photos when picking a specific one (not using mosaic),
we'll put an indicator if there are more than one video */ we'll put an indicator if there are more than one video */
if (videos.length > 1) { if (all && all.length > 1) {
const videoCounter = Strings.VIDEO_COUNT.format({ const videoCounter = Strings.VIDEO_COUNT.format({
number: String(videos.indexOf(video) + 1), number: String(all.indexOf(video) + 1),
total: String(videos.length) total: String(all.length)
}); });
authorText = authorText =
@ -192,13 +209,12 @@ export const handleStatus = async (
} }
/* This Tweet has one or more photos to render */ /* This Tweet has one or more photos to render */
if (tweet.media?.photos) { if (tweet.media?.photos || overrideMedia?.type === 'photo') {
const { photos } = tweet.media; let photo: APIPhoto | APIMosaicPhoto = overrideMedia as APIPhoto || tweet.media?.photos?.[0];
let photo: APIPhoto | APIMosaicPhoto = photos[(mediaNumber || 1) - 1];
/* If there isn't a specified media number and we have a /* If there isn't a specified media number and we have a
mosaic response, we'll render it using mosaic */ mosaic response, we'll render it using mosaic */
if (typeof mediaNumber !== 'number' && tweet.media.mosaic) { if (!overrideMedia && tweet.media?.mosaic) {
photo = { photo = {
/* Include dummy height/width for TypeScript reasons. We have a check to make sure we don't use these later. */ /* Include dummy height/width for TypeScript reasons. We have a check to make sure we don't use these later. */
height: 0, height: 0,
@ -209,10 +225,11 @@ export const handleStatus = async (
}; };
/* If mosaic isn't available or the link calls for a specific photo, /* If mosaic isn't available or the link calls for a specific photo,
we'll indicate which photo it is out of the total */ we'll indicate which photo it is out of the total */
} else if (photos.length > 1) { } else if (tweet.media?.all && tweet.media.all.length > 1) {
const { all } = tweet.media;
const photoCounter = Strings.PHOTO_COUNT.format({ const photoCounter = Strings.PHOTO_COUNT.format({
number: String(photos.indexOf(photo) + 1), number: String(all.indexOf(photo) + 1),
total: String(photos.length) total: String(all.length)
}); });
authorText = authorText =
@ -233,7 +250,7 @@ export const handleStatus = async (
`<meta property="og:image" content="${photo.url}"/>` `<meta property="og:image" content="${photo.url}"/>`
); );
if (!tweet.media.mosaic) { if (!tweet.media?.mosaic) {
headers.push( headers.push(
`<meta property="twitter:image:width" content="${photo.width}"/>`, `<meta property="twitter:image:width" content="${photo.width}"/>`,
`<meta property="twitter:image:height" content="${photo.height}"/>`, `<meta property="twitter:image:height" content="${photo.height}"/>`,

View file

@ -140,6 +140,7 @@ interface APITweet {
external?: APIExternalMedia; external?: APIExternalMedia;
photos?: APIPhoto[]; photos?: APIPhoto[];
videos?: APIVideo[]; videos?: APIVideo[];
all?: (APIPhoto | APIVideo)[];
mosaic?: APIMosaicPhoto; mosaic?: APIMosaicPhoto;
}; };