aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/helpers/custom-validators/pods.ts
blob: 0519def52607b18d2e9bba468e143df47c0fa404 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import * as validator from 'validator'

import { isArray, exists } from './misc'

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

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

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

export {
  isEachUniqueHostValid,
  isHostValid
}

declare global {
  namespace ExpressValidator {
    export interface Validator {
      isEachUniqueHostValid
      isHostValid
    }
  }
}