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

132 lines
4.3 KiB
JavaScript
Raw Normal View History

'use strict'
2015-11-07 13:16:26 +00:00
2016-03-16 21:29:27 +00:00
const checkErrors = require('./utils').checkErrors
2016-05-16 17:49:10 +00:00
const constants = require('../../initializers/constants')
2016-07-31 18:58:43 +00:00
const customVideosValidators = require('../../helpers/custom-validators').videos
2016-12-11 20:50:51 +00:00
const db = require('../../initializers/database')
2016-03-16 21:29:27 +00:00
const logger = require('../../helpers/logger')
2016-07-01 14:16:40 +00:00
const validatorsVideos = {
videosAdd,
2016-12-29 18:07:05 +00:00
videosUpdate,
videosGet,
videosRemove,
2017-01-04 19:59:23 +00:00
videosSearch,
videoAbuseReport
}
2015-11-07 13:16:26 +00:00
function videosAdd (req, res, next) {
2016-03-18 15:34:50 +00:00
req.checkFiles('videofile[0].originalname', 'Should have an input video').notEmpty()
// TODO: move to constants and function
2016-03-18 15:34:50 +00:00
req.checkFiles('videofile[0].mimetype', 'Should have a correct mime type').matches(/video\/(webm)|(mp4)|(ogg)/i)
2016-06-06 12:15:03 +00:00
req.checkBody('name', 'Should have a valid name').isVideoNameValid()
req.checkBody('description', 'Should have a valid description').isVideoDescriptionValid()
req.checkBody('tags', 'Should have correct tags').isVideoTagsValid()
2015-11-07 13:16:26 +00:00
logger.debug('Checking videosAdd parameters', { parameters: req.body, files: req.files })
2015-11-07 13:16:26 +00:00
2016-05-16 17:49:10 +00:00
checkErrors(req, res, function () {
const videoFile = req.files.videofile[0]
2016-12-11 20:50:51 +00:00
db.Video.getDurationFromFile(videoFile.path, function (err, duration) {
2016-05-16 17:49:10 +00:00
if (err) {
return res.status(400).send('Cannot retrieve metadata of the file.')
}
2016-07-31 18:58:43 +00:00
if (!customVideosValidators.isVideoDurationValid(duration)) {
return res.status(400).send('Duration of the video file is too big (max: ' + constants.CONSTRAINTS_FIELDS.VIDEOS.DURATION.max + 's).')
2016-05-16 17:49:10 +00:00
}
videoFile.duration = duration
next()
})
})
}
2015-11-07 13:16:26 +00:00
2016-12-29 18:07:05 +00:00
function videosUpdate (req, res, next) {
2016-12-11 20:50:51 +00:00
req.checkParams('id', 'Should have a valid id').notEmpty().isUUID(4)
2016-12-29 18:07:05 +00:00
req.checkBody('name', 'Should have a valid name').optional().isVideoNameValid()
req.checkBody('description', 'Should have a valid description').optional().isVideoDescriptionValid()
req.checkBody('tags', 'Should have correct tags').optional().isVideoTagsValid()
2015-11-07 13:16:26 +00:00
2016-12-29 18:07:05 +00:00
logger.debug('Checking videosUpdate parameters', { parameters: req.body })
2015-11-07 13:16:26 +00:00
checkErrors(req, res, function () {
2016-12-29 18:07:05 +00:00
checkVideoExists(req.params.id, res, next)
})
}
2016-02-04 20:10:33 +00:00
2016-12-29 18:07:05 +00:00
function videosGet (req, res, next) {
req.checkParams('id', 'Should have a valid id').notEmpty().isUUID(4)
2015-11-07 13:16:26 +00:00
2016-12-29 18:07:05 +00:00
logger.debug('Checking videosGet parameters', { parameters: req.params })
checkErrors(req, res, function () {
checkVideoExists(req.params.id, res, next)
})
}
2015-11-07 13:16:26 +00:00
function videosRemove (req, res, next) {
2016-12-11 20:50:51 +00:00
req.checkParams('id', 'Should have a valid id').notEmpty().isUUID(4)
2015-11-07 13:16:26 +00:00
logger.debug('Checking videosRemove parameters', { parameters: req.params })
2015-11-07 13:16:26 +00:00
checkErrors(req, res, function () {
checkVideoExists(req.params.id, res, function () {
// We need to make additional checks
if (res.locals.video.isOwned() === false) {
return res.status(403).send('Cannot remove video of another pod')
}
2016-02-04 20:10:33 +00:00
2016-12-30 11:39:49 +00:00
if (res.locals.video.Author.userId !== res.locals.oauth.token.User.id) {
return res.status(403).send('Cannot remove video of another user')
}
2015-11-07 13:16:26 +00:00
2016-03-18 15:28:09 +00:00
next()
2015-11-07 13:16:26 +00:00
})
})
}
2015-11-07 13:16:26 +00:00
function videosSearch (req, res, next) {
const searchableColumns = constants.SEARCHABLE_COLUMNS.VIDEOS
2016-06-06 12:15:03 +00:00
req.checkParams('value', 'Should have a valid search').notEmpty()
req.checkQuery('field', 'Should have correct searchable column').optional().isIn(searchableColumns)
2016-01-31 10:23:52 +00:00
logger.debug('Checking videosSearch parameters', { parameters: req.params })
2016-01-31 10:23:52 +00:00
checkErrors(req, res, next)
}
2016-01-31 10:23:52 +00:00
2017-01-04 19:59:23 +00:00
function videoAbuseReport (req, res, next) {
req.checkParams('id', 'Should have a valid id').notEmpty().isUUID(4)
req.checkBody('reason', 'Should have a valid reason').isVideoAbuseReasonValid()
logger.debug('Checking videoAbuseReport parameters', { parameters: req.body })
checkErrors(req, res, function () {
checkVideoExists(req.params.id, res, next)
})
}
// ---------------------------------------------------------------------------
2016-01-31 10:23:52 +00:00
2016-07-01 14:16:40 +00:00
module.exports = validatorsVideos
2016-12-29 18:07:05 +00:00
// ---------------------------------------------------------------------------
function checkVideoExists (id, res, callback) {
db.Video.loadAndPopulateAuthorAndPodAndTags(id, function (err, video) {
if (err) {
logger.error('Error in video request validator.', { error: err })
return res.sendStatus(500)
}
if (!video) return res.status(404).send('Video not found')
res.locals.video = video
callback()
})
}