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

316 lines
12 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'
2018-01-31 13:40:42 +00:00
import { isBooleanValid, isIdOrUUIDValid, isIdValid, isUUIDValid } from '../../helpers/custom-validators/misc'
2017-09-15 10:17:08 +00:00
import {
isVideoAbuseReasonValid,
isVideoCategoryValid,
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 { UserModel } from '../../models/account/user'
import { VideoModel } from '../../models/video/video'
import { VideoChannelModel } from '../../models/video/video-channel'
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 = [
body('videofile').custom((value, { req }) => isVideoFile(req.files)).withMessage(
'This file is not supported. Please, make sure it is of the following type : '
+ CONSTRAINTS_FIELDS.VIDEOS.EXTNAME.join(', ')
),
body('thumbnailfile').custom((value, { req }) => isVideoImage(req.files, 'thumbnailfile')).withMessage(
'This thumbnail file is not supported. 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. Please, make sure it is of the following type : '
+ 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().custom(isVideoCategoryValid).withMessage('Should have a valid category'),
body('licence').optional().custom(isVideoLicenceValid).withMessage('Should have a valid licence'),
2017-09-15 10:17:08 +00:00
body('language').optional().custom(isVideoLanguageValid).withMessage('Should have a valid language'),
2018-01-03 09:12:36 +00:00
body('nsfw').custom(isBooleanValid).withMessage('Should have a valid NSFW attribute'),
body('description').optional().custom(isVideoDescriptionValid).withMessage('Should have a valid description'),
body('support').optional().custom(isVideoSupportValid).withMessage('Should have a valid support text'),
2017-10-24 17:41:09 +00:00
body('channelId').custom(isIdValid).withMessage('Should have correct video channel id'),
2017-10-31 10:52:52 +00:00
body('privacy').custom(isVideoPrivacyValid).withMessage('Should have correct video privacy'),
2017-09-15 10:17:08 +00:00
body('tags').optional().custom(isVideoTagsValid).withMessage('Should have correct tags'),
2018-01-03 09:12:36 +00:00
body('commentsEnabled').custom(isBooleanValid).withMessage('Should have comments enabled boolean'),
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
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
2017-12-12 16:53:50 +00:00
const videoChannel = await VideoChannelModel.loadByIdAndAccount(req.body.channelId, user.Account.id)
2017-11-27 16:30:46 +00:00
if (!videoChannel) {
res.status(400)
.json({ error: 'Unknown video video channel for this account.' })
.end()
2017-10-24 17:41:09 +00:00
2017-11-27 16:30:46 +00:00
return
}
res.locals.videoChannel = videoChannel
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) {
logger.error('Invalid input file in videosAddValidator.', err)
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'),
body('thumbnailfile').custom((value, { req }) => isVideoImage(req.files, 'thumbnailfile')).withMessage(
'This thumbnail file is not supported. 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. Please, make sure it is of the following type : '
+ CONSTRAINTS_FIELDS.VIDEOS.IMAGE.EXTNAME.join(', ')
),
2017-09-15 10:17:08 +00:00
body('name').optional().custom(isVideoNameValid).withMessage('Should have a valid name'),
body('category').optional().custom(isVideoCategoryValid).withMessage('Should have a valid category'),
body('licence').optional().custom(isVideoLicenceValid).withMessage('Should have a valid licence'),
body('language').optional().custom(isVideoLanguageValid).withMessage('Should have a valid language'),
2018-01-03 09:12:36 +00:00
body('nsfw').optional().custom(isBooleanValid).withMessage('Should have a valid NSFW attribute'),
body('privacy').optional().custom(isVideoPrivacyValid).withMessage('Should have correct video privacy'),
2017-09-15 10:17:08 +00:00
body('description').optional().custom(isVideoDescriptionValid).withMessage('Should have a valid description'),
body('support').optional().custom(isVideoSupportValid).withMessage('Should have a valid support text'),
2017-09-15 10:17:08 +00:00
body('tags').optional().custom(isVideoTagsValid).withMessage('Should have correct tags'),
2018-01-03 09:12:36 +00:00
body('commentsEnabled').optional().custom(isBooleanValid).withMessage('Should have comments enabled boolean'),
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
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
if (!checkUserCanManageVideo(res.locals.oauth.token.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 anymore.' })
.end()
}
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 checkUserCanManageVideo (user: UserModel, video: VideoModel, right: UserRight, res: express.Response) {
Add ability for an administrator to remove any video (#61) * Add ability for an admin to remove every video on the pod. * Server: add BlacklistedVideos relation. * Server: Insert in BlacklistedVideos relation upon deletion of a video. * Server: Modify BlacklistedVideos schema to add Pod id information. * Server: Moving insertion of a blacklisted video from the `afterDestroy` hook into the process of deletion of a video. To avoid inserting a video when it is removed on its origin pod. When a video is removed on its origin pod, the `afterDestroy` hook is fire, but no request is made on the delete('/:videoId') interface. Hence, we insert into `BlacklistedVideos` only on request on delete('/:videoId') (if requirements for insertion are met). * Server: Add removeVideoFromBlacklist hook on deletion of a video. We are going to proceed in another way :). We will add a new route : /:videoId/blacklist to blacklist a video. We do not blacklist a video upon its deletion now (to distinguish a video blacklist from a regular video delete) When we blacklist a video, the video remains in the DB, so we don't have any concern about its update. It just doesn't appear in the video list. When we remove a video, we then have to remove it from the blacklist too. We could also remove a video from the blacklist to 'unremove' it and make it appear again in the video list (will be another feature). * Server: Add handler for new route post(/:videoId/blacklist) * Client: Add isBlacklistable method * Client: Update isRemovableBy method. * Client: Move 'Delete video' feature from the video-list to the video-watch module. * Server: Exclude blacklisted videos from the video list * Server: Use findAll() in BlacklistedVideos.list() method * Server: Fix addVideoToBlacklist function. * Client: Add blacklist feature. * Server: Use JavaScript Standard Style. * Server: In checkUserCanDeleteVideo, move the callback call inside the db callback function * Server: Modify BlacklistVideo relation * Server: Modifiy Videos methods. * Server: Add checkVideoIsBlacklistable method * Server: Rewrite addVideoToBlacklist method * Server: Fix checkVideoIsBlacklistable method * Server: Add return to addVideoToBlacklist method
2017-04-26 19:22:10 +00:00
// Retrieve the user who did the request
2017-11-27 16:30:46 +00:00
if (video.isOwned() === false) {
res.status(403)
2017-11-15 10:00:25 +00:00
.json({ error: 'Cannot remove video of another server, blacklist it' })
.end()
2017-11-27 16:30:46 +00:00
return false
}
// Check if the user can delete the video
2018-01-04 10:19:16 +00:00
// The user can delete it if he has the right
2017-11-10 13:48:08 +00:00
// Or if s/he is the video's account
2017-11-27 16:30:46 +00:00
const account = video.VideoChannel.Account
if (user.hasRight(right) === false && account.userId !== user.id) {
2017-11-27 16:30:46 +00:00
res.status(403)
.json({ error: 'Cannot remove video of another user' })
.end()
2017-11-27 16:30:46 +00:00
return false
}
2017-11-27 16:30:46 +00:00
return true
Add ability for an administrator to remove any video (#61) * Add ability for an admin to remove every video on the pod. * Server: add BlacklistedVideos relation. * Server: Insert in BlacklistedVideos relation upon deletion of a video. * Server: Modify BlacklistedVideos schema to add Pod id information. * Server: Moving insertion of a blacklisted video from the `afterDestroy` hook into the process of deletion of a video. To avoid inserting a video when it is removed on its origin pod. When a video is removed on its origin pod, the `afterDestroy` hook is fire, but no request is made on the delete('/:videoId') interface. Hence, we insert into `BlacklistedVideos` only on request on delete('/:videoId') (if requirements for insertion are met). * Server: Add removeVideoFromBlacklist hook on deletion of a video. We are going to proceed in another way :). We will add a new route : /:videoId/blacklist to blacklist a video. We do not blacklist a video upon its deletion now (to distinguish a video blacklist from a regular video delete) When we blacklist a video, the video remains in the DB, so we don't have any concern about its update. It just doesn't appear in the video list. When we remove a video, we then have to remove it from the blacklist too. We could also remove a video from the blacklist to 'unremove' it and make it appear again in the video list (will be another feature). * Server: Add handler for new route post(/:videoId/blacklist) * Client: Add isBlacklistable method * Client: Update isRemovableBy method. * Client: Move 'Delete video' feature from the video-list to the video-watch module. * Server: Exclude blacklisted videos from the video list * Server: Use findAll() in BlacklistedVideos.list() method * Server: Fix addVideoToBlacklist function. * Client: Add blacklist feature. * Server: Use JavaScript Standard Style. * Server: In checkUserCanDeleteVideo, move the callback call inside the db callback function * Server: Modify BlacklistVideo relation * Server: Modifiy Videos methods. * Server: Add checkVideoIsBlacklistable method * Server: Rewrite addVideoToBlacklist method * Server: Fix checkVideoIsBlacklistable method * Server: Add return to addVideoToBlacklist method
2017-04-26 19:22:10 +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)
.send({ error: `The size of the ${imageField} is too big (>${CONSTRAINTS_FIELDS.VIDEOS.IMAGE.FILE_SIZE.max}).` })
.end()
return true
}
}
return false
}