aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/controllers/api/v1/remote.js
blob: 7af9b7e84577b8aae6189c759ffd9e54991cf843 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
'use strict'

const async = require('async')
const express = require('express')
const mongoose = require('mongoose')

const middlewares = require('../../../middlewares')
const secureMiddleware = middlewares.secure
const validators = middlewares.validators.remote
const logger = require('../../../helpers/logger')

const router = express.Router()
const Video = mongoose.model('Video')

router.post('/videos',
  validators.signature,
  validators.dataToDecrypt,
  secureMiddleware.decryptBody,
  validators.remoteVideos,
  remoteVideos
)

// ---------------------------------------------------------------------------

module.exports = router

// ---------------------------------------------------------------------------

function remoteVideos (req, res, next) {
  const requests = req.body.data
  const fromUrl = req.body.signature.url

  // We need to process in the same order to keep consistency
  // TODO: optimization
  async.eachSeries(requests, function (request, callbackEach) {
    const videoData = request.data

    if (request.type === 'add') {
      addRemoteVideo(videoData, callbackEach)
    } else if (request.type === 'remove') {
      removeRemoteVideo(videoData, fromUrl, callbackEach)
    }
  }, function (err) {
    if (err) logger.error('Error managing remote videos.', { error: err })
  })

  // We don't need to keep the other pod waiting
  return res.type('json').status(204).end()
}

function addRemoteVideo (videoToCreateData, callback) {
  // Mongoose pre hook will automatically create the thumbnail on disk
  videoToCreateData.thumbnail = videoToCreateData.thumbnailBase64

  const video = new Video(videoToCreateData)
  video.save(callback)
}

function removeRemoteVideo (videoToRemoveData, fromUrl, callback) {
  // We need the list because we have to remove some other stuffs (thumbnail etc)
  Video.listByUrlAndMagnet(fromUrl, videoToRemoveData.magnetUri, function (err, videosList) {
    if (err) {
      logger.error('Cannot list videos from url and magnets.', { error: err })
      return callback(err)
    }

    async.each(videosList, function (video, callbackEach) {
      video.remove(callbackEach)
    }, callback)
  })
}