2016-02-07 05:23:23 -05:00
|
|
|
'use strict'
|
2015-12-04 10:13:32 -05:00
|
|
|
|
2016-06-06 08:15:03 -04:00
|
|
|
const validator = require('express-validator').validator
|
2017-03-08 15:35:43 -05:00
|
|
|
const values = require('lodash/values')
|
2015-12-04 10:13:32 -05:00
|
|
|
|
2016-07-31 14:58:43 -04:00
|
|
|
const constants = require('../../initializers/constants')
|
|
|
|
const usersValidators = require('./users')
|
|
|
|
const miscValidators = require('./misc')
|
|
|
|
const VIDEOS_CONSTRAINTS_FIELDS = constants.CONSTRAINTS_FIELDS.VIDEOS
|
2017-01-04 14:59:23 -05:00
|
|
|
const VIDEO_ABUSES_CONSTRAINTS_FIELDS = constants.CONSTRAINTS_FIELDS.VIDEO_ABUSES
|
2017-02-26 12:57:33 -05:00
|
|
|
const VIDEO_EVENTS_CONSTRAINTS_FIELDS = constants.CONSTRAINTS_FIELDS.VIDEO_EVENTS
|
2016-05-16 13:49:10 -04:00
|
|
|
|
2016-07-31 14:58:43 -04:00
|
|
|
const videosValidators = {
|
2016-10-02 06:19:02 -04:00
|
|
|
isVideoAuthorValid,
|
|
|
|
isVideoDateValid,
|
2017-03-22 16:15:55 -04:00
|
|
|
isVideoCategoryValid,
|
2017-03-27 14:53:11 -04:00
|
|
|
isVideoLicenceValid,
|
2017-04-07 06:13:37 -04:00
|
|
|
isVideoLanguageValid,
|
2017-03-28 15:19:46 -04:00
|
|
|
isVideoNSFWValid,
|
2016-10-02 06:19:02 -04:00
|
|
|
isVideoDescriptionValid,
|
|
|
|
isVideoDurationValid,
|
2016-12-11 15:50:51 -05:00
|
|
|
isVideoInfoHashValid,
|
2016-10-02 06:19:02 -04:00
|
|
|
isVideoNameValid,
|
|
|
|
isVideoTagsValid,
|
|
|
|
isVideoThumbnailValid,
|
2017-01-04 14:59:23 -05:00
|
|
|
isVideoThumbnailDataValid,
|
|
|
|
isVideoExtnameValid,
|
|
|
|
isVideoRemoteIdValid,
|
|
|
|
isVideoAbuseReasonValid,
|
2017-02-10 05:27:14 -05:00
|
|
|
isVideoAbuseReporterUsernameValid,
|
2017-02-21 15:35:59 -05:00
|
|
|
isVideoFile,
|
|
|
|
isVideoViewsValid,
|
|
|
|
isVideoLikesValid,
|
2017-03-08 15:35:43 -05:00
|
|
|
isVideoRatingTypeValid,
|
2017-02-26 12:57:33 -05:00
|
|
|
isVideoDislikesValid,
|
|
|
|
isVideoEventCountValid
|
2016-02-07 05:23:23 -05:00
|
|
|
}
|
2015-12-04 10:13:32 -05:00
|
|
|
|
2016-06-06 08:15:03 -04:00
|
|
|
function isVideoAuthorValid (value) {
|
2016-08-04 16:32:36 -04:00
|
|
|
return usersValidators.isUserUsernameValid(value)
|
2016-06-06 08:15:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function isVideoDateValid (value) {
|
|
|
|
return validator.isDate(value)
|
|
|
|
}
|
|
|
|
|
2017-03-22 16:15:55 -04:00
|
|
|
function isVideoCategoryValid (value) {
|
|
|
|
return constants.VIDEO_CATEGORIES[value] !== undefined
|
|
|
|
}
|
|
|
|
|
2017-03-27 14:53:11 -04:00
|
|
|
function isVideoLicenceValid (value) {
|
|
|
|
return constants.VIDEO_LICENCES[value] !== undefined
|
|
|
|
}
|
|
|
|
|
2017-04-07 06:13:37 -04:00
|
|
|
function isVideoLanguageValid (value) {
|
2017-05-05 08:29:58 -04:00
|
|
|
return value === null || constants.VIDEO_LANGUAGES[value] !== undefined
|
2017-04-07 06:13:37 -04:00
|
|
|
}
|
|
|
|
|
2017-03-28 15:19:46 -04:00
|
|
|
function isVideoNSFWValid (value) {
|
|
|
|
return validator.isBoolean(value)
|
|
|
|
}
|
|
|
|
|
2016-06-06 08:15:03 -04:00
|
|
|
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 15:50:51 -05: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 08:15:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function isVideoNameValid (value) {
|
|
|
|
return validator.isLength(value, VIDEOS_CONSTRAINTS_FIELDS.NAME)
|
|
|
|
}
|
|
|
|
|
|
|
|
function isVideoTagsValid (tags) {
|
2016-07-31 14:58:43 -04:00
|
|
|
return miscValidators.isArray(tags) &&
|
2016-06-06 08:15:03 -04:00
|
|
|
validator.isInt(tags.length, VIDEOS_CONSTRAINTS_FIELDS.TAGS) &&
|
|
|
|
tags.every(function (tag) {
|
2017-03-22 16:47:05 -04:00
|
|
|
return validator.isLength(tag, VIDEOS_CONSTRAINTS_FIELDS.TAG)
|
2016-06-06 08:15:03 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function isVideoThumbnailValid (value) {
|
2016-06-24 11:42:51 -04:00
|
|
|
return validator.isLength(value, VIDEOS_CONSTRAINTS_FIELDS.THUMBNAIL)
|
|
|
|
}
|
|
|
|
|
2016-12-29 06:13:19 -05:00
|
|
|
function isVideoThumbnailDataValid (value) {
|
|
|
|
return validator.isByteLength(value, VIDEOS_CONSTRAINTS_FIELDS.THUMBNAIL_DATA)
|
2016-06-06 08:15:03 -04:00
|
|
|
}
|
|
|
|
|
2016-11-11 07:47:50 -05:00
|
|
|
function isVideoRemoteIdValid (value) {
|
2016-12-11 15:50:51 -05:00
|
|
|
return validator.isUUID(value, 4)
|
2016-11-11 07:47:50 -05:00
|
|
|
}
|
|
|
|
|
2017-01-04 14:59:23 -05:00
|
|
|
function isVideoAbuseReasonValid (value) {
|
|
|
|
return validator.isLength(value, VIDEO_ABUSES_CONSTRAINTS_FIELDS.REASON)
|
2016-07-31 14:58:43 -04:00
|
|
|
}
|
|
|
|
|
2017-01-04 14:59:23 -05:00
|
|
|
function isVideoAbuseReporterUsernameValid (value) {
|
|
|
|
return usersValidators.isUserUsernameValid(value)
|
2016-12-30 05:27:42 -05:00
|
|
|
}
|
|
|
|
|
2017-02-21 15:35:59 -05:00
|
|
|
function isVideoViewsValid (value) {
|
2017-02-26 12:57:33 -05:00
|
|
|
return validator.isInt(value + '', VIDEOS_CONSTRAINTS_FIELDS.VIEWS)
|
2017-02-21 15:35:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
function isVideoLikesValid (value) {
|
2017-02-26 12:57:33 -05:00
|
|
|
return validator.isInt(value + '', VIDEOS_CONSTRAINTS_FIELDS.LIKES)
|
2017-02-21 15:35:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
function isVideoDislikesValid (value) {
|
2017-02-26 12:57:33 -05:00
|
|
|
return validator.isInt(value + '', VIDEOS_CONSTRAINTS_FIELDS.DISLIKES)
|
|
|
|
}
|
|
|
|
|
|
|
|
function isVideoEventCountValid (value) {
|
|
|
|
return validator.isInt(value + '', VIDEO_EVENTS_CONSTRAINTS_FIELDS.COUNT)
|
2017-02-21 15:35:59 -05:00
|
|
|
}
|
|
|
|
|
2017-03-08 15:35:43 -05:00
|
|
|
function isVideoRatingTypeValid (value) {
|
|
|
|
return values(constants.VIDEO_RATE_TYPES).indexOf(value) !== -1
|
|
|
|
}
|
|
|
|
|
2017-02-10 05:27:14 -05:00
|
|
|
function isVideoFile (value, files) {
|
|
|
|
// Should have files
|
|
|
|
if (!files) return false
|
|
|
|
|
|
|
|
// Should have videofile file
|
|
|
|
const videofile = files.videofile
|
|
|
|
if (!videofile || videofile.length === 0) return false
|
|
|
|
|
|
|
|
// The file should exist
|
|
|
|
const file = videofile[0]
|
|
|
|
if (!file || !file.originalname) return false
|
|
|
|
|
|
|
|
return new RegExp('^video/(webm|mp4|ogg)$', 'i').test(file.mimetype)
|
|
|
|
}
|
|
|
|
|
2017-01-04 14:59:23 -05:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
module.exports = videosValidators
|