diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-03-07 11:33:59 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-03-07 11:33:59 +0100 |
commit | b9a3e09ad5a7673f64556d1dba122ed4c4fac980 (patch) | |
tree | 66d4928b82af19a2372a2505822233884f3fd471 /server/helpers/customValidators.js | |
parent | b2ff5e3e686eb552c5ccd64ce67b0455972ceef0 (diff) | |
download | PeerTube-b9a3e09ad5a7673f64556d1dba122ed4c4fac980.tar.gz PeerTube-b9a3e09ad5a7673f64556d1dba122ed4c4fac980.tar.zst PeerTube-b9a3e09ad5a7673f64556d1dba122ed4c4fac980.zip |
Prepare folders structure for angular app
Diffstat (limited to 'server/helpers/customValidators.js')
-rw-r--r-- | server/helpers/customValidators.js | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/server/helpers/customValidators.js b/server/helpers/customValidators.js new file mode 100644 index 000000000..20c41f5da --- /dev/null +++ b/server/helpers/customValidators.js | |||
@@ -0,0 +1,32 @@ | |||
1 | 'use strict' | ||
2 | |||
3 | var validator = require('validator') | ||
4 | |||
5 | var customValidators = { | ||
6 | eachIsRemoteVideosAddValid: eachIsRemoteVideosAddValid, | ||
7 | eachIsRemoteVideosRemoveValid: eachIsRemoteVideosRemoveValid, | ||
8 | isArray: isArray | ||
9 | } | ||
10 | |||
11 | function eachIsRemoteVideosAddValid (values) { | ||
12 | return values.every(function (val) { | ||
13 | return validator.isLength(val.name, 1, 50) && | ||
14 | validator.isLength(val.description, 1, 50) && | ||
15 | validator.isLength(val.magnetUri, 10) && | ||
16 | validator.isURL(val.podUrl) | ||
17 | }) | ||
18 | } | ||
19 | |||
20 | function eachIsRemoteVideosRemoveValid (values) { | ||
21 | return values.every(function (val) { | ||
22 | return validator.isLength(val.magnetUri, 10) | ||
23 | }) | ||
24 | } | ||
25 | |||
26 | function isArray (value) { | ||
27 | return Array.isArray(value) | ||
28 | } | ||
29 | |||
30 | // --------------------------------------------------------------------------- | ||
31 | |||
32 | module.exports = customValidators | ||