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

169 lines
5.1 KiB
TypeScript
Raw Normal View History

2017-11-23 16:53:38 +00:00
import { Response } from 'express'
2017-09-07 13:27:35 +00:00
import 'express-validator'
2017-11-17 14:52:26 +00:00
import { values } from 'lodash'
2017-06-11 13:19:43 +00:00
import 'multer'
2017-11-17 14:52:26 +00:00
import * as validator from 'validator'
import { VideoRateType } from '../../../shared'
2017-12-12 16:53:50 +00:00
import {
CONSTRAINTS_FIELDS,
VIDEO_CATEGORIES,
VIDEO_LANGUAGES,
VIDEO_LICENCES, VIDEO_MIMETYPE_EXT,
2017-12-12 16:53:50 +00:00
VIDEO_PRIVACIES,
VIDEO_RATE_TYPES
} from '../../initializers'
import { VideoModel } from '../../models/video/video'
import { exists, isArray, isFileValid } from './misc'
2018-05-11 13:10:13 +00:00
import { VideoChannelModel } from '../../models/video/video-channel'
2017-05-15 20:22:03 +00:00
const VIDEOS_CONSTRAINTS_FIELDS = CONSTRAINTS_FIELDS.VIDEOS
const VIDEO_ABUSES_CONSTRAINTS_FIELDS = CONSTRAINTS_FIELDS.VIDEO_ABUSES
2018-04-23 12:39:52 +00:00
function isVideoCategoryValid (value: any) {
2017-12-08 16:31:21 +00:00
return value === null || VIDEO_CATEGORIES[value] !== undefined
2017-03-22 20:15:55 +00:00
}
2018-04-23 12:39:52 +00:00
function isVideoLicenceValid (value: any) {
2017-12-08 16:31:21 +00:00
return value === null || VIDEO_LICENCES[value] !== undefined
2017-03-27 18:53:11 +00:00
}
2018-04-23 12:39:52 +00:00
function isVideoLanguageValid (value: any) {
return value === null ||
(typeof value === 'string' && validator.isLength(value, VIDEOS_CONSTRAINTS_FIELDS.LANGUAGE))
2017-04-07 10:13:37 +00:00
}
2017-11-15 15:28:35 +00:00
function isVideoDurationValid (value: string) {
return exists(value) && validator.isInt(value + '', VIDEOS_CONSTRAINTS_FIELDS.DURATION)
}
2017-10-30 09:16:27 +00:00
function isVideoTruncatedDescriptionValid (value: string) {
return exists(value) && validator.isLength(value, VIDEOS_CONSTRAINTS_FIELDS.TRUNCATED_DESCRIPTION)
}
2017-06-10 20:15:25 +00:00
function isVideoDescriptionValid (value: string) {
2017-12-08 16:31:21 +00:00
return value === null || (exists(value) && validator.isLength(value, VIDEOS_CONSTRAINTS_FIELDS.DESCRIPTION))
2016-06-06 12:15:03 +00:00
}
function isVideoSupportValid (value: string) {
return value === null || (exists(value) && validator.isLength(value, VIDEOS_CONSTRAINTS_FIELDS.SUPPORT))
}
2017-06-10 20:15:25 +00:00
function isVideoNameValid (value: string) {
return exists(value) && validator.isLength(value, VIDEOS_CONSTRAINTS_FIELDS.NAME)
2016-06-06 12:15:03 +00:00
}
2017-11-10 13:34:45 +00:00
function isVideoTagValid (tag: string) {
return exists(tag) && validator.isLength(tag, VIDEOS_CONSTRAINTS_FIELDS.TAG)
}
2017-06-10 20:15:25 +00:00
function isVideoTagsValid (tags: string[]) {
2018-05-16 07:28:18 +00:00
return tags === null || (
isArray(tags) &&
validator.isInt(tags.length.toString(), VIDEOS_CONSTRAINTS_FIELDS.TAGS) &&
tags.every(tag => isVideoTagValid(tag))
)
2016-06-06 12:15:03 +00:00
}
2017-06-10 20:15:25 +00:00
function isVideoAbuseReasonValid (value: string) {
return exists(value) && validator.isLength(value, VIDEO_ABUSES_CONSTRAINTS_FIELDS.REASON)
2016-07-31 18:58:43 +00:00
}
2017-06-10 20:15:25 +00:00
function isVideoViewsValid (value: string) {
return exists(value) && validator.isInt(value + '', VIDEOS_CONSTRAINTS_FIELDS.VIEWS)
}
2017-06-10 20:15:25 +00:00
function isVideoRatingTypeValid (value: string) {
return value === 'none' || values(VIDEO_RATE_TYPES).indexOf(value as VideoRateType) !== -1
2017-03-08 20:35:43 +00:00
}
const videoFileTypes = Object.keys(VIDEO_MIMETYPE_EXT).map(m => `(${m})`)
const videoFileTypesRegex = videoFileTypes.join('|')
2017-09-15 10:17:08 +00:00
function isVideoFile (files: { [ fieldname: string ]: Express.Multer.File[] } | Express.Multer.File[]) {
return isFileValid(files, videoFileTypesRegex, 'videofile')
}
2017-02-10 10:27:14 +00: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 10:27:14 +00:00
}
2017-11-23 17:04:48 +00:00
function isVideoPrivacyValid (value: string) {
2017-12-08 16:31:21 +00:00
return validator.isInt(value + '') && VIDEO_PRIVACIES[value] !== undefined
2017-11-23 17:04:48 +00:00
}
function isVideoFileInfoHashValid (value: string) {
return exists(value) && validator.isLength(value, VIDEOS_CONSTRAINTS_FIELDS.INFO_HASH)
}
2017-11-23 17:04:48 +00: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 16:53:38 +00:00
}
2017-11-27 16:30:46 +00:00
async function isVideoExist (id: string, res: Response) {
2017-12-12 16:53:50 +00:00
let video: VideoModel
if (validator.isInt(id)) {
2017-12-12 16:53:50 +00:00
video = await VideoModel.loadAndPopulateAccountAndServerAndTags(+id)
} else { // UUID
2017-12-12 16:53:50 +00: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 13:10:13 +00: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 19:59:23 +00:00
// ---------------------------------------------------------------------------
2017-05-15 20:22:03 +00:00
export {
isVideoCategoryValid,
isVideoLicenceValid,
isVideoLanguageValid,
2017-10-30 09:16:27 +00:00
isVideoTruncatedDescriptionValid,
2017-05-15 20:22:03 +00:00
isVideoDescriptionValid,
isVideoFileInfoHashValid,
2017-05-15 20:22:03 +00:00
isVideoNameValid,
isVideoTagsValid,
isVideoAbuseReasonValid,
isVideoFile,
isVideoViewsValid,
isVideoRatingTypeValid,
2017-11-15 15:28:35 +00:00
isVideoDurationValid,
2017-11-10 13:34:45 +00:00
isVideoTagValid,
2017-11-23 16:53:38 +00:00
isVideoPrivacyValid,
2017-11-23 17:04:48 +00:00
isVideoFileResolutionValid,
isVideoFileSizeValid,
isVideoExist,
isVideoImage,
2018-05-11 13:10:13 +00:00
isVideoChannelOfAccountExist,
isVideoSupportValid
2017-05-15 20:22:03 +00:00
}