]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/controllers/api/v1/videos.js
Video model refractoring -> use mongoose api
[github/Chocobozzz/PeerTube.git] / server / controllers / api / v1 / videos.js
index 1eea417d413ae0d327d9cf869a27fa808421e196..83734b35e7581f55481a1a009ae07acbe4c747ea 100644 (file)
@@ -1,21 +1,27 @@
 'use strict'
 
+const async = require('async')
 const config = require('config')
-const crypto = require('crypto')
 const express = require('express')
+const mongoose = require('mongoose')
 const multer = require('multer')
 
 const logger = require('../../../helpers/logger')
 const friends = require('../../../lib/friends')
-const middleware = require('../../../middlewares')
-const cacheMiddleware = middleware.cache
-const reqValidator = middleware.reqValidators.videos
-const Videos = require('../../../models/videos') // model
-const videos = require('../../../lib/videos')
-const webtorrent = require('../../../lib/webtorrent')
+const middlewares = require('../../../middlewares')
+const oAuth2 = middlewares.oauth2
+const pagination = middlewares.pagination
+const reqValidator = middlewares.reqValidators
+const reqValidatorPagination = reqValidator.pagination
+const reqValidatorSort = reqValidator.sort
+const reqValidatorVideos = reqValidator.videos
+const search = middlewares.search
+const sort = middlewares.sort
+const utils = require('../../../helpers/utils')
 
 const router = express.Router()
 const uploads = config.get('storage.uploads')
