X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fhelpers%2Fexpress-utils.ts;h=f4681297742f2cd36aee3a34c6420bc17596451d;hb=98813e69bccc568eff771cfcaf907ccdd82ce3f1;hp=5bf1e1a5f513dcce46121e884f31c2bdd6fc257d;hpb=d525fc399a14a8b16eaad6d4c0bc0a9c4093c3c9;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/helpers/express-utils.ts b/server/helpers/express-utils.ts index 5bf1e1a5f..f46812977 100644 --- a/server/helpers/express-utils.ts +++ b/server/helpers/express-utils.ts @@ -1,17 +1,25 @@ import * as express from 'express' import * as multer from 'multer' -import { CONFIG, REMOTE_SCHEME } from '../initializers' +import { REMOTE_SCHEME } from '../initializers/constants' import { logger } from './logger' -import { User } from '../../shared/models/users' -import { generateRandomString } from './utils' +import { deleteFileAsync, generateRandomString } from './utils' +import { extname } from 'path' +import { isArray } from './custom-validators/misc' +import { CONFIG } from '../initializers/config' -function buildNSFWFilter (res: express.Response, paramNSFW?: boolean) { - if (paramNSFW === true || paramNSFW === false) return paramNSFW +function buildNSFWFilter (res?: express.Response, paramNSFW?: string) { + if (paramNSFW === 'true') return true + if (paramNSFW === 'false') return false + if (paramNSFW === 'both') return undefined + + if (res?.locals.oauth) { + const user = res.locals.oauth.token.User - if (res.locals.oauth) { - const user: User = res.locals.oauth.token.User // User does not want NSFW videos - if (user && user.nsfwPolicy === 'do_not_list') return false + if (user.nsfwPolicy === 'do_not_list') return false + + // Both + return undefined } if (CONFIG.INSTANCE.DEFAULT_NSFW_POLICY === 'do_not_list') return false @@ -20,6 +28,24 @@ function buildNSFWFilter (res: express.Response, paramNSFW?: boolean) { return null } +function cleanUpReqFiles (req: { files: { [fieldname: string]: Express.Multer.File[] } | Express.Multer.File[] }) { + const files = req.files + + if (!files) return + + if (isArray(files)) { + (files as Express.Multer.File[]).forEach(f => deleteFileAsync(f.path)) + return + } + + for (const key of Object.keys(files)) { + const file = files[key] + + if (isArray(file)) file.forEach(f => deleteFileAsync(f.path)) + else deleteFileAsync(file.path) + } +} + function getHostWithPort (host: string) { const splitted = host.split(':') @@ -33,22 +59,33 @@ function getHostWithPort (host: string) { return host } -function badRequest (req: express.Request, res: express.Response, next: express.NextFunction) { +function badRequest (req: express.Request, res: express.Response) { return res.type('json').status(400).end() } function createReqFiles ( fieldNames: string[], - mimeTypes: { [ id: string ]: string }, - destinations: { [ fieldName: string ]: string } + mimeTypes: { [id: string]: string }, + destinations: { [fieldName: string]: string } ) { const storage = multer.diskStorage({ destination: (req, file, cb) => { - cb(null, destinations[ file.fieldname ]) + cb(null, destinations[file.fieldname]) }, filename: async (req, file, cb) => { - const extension = mimeTypes[ file.mimetype ] + let extension: string + const fileExtension = extname(file.originalname) + const extensionFromMimetype = 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) { + extension = fileExtension + } else { + extension = extensionFromMimetype + } + let randomString = '' try { @@ -62,7 +99,7 @@ function createReqFiles ( } }) - const fields = [] + const fields: { name: string, maxCount: number }[] = [] for (const fieldName of fieldNames) { fields.push({ name: fieldName, @@ -73,11 +110,25 @@ function createReqFiles ( return multer({ storage }).fields(fields) } +function isUserAbleToSearchRemoteURI (res: express.Response) { + const user = res.locals.oauth ? res.locals.oauth.token.User : undefined + + return CONFIG.SEARCH.REMOTE_URI.ANONYMOUS === true || + (CONFIG.SEARCH.REMOTE_URI.USERS === true && user !== undefined) +} + +function getCountVideos (req: express.Request) { + return req.query.skipCount !== true +} + // --------------------------------------------------------------------------- export { buildNSFWFilter, getHostWithPort, + isUserAbleToSearchRemoteURI, badRequest, - createReqFiles + createReqFiles, + cleanUpReqFiles, + getCountVideos }