diff options
Diffstat (limited to 'helpers/customValidators.js')
-rw-r--r-- | helpers/customValidators.js | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/helpers/customValidators.js b/helpers/customValidators.js deleted file mode 100644 index 20c41f5da..000000000 --- a/helpers/customValidators.js +++ /dev/null | |||
@@ -1,32 +0,0 @@ | |||
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 | ||