diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-05-15 22:22:03 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-05-20 09:57:40 +0200 |
commit | 65fcc3119c334b75dd13bcfdebf186afdc580a8f (patch) | |
tree | 4f2158c61a9b7c3f47cfa233d01413b946ee53c0 /server/helpers/custom-validators/pods.ts | |
parent | d5f345ed4cfac4e1fa84dcb4fce1cda4d32f9c73 (diff) | |
download | PeerTube-65fcc3119c334b75dd13bcfdebf186afdc580a8f.tar.gz PeerTube-65fcc3119c334b75dd13bcfdebf186afdc580a8f.tar.zst PeerTube-65fcc3119c334b75dd13bcfdebf186afdc580a8f.zip |
First typescript iteration
Diffstat (limited to 'server/helpers/custom-validators/pods.ts')
-rw-r--r-- | server/helpers/custom-validators/pods.ts | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/server/helpers/custom-validators/pods.ts b/server/helpers/custom-validators/pods.ts new file mode 100644 index 000000000..e4c827feb --- /dev/null +++ b/server/helpers/custom-validators/pods.ts | |||
@@ -0,0 +1,24 @@ | |||
1 | import expressValidator = require('express-validator') | ||
2 | // TODO: use .validator when express-validator typing will have validator field | ||
3 | const validator = expressValidator['validator'] | ||
4 | |||
5 | import { isArray } from './misc' | ||
6 | |||
7 | function isHostValid (host) { | ||
8 | return validator.isURL(host) && host.split('://').length === 1 | ||
9 | } | ||
10 | |||
11 | function isEachUniqueHostValid (hosts) { | ||
12 | return isArray(hosts) && | ||
13 | hosts.length !== 0 && | ||
14 | hosts.every(function (host) { | ||
15 | return isHostValid(host) && hosts.indexOf(host) === hosts.lastIndexOf(host) | ||
16 | }) | ||
17 | } | ||
18 | |||
19 | // --------------------------------------------------------------------------- | ||
20 | |||
21 | export { | ||
22 | isEachUniqueHostValid, | ||
23 | isHostValid | ||
24 | } | ||