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

25 lines
666 B
TypeScript
Raw Normal View History

2017-05-15 20:22:03 +00:00
import expressValidator = require('express-validator')
// TODO: use .validator when express-validator typing will have validator field
const validator = expressValidator['validator']
2017-05-15 20:22:03 +00:00
import { isArray } from './misc'
2016-12-28 14:49:23 +00:00
function isHostValid (host) {
return validator.isURL(host) && host.split('://').length === 1
}
function isEachUniqueHostValid (hosts) {
2017-05-15 20:22:03 +00:00
return isArray(hosts) &&
hosts.length !== 0 &&
hosts.every(function (host) {
2016-12-28 14:49:23 +00:00
return isHostValid(host) && hosts.indexOf(host) === hosts.lastIndexOf(host)
})
}
// ---------------------------------------------------------------------------
2017-05-15 20:22:03 +00:00
export {
isEachUniqueHostValid,
isHostValid
}