2016-08-21 03:08:40 -05:00
|
|
|
'use strict'
|
|
|
|
|
|
|
|
const validator = require('express-validator').validator
|
|
|
|
|
|
|
|
const miscValidators = require('./misc')
|
|
|
|
|
|
|
|
const podsValidators = {
|
2016-12-28 08:49:23 -06:00
|
|
|
isEachUniqueHostValid,
|
|
|
|
isHostValid
|
|
|
|
}
|
|
|
|
|
|
|
|
function isHostValid (host) {
|
|
|
|
return validator.isURL(host) && host.split('://').length === 1
|
2016-08-21 03:08:40 -05:00
|
|
|
}
|
|
|
|
|
2016-11-14 13:03:04 -06:00
|
|
|
function isEachUniqueHostValid (hosts) {
|
|
|
|
return miscValidators.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)
|
2016-08-21 03:08:40 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
module.exports = podsValidators
|