PeerTube/server/helpers/custom-validators/pods.ts

32 lines
704 B
TypeScript
Raw Normal View History

2017-06-05 14:53:49 -05:00
import * as validator from 'validator'
2017-06-10 15:15:25 -05:00
import { isArray, exists } from './misc'
2016-12-28 08:49:23 -06:00
2017-06-10 15:15:25 -05:00
function isHostValid (host: string) {
return exists(host) && validator.isURL(host) && host.split('://').length === 1
}
2017-06-10 15:15:25 -05:00
function isEachUniqueHostValid (hosts: string[]) {
2017-05-15 15:22:03 -05:00
return isArray(hosts) &&
hosts.length !== 0 &&
hosts.every(function (host) {
2016-12-28 08:49:23 -06:00
return isHostValid(host) && hosts.indexOf(host) === hosts.lastIndexOf(host)
})
}
// ---------------------------------------------------------------------------
2017-05-15 15:22:03 -05:00
export {
isEachUniqueHostValid,
isHostValid
}
2017-06-10 15:15:25 -05:00
declare global {
namespace ExpressValidator {
export interface Validator {
isEachUniqueHostValid
isHostValid
}
}
}