]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/helpers/custom-validators/search.ts
Support additional video extensions
[github/Chocobozzz/PeerTube.git] / server / helpers / custom-validators / search.ts
1 import * as validator from 'validator'
2 import 'express-validator'
3
4 import { isArray } from './misc'
5
6 function isNumberArray (value: any) {
7 return isArray(value) && value.every(v => validator.isInt('' + v))
8 }
9
10 function isStringArray (value: any) {
11 return isArray(value) && value.every(v => typeof v === 'string')
12 }
13
14 function isNSFWQueryValid (value: any) {
15 return value === 'true' || value === 'false' || value === 'both'
16 }
17
18 // ---------------------------------------------------------------------------
19
20 export {
21 isNumberArray,
22 isStringArray,
23 isNSFWQueryValid
24 }