1
0
Fork 0
peertube/server/helpers/custom-validators/search.ts

25 lines
574 B
TypeScript
Raw Normal View History

2018-07-20 12:35:18 +00:00
import * as validator from 'validator'
import 'express-validator'
import { isArray } from './misc'
function isNumberArray (value: any) {
return isArray(value) && value.every(v => validator.isInt('' + v))
}
function isStringArray (value: any) {
return isArray(value) && value.every(v => typeof v === 'string')
}
2018-07-20 16:31:49 +00:00
function isNSFWQueryValid (value: any) {
return value === 'true' || value === 'false' || value === 'both'
}
2018-07-20 12:35:18 +00:00
// ---------------------------------------------------------------------------
export {
isNumberArray,
2018-07-20 16:31:49 +00:00
isStringArray,
isNSFWQueryValid
2018-07-20 12:35:18 +00:00
}