aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/helpers/custom-validators/pods.ts
blob: e4c827feb11b6405d964afce9499bb108e4e6a13 (plain) (tree)
1
2
3
4
5
6
7
8
9
10


                                                                               
 
                                


                                                                

 
                                        
                          

                                 
                                                                                 




                                                                              



                        
import expressValidator = require('express-validator')
// TODO: use .validator when express-validator typing will have validator field
const validator = expressValidator['validator']

import { isArray } from './misc'

function isHostValid (host) {
  return validator.isURL(host) && host.split('://').length === 1
}

function isEachUniqueHostValid (hosts) {
  return isArray(hosts) &&
    hosts.length !== 0 &&
    hosts.every(function (host) {
      return isHostValid(host) && hosts.indexOf(host) === hosts.lastIndexOf(host)
    })
}

// ---------------------------------------------------------------------------

export {
  isEachUniqueHostValid,
  isHostValid
}