PeerTube/server/middlewares/validators/videos.ts

320 lines
10 KiB
TypeScript
Raw Normal View History

2017-06-10 22:15:25 +02:00
import * as express from 'express'
2017-12-12 17:53:50 +01:00
import 'express-validator'
2018-07-19 16:17:54 +02:00
import { body, param, ValidationChain } from 'express-validator/check'
2017-11-23 17:53:38 +01:00
import { UserRight, VideoPrivacy } from '../../../shared'
2017-09-15 12:17:08 +02:00
import {
isBooleanValid,
isDateValid,
isIdOrUUIDValid,
isIdValid,
isUUIDValid,
toIntOrNull,
toValueOrNull
} from '../../helpers/custom-validators/misc'
import {
2018-07-12 19:02:00 +02:00
checkUserCanManageVideo,
isScheduleVideoUpdatePrivacyValid,
isVideoAbuseReasonValid,
isVideoCategoryValid,
2018-05-11 15:10:13 +02:00
isVideoChannelOfAccountExist,
isVideoDescriptionValid,
isVideoExist,
isVideoFile,
isVideoImage,
isVideoLanguageValid,
isVideoLicenceValid,
isVideoNameValid,
isVideoPrivacyValid,
isVideoRatingTypeValid,
isVideoSupportValid,
isVideoTagsValid
2017-11-23 17:53:38 +01:00
} from '../../helpers/custom-validators/videos'
2017-12-28 11:16:08 +01:00
import { getDurationFromVideoFile } from '../../helpers/ffmpeg-utils'
import { logger } from '../../helpers/logger'
2017-12-05 17:46:33 +01:00
import { CONSTRAINTS_FIELDS } from '../../initializers'
2017-12-12 17:53:50 +01:00
import { VideoShareModel } from '../../models/video/video-share'
import { authenticate } from '../oauth'
2017-11-27 17:30:46 +01:00
import { areValidationErrors } from './utils'
2015-11-07 14:16:26 +01:00
2018-07-16 14:58:22 +02:00
const videosAddValidator = getCommonVideoAttributes().concat([
2018-06-22 15:42:55 +02:00
body('videofile')
.custom((value, { req }) => isVideoFile(req.files)).withMessage(
2018-07-12 19:02:00 +02:00
'This file is not supported or too large. Please, make sure it is of the following type: '
2018-06-22 15:42:55 +02:00
+ CONSTRAINTS_FIELDS.VIDEOS.EXTNAME.join(', ')
),
2017-09-15 12:17:08 +02:00
body('name').custom(isVideoNameValid).withMessage('Should have a valid name'),
2018-05-11 15:10:13 +02:00
body('channelId')
.toInt()
.custom(isIdValid).withMessage('Should have correct video channel id'),
2017-09-15 12:17:08 +02:00
2017-11-27 17:30:46 +01:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
2017-09-15 12:17:08 +02:00
logger.debug('Checking videosAdd parameters', { parameters: req.body, files: req.files })
2017-11-27 17:30:46 +01:00
if (areValidationErrors(req, res)) return
if (areErrorsInScheduleUpdate(req, res)) return
2017-11-27 17:30:46 +01:00
const videoFile: Express.Multer.File = req.files['videofile'][0]
const user = res.locals.oauth.token.User
2017-09-15 12:17:08 +02:00
if (!await isVideoChannelOfAccountExist(req.body.channelId, user, res)) return
2017-11-27 17:30:46 +01: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 15:54:13 +02:00
logger.error('Invalid input file in videosAddValidator.', { err })
2017-11-27 17:30:46 +01:00
res.status(400)
.json({ error: 'Invalid input file.' })
.end()
return
}
videoFile['duration'] = duration
return next()
2017-09-15 12:17:08 +02:00
}
2018-07-16 14:58:22 +02:00
])
2017-09-15 12:17:08 +02:00
2018-07-16 14:58:22 +02:00
const videosUpdateValidator = getCommonVideoAttributes().concat([
2017-10-24 19:41:09 +02:00
param('id').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid id'),
body('name')
.optional()
.custom(isVideoNameValid).withMessage('Should have a valid name'),
2018-05-11 15:10:13 +02:00
body('channelId')
.optional()
.toInt()
.custom(isIdValid).withMessage('Should have correct video channel id'),
2017-09-15 12:17:08 +02:00
2017-11-27 17:30:46 +01:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
2017-09-15 12:17:08 +02:00
logger.debug('Checking videosUpdate parameters', { parameters: req.body })
2017-11-27 17:30:46 +01:00
if (areValidationErrors(req, res)) return
if (areErrorsInScheduleUpdate(req, res)) return
2017-11-27 17:30:46 +01: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 15:10:13 +02:00
const user = res.locals.oauth.token.User
if (!checkUserCanManageVideo(user, res.locals.video, UserRight.UPDATE_ANY_VIDEO, res)) return
2017-11-27 17:30:46 +01: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 17:30:46 +01:00
.end()
}
if (req.body.channelId && !await isVideoChannelOfAccountExist(req.body.channelId, user, res)) return
2018-05-11 15:10:13 +02:00
2017-11-27 17:30:46 +01:00
return next()
2017-09-15 12:17:08 +02:00
}
2018-07-16 14:58:22 +02:00
])
2016-02-04 21:10:33 +01:00
2017-09-15 12:17:08 +02:00
const videosGetValidator = [
2017-10-24 19:41:09 +02:00
param('id').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid id'),
2015-11-07 14:16:26 +01:00
2017-11-27 17:30:46 +01:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
2017-09-15 12:17:08 +02:00
logger.debug('Checking videosGet parameters', { parameters: req.params })
2016-12-29 19:07:05 +01:00
2017-11-27 17:30:46 +01:00
if (areValidationErrors(req, res)) return
if (!await isVideoExist(req.params.id, res)) return
2017-11-27 17:30:46 +01:00
const video = res.locals.video
2018-01-31 14:40:42 +01:00
// Video is public, anyone can access it
if (video.privacy === VideoPrivacy.PUBLIC) return next()
2018-01-31 14:40:42 +01: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 17:30:46 +01: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 12:17:08 +02:00
})
}
]
2015-11-07 14:16:26 +01:00
2017-09-15 12:17:08 +02:00
const videosRemoveValidator = [
2017-10-24 19:41:09 +02:00
param('id').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid id'),
2015-11-07 14:16:26 +01:00
2017-11-27 17:30:46 +01:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
2017-09-15 12:17:08 +02:00
logger.debug('Checking videosRemove parameters', { parameters: req.params })
2015-11-07 14:16:26 +01:00
2017-11-27 17:30:46 +01: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 17:30:46 +01:00
return next()
2017-09-15 12:17:08 +02:00
}
]
2015-11-07 14:16:26 +01:00
2017-09-15 12:17:08 +02:00
const videoAbuseReportValidator = [
2017-10-24 19:41:09 +02:00
param('id').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid id'),
2017-09-15 12:17:08 +02:00
body('reason').custom(isVideoAbuseReasonValid).withMessage('Should have a valid reason'),
2017-01-04 20:59:23 +01:00
2017-11-27 17:30:46 +01:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
2017-09-15 12:17:08 +02:00
logger.debug('Checking videoAbuseReport parameters', { parameters: req.body })
2017-01-04 20:59:23 +01:00
2017-11-27 17:30:46 +01:00
if (areValidationErrors(req, res)) return
if (!await isVideoExist(req.params.id, res)) return
return next()
2017-09-15 12:17:08 +02:00
}
]
2017-01-04 20:59:23 +01:00
2017-09-15 12:17:08 +02:00
const videoRateValidator = [
2017-10-24 19:41:09 +02:00
param('id').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid id'),
2017-09-15 12:17:08 +02:00
body('rating').custom(isVideoRatingTypeValid).withMessage('Should have a valid rate type'),
2017-03-08 21:35:43 +01:00
2017-11-27 17:30:46 +01:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
2017-09-15 12:17:08 +02:00
logger.debug('Checking videoRate parameters', { parameters: req.body })
2017-03-08 21:35:43 +01:00
2017-11-27 17:30:46 +01:00
if (areValidationErrors(req, res)) return
if (!await isVideoExist(req.params.id, res)) return
return next()
2017-09-15 12:17:08 +02:00
}
]
2017-03-08 21:35:43 +01: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 17:30:46 +01:00
if (!await isVideoExist(req.params.id, res)) return
2017-12-12 17:53:50 +01: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 11:23:52 +01:00
2017-05-15 22:22:03 +02:00
export {
videosAddValidator,
videosUpdateValidator,
videosGetValidator,
videosRemoveValidator,
videosShareValidator,
2017-05-15 22:22:03 +02:00
videoAbuseReportValidator,
2017-10-10 10:02:18 +02:00
videoRateValidator
2017-05-15 22:22:03 +02:00
}
2016-12-29 19:07:05 +01:00
// ---------------------------------------------------------------------------
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
}
2018-07-16 14:58:22 +02:00
function getCommonVideoAttributes () {
return [
body('thumbnailfile')
.custom((value, { req }) => isVideoImage(req.files, 'thumbnailfile')).withMessage(
'This thumbnail file is not supported or too large. Please, make sure it is of the following type: '
+ CONSTRAINTS_FIELDS.VIDEOS.IMAGE.EXTNAME.join(', ')
),
body('previewfile')
.custom((value, { req }) => isVideoImage(req.files, 'previewfile')).withMessage(
'This preview file is not supported or too large. Please, make sure it is of the following type: '
+ CONSTRAINTS_FIELDS.VIDEOS.IMAGE.EXTNAME.join(', ')
),
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()
.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()
.customSanitizer(toValueOrNull)
.custom(isVideoDescriptionValid).withMessage('Should have a valid description'),
body('support')
.optional()
.customSanitizer(toValueOrNull)
.custom(isVideoSupportValid).withMessage('Should have a valid support text'),
body('tags')
.optional()
.customSanitizer(toValueOrNull)
.custom(isVideoTagsValid).withMessage('Should have correct tags'),
body('commentsEnabled')
.optional()
.toBoolean()
.custom(isBooleanValid).withMessage('Should have comments enabled boolean'),
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')
] as (ValidationChain | express.Handler)[]
}