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

42 lines
902 B
TypeScript
Raw Normal View History

2017-10-24 13:41:09 -04:00
import * as validator from 'validator'
2017-09-07 09:27:35 -04:00
2017-06-10 16:15:25 -04:00
function exists (value: any) {
2016-07-31 14:58:43 -04:00
return value !== undefined && value !== null
}
2017-06-10 16:15:25 -04:00
function isArray (value: any) {
2016-07-31 14:58:43 -04:00
return Array.isArray(value)
}
2017-10-24 13:41:09 -04:00
function isDateValid (value: string) {
return exists(value) && validator.isISO8601(value)
}
function isIdValid (value: string) {
return exists(value) && validator.isInt('' + value)
}
function isUUIDValid (value: string) {
return exists(value) && validator.isUUID('' + value, 4)
}
function isIdOrUUIDValid (value: string) {
return isIdValid(value) || isUUIDValid(value)
}
2018-01-03 04:12:36 -05:00
function isBooleanValid (value: string) {
return typeof value === 'boolean' || (typeof value === 'string' && validator.isBoolean(value))
}
2016-07-31 14:58:43 -04:00
// ---------------------------------------------------------------------------
2017-05-15 16:22:03 -04:00
export {
exists,
2017-10-24 13:41:09 -04:00
isArray,
isIdValid,
isUUIDValid,
isIdOrUUIDValid,
2018-01-03 04:12:36 -05:00
isDateValid,
isBooleanValid
2017-05-15 16:22:03 -04:00
}