X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fhelpers%2Fexpress-utils.ts;h=c0d3f8f32e6dcd5c23048a05c2dbf7570beb31f9;hb=6f4945126bfc5fcd4df0ae4a73eb0ff79f762657;hp=f4681297742f2cd36aee3a34c6420bc17596451d;hpb=134cf2bce96a8c5aefd55154e884964975d8cf23;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/helpers/express-utils.ts b/server/helpers/express-utils.ts index f46812977..c0d3f8f32 100644 --- a/server/helpers/express-utils.ts +++ b/server/helpers/express-utils.ts @@ -6,6 +6,8 @@ import { deleteFileAsync, generateRandomString } from './utils' import { extname } from 'path' import { isArray } from './custom-validators/misc' import { CONFIG } from '../initializers/config' +import { getExtFromMimetype } from './video' +import { HttpStatusCode } from '../../shared/core-utils/miscs/http-error-codes' function buildNSFWFilter (res?: express.Response, paramNSFW?: string) { if (paramNSFW === 'true') return true @@ -60,12 +62,14 @@ function getHostWithPort (host: string) { } function badRequest (req: express.Request, res: express.Response) { - return res.type('json').status(400).end() + return res.type('json') + .status(HttpStatusCode.BAD_REQUEST_400) + .end() } function createReqFiles ( fieldNames: string[], - mimeTypes: { [id: string]: string }, + mimeTypes: { [id: string]: string | string[] }, destinations: { [fieldName: string]: string } ) { const storage = multer.diskStorage({ @@ -76,13 +80,13 @@ function createReqFiles ( filename: async (req, file, cb) => { let extension: string const fileExtension = extname(file.originalname) - const extensionFromMimetype = mimeTypes[file.mimetype] + const extensionFromMimetype = getExtFromMimetype(mimeTypes, file.mimetype) // Take the file extension if we don't understand the mime type - // We have the OGG/OGV exception too because firefox sends a bad mime type when sending an OGG file - if (fileExtension === '.ogg' || fileExtension === '.ogv' || !extensionFromMimetype) { + if (!extensionFromMimetype) { extension = fileExtension } else { + // Take the first available extension for this mimetype extension = extensionFromMimetype }