]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/helpers/custom-validators/search.ts
Add ability to search on followers/following
[github/Chocobozzz/PeerTube.git] / server / helpers / custom-validators / search.ts
CommitLineData
d525fc39
C
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
0b18f4aa
C
14function isNSFWQueryValid (value: any) {
15 return value === 'true' || value === 'false' || value === 'both'
16}
17
d525fc39
C
18// ---------------------------------------------------------------------------
19
20export {
21 isNumberArray,
0b18f4aa
C
22 isStringArray,
23 isNSFWQueryValid
d525fc39 24}