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