X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;ds=sidebyside;f=server%2Fmiddlewares%2Fvalidators%2Fvideos.js;h=5c3f3ecf3ebdefc61b6d1b2bf26b6507f96369fa;hb=f6f7dfee01e8b7ddf62d2549b8f381d0b12b590e;hp=4fe6dcd8b3e81cfbae3c5f7f47ca176d2f6419ec;hpb=63d00f5ded0aad25eeb50111da65b6daa46bcb24;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/middlewares/validators/videos.js b/server/middlewares/validators/videos.js index 4fe6dcd8b..5c3f3ecf3 100644 --- a/server/middlewares/validators/videos.js +++ b/server/middlewares/validators/videos.js @@ -17,9 +17,7 @@ const validatorsVideos = { } function videosAdd (req, res, next) { - req.checkFiles('videofile[0].originalname', 'Should have an input video').notEmpty() - // TODO: move to constants and function - req.checkFiles('videofile[0].mimetype', 'Should have a correct mime type').matches(/video\/(webm)|(mp4)|(ogg)/i) + req.checkBody('videofile', 'Should have a valid file').isVideoFile(req.files) 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()