2016-02-07 04:23:23 -06:00
|
|
|
'use strict'
|
2015-12-04 09:13:32 -06:00
|
|
|
|
2016-06-06 07:15:03 -05:00
|
|
|
const validator = require('express-validator').validator
|
2015-12-04 09:13:32 -06:00
|
|
|
|
2016-07-31 13:58:43 -05:00
|
|
|
const constants = require('../../initializers/constants')
|
|
|
|
const usersValidators = require('./users')
|
|
|
|
const miscValidators = require('./misc')
|
|
|
|
const VIDEOS_CONSTRAINTS_FIELDS = constants.CONSTRAINTS_FIELDS.VIDEOS
|
2016-05-16 12:49:10 -05:00
|
|
|
|
2016-07-31 13:58:43 -05:00
|
|
|
const videosValidators = {
|
2016-10-02 05:19:02 -05:00
|
|
|
isEachRemoteVideosValid,
|
|
|
|
isVideoAuthorValid,
|
|
|
|
isVideoDateValid,
|
|
|
|
isVideoDescriptionValid,
|
|
|
|
isVideoDurationValid,
|
2016-12-11 14:50:51 -06:00
|
|
|
isVideoInfoHashValid,
|
2016-10-02 05:19:02 -05:00
|
|
|
isVideoNameValid,
|
|
|
|
isVideoTagsValid,
|
|
|
|
isVideoThumbnailValid,
|
2016-12-29 05:13:19 -06:00
|
|
|
isVideoThumbnailDataValid
|
2016-06-06 07:15:03 -05:00
|
|
|
}
|
|
|
|
|
2016-06-18 09:13:54 -05:00
|
|
|
function isEachRemoteVideosValid (requests) {
|
2016-08-21 02:54:46 -05:00
|
|
|
return miscValidators.isArray(requests) &&
|
|
|
|
requests.every(function (request) {
|
|
|
|
const video = request.data
|
|
|
|
return (
|
|
|
|
isRequestTypeAddValid(request.type) &&
|
|
|
|
isVideoAuthorValid(video.author) &&
|
2016-12-11 14:50:51 -06:00
|
|
|
isVideoDateValid(video.createdAt) &&
|
2016-08-21 02:54:46 -05:00
|
|
|
isVideoDescriptionValid(video.description) &&
|
|
|
|
isVideoDurationValid(video.duration) &&
|
2016-12-11 14:50:51 -06:00
|
|
|
isVideoInfoHashValid(video.infoHash) &&
|
2016-08-21 02:54:46 -05:00
|
|
|
isVideoNameValid(video.name) &&
|
|
|
|
isVideoTagsValid(video.tags) &&
|
2016-12-29 05:13:19 -06:00
|
|
|
isVideoThumbnailDataValid(video.thumbnailData) &&
|
2016-12-11 14:50:51 -06:00
|
|
|
isVideoRemoteIdValid(video.remoteId) &&
|
|
|
|
isVideoExtnameValid(video.extname)
|
2016-08-21 02:54:46 -05:00
|
|
|
) ||
|
|
|
|
(
|
|
|
|
isRequestTypeRemoveValid(request.type) &&
|
|
|
|
isVideoNameValid(video.name) &&
|
2016-11-11 06:47:50 -06:00
|
|
|
isVideoRemoteIdValid(video.remoteId)
|
2016-08-21 02:54:46 -05:00
|
|
|
)
|
|
|
|
})
|
2016-02-07 04:23:23 -06:00
|
|
|
}
|
2015-12-04 09:13:32 -06:00
|
|
|
|
2016-06-06 07:15:03 -05:00
|
|
|
function isVideoAuthorValid (value) {
|
2016-08-04 15:32:36 -05:00
|
|
|
return usersValidators.isUserUsernameValid(value)
|
2016-06-06 07:15:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
function isVideoDateValid (value) {
|
|
|
|
return validator.isDate(value)
|
|
|
|
}
|
|
|
|
|
|
|
|
function isVideoDescriptionValid (value) {
|
|
|
|
return validator.isLength(value, VIDEOS_CONSTRAINTS_FIELDS.DESCRIPTION)
|
|
|
|
}
|
|
|
|
|
|
|
|
function isVideoDurationValid (value) {
|
|
|
|
return validator.isInt(value + '', VIDEOS_CONSTRAINTS_FIELDS.DURATION)
|
|
|
|
}
|
|
|
|
|
2016-12-11 14:50:51 -06:00
|
|
|
function isVideoExtnameValid (value) {
|
|
|
|
return VIDEOS_CONSTRAINTS_FIELDS.EXTNAME.indexOf(value) !== -1
|
|
|
|
}
|
|
|
|
|
|
|
|
function isVideoInfoHashValid (value) {
|
|
|
|
return validator.isLength(value, VIDEOS_CONSTRAINTS_FIELDS.INFO_HASH)
|
2016-06-06 07:15:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
function isVideoNameValid (value) {
|
|
|
|
return validator.isLength(value, VIDEOS_CONSTRAINTS_FIELDS.NAME)
|
|
|
|
}
|
|
|
|
|
|
|
|
function isVideoTagsValid (tags) {
|
2016-07-31 13:58:43 -05:00
|
|
|
return miscValidators.isArray(tags) &&
|
2016-06-06 07:15:03 -05:00
|
|
|
validator.isInt(tags.length, VIDEOS_CONSTRAINTS_FIELDS.TAGS) &&
|
|
|
|
tags.every(function (tag) {
|
|
|
|
return validator.isAlphanumeric(tag) &&
|
|
|
|
validator.isLength(tag, VIDEOS_CONSTRAINTS_FIELDS.TAG)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function isVideoThumbnailValid (value) {
|
2016-06-24 10:42:51 -05:00
|
|
|
return validator.isLength(value, VIDEOS_CONSTRAINTS_FIELDS.THUMBNAIL)
|
|
|
|
}
|
|
|
|
|
2016-12-29 05:13:19 -06:00
|
|
|
function isVideoThumbnailDataValid (value) {
|
|
|
|
return validator.isByteLength(value, VIDEOS_CONSTRAINTS_FIELDS.THUMBNAIL_DATA)
|
2016-06-06 07:15:03 -05:00
|
|
|
}
|
|
|
|
|
2016-11-11 06:47:50 -06:00
|
|
|
function isVideoRemoteIdValid (value) {
|
2016-12-11 14:50:51 -06:00
|
|
|
return validator.isUUID(value, 4)
|
2016-11-11 06:47:50 -06:00
|
|
|
}
|
|
|
|
|
2016-02-07 04:23:23 -06:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-01-31 04:23:52 -06:00
|
|
|
|
2016-07-31 13:58:43 -05:00
|
|
|
module.exports = videosValidators
|
2016-06-06 07:15:03 -05:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
2016-07-31 13:58:43 -05:00
|
|
|
|
|
|
|
function isRequestTypeAddValid (value) {
|
|
|
|
return value === 'add'
|
|
|
|
}
|
|
|
|
|
|
|
|
function isRequestTypeRemoveValid (value) {
|
|
|
|
return value === 'remove'
|
|
|
|
}
|