]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Server: rights check for update a video
authorChocobozzz <florian.bigard@gmail.com>
Wed, 11 Jan 2017 17:41:09 +0000 (18:41 +0100)
committerChocobozzz <florian.bigard@gmail.com>
Wed, 11 Jan 2017 17:41:09 +0000 (18:41 +0100)
server/middlewares/validators/videos.js
server/tests/api/check-params/videos.js

index ff18a99c27bbd5c9ee531bfdeef6aeca87a2dc63..3d7c04b60323cda5d45352c58483c9ad2f8d85ef 100644 (file)
@@ -53,6 +53,14 @@ function videosUpdate (req, res, next) {
   logger.debug('Checking videosUpdate parameters', { parameters: req.body })
 
   checkErrors(req, res, function () {
+    if (res.locals.video.isOwned() === false) {
+      return res.status(403).send('Cannot update video of another pod')
+    }
+
+    if (res.locals.video.Author.userId !== res.locals.oauth.token.User.id) {
+      return res.status(403).send('Cannot update video of another user')
+    }
+
     checkVideoExists(req.params.id, res, next)
   })
 }
index d1830529119c8d35881d558de11bab98232ea5cb..fac9037154a73959daec1458fb9b94ce18b36c39 100644 (file)
@@ -378,6 +378,10 @@ describe('Test videos API validator', function () {
       }
       requestsUtils.makePutBodyRequest(server.url, path + videoId, server.accessToken, data, done)
     })
+
+    it('Should fail with a video of another user')
+
+    it('Should fail with a video of another pod')
   })
 
   describe('When getting a video', function () {