2017-06-05 15:53:49 -04:00
|
|
|
import * as validator from 'validator'
|
2017-09-07 09:27:35 -04:00
|
|
|
import 'express-validator'
|
2016-08-21 04:08:40 -04:00
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
import { isArray, exists } from './misc'
|
2017-08-25 12:36:49 -04:00
|
|
|
import { isTestInstance } from '../core-utils'
|
2016-12-28 09:49:23 -05:00
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function isHostValid (host: string) {
|
2017-08-25 12:36:49 -04:00
|
|
|
const isURLOptions = {
|
|
|
|
require_host: true,
|
|
|
|
require_tld: true
|
|
|
|
}
|
|
|
|
|
|
|
|
// We validate 'localhost', so we don't have the top level domain
|
|
|
|
if (isTestInstance()) {
|
|
|
|
isURLOptions.require_tld = false
|
|
|
|
}
|
|
|
|
|
|
|
|
return exists(host) && validator.isURL(host, isURLOptions) && host.split('://').length === 1
|
2016-08-21 04:08:40 -04:00
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function isEachUniqueHostValid (hosts: string[]) {
|
2017-05-15 16:22:03 -04:00
|
|
|
return isArray(hosts) &&
|
2016-11-14 14:03:04 -05:00
|
|
|
hosts.length !== 0 &&
|
2017-07-11 11:04:57 -04:00
|
|
|
hosts.every(host => {
|
2016-12-28 09:49:23 -05:00
|
|
|
return isHostValid(host) && hosts.indexOf(host) === hosts.lastIndexOf(host)
|
2016-08-21 04:08:40 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
export {
|
|
|
|
isEachUniqueHostValid,
|
|
|
|
isHostValid
|
|
|
|
}
|