mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Prettier & Update README
This commit is contained in:
parent
b25b81db3a
commit
4c71150c6e
3 changed files with 13 additions and 12 deletions
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue