mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-23 01:13:48 +01:00
Fix not to reject non-image file uploads (#6664)
* fix not to reject non-image file uploads * handle an error from sharp
This commit is contained in:
parent
40c3f3d764
commit
1db619963f
@ -160,12 +160,30 @@ export async function generateAlts(path: string, type: string, generateWeb: bool
|
||||
}
|
||||
}
|
||||
|
||||
const img = sharp(path);
|
||||
const metadata = await img.metadata();
|
||||
const isAnimated = metadata.pages && metadata.pages > 1;
|
||||
if (!['image/jpeg', 'image/png', 'image/webp'].includes(type)) {
|
||||
logger.debug(`web image and thumbnail not created (not an required file)`);
|
||||
return {
|
||||
webpublic: null,
|
||||
thumbnail: null
|
||||
};
|
||||
}
|
||||
|
||||
// skip animated
|
||||
if (isAnimated) {
|
||||
let img: sharp.Sharp | null = null;
|
||||
|
||||
try {
|
||||
img = sharp(path);
|
||||
const metadata = await img.metadata();
|
||||
const isAnimated = metadata.pages && metadata.pages > 1;
|
||||
|
||||
// skip animated
|
||||
if (isAnimated) {
|
||||
return {
|
||||
webpublic: null,
|
||||
thumbnail: null
|
||||
};
|
||||
}
|
||||
} catch (e) {
|
||||
logger.warn(`sharp failed: ${e}`);
|
||||
return {
|
||||
webpublic: null,
|
||||
thumbnail: null
|
||||
|
Loading…
Reference in New Issue
Block a user