aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/controllers/api
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2017-01-17 20:50:02 +0100
committerChocobozzz <florian.bigard@gmail.com>2017-01-17 20:50:45 +0100
commit62f4ef413c8ef4269e7cdc21dea0e99ab2191201 (patch)
tree68d20b6597d154c09f05f5cd414cb5e43d180ccf /server/controllers/api
parent4145c1c68923c13538a5b60d1b384037d0dded9d (diff)
downloadPeerTube-62f4ef413c8ef4269e7cdc21dea0e99ab2191201.tar.gz
PeerTube-62f4ef413c8ef4269e7cdc21dea0e99ab2191201.tar.zst
PeerTube-62f4ef413c8ef4269e7cdc21dea0e99ab2191201.zip
Server: remote request process refractoring
Diffstat (limited to 'server/controllers/api')
-rw-r--r--server/controllers/api/remote/videos.js40
1 files changed, 20 insertions, 20 deletions
diff --git a/server/controllers/api/remote/videos.js b/server/controllers/api/remote/videos.js
index bfe61a35c..83d9b98bf 100644
--- a/server/controllers/api/remote/videos.js
+++ b/server/controllers/api/remote/videos.js
@@ -5,6 +5,7 @@ const express = require('express')
5const waterfall = require('async/waterfall') 5const waterfall = require('async/waterfall')
6 6
7const db = require('../../../initializers/database') 7const db = require('../../../initializers/database')
8const constants = require('../../../initializers/constants')
8const middlewares = require('../../../middlewares') 9const middlewares = require('../../../middlewares')
9const secureMiddleware = middlewares.secure 10const secureMiddleware = middlewares.secure
10const videosValidators = middlewares.validators.remote.videos 11const videosValidators = middlewares.validators.remote.videos
@@ -12,6 +13,15 @@ const signatureValidators = middlewares.validators.remote.signature
12const logger = require('../../../helpers/logger') 13const logger = require('../../../helpers/logger')
13const databaseUtils = require('../../../helpers/database-utils') 14const databaseUtils = require('../../../helpers/database-utils')
14 15
16const ENDPOINT_ACTIONS = constants.REQUEST_ENDPOINT_ACTIONS[constants.REQUEST_ENDPOINTS.VIDEOS]
17
18// Functions to call when processing a remote request
19const functionsHash = {}
20functionsHash[ENDPOINT_ACTIONS.ADD] = addRemoteVideoRetryWrapper
21functionsHash[ENDPOINT_ACTIONS.UPDATE] = updateRemoteVideoRetryWrapper
22functionsHash[ENDPOINT_ACTIONS.REMOVE] = removeRemoteVideo
23functionsHash[ENDPOINT_ACTIONS.REPORT_ABUSE] = reportAbuseRemoteVideo
24
15const router = express.Router() 25const router = express.Router()
16 26
17router.post('/', 27router.post('/',
@@ -36,26 +46,14 @@ function remoteVideos (req, res, next) {
36 eachSeries(requests, function (request, callbackEach) { 46 eachSeries(requests, function (request, callbackEach) {
37 const data = request.data 47 const data = request.data
38 48
39 switch (request.type) { 49 // Get the function we need to call in order to process the request
40 case 'add': 50 const fun = functionsHash[request.type]
41 addRemoteVideoRetryWrapper(data, fromPod, callbackEach) 51 if (fun === undefined) {
42 break 52 logger.error('Unkown remote request type %s.', request.type)
43 53 return callbackEach(null)
44 case 'update':
45 updateRemoteVideoRetryWrapper(data, fromPod, callbackEach)
46 break
47
48 case 'remove':
49 removeRemoteVideo(data, fromPod, callbackEach)
50 break
51
52 case 'report-abuse':
53 reportAbuseRemoteVideo(data, fromPod, callbackEach)
54 break
55
56 default:
57 logger.error('Unkown remote request type %s.', request.type)
58 } 54 }
55
56 fun.call(this, data, fromPod, callbackEach)
59 }, function (err) { 57 }, function (err) {
60 if (err) logger.error('Error managing remote videos.', { error: err }) 58 if (err) logger.error('Error managing remote videos.', { error: err })
61 }) 59 })
@@ -141,7 +139,9 @@ function addRemoteVideo (videoToCreateData, fromPod, finalCallback) {
141 }, 139 },
142 140
143 function associateTagsToVideo (t, tagInstances, video, callback) { 141 function associateTagsToVideo (t, tagInstances, video, callback) {
144 const options = { transaction: t } 142 const options = {
143 transaction: t
144 }
145 145
146 video.setTags(tagInstances, options).asCallback(function (err) { 146 video.setTags(tagInstances, options).asCallback(function (err) {
147 return callback(err, t) 147 return callback(err, t)