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

167 lines
5.1 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-12-12 17:53:50 +01:00
import {
CONSTRAINTS_FIELDS,
VIDEO_CATEGORIES,
VIDEO_LANGUAGES,
VIDEO_LICENCES, VIDEO_MIMETYPE_EXT,
2017-12-12 17:53:50 +01:00
VIDEO_PRIVACIES,
VIDEO_RATE_TYPES
} from '../../initializers'
import { VideoModel } from '../../models/video/video'
import { exists, isArray, isFileValid } from './misc'
2018-05-11 15:10:13 +02:00
import { VideoChannelModel } from '../../models/video/video-channel'
2017-05-15 22:22:03 +02:00
const VIDEOS_CONSTRAINTS_FIELDS = CONSTRAINTS_FIELDS.VIDEOS
const VIDEO_ABUSES_CONSTRAINTS_FIELDS = CONSTRAINTS_FIELDS.VIDEO_ABUSES
2018-04-23 14:39:52 +02:00
function isVideoCategoryValid (value: any) {
2017-12-08 17:31:21 +01:00
return value === null || VIDEO_CATEGORIES[value] !== undefined
2017-03-22 21:15:55 +01:00
}
2018-04-23 14:39:52 +02:00
function isVideoLicenceValid (value: any) {
2017-12-08 17:31:21 +01:00
return value === null || VIDEO_LICENCES[value] !== undefined
2017-03-27 20:53:11 +02:00
}
2018-04-23 14:39:52 +02:00
function isVideoLanguageValid (value: any) {
return value === null ||
(typeof value === 'string' && validator.isLength(value, VIDEOS_CONSTRAINTS_FIELDS.LANGUAGE))
2017-04-07 12:13:37 +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) {
2017-12-08 17:31:21 +01:00
return value === null || (exists(value) && validator.isLength(value, VIDEOS_CONSTRAINTS_FIELDS.DESCRIPTION))
2016-06-06 14:15:03 +02:00
}
function isVideoSupportValid (value: string) {
return value === null || (exists(value) && validator.isLength(value, VIDEOS_CONSTRAINTS_FIELDS.SUPPORT))
}
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) {
return value === 'none' || values(VIDEO_RATE_TYPES).indexOf(value as VideoRateType) !== -1
2017-03-08 21:35:43 +01:00
}
const videoFileTypes = Object.keys(VIDEO_MIMETYPE_EXT).map(m => `(${m})`)
const videoFileTypesRegex = videoFileTypes.join('|')
2017-09-15 12:17:08 +02:00
function isVideoFile (files: { [ fieldname: string ]: Express.Multer.File[] } | Express.Multer.File[]) {
return isFileValid(files, videoFileTypesRegex, 'videofile')
}
2017-02-10 11:27:14 +01:00
const videoImageTypes = CONSTRAINTS_FIELDS.VIDEOS.IMAGE.EXTNAME
.map(v => v.replace('.', ''))
.join('|')
const videoImageTypesRegex = `image/(${videoImageTypes})`
function isVideoImage (files: { [ fieldname: string ]: Express.Multer.File[] } | Express.Multer.File[], field: string) {
return isFileValid(files, videoImageTypesRegex, field, true)
2017-02-10 11:27:14 +01:00
}
2017-11-23 18:04:48 +01:00
function isVideoPrivacyValid (value: string) {
2017-12-08 17:31:21 +01:00
return validator.isInt(value + '') && VIDEO_PRIVACIES[value] !== undefined
2017-11-23 18:04:48 +01:00
}
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) {
2017-12-12 17:53:50 +01:00
let video: VideoModel
if (validator.isInt(id)) {
2017-12-12 17:53:50 +01:00
video = await VideoModel.loadAndPopulateAccountAndServerAndTags(+id)
} else { // UUID
2017-12-12 17:53:50 +01:00
video = await VideoModel.loadByUUIDAndPopulateAccountAndServerAndTags(id)
}
if (!video) {
res.status(404)
.json({ error: 'Video not found' })
.end()
return false
}
res.locals.video = video
return true
}
2018-05-11 15:10:13 +02:00
async function isVideoChannelOfAccountExist (channelId: number, accountId: number, res: Response) {
const videoChannel = await VideoChannelModel.loadByIdAndAccount(channelId, accountId)
if (!videoChannel) {
res.status(400)
.json({ error: 'Unknown video video channel for this account.' })
.end()
return false
}
res.locals.videoChannel = videoChannel
return true
}
2017-01-04 20:59:23 +01:00
// ---------------------------------------------------------------------------
2017-05-15 22:22:03 +02:00
export {
isVideoCategoryValid,
isVideoLicenceValid,
isVideoLanguageValid,
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,
isVideoExist,
isVideoImage,
2018-05-11 15:10:13 +02:00
isVideoChannelOfAccountExist,
isVideoSupportValid
2017-05-15 22:22:03 +02:00
}