X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fhelpers%2Fexpress-utils.ts;h=780fd6345e850df4735f70d066c3f65616e8d926;hb=0628157fe9662fdb2b6fa658b8b53fe684c013ce;hp=00f3f198bc2195087a69333cf4c46ab37f2d204d;hpb=a41b9da1a9ce49df82ea10c82de4c2fbc6d1b189;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/helpers/express-utils.ts b/server/helpers/express-utils.ts index 00f3f198b..780fd6345 100644 --- a/server/helpers/express-utils.ts +++ b/server/helpers/express-utils.ts @@ -1,18 +1,20 @@ -import * as express from 'express' -import * as multer from 'multer' +import express, { RequestHandler } from 'express' +import multer, { diskStorage } from 'multer' +import { HttpStatusCode } from '../../shared/models/http/http-error-codes' +import { CONFIG } from '../initializers/config' import { REMOTE_SCHEME } from '../initializers/constants' -import { logger } from './logger' -import { deleteFileAsync, generateRandomString } from './utils' -import { extname } from 'path' +import { getLowercaseExtension } from '@shared/core-utils' import { isArray } from './custom-validators/misc' -import { CONFIG } from '../initializers/config' +import { logger } from './logger' +import { deleteFileAndCatch, generateRandomString } from './utils' +import { getExtFromMimetype } from './video' function buildNSFWFilter (res?: express.Response, paramNSFW?: string) { if (paramNSFW === 'true') return true if (paramNSFW === 'false') return false if (paramNSFW === 'both') return undefined - if (res && res.locals.oauth) { + if (res?.locals.oauth) { const user = res.locals.oauth.token.User // User does not want NSFW videos @@ -28,21 +30,19 @@ function buildNSFWFilter (res?: express.Response, paramNSFW?: string) { return null } -function cleanUpReqFiles (req: { files: { [ fieldname: string ]: Express.Multer.File[] } | Express.Multer.File[] }) { - const files = req.files +function cleanUpReqFiles (req: express.Request) { + const filesObject = req.files + if (!filesObject) return - if (!files) return - - if (isArray(files)) { - (files as Express.Multer.File[]).forEach(f => deleteFileAsync(f.path)) + if (isArray(filesObject)) { + filesObject.forEach(f => deleteFileAndCatch(f.path)) return } - for (const key of Object.keys(files)) { - const file = files[ key ] + for (const key of Object.keys(filesObject)) { + const files = filesObject[key] - if (isArray(file)) file.forEach(f => deleteFileAsync(f.path)) - else deleteFileAsync(file.path) + files.forEach(f => deleteFileAndCatch(f.path)) } } @@ -59,30 +59,32 @@ function getHostWithPort (host: string) { return host } -function badRequest (req: express.Request, res: express.Response) { - return res.type('json').status(400).end() +function badRequest (_req: express.Request, res: express.Response) { + return res.type('json') + .status(HttpStatusCode.BAD_REQUEST_400) + .end() } function createReqFiles ( fieldNames: string[], - mimeTypes: { [ id: string ]: string }, - destinations: { [ fieldName: string ]: string } -) { - const storage = multer.diskStorage({ + mimeTypes: { [id: string]: string | string[] }, + destinations: { [fieldName: string]: string } +): RequestHandler { + const storage = diskStorage({ destination: (req, file, cb) => { - cb(null, destinations[ file.fieldname ]) + cb(null, destinations[file.fieldname]) }, filename: async (req, file, cb) => { let extension: string - const fileExtension = extname(file.originalname) - const extensionFromMimetype = mimeTypes[ file.mimetype ] + const fileExtension = getLowercaseExtension(file.originalname) + 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 } @@ -99,7 +101,7 @@ function createReqFiles ( } }) - let fields: { name: string, maxCount: number }[] = [] + const fields: { name: string, maxCount: number }[] = [] for (const fieldName of fieldNames) { fields.push({ name: fieldName, @@ -117,6 +119,10 @@ function isUserAbleToSearchRemoteURI (res: express.Response) { (CONFIG.SEARCH.REMOTE_URI.USERS === true && user !== undefined) } +function getCountVideos (req: express.Request) { + return req.query.skipCount !== true +} + // --------------------------------------------------------------------------- export { @@ -125,5 +131,6 @@ export { isUserAbleToSearchRemoteURI, badRequest, createReqFiles, - cleanUpReqFiles + cleanUpReqFiles, + getCountVideos }