オブジェクトストレージのURLに拡張子を含めるように

This commit is contained in:
syuilo 2018-10-16 20:59:36 +09:00
parent a103032d94
commit 704e217dbb
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69

View file

@ -37,8 +37,10 @@ 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 key = `${config.drive.prefix}/${uuid.v4()}`;
const thumbnailKey = `${config.drive.prefix}/${uuid.v4()}`;
const [ext] = (name.match(/\.([a-zA-Z0-9_-]+)$/) || ['']);
const key = `${config.drive.prefix}/${uuid.v4()}${ext}`;
const thumbnailKey = `${config.drive.prefix}/${uuid.v4()}.jpg`;
const baseUrl = config.drive.baseUrl
|| `${ config.drive.config.useSSL ? 'https' : 'http' }://${ config.drive.config.endPoint }${ config.drive.config.port ? `:${config.drive.config.port}` : '' }/${ config.drive.bucket }`;