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-05-16 19:49:10 +02:00
|
|
|
const constants = require('../initializers/constants')
|
|
|
|
|
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) &&
|
2016-05-03 22:41:46 +02:00
|
|
|
validator.isURL(val.podUrl) &&
|
2016-05-13 20:42:11 +02:00
|
|
|
!isNaN(val.duration) &&
|
2016-05-16 19:49:10 +02:00
|
|
|
val.duration >= 0 &&
|
|
|
|
val.duration < constants.MAXIMUM_VIDEO_DURATION &&
|
2016-05-16 19:51:07 +02:00
|
|
|
validator.isLength(val.author, 1, constants.MAXIMUM_AUTHOR_LENGTH) &&
|
2016-05-13 20:42:11 +02:00
|
|
|
validator.isDate(val.createdDate)
|
2016-02-07 11:23:23 +01:00
|
|
|
})
|
|
|
|
}
|
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
|