]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/helpers/custom-validators/pods.js
Server: add database field validations
[github/Chocobozzz/PeerTube.git] / server / helpers / custom-validators / pods.js
1 'use strict'
2
3 const validator = require('express-validator').validator
4
5 const miscValidators = require('./misc')
6
7 const podsValidators = {
8 isEachUniqueHostValid,
9 isHostValid
10 }
11
12 function isHostValid (host) {
13 return validator.isURL(host) && host.split('://').length === 1
14 }
15
16 function isEachUniqueHostValid (hosts) {
17 return miscValidators.isArray(hosts) &&
18 hosts.length !== 0 &&
19 hosts.every(function (host) {
20 return isHostValid(host) && hosts.indexOf(host) === hosts.lastIndexOf(host)
21 })
22 }
23
24 // ---------------------------------------------------------------------------
25
26 module.exports = podsValidators