PeerTube/server/helpers/custom-validators/videos.ts

146 lines
4.3 KiB
TypeScript
Raw Normal View History

2017-11-23 17:53:38 +01:00
import { Response } from 'express'
2017-09-07 15:27:35 +02:00
import 'express-validator'
2017-11-17 15:52:26 +01:00
import { values } from 'lodash'
2017-06-11 15:19:43 +02:00
import 'multer'
2017-11-17 15:52:26 +01:00
import * as validator from 'validator'
import { VideoRateType } from '../../../shared'
2017-11-23 17:53:38 +01:00
import { CONSTRAINTS_FIELDS, VIDEO_CATEGORIES, VIDEO_LANGUAGES, VIDEO_LICENCES, VIDEO_RATE_TYPES } from '../../initializers'
2017-11-27 17:30:46 +01:00
import { VIDEO_PRIVACIES } from '../../initializers/constants'
2017-11-23 17:53:38 +01:00
import { database as db } from '../../initializers/database'
import { VideoInstance } from '../../models/video/video-interface'
2017-11-17 15:52:26 +01:00
import { exists, isArray } from './misc'
2017-05-15 22:22:03 +02:00
const VIDEOS_CONSTRAINTS_FIELDS = CONSTRAINTS_FIELDS.VIDEOS
const VIDEO_ABUSES_CONSTRAINTS_FIELDS = CONSTRAINTS_FIELDS.VIDEO_ABUSES
2017-06-10 22:15:25 +02:00
function isVideoCategoryValid (value: number) {
2017-05-15 22:22:03 +02:00
return VIDEO_CATEGORIES[value] !== undefined
2017-03-22 21:15:55 +01:00
}
2017-06-10 22:15:25 +02:00
function isVideoLicenceValid (value: number) {
2017-05-15 22:22:03 +02:00
return VIDEO_LICENCES[value] !== undefined
2017-03-27 20:53:11 +02:00
}
2017-06-10 22:15:25 +02:00
function isVideoLanguageValid (value: number) {
2017-05-15 22:22:03 +02:00
return value === null || VIDEO_LANGUAGES[value] !== undefined
2017-04-07 12:13:37 +02:00
}
2017-06-10 22:15:25 +02:00
function isVideoNSFWValid (value: any) {
return typeof value === 'boolean' || (typeof value === 'string' && validator.isBoolean(value))
2017-03-28 21:19:46 +02:00
}
2017-11-15 16:28:35 +01:00
function isVideoDurationValid (value: string) {
return exists(value) && validator.isInt(value + '', VIDEOS_CONSTRAINTS_FIELDS.DURATION)
}
2017-10-30 10:16:27 +01:00
function isVideoTruncatedDescriptionValid (value: string) {
return exists(value) && validator.isLength(value, VIDEOS_CONSTRAINTS_FIELDS.TRUNCATED_DESCRIPTION)
}
2017-06-10 22:15:25 +02:00
function isVideoDescriptionValid (value: string) {
return exists(value) && validator.isLength(value, VIDEOS_CONSTRAINTS_FIELDS.DESCRIPTION)
2016-06-06 14:15:03 +02:00
}
2017-06-10 22:15:25 +02:00
function isVideoNameValid (value: string) {
return exists(value) && validator.isLength(value, VIDEOS_CONSTRAINTS_FIELDS.NAME)
2016-06-06 14:15:03 +02:00
}
2017-11-10 14:34:45 +01:00
function isVideoTagValid (tag: string) {
return exists(tag) && validator.isLength(tag, VIDEOS_CONSTRAINTS_FIELDS.TAG)
}
2017-06-10 22:15:25 +02:00
function isVideoTagsValid (tags: string[]) {
2017-05-15 22:22:03 +02:00
return isArray(tags) &&
2017-06-10 22:15:25 +02:00
validator.isInt(tags.length.toString(), VIDEOS_CONSTRAINTS_FIELDS.TAGS) &&
2017-11-10 14:34:45 +01:00
tags.every(tag => isVideoTagValid(tag))
2016-06-06 14:15:03 +02:00
}
2017-06-10 22:15:25 +02:00
function isVideoAbuseReasonValid (value: string) {
return exists(value) && validator.isLength(value, VIDEO_ABUSES_CONSTRAINTS_FIELDS.REASON)
2016-07-31 20:58:43 +02:00
}
2017-06-10 22:15:25 +02:00
function isVideoViewsValid (value: string) {
return exists(value) && validator.isInt(value + '', VIDEOS_CONSTRAINTS_FIELDS.VIEWS)
}
2017-06-10 22:15:25 +02:00
function isVideoRatingTypeValid (value: string) {
2017-06-16 10:36:18 +02:00
return values(VIDEO_RATE_TYPES).indexOf(value as VideoRateType) !== -1
2017-03-08 21:35:43 +01:00
}
2017-09-15 12:17:08 +02:00
function isVideoFile (files: { [ fieldname: string ]: Express.Multer.File[] } | Express.Multer.File[]) {
2017-02-10 11:27:14 +01:00
// Should have files
if (!files) return false
2017-09-15 12:17:08 +02:00
if (isArray(files)) return false
2017-02-10 11:27:14 +01:00
// Should have videofile file
2017-09-15 12:17:08 +02:00
const videofile = files['videofile']
2017-02-10 11:27:14 +01:00
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-11-23 18:04:48 +01:00
function isVideoPrivacyValid (value: string) {
return VIDEO_PRIVACIES[value] !== undefined
}
function isVideoFileInfoHashValid (value: string) {
return exists(value) && validator.isLength(value, VIDEOS_CONSTRAINTS_FIELDS.INFO_HASH)
}
2017-11-23 18:04:48 +01:00
function isVideoFileResolutionValid (value: string) {
return exists(value) && validator.isInt(value + '')
}
function isVideoFileSizeValid (value: string) {
return exists(value) && validator.isInt(value + '', VIDEOS_CONSTRAINTS_FIELDS.FILE_SIZE)
2017-11-23 17:53:38 +01:00
}
2017-11-27 17:30:46 +01:00
async function isVideoExist (id: string, res: Response) {
let video: VideoInstance
if (validator.isInt(id)) {
video = await db.Video.loadAndPopulateAccountAndServerAndTags(+id)
} else { // UUID
video = await db.Video.loadByUUIDAndPopulateAccountAndServerAndTags(id)
}
if (!video) {
res.status(404)
.json({ error: 'Video not found' })
.end()
return false
}
res.locals.video = video
return true
}
2017-01-04 20:59:23 +01:00
// ---------------------------------------------------------------------------
2017-05-15 22:22:03 +02:00
export {
isVideoCategoryValid,
isVideoLicenceValid,
isVideoLanguageValid,
isVideoNSFWValid,
2017-10-30 10:16:27 +01:00
isVideoTruncatedDescriptionValid,
2017-05-15 22:22:03 +02:00
isVideoDescriptionValid,
isVideoFileInfoHashValid,
2017-05-15 22:22:03 +02:00
isVideoNameValid,
isVideoTagsValid,
isVideoAbuseReasonValid,
isVideoFile,
isVideoViewsValid,
isVideoRatingTypeValid,
2017-11-15 16:28:35 +01:00
isVideoDurationValid,
2017-11-10 14:34:45 +01:00
isVideoTagValid,
2017-11-23 17:53:38 +01:00
isVideoPrivacyValid,
2017-11-23 18:04:48 +01:00
isVideoFileResolutionValid,
isVideoFileSizeValid,
2017-11-27 17:30:46 +01:00
isVideoExist
2017-05-15 22:22:03 +02:00
}