aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/middlewares/validators/videos.js
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2016-07-01 16:16:40 +0200
committerChocobozzz <florian.bigard@gmail.com>2016-07-01 16:16:40 +0200
commitfc51fde048f2c3ce1dd3e85f5528335040bae894 (patch)
tree6de1eeac1291d9398cc99cda926b189c39b3ea0b /server/middlewares/validators/videos.js
parent69b0a27cbbd69ca019eb7db5f917b1dd06dc82cd (diff)
downloadPeerTube-fc51fde048f2c3ce1dd3e85f5528335040bae894.tar.gz
PeerTube-fc51fde048f2c3ce1dd3e85f5528335040bae894.tar.zst
PeerTube-fc51fde048f2c3ce1dd3e85f5528335040bae894.zip
reqValidators --> validators
Diffstat (limited to 'server/middlewares/validators/videos.js')
-rw-r--r--server/middlewares/validators/videos.js97
1 files changed, 97 insertions, 0 deletions
diff --git a/server/middlewares/validators/videos.js b/server/middlewares/validators/videos.js
new file mode 100644
index 000000000..24e2299dc
--- /dev/null
+++ b/server/middlewares/validators/videos.js
@@ -0,0 +1,97 @@
1'use strict'
2
3const mongoose = require('mongoose')
4
5const checkErrors = require('./utils').checkErrors
6const constants = require('../../initializers/constants')
7const customValidators = require('../../helpers/customValidators')
8const logger = require('../../helpers/logger')
9
10const Video = mongoose.model('Video')
11
12const validatorsVideos = {
13 videosAdd: videosAdd,
14 videosGet: videosGet,
15 videosRemove: videosRemove,
16 videosSearch: videosSearch
17}
18
19function videosAdd (req, res, next) {
20 req.checkFiles('videofile[0].originalname', 'Should have an input video').notEmpty()
21 req.checkFiles('videofile[0].mimetype', 'Should have a correct mime type').matches(/video\/(webm)|(mp4)|(ogg)/i)
22 req.checkBody('name', 'Should have a valid name').isVideoNameValid()
23 req.checkBody('description', 'Should have a valid description').isVideoDescriptionValid()
24 req.checkBody('tags', 'Should have correct tags').isVideoTagsValid()
25
26 logger.debug('Checking videosAdd parameters', { parameters: req.body, files: req.files })
27
28 checkErrors(req, res, function () {
29 const videoFile = req.files.videofile[0]
30
31 Video.getDurationFromFile(videoFile.path, function (err, duration) {
32 if (err) {
33 return res.status(400).send('Cannot retrieve metadata of the file.')
34 }
35
36 if (!customValidators.isVideoDurationValid(duration)) {
37 return res.status(400).send('Duration of the video file is too big (max: ' + constants.VIDEOS_CONSTRAINTS_FIELDS.DURATION.max + 's).')
38 }
39
40 videoFile.duration = duration
41 next()
42 })
43 })
44}
45
46function videosGet (req, res, next) {
47 req.checkParams('id', 'Should have a valid id').notEmpty().isMongoId()
48
49 logger.debug('Checking videosGet parameters', { parameters: req.params })
50
51 checkErrors(req, res, function () {
52 Video.load(req.params.id, function (err, video) {
53 if (err) {
54 logger.error('Error in videosGet request validator.', { error: err })
55 return res.sendStatus(500)
56 }
57
58 if (!video) return res.status(404).send('Video not found')
59
60 next()
61 })
62 })
63}
64
65function videosRemove (req, res, next) {
66 req.checkParams('id', 'Should have a valid id').notEmpty().isMongoId()
67
68 logger.debug('Checking videosRemove parameters', { parameters: req.params })
69
70 checkErrors(req, res, function () {
71 Video.load(req.params.id, function (err, video) {
72 if (err) {
73 logger.error('Error in videosRemove request validator.', { error: err })
74 return res.sendStatus(500)
75 }
76
77 if (!video) return res.status(404).send('Video not found')
78 else if (video.isOwned() === false) return res.status(403).send('Cannot remove video of another pod')
79
80 next()
81 })
82 })
83}
84
85function videosSearch (req, res, next) {
86 const searchableColumns = constants.SEARCHABLE_COLUMNS.VIDEOS
87 req.checkParams('value', 'Should have a valid search').notEmpty()
88 req.checkQuery('field', 'Should have correct searchable column').optional().isIn(searchableColumns)
89
90 logger.debug('Checking videosSearch parameters', { parameters: req.params })
91
92 checkErrors(req, res, next)
93}
94
95// ---------------------------------------------------------------------------
96
97module.exports = validatorsVideos