1
0
Fork 0
peertube/server/middlewares/validators/videos.ts

407 lines
14 KiB
TypeScript
Raw Normal View History

2017-06-10 20:15:25 +00:00
import * as express from 'express'
2017-12-12 16:53:50 +00:00
import 'express-validator'
2017-11-23 16:53:38 +00:00
import { body, param, query } from 'express-validator/check'
import { UserRight, VideoPrivacy } from '../../../shared'
2017-09-15 10:17:08 +00:00
import {
isBooleanValid,
isDateValid,
isIdOrUUIDValid,
isIdValid,
isUUIDValid,
toIntOrNull,
toValueOrNull
} from '../../helpers/custom-validators/misc'
import {
2018-07-12 17:02:00 +00:00
checkUserCanManageVideo,
isScheduleVideoUpdatePrivacyValid,
isVideoAbuseReasonValid,
isVideoCategoryValid,
2018-05-11 13:10:13 +00:00
isVideoChannelOfAccountExist,
isVideoDescriptionValid,
isVideoExist,
isVideoFile,
isVideoImage,
isVideoLanguageValid,
isVideoLicenceValid,
isVideoNameValid,
isVideoPrivacyValid,
isVideoRatingTypeValid,
isVideoSupportValid,
isVideoTagsValid
2017-11-23 16:53:38 +00:00
} from '../../helpers/custom-validators/videos'
2017-12-28 10:16:08 +00:00
import { getDurationFromVideoFile } from '../../helpers/ffmpeg-utils'
import { logger } from '../../helpers/logger'
2017-12-05 16:46:33 +00:00
import { CONSTRAINTS_FIELDS } from '../../initializers'
2017-12-12 16:53:50 +00:00
import { VideoShareModel } from '../../models/video/video-share'
import { authenticate } from '../oauth'
2017-11-27 16:30:46 +00:00
import { areValidationErrors } from './utils'
2015-11-07 13:16:26 +00:00
2017-09-15 10:17:08 +00:00
const videosAddValidator = [
2018-06-22 13:42:55 +00:00
body('videofile')
.custom((value, { req }) => isVideoFile(req.files)).withMessage(
2018-07-12 17:02:00 +00:00
'This file is not supported or too large. Please, make sure it is of the following type: '
2018-06-22 13:42:55 +00:00
+ CONSTRAINTS_FIELDS.VIDEOS.EXTNAME.join(', ')
),
body('thumbnailfile')
.custom((value, { req }) => isVideoImage(req.files, 'thumbnailfile')).withMessage(
2018-07-12 17:02:00 +00:00
'This thumbnail file is not supported or too large. Please, make sure it is of the following type: '
2018-06-22 13:42:55 +00:00
+ CONSTRAINTS_FIELDS.VIDEOS.IMAGE.EXTNAME.join(', ')
),
body('previewfile')
.custom((value, { req }) => isVideoImage(req.files, 'previewfile')).withMessage(
2018-07-12 17:02:00 +00:00
'This preview file is not supported or too large. Please, make sure it is of the following type: '
2018-06-22 13:42:55 +00:00
+ CONSTRAINTS_FIELDS.VIDEOS.IMAGE.EXTNAME.join(', ')
),
2017-09-15 10:17:08 +00:00
body('name').custom(isVideoNameValid).withMessage('Should have a valid name'),
body('category')
.optional()
.customSanitizer(toIntOrNull)
.custom(isVideoCategoryValid).withMessage('Should have a valid category'),
body('licence')
.optional()
.customSanitizer(toIntOrNull)
.custom(isVideoLicenceValid).withMessage('Should have a valid licence'),
body('language')
.optional()
2018-05-16 07:28:18 +00:00
.customSanitizer(toValueOrNull)
.custom(isVideoLanguageValid).withMessage('Should have a valid language'),
body('nsfw')
.optional()
.toBoolean()
.custom(isBooleanValid).withMessage('Should have a valid NSFW attribute'),
body('waitTranscoding')
.optional()
.toBoolean()
.custom(isBooleanValid).withMessage('Should have a valid wait transcoding attribute'),
body('description')
.optional()
2018-05-16 07:28:18 +00:00
.customSanitizer(toValueOrNull)
.custom(isVideoDescriptionValid).withMessage('Should have a valid description'),
body('support')
.optional()
2018-05-16 07:28:18 +00:00
.customSanitizer(toValueOrNull)
.custom(isVideoSupportValid).withMessage('Should have a valid support text'),
body('tags')
.optional()
2018-05-16 07:28:18 +00:00
.customSanitizer(toValueOrNull)
.custom(isVideoTagsValid).withMessage('Should have correct tags'),
body('commentsEnabled')
.optional()
.toBoolean()
.custom(isBooleanValid).withMessage('Should have comments enabled boolean'),
body('privacy')
.optional()
.toInt()
.custom(isVideoPrivacyValid).withMessage('Should have correct video privacy'),
2018-05-11 13:10:13 +00:00
body('channelId')
.toInt()
.custom(isIdValid).withMessage('Should have correct video channel id'),
2018-06-18 08:24:53 +00:00
body('scheduleUpdate')
.optional()
.customSanitizer(toValueOrNull),
body('scheduleUpdate.updateAt')
.optional()
.custom(isDateValid).withMessage('Should have a valid schedule update date'),
body('scheduleUpdate.privacy')
.optional()
.toInt()
.custom(isScheduleVideoUpdatePrivacyValid).withMessage('Should have correct schedule update privacy'),
2017-09-15 10:17:08 +00:00
2017-11-27 16:30:46 +00:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
2017-09-15 10:17:08 +00:00
logger.debug('Checking videosAdd parameters', { parameters: req.body, files: req.files })
2017-11-27 16:30:46 +00:00
if (areValidationErrors(req, res)) return
if (areErrorsInVideoImageFiles(req, res)) return
if (areErrorsInScheduleUpdate(req, res)) return
2017-11-27 16:30:46 +00:00
const videoFile: Express.Multer.File = req.files['videofile'][0]
const user = res.locals.oauth.token.User
2017-09-15 10:17:08 +00:00
if (!await isVideoChannelOfAccountExist(req.body.channelId, user, res)) return
2017-11-27 16:30:46 +00:00
const isAble = await user.isAbleToUploadVideo(videoFile)
if (isAble === false) {
res.status(403)
.json({ error: 'The user video quota is exceeded with this video.' })
.end()
return
}
let duration: number
try {
duration = await getDurationFromVideoFile(videoFile.path)
} catch (err) {
2018-03-26 13:54:13 +00:00
logger.error('Invalid input file in videosAddValidator.', { err })
2017-11-27 16:30:46 +00:00
res.status(400)
.json({ error: 'Invalid input file.' })
.end()
return
}
videoFile['duration'] = duration
return next()
2017-09-15 10:17:08 +00:00
}
]
const videosUpdateValidator = [
2017-10-24 17:41:09 +00:00
param('id').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid id'),
2018-06-22 13:42:55 +00:00
body('thumbnailfile')
.custom((value, { req }) => isVideoImage(req.files, 'thumbnailfile')).withMessage(
2018-07-12 17:02:00 +00:00
'This thumbnail file is not supported or too large. Please, make sure it is of the following type: '
2018-06-22 13:42:55 +00:00
+ CONSTRAINTS_FIELDS.VIDEOS.IMAGE.EXTNAME.join(', ')
),
body('previewfile')
.custom((value, { req }) => isVideoImage(req.files, 'previewfile')).withMessage(
2018-07-12 17:02:00 +00:00
'This preview file is not supported or too large. Please, make sure it is of the following type: '
2018-06-22 13:42:55 +00:00
+ CONSTRAINTS_FIELDS.VIDEOS.IMAGE.EXTNAME.join(', ')
),
body('name')
.optional()
.custom(isVideoNameValid).withMessage('Should have a valid name'),
body('category')
.optional()
.customSanitizer(toIntOrNull)
.custom(isVideoCategoryValid).withMessage('Should have a valid category'),
body('licence')
.optional()
.customSanitizer(toIntOrNull)
.custom(isVideoLicenceValid).withMessage('Should have a valid licence'),
body('language')
.optional()
2018-05-16 07:28:18 +00:00
.customSanitizer(toValueOrNull)
.custom(isVideoLanguageValid).withMessage('Should have a valid language'),
body('nsfw')
.optional()
.toBoolean()
.custom(isBooleanValid).withMessage('Should have a valid NSFW attribute'),
body('waitTranscoding')
.optional()
.toBoolean()
.custom(isBooleanValid).withMessage('Should have a valid wait transcoding attribute'),
body('privacy')
.optional()
.toInt()
.custom(isVideoPrivacyValid).withMessage('Should have correct video privacy'),
body('description')
.optional()
2018-05-16 07:28:18 +00:00
.customSanitizer(toValueOrNull)
.custom(isVideoDescriptionValid).withMessage('Should have a valid description'),
body('support')
.optional()
2018-05-16 07:28:18 +00:00
.customSanitizer(toValueOrNull)
.custom(isVideoSupportValid).withMessage('Should have a valid support text'),
body('tags')
.optional()
2018-05-16 07:28:18 +00:00
.customSanitizer(toValueOrNull)
.custom(isVideoTagsValid).withMessage('Should have correct tags'),
body('commentsEnabled')
.optional()
.toBoolean()
.custom(isBooleanValid).withMessage('Should have comments enabled boolean'),
2018-05-11 13:10:13 +00:00
body('channelId')
.optional()
.toInt()
.custom(isIdValid).withMessage('Should have correct video channel id'),
2018-06-18 08:24:53 +00:00
body('scheduleUpdate')
.optional()
.customSanitizer(toValueOrNull),
body('scheduleUpdate.updateAt')
.optional()
.custom(isDateValid).withMessage('Should have a valid schedule update date'),
body('scheduleUpdate.privacy')
.optional()
.toInt()
.custom(isScheduleVideoUpdatePrivacyValid).withMessage('Should have correct schedule update privacy'),
2017-09-15 10:17:08 +00:00
2017-11-27 16:30:46 +00:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
2017-09-15 10:17:08 +00:00
logger.debug('Checking videosUpdate parameters', { parameters: req.body })
2017-11-27 16:30:46 +00:00
if (areValidationErrors(req, res)) return
if (areErrorsInVideoImageFiles(req, res)) return
if (areErrorsInScheduleUpdate(req, res)) return
2017-11-27 16:30:46 +00:00
if (!await isVideoExist(req.params.id, res)) return
const video = res.locals.video
// Check if the user who did the request is able to update the video
2018-05-11 13:10:13 +00:00
const user = res.locals.oauth.token.User
if (!checkUserCanManageVideo(user, res.locals.video, UserRight.UPDATE_ANY_VIDEO, res)) return
2017-11-27 16:30:46 +00:00
if (video.privacy !== VideoPrivacy.PRIVATE && req.body.privacy === VideoPrivacy.PRIVATE) {
return res.status(409)
.json({ error: 'Cannot set "private" a video that was not private.' })
2017-11-27 16:30:46 +00:00
.end()
}
if (req.body.channelId && !await isVideoChannelOfAccountExist(req.body.channelId, user, res)) return
2018-05-11 13:10:13 +00:00
2017-11-27 16:30:46 +00:00
return next()
2017-09-15 10:17:08 +00:00
}
]
2016-02-04 20:10:33 +00:00
2017-09-15 10:17:08 +00:00
const videosGetValidator = [
2017-10-24 17:41:09 +00:00
param('id').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid id'),
2015-11-07 13:16:26 +00:00
2017-11-27 16:30:46 +00:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
2017-09-15 10:17:08 +00:00
logger.debug('Checking videosGet parameters', { parameters: req.params })
2016-12-29 18:07:05 +00:00
2017-11-27 16:30:46 +00:00
if (areValidationErrors(req, res)) return
if (!await isVideoExist(req.params.id, res)) return
2017-11-27 16:30:46 +00:00
const video = res.locals.video
2018-01-31 13:40:42 +00:00
// Video is public, anyone can access it
if (video.privacy === VideoPrivacy.PUBLIC) return next()
2018-01-31 13:40:42 +00:00
// Video is unlisted, check we used the uuid to fetch it
if (video.privacy === VideoPrivacy.UNLISTED) {
if (isUUIDValid(req.params.id)) return next()
// Don't leak this unlisted video
return res.status(404).end()
}
// Video is private, check the user
2017-11-27 16:30:46 +00:00
authenticate(req, res, () => {
if (video.VideoChannel.Account.userId !== res.locals.oauth.token.User.id) {
return res.status(403)
.json({ error: 'Cannot get this private video of another user' })
.end()
}
return next()
2017-09-15 10:17:08 +00:00
})
}
]
2015-11-07 13:16:26 +00:00
2017-09-15 10:17:08 +00:00
const videosRemoveValidator = [
2017-10-24 17:41:09 +00:00
param('id').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid id'),
2015-11-07 13:16:26 +00:00
2017-11-27 16:30:46 +00:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
2017-09-15 10:17:08 +00:00
logger.debug('Checking videosRemove parameters', { parameters: req.params })
2015-11-07 13:16:26 +00:00
2017-11-27 16:30:46 +00:00
if (areValidationErrors(req, res)) return
if (!await isVideoExist(req.params.id, res)) return
// Check if the user who did the request is able to delete the video
if (!checkUserCanManageVideo(res.locals.oauth.token.User, res.locals.video, UserRight.REMOVE_ANY_VIDEO, res)) return
2017-11-27 16:30:46 +00:00
return next()
2017-09-15 10:17:08 +00:00
}
]
2015-11-07 13:16:26 +00:00
2017-09-15 10:17:08 +00:00
const videosSearchValidator = [
2017-12-05 16:46:33 +00:00
query('search').not().isEmpty().withMessage('Should have a valid search'),
2016-01-31 10:23:52 +00:00
2017-09-15 10:17:08 +00:00
(req: express.Request, res: express.Response, next: express.NextFunction) => {
logger.debug('Checking videosSearch parameters', { parameters: req.params })
2016-01-31 10:23:52 +00:00
2017-11-27 16:30:46 +00:00
if (areValidationErrors(req, res)) return
return next()
2017-09-15 10:17:08 +00:00
}
]
2016-01-31 10:23:52 +00:00
2017-09-15 10:17:08 +00:00
const videoAbuseReportValidator = [
2017-10-24 17:41:09 +00:00
param('id').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid id'),
2017-09-15 10:17:08 +00:00
body('reason').custom(isVideoAbuseReasonValid).withMessage('Should have a valid reason'),
2017-01-04 19:59:23 +00:00
2017-11-27 16:30:46 +00:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
2017-09-15 10:17:08 +00:00
logger.debug('Checking videoAbuseReport parameters', { parameters: req.body })
2017-01-04 19:59:23 +00:00
2017-11-27 16:30:46 +00:00
if (areValidationErrors(req, res)) return
if (!await isVideoExist(req.params.id, res)) return
return next()
2017-09-15 10:17:08 +00:00
}
]
2017-01-04 19:59:23 +00:00
2017-09-15 10:17:08 +00:00
const videoRateValidator = [
2017-10-24 17:41:09 +00:00
param('id').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid id'),
2017-09-15 10:17:08 +00:00
body('rating').custom(isVideoRatingTypeValid).withMessage('Should have a valid rate type'),
2017-03-08 20:35:43 +00:00
2017-11-27 16:30:46 +00:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
2017-09-15 10:17:08 +00:00
logger.debug('Checking videoRate parameters', { parameters: req.body })
2017-03-08 20:35:43 +00:00
2017-11-27 16:30:46 +00:00
if (areValidationErrors(req, res)) return
if (!await isVideoExist(req.params.id, res)) return
return next()
2017-09-15 10:17:08 +00:00
}
]
2017-03-08 20:35:43 +00:00
const videosShareValidator = [
param('id').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid id'),
param('accountId').custom(isIdValid).not().isEmpty().withMessage('Should have a valid account id'),
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
logger.debug('Checking videoShare parameters', { parameters: req.params })
if (areValidationErrors(req, res)) return
2017-11-27 16:30:46 +00:00
if (!await isVideoExist(req.params.id, res)) return
2017-12-12 16:53:50 +00:00
const share = await VideoShareModel.load(req.params.accountId, res.locals.video.id, undefined)
if (!share) {
return res.status(404)
.end()
}
res.locals.videoShare = share
return next()
}
]
// ---------------------------------------------------------------------------
2016-01-31 10:23:52 +00:00
2017-05-15 20:22:03 +00:00
export {
videosAddValidator,
videosUpdateValidator,
videosGetValidator,
videosRemoveValidator,
videosSearchValidator,
videosShareValidator,
2017-05-15 20:22:03 +00:00
videoAbuseReportValidator,
2017-10-10 08:02:18 +00:00
videoRateValidator
2017-05-15 20:22:03 +00:00
}
2016-12-29 18:07:05 +00:00
// ---------------------------------------------------------------------------
function areErrorsInVideoImageFiles (req: express.Request, res: express.Response) {
// Files are optional
if (!req.files) return false
for (const imageField of [ 'thumbnail', 'preview' ]) {
if (!req.files[ imageField ]) continue
const imageFile = req.files[ imageField ][ 0 ] as Express.Multer.File
if (imageFile.size > CONSTRAINTS_FIELDS.VIDEOS.IMAGE.FILE_SIZE.max) {
res.status(400)
.json({ error: `The size of the ${imageField} is too big (>${CONSTRAINTS_FIELDS.VIDEOS.IMAGE.FILE_SIZE.max}).` })
.end()
return true
}
}
return false
}
function areErrorsInScheduleUpdate (req: express.Request, res: express.Response) {
if (req.body.scheduleUpdate) {
if (!req.body.scheduleUpdate.updateAt) {
res.status(400)
.json({ error: 'Schedule update at is mandatory.' })
.end()
return true
}
}
return false
}