X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fhelpers%2Fcustom-validators%2Fmisc.ts;h=17750379de66946b186ef7d476b50ac1957891cf;hb=4638cd713dcdd007cd7f49b9a95fa62ac7823e7c;hp=65578c1438ec2000449d22fefd8f9c1270e7c08c;hpb=c55e3d7227fe1453869e309025996b9d75256d5d;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/helpers/custom-validators/misc.ts b/server/helpers/custom-validators/misc.ts index 65578c143..17750379d 100644 --- a/server/helpers/custom-validators/misc.ts +++ b/server/helpers/custom-validators/misc.ts @@ -2,7 +2,7 @@ import 'multer' import { UploadFilesForCheck } from 'express' import { sep } from 'path' import validator from 'validator' -import { isShortUUID, shortToUUID } from '@shared/core-utils' +import { isShortUUID, shortToUUID } from '@shared/extra-utils' function exists (value: any) { return value !== undefined && value !== null @@ -61,75 +61,43 @@ function isIntOrNull (value: any) { // --------------------------------------------------------------------------- -function isFileFieldValid ( - files: { [ fieldname: string ]: Express.Multer.File[] } | Express.Multer.File[], - field: string, - optional = false -) { - // Should have files - if (!files) return optional - if (isArray(files)) return optional +function isFileValid (options: { + files: UploadFilesForCheck - // Should have a file - const fileArray = files[field] - if (!fileArray || fileArray.length === 0) { - return optional - } + maxSize: number | null + mimeTypeRegex: string | null - // The file should exist - const file = fileArray[0] - if (!file || !file.originalname) return false - return file -} + field?: string -function isFileMimeTypeValid ( - files: UploadFilesForCheck, - mimeTypeRegex: string, - field: string, - optional = false -) { - // Should have files - if (!files) return optional - if (isArray(files)) return optional - - // Should have a file - const fileArray = files[field] - if (!fileArray || fileArray.length === 0) { - return optional - } + optional?: boolean // Default false +}) { + const { files, mimeTypeRegex, field, maxSize, optional = false } = options - // The file should exist - const file = fileArray[0] - if (!file || !file.originalname) return false - - return new RegExp(`^${mimeTypeRegex}$`, 'i').test(file.mimetype) -} - -function isFileValid ( - files: { [ fieldname: string ]: Express.Multer.File[] } | Express.Multer.File[], - mimeTypeRegex: string, - field: string, - maxSize: number | null, - optional = false -) { // Should have files if (!files) return optional - if (isArray(files)) return optional - // Should have a file - const fileArray = files[field] - if (!fileArray || fileArray.length === 0) { + const fileArray = isArray(files) + ? files + : files[field] + + if (!fileArray || !isArray(fileArray) || fileArray.length === 0) { return optional } - // The file should exist + // The file exists const file = fileArray[0] if (!file || !file.originalname) return false // Check size if ((maxSize !== null) && file.size > maxSize) return false - return new RegExp(`^${mimeTypeRegex}$`, 'i').test(file.mimetype) + if (mimeTypeRegex === null) return true + + return checkMimetypeRegex(file.mimetype, mimeTypeRegex) +} + +function checkMimetypeRegex (fileMimeType: string, mimeTypeRegex: string) { + return new RegExp(`^${mimeTypeRegex}$`, 'i').test(fileMimeType) } // --------------------------------------------------------------------------- @@ -168,12 +136,6 @@ function toValueOrNull (value: string) { return value } -function toArray (value: any) { - if (value && isArray(value) === false) return [ value ] - - return value -} - function toIntArray (value: any) { if (!value) return [] if (isArray(value) === false) return [ validator.toInt(value) ] @@ -202,9 +164,7 @@ export { isBooleanValid, toIntOrNull, areUUIDsValid, - toArray, toIntArray, - isFileFieldValid, - isFileMimeTypeValid, - isFileValid + isFileValid, + checkMimetypeRegex }