Fix updating video tags to empty field
[oweals/peertube.git] / server / helpers / custom-validators / misc.ts
1 import 'multer'
2 import * as validator from 'validator'
3
4 function exists (value: any) {
5   return value !== undefined && value !== null
6 }
7
8 function isArray (value: any) {
9   return Array.isArray(value)
10 }
11
12 function isDateValid (value: string) {
13   return exists(value) && validator.isISO8601(value)
14 }
15
16 function isIdValid (value: string) {
17   return exists(value) && validator.isInt('' + value)
18 }
19
20 function isUUIDValid (value: string) {
21   return exists(value) && validator.isUUID('' + value, 4)
22 }
23
24 function isIdOrUUIDValid (value: string) {
25   return isIdValid(value) || isUUIDValid(value)
26 }
27
28 function isBooleanValid (value: any) {
29   return typeof value === 'boolean' || (typeof value === 'string' && validator.isBoolean(value))
30 }
31
32 function toIntOrNull (value: string) {
33   if (value === 'null') return null
34
35   return validator.toInt(value)
36 }
37
38 function toValueOrNull (value: string) {
39   if (value === 'null') return null
40
41   return value
42 }
43
44 function isFileValid (
45   files: { [ fieldname: string ]: Express.Multer.File[] } | Express.Multer.File[],
46   mimeTypeRegex: string,
47   field: string,
48   optional = false
49 ) {
50   // Should have files
51   if (!files) return optional
52   if (isArray(files)) return optional
53
54   // Should have a file
55   const fileArray = files[ field ]
56   if (!fileArray || fileArray.length === 0) {
57     return optional
58   }
59
60   // The file should exist
61   const file = fileArray[ 0 ]
62   if (!file || !file.originalname) return false
63
64   return new RegExp(`^${mimeTypeRegex}$`, 'i').test(file.mimetype)
65 }
66
67 // ---------------------------------------------------------------------------
68
69 export {
70   exists,
71   isArray,
72   isIdValid,
73   isUUIDValid,
74   isIdOrUUIDValid,
75   isDateValid,
76   toValueOrNull,
77   isBooleanValid,
78   toIntOrNull,
79   isFileValid
80 }