+const Video = mongoose.model('Video')
 
 // multer configuration
 const storage = multer.diskStorage({
@@ -28,20 +34,46 @@ const storage = multer.diskStorage({
     if (file.mimetype === 'video/webm') extension = 'webm'
     else if (file.mimetype === 'video/mp4') extension = 'mp4'
     else if (file.mimetype === 'video/ogg') extension = 'ogv'
-    crypto.pseudoRandomBytes(16, function (err, raw) {
-      const fieldname = err ? undefined : raw.toString('hex')
+    utils.generateRandomString(16, function (err, randomString) {
+      const fieldname = err ? undefined : randomString
       cb(null, fieldname + '.' + extension)
     })
   }
 })
 
-const reqFiles = multer({ storage: storage }).fields([{ name: 'input_video', maxCount: 1 }])
-
-router.get('/', cacheMiddleware.cache(false), listVideos)
-router.post('/', reqFiles, reqValidator.videosAdd, cacheMiddleware.cache(false), addVideo)
-router.get('/:id', reqValidator.videosGet, cacheMiddleware.cache(false), getVideos)
-router.delete('/:id', reqValidator.videosRemove, cacheMiddleware.cache(false), removeVideo)
-router.get('/search/:name', reqValidator.videosSearch, cacheMiddleware.cache(false), searchVideos)
+const reqFiles = multer({ storage: storage }).fields([{ name: 'videofile', maxCount: 1 }])
+
+router.get('/',
+  reqValidatorPagination.pagination,
+  reqValidatorSort.videosSort,
+  sort.setVideosSort,
+  pagination.setPagination,
+  listVideos
+)
+router.post('/',
+  oAuth2.authenticate,
+  reqFiles,
+  reqValidatorVideos.videosAdd,
+  addVideo
+)
+router.get('/:id',
+  reqValidatorVideos.videosGet,
+  getVideo
+)
+router.delete('/:id',
+  oAuth2.authenticate,
+  reqValidatorVideos.videosRemove,
+  removeVideo
+)
+router.get('/search/:value',
+  reqValidatorVideos.videosSearch,
+  reqValidatorPagination.pagination,
+  reqValidatorSort.videosSort,
+  sort.setVideosSort,
+  pagination.setPagination,
+  search.setVideosSearch,
+  searchVideos
+)
 
 // ---------------------------------------------------------------------------
 
@@ -50,95 +82,129 @@ module.exports = router
 // ---------------------------------------------------------------------------
 
 function addVideo (req, res, next) {
-  const video_file = req.files.input_video[0]
-  const video_infos = req.body
+  const videoFile = req.files.videofile[0]
+  const videoInfos = req.body
+
+  async.waterfall([
+
+    function insertIntoDB (callback) {
+      const videoData = {
+        name: videoInfos.name,
+        namePath: videoFile.filename,
+        description: videoInfos.description,
+        author: res.locals.oauth.token.user.username,
+        duration: videoFile.duration,
+        tags: videoInfos.tags
+      }
 
-  videos.seed(video_file.path, function (err, torrent) {
-    if (err) {
-      logger.error('Cannot seed this video.')
-      return next(err)
-    }
+      const video = new Video(videoData)
+      video.save(function (err, video) {
+        // Assert there are only one argument sent to the next function (video)
+        return callback(err, video)
+      })
+    },
 
-    const video_data = {
-      name: video_infos.name,
-      namePath: video_file.filename,
-      description: video_infos.description,
-      magnetUri: torrent.magnetURI
-    }
+    function sendToFriends (video, callback) {
+      video.toRemoteJSON(function (err, remoteVideo) {
+        if (err) return callback(err)
 
-    Videos.add(video_data, function (err) {
-      if (err) {
-        // TODO unseed the video
-        logger.error('Cannot insert this video in the database.')
-        return next(err)
-      }
+        // Now we'll add the video's meta data to our friends
+        friends.addVideoToFriends(remoteVideo)
 
-      // Now we'll add the video's meta data to our friends
-      friends.addVideoToFriends(video_data)
+        return callback(null)
+      })
+    }
 
-      // TODO : include Location of the new video -> 201
-      res.type('json').status(204).end()
-    })
+  ], function andFinally (err) {
+    if (err) {
+      // TODO unseed the video
+      // TODO remove thumbnail
+      // TODO delete from DB
+      logger.error('Cannot insert the video.')
+      return next(err)
+    }
+
+    // TODO : include Location of the new video -> 201
+    return res.type('json').status(204).end()
   })
 }
 
-function getVideos (req, res, next) {
-  Videos.get(req.params.id, function (err, video) {
+function getVideo (req, res, next) {
+  Video.load(req.params.id, function (err, video) {
     if (err) return next(err)
 
-    if (video === null) {
-      res.type('json').status(204).end()
+    if (!video) {
+      return res.type('json').status(204).end()
     }
 
-    res.json(video)
+    res.json(video.toFormatedJSON())
   })
 }
 
 function listVideos (req, res, next) {
-  Videos.list(function (err, videos_list) {
+  Video.list(req.query.start, req.query.count, req.query.sort, function (err, videosList, videosTotal) {
     if (err) return next(err)
 
-    res.json(videos_list)
+    res.json(getFormatedVideos(videosList, videosTotal))
   })
 }
 
 function removeVideo (req, res, next) {
-  const video_id = req.params.id
-  Videos.get(video_id, function (err, video) {
-    if (err) return next(err)
+  const videoId = req.params.id
 
-    removeTorrent(video.magnetUri, function () {
-      Videos.removeOwned(req.params.id, function (err) {
-        if (err) return next(err)
+  async.waterfall([
+    function getVideo (callback) {
+      Video.load(videoId, callback)
+    },
 
-        const params = {
-          name: video.name,
-          magnetUri: video.magnetUri
-        }
+    function removeFromDB (video, callback) {
+      video.remove(function (err) {
+        if (err) return callback(err)
 
-        friends.removeVideoToFriends(params)
-        res.type('json').status(204).end()
+        return callback(null, video)
       })
-    })
+    },
+
+    function sendInformationToFriends (video, callback) {
+      const params = {
+        name: video.name,
+        magnetUri: video.magnetUri
+      }
+
+      friends.removeVideoToFriends(params)
+
+      return callback(null)
+    }
+  ], function andFinally (err) {
+    if (err) {
+      logger.error('Errors when removed the video.', { error: err })
+      return next(err)
+    }
+
+    return res.type('json').status(204).end()
   })
 }
 
 function searchVideos (req, res, next) {
-  Videos.search(req.params.name, function (err, videos_list) {
+  Video.search(req.params.value, req.query.field, req.query.start, req.query.count, req.query.sort,
+  function (err, videosList, videosTotal) {
     if (err) return next(err)
 
-    res.json(videos_list)
+    res.json(getFormatedVideos(videosList, videosTotal))
   })
 }
 
 // ---------------------------------------------------------------------------
 
-// Maybe the torrent is not seeded, but we catch the error to don't stop the removing process
-function removeTorrent (magnetUri, callback) {
-  try {
-    webtorrent.remove(magnetUri, callback)
-  } catch (err) {
-    logger.warn('Cannot remove the torrent from WebTorrent', { err: err })
-    return callback(null)
+function getFormatedVideos (videos, videosTotal) {
+  const formatedVideos = []
+
+  videos.forEach(function (video) {
+    formatedVideos.push(video.toFormatedJSON())
+  })
+
+  return {
+    total: videosTotal,
+    data: formatedVideos
   }
 }