Complement file extension from MIME (#2979)

This commit is contained in:
MeiMei 2018-10-23 04:37:37 +09:00 committed by syuilo
parent 1af4f94338
commit 2f8cc36d4b

View file

@ -37,7 +37,13 @@ async function save(path: string, name: string, type: string, hash: string, size
if (config.drive && config.drive.storage == 'minio') {
const minio = new Minio.Client(config.drive.config);
const [ext] = (name.match(/\.([a-zA-Z0-9_-]+)$/) || ['']);
let [ext] = (name.match(/\.([a-zA-Z0-9_-]+)$/) || ['']);
if (ext === '') {
if (type === 'image/jpeg') ext = '.jpg';
if (type === 'image/png') ext = '.png';
if (type === 'image/webp') ext = '.webp';
}
const key = `${config.drive.prefix}/${uuid.v4()}${ext}`;
const thumbnailKey = `${config.drive.prefix}/${uuid.v4()}.jpg`;