From 4c71150c6e42313a8dfe36d9638ed06113c35190 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Fri, 15 Jul 2022 21:17:21 -0400 Subject: [PATCH] Prettier & Update README --- README.md | 2 +- src/server.ts | 18 ++++++++++-------- src/status.ts | 5 ++--- 3 files changed, 13 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 1add85e..0a4a9c2 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Here's a little chart comparing features to Twitter default embeds and other emb | Publicly accessible embed index | :x:² | N/A | :x:² | :heavy_check_mark: | | Replace t.co with original links | :heavy_check_mark: | :x: | :x: | :x: | | Media-based embed colors on Discord | :heavy_check_mark: | :x: | :x: | :x: | -| Redirect to video file (wihout embed) | Coming soon! | :x: | :x: | :heavy_check_mark: | +| Redirect to media file (wihout embed) | :heavy_check_mark: | :x: | :x: | :heavy_check_mark: | ¹ Discord will attempt to embed Twitter's video player, but it is unreliable diff --git a/src/server.ts b/src/server.ts index 9a6c2c7..07be12c 100644 --- a/src/server.ts +++ b/src/server.ts @@ -37,7 +37,12 @@ const statusRequest = async (request: any, event: FetchEvent, flags: Flags = {}) console.log('Cache miss'); - let status = await handleStatus(id.match(/\d{2,20}/)?.[0], parseInt(mediaNumber || 1), userAgent, flags); + let status = await handleStatus( + id.match(/\d{2,20}/)?.[0], + parseInt(mediaNumber || 1), + userAgent, + flags + ); if (status instanceof Response) { console.log('handleStatus sent response'); @@ -49,13 +54,10 @@ const statusRequest = async (request: any, event: FetchEvent, flags: Flags = {}) } console.log('handleStatus sent embed'); - response = new Response( - status, - { - headers: Constants.RESPONSE_HEADERS, - status: 200 - } - ); + response = new Response(status, { + headers: Constants.RESPONSE_HEADERS, + status: 200 + }); } // Store the fetched response as cacheKey diff --git a/src/status.ts b/src/status.ts index c800ac6..6c0ab69 100644 --- a/src/status.ts +++ b/src/status.ts @@ -195,12 +195,11 @@ export const handleStatus = async ( pushedCardType = true; } } else if (media.type === 'video' || media.type === 'animated_gif') { - // Find the variant with the highest bitrate let bestVariant = media.video_info?.variants?.reduce?.((a, b) => (a.bitrate ?? 0) > (b.bitrate ?? 0) ? a : b ); - + if (flags?.direct && bestVariant?.url) { console.log(`Redirecting to ${bestVariant.url}`); redirectMedia = bestVariant.url; @@ -252,7 +251,7 @@ export const handleStatus = async ( } if (flags?.direct && redirectMedia) { - let response = Response.redirect(redirectMedia, 302) + let response = Response.redirect(redirectMedia, 302); console.log(response); return response; }