Run prettier

This commit is contained in:
dangered wolf 2024-04-02 00:19:13 -04:00
parent da900f5a19
commit 529e1d5648
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
5 changed files with 33 additions and 31 deletions

View file

@ -291,13 +291,16 @@ export const handleStatus = async (
siteName = instructions.siteName;
}
} 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 || [];
photos.forEach(photo => {
/* Override the card type */
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(
{

View file

@ -1,4 +1,4 @@
import { Context } from "hono";
import { Context } from 'hono';
/* Help populate API response for media */
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') {
/* Find the variant with the highest bitrate */
const bestVariant = media.video_info?.variants?.filter?.((format) => {
if (c.req.header('user-agent')?.includes('Telegram') && format.bitrate) {
/* Telegram doesn't support videos over 20 MB, so we need to filter them out */
const bitrate = format.bitrate || 0;
const length = (media.video_info?.duration_millis || 0) / 1000;
/* Calculate file size in bytes */
const fileSizeBytes: number = (bitrate * length) / 8;
/* Convert file size to megabytes (MB) */
const fileSizeMB: number = fileSizeBytes / (1024 * 1024);
const bestVariant = media.video_info?.variants
?.filter?.(format => {
if (c.req.header('user-agent')?.includes('Telegram') && format.bitrate) {
/* Telegram doesn't support videos over 20 MB, so we need to filter them out */
const bitrate = format.bitrate || 0;
const length = (media.video_info?.duration_millis || 0) / 1000;
/* Calculate file size in bytes */
const fileSizeBytes: number = (bitrate * length) / 8;
/* 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`);
return fileSizeMB < 30; /* 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
);
console.log(
`Estimated file size: ${fileSizeMB.toFixed(2)} MB for bitrate ${bitrate / 1000} kbps`
);
return (
fileSizeMB < 30
); /* 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 {
url: bestVariant?.url || '',
thumbnail_url: media.media_url_https,

View file

@ -254,8 +254,6 @@ export const buildAPITwitterStatus = async (
}
});
}
}
} else {
/* Determine if the status contains a YouTube link (either youtube.com or youtu.be) so we can include it */

View file

@ -1,4 +1,4 @@
import { Context } from "hono";
import { Context } from 'hono';
export const linkHitRequest = async (c: Context) => {
// 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);
return c.redirect(url.href, 302);
}
}
};

View file

@ -119,12 +119,7 @@ const truncateSocialCount = (count: number): string => {
const wrapForeignLinks = (url: string) => {
let unwrap = false;
const whitelistedDomains = [
'twitter.com',
'x.com',
't.me',
'telegram.me'
]
const whitelistedDomains = ['twitter.com', 'x.com', 't.me', 'telegram.me'];
try {
const urlObj = new URL(url);
@ -135,8 +130,10 @@ const wrapForeignLinks = (url: string) => {
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 { author } = status;