mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 19:10:54 +01:00
Run prettier
This commit is contained in:
parent
da900f5a19
commit
529e1d5648
5 changed files with 33 additions and 31 deletions
|
@ -291,13 +291,16 @@ export const handleStatus = async (
|
||||||
siteName = instructions.siteName;
|
siteName = instructions.siteName;
|
||||||
}
|
}
|
||||||
} else if (media?.mosaic) {
|
} else if (media?.mosaic) {
|
||||||
if (experimentCheck(Experiment.DISCORD_NATIVE_MULTI_IMAGE, isDiscord) && flags.nativeMultiImage) {
|
if (
|
||||||
|
experimentCheck(Experiment.DISCORD_NATIVE_MULTI_IMAGE, isDiscord) &&
|
||||||
|
flags.nativeMultiImage
|
||||||
|
) {
|
||||||
const photos = status.media?.photos || [];
|
const photos = status.media?.photos || [];
|
||||||
|
|
||||||
photos.forEach(photo => {
|
photos.forEach(photo => {
|
||||||
/* Override the card type */
|
/* Override the card type */
|
||||||
status.embed_card = 'summary_large_image';
|
status.embed_card = 'summary_large_image';
|
||||||
console.log('set embed_card to summary_large_image')
|
console.log('set embed_card to summary_large_image');
|
||||||
|
|
||||||
const instructions = renderPhoto(
|
const instructions = renderPhoto(
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { Context } from "hono";
|
import { Context } from 'hono';
|
||||||
|
|
||||||
/* Help populate API response for media */
|
/* Help populate API response for media */
|
||||||
export const processMedia = (c: Context, media: TweetMedia): APIPhoto | APIVideo | null => {
|
export const processMedia = (c: Context, media: TweetMedia): APIPhoto | APIVideo | null => {
|
||||||
|
@ -12,23 +12,27 @@ export const processMedia = (c: Context, media: TweetMedia): APIPhoto | APIVideo
|
||||||
};
|
};
|
||||||
} 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 */
|
||||||
const bestVariant = media.video_info?.variants?.filter?.((format) => {
|
const bestVariant = media.video_info?.variants
|
||||||
if (c.req.header('user-agent')?.includes('Telegram') && format.bitrate) {
|
?.filter?.(format => {
|
||||||
/* Telegram doesn't support videos over 20 MB, so we need to filter them out */
|
if (c.req.header('user-agent')?.includes('Telegram') && format.bitrate) {
|
||||||
const bitrate = format.bitrate || 0;
|
/* Telegram doesn't support videos over 20 MB, so we need to filter them out */
|
||||||
const length = (media.video_info?.duration_millis || 0) / 1000;
|
const bitrate = format.bitrate || 0;
|
||||||
/* Calculate file size in bytes */
|
const length = (media.video_info?.duration_millis || 0) / 1000;
|
||||||
const fileSizeBytes: number = (bitrate * length) / 8;
|
/* Calculate file size in bytes */
|
||||||
/* Convert file size to megabytes (MB) */
|
const fileSizeBytes: number = (bitrate * length) / 8;
|
||||||
const fileSizeMB: number = fileSizeBytes / (1024 * 1024);
|
/* Convert file size to megabytes (MB) */
|
||||||
|
const fileSizeMB: number = fileSizeBytes / (1024 * 1024);
|
||||||
|
|
||||||
console.log(`Estimated file size: ${fileSizeMB.toFixed(2)} MB for bitrate ${bitrate/1000} kbps`);
|
console.log(
|
||||||
return fileSizeMB < 30; /* Currently this calculation is off, so we'll just do it if it's way over */
|
`Estimated file size: ${fileSizeMB.toFixed(2)} MB for bitrate ${bitrate / 1000} kbps`
|
||||||
}
|
);
|
||||||
return !format.url.includes('hevc');
|
return (
|
||||||
}).reduce?.((a, b) =>
|
fileSizeMB < 30
|
||||||
(a.bitrate ?? 0) > (b.bitrate ?? 0) ? a : b
|
); /* Currently this calculation is off, so we'll just do it if it's way over */
|
||||||
);
|
}
|
||||||
|
return !format.url.includes('hevc');
|
||||||
|
})
|
||||||
|
.reduce?.((a, b) => ((a.bitrate ?? 0) > (b.bitrate ?? 0) ? a : b));
|
||||||
return {
|
return {
|
||||||
url: bestVariant?.url || '',
|
url: bestVariant?.url || '',
|
||||||
thumbnail_url: media.media_url_https,
|
thumbnail_url: media.media_url_https,
|
||||||
|
|
|
@ -254,8 +254,6 @@ export const buildAPITwitterStatus = async (
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
/* Determine if the status contains a YouTube link (either youtube.com or youtu.be) so we can include it */
|
/* Determine if the status contains a YouTube link (either youtube.com or youtu.be) so we can include it */
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { Context } from "hono";
|
import { Context } from 'hono';
|
||||||
|
|
||||||
export const linkHitRequest = async (c: Context) => {
|
export const linkHitRequest = async (c: Context) => {
|
||||||
// eslint-disable-next-line sonarjs/no-duplicate-string
|
// eslint-disable-next-line sonarjs/no-duplicate-string
|
||||||
|
@ -12,4 +12,4 @@ export const linkHitRequest = async (c: Context) => {
|
||||||
const url = new URL(c.req.query('url') as string);
|
const url = new URL(c.req.query('url') as string);
|
||||||
return c.redirect(url.href, 302);
|
return c.redirect(url.href, 302);
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
|
@ -119,12 +119,7 @@ const truncateSocialCount = (count: number): string => {
|
||||||
|
|
||||||
const wrapForeignLinks = (url: string) => {
|
const wrapForeignLinks = (url: string) => {
|
||||||
let unwrap = false;
|
let unwrap = false;
|
||||||
const whitelistedDomains = [
|
const whitelistedDomains = ['twitter.com', 'x.com', 't.me', 'telegram.me'];
|
||||||
'twitter.com',
|
|
||||||
'x.com',
|
|
||||||
't.me',
|
|
||||||
'telegram.me'
|
|
||||||
]
|
|
||||||
try {
|
try {
|
||||||
const urlObj = new URL(url);
|
const urlObj = new URL(url);
|
||||||
|
|
||||||
|
@ -135,8 +130,10 @@ const wrapForeignLinks = (url: string) => {
|
||||||
unwrap = true;
|
unwrap = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
return unwrap ? `https://${Constants.API_HOST_LIST[0]}/2/hit?url=${encodeURIComponent(url)}` : url;
|
return unwrap
|
||||||
}
|
? `https://${Constants.API_HOST_LIST[0]}/2/hit?url=${encodeURIComponent(url)}`
|
||||||
|
: url;
|
||||||
|
};
|
||||||
|
|
||||||
const generateStatusFooter = (status: APIStatus, isQuote = false): string => {
|
const generateStatusFooter = (status: APIStatus, isQuote = false): string => {
|
||||||
const { author } = status;
|
const { author } = status;
|
||||||
|
|
Loading…
Add table
Reference in a new issue