2016-02-07 11:23:23 +01:00
|
|
|
'use strict'
|
2015-12-04 16:13:32 +01:00
|
|
|
|
2016-03-16 22:29:27 +01:00
|
|
|
const validator = require('validator')
|
2015-12-04 16:13:32 +01:00
|
|
|
|
2016-03-16 22:29:27 +01:00
|
|
|
const customValidators = {
|
2016-02-07 11:23:23 +01:00
|
|
|
eachIsRemoteVideosAddValid: eachIsRemoteVideosAddValid,
|
|
|
|
eachIsRemoteVideosRemoveValid: eachIsRemoteVideosRemoveValid,
|
|
|
|
isArray: isArray
|
|
|
|
}
|
2015-12-04 16:13:32 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
function eachIsRemoteVideosAddValid (values) {
|
|
|
|
return values.every(function (val) {
|
|
|
|
return validator.isLength(val.name, 1, 50) &&
|
|
|
|
validator.isLength(val.description, 1, 50) &&
|
|
|
|
validator.isLength(val.magnetUri, 10) &&
|
|
|
|
validator.isURL(val.podUrl)
|
|
|
|
})
|
|
|
|
}
|
2015-12-04 16:13:32 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
function eachIsRemoteVideosRemoveValid (values) {
|
|
|
|
return values.every(function (val) {
|
|
|
|
return validator.isLength(val.magnetUri, 10)
|
|
|
|
})
|
|
|
|
}
|
2015-12-04 16:13:32 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
function isArray (value) {
|
|
|
|
return Array.isArray(value)
|
|
|
|
}
|
2015-12-04 16:13:32 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-01-31 11:23:52 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
module.exports = customValidators
|