Prettier & Update README

This commit is contained in:
dangered wolf 2022-07-15 21:17:21 -04:00
parent b25b81db3a
commit 4c71150c6e
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
3 changed files with 13 additions and 12 deletions

View file

@ -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: | | 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 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 ¹ Discord will attempt to embed Twitter's video player, but it is unreliable

View file

@ -37,7 +37,12 @@ const statusRequest = async (request: any, event: FetchEvent, flags: Flags = {})
console.log('Cache miss'); 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) { if (status instanceof Response) {
console.log('handleStatus sent response'); console.log('handleStatus sent response');
@ -49,13 +54,10 @@ const statusRequest = async (request: any, event: FetchEvent, flags: Flags = {})
} }
console.log('handleStatus sent embed'); console.log('handleStatus sent embed');
response = new Response( response = new Response(status, {
status, headers: Constants.RESPONSE_HEADERS,
{ status: 200
headers: Constants.RESPONSE_HEADERS, });
status: 200
}
);
} }
// Store the fetched response as cacheKey // Store the fetched response as cacheKey

View file

@ -195,12 +195,11 @@ export const handleStatus = async (
pushedCardType = true; pushedCardType = true;
} }
} else if (media.type === 'video' || media.type === 'animated_gif') { } else if (media.type === 'video' || media.type === 'animated_gif') {
// Find the variant with the highest bitrate // Find the variant with the highest bitrate
let bestVariant = media.video_info?.variants?.reduce?.((a, b) => let bestVariant = media.video_info?.variants?.reduce?.((a, b) =>
(a.bitrate ?? 0) > (b.bitrate ?? 0) ? a : b (a.bitrate ?? 0) > (b.bitrate ?? 0) ? a : b
); );
if (flags?.direct && bestVariant?.url) { if (flags?.direct && bestVariant?.url) {
console.log(`Redirecting to ${bestVariant.url}`); console.log(`Redirecting to ${bestVariant.url}`);
redirectMedia = bestVariant.url; redirectMedia = bestVariant.url;
@ -252,7 +251,7 @@ export const handleStatus = async (
} }
if (flags?.direct && redirectMedia) { if (flags?.direct && redirectMedia) {
let response = Response.redirect(redirectMedia, 302) let response = Response.redirect(redirectMedia, 302);
console.log(response); console.log(response);
return response; return response;
} }