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

100 lines
3.3 KiB
JavaScript
Raw Normal View History

'use strict'
2015-11-07 13:16:26 +00:00
const mongoose = require('mongoose')
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-03-16 21:29:27 +00:00
const logger = require('../../helpers/logger')
const Video = mongoose.model('Video')
2015-11-07 13:16:26 +00:00
2016-07-01 14:16:40 +00:00
const validatorsVideos = {
videosAdd: videosAdd,
videosGet: videosGet,
videosRemove: videosRemove,
videosSearch: videosSearch
}
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]
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
function videosGet (req, res, next) {
req.checkParams('id', 'Should have a valid id').notEmpty().isMongoId()
2015-11-07 13:16:26 +00:00
logger.debug('Checking videosGet parameters', { parameters: req.params })
2015-11-07 13:16:26 +00:00
checkErrors(req, res, function () {
Video.load(req.params.id, function (err, video) {
if (err) {
logger.error('Error in videosGet request validator.', { error: err })
2016-06-06 12:15:03 +00:00
return res.sendStatus(500)
}
2016-02-04 20:10:33 +00:00
if (!video) return res.status(404).send('Video not found')
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 videosRemove (req, res, next) {
req.checkParams('id', 'Should have a valid id').notEmpty().isMongoId()
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 () {
Video.load(req.params.id, function (err, video) {
if (err) {
logger.error('Error in videosRemove request validator.', { error: err })
2016-06-06 12:15:03 +00:00
return res.sendStatus(500)
}
2016-02-04 20:10:33 +00:00
if (!video) return res.status(404).send('Video not found')
else if (video.isOwned() === false) return res.status(403).send('Cannot remove video of another pod')
else if (video.author !== res.locals.oauth.token.user.username) 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
// ---------------------------------------------------------------------------
2016-01-31 10:23:52 +00:00
2016-07-01 14:16:40 +00:00
module.exports = validatorsVideos