diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2015-12-06 22:40:30 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2015-12-07 17:22:36 +0100 |
commit | 8d6ae227e5a72492e58d3763d8be58899aefc529 (patch) | |
tree | 791f44a3fd5c9379d853a7329fb6f1e11b976a0a | |
parent | e5993adcb999448e03503ce32d417bc4187b1bd7 (diff) | |
download | PeerTube-8d6ae227e5a72492e58d3763d8be58899aefc529.tar.gz PeerTube-8d6ae227e5a72492e58d3763d8be58899aefc529.tar.zst PeerTube-8d6ae227e5a72492e58d3763d8be58899aefc529.zip |
Fix bug in the pool of requests
-rw-r--r-- | src/poolRequests.js | 59 | ||||
-rw-r--r-- | test/api/friendsAdvanced.js | 8 |
2 files changed, 50 insertions, 17 deletions
diff --git a/src/poolRequests.js b/src/poolRequests.js index 391ed6ab2..190fb3659 100644 --- a/src/poolRequests.js +++ b/src/poolRequests.js | |||
@@ -23,33 +23,66 @@ | |||
23 | // ----------- Private ----------- | 23 | // ----------- Private ----------- |
24 | var timer = null | 24 | var timer = null |
25 | 25 | ||
26 | function removePoolRequestsFromDB (ids) { | ||
27 | PoolRequestsDB.remove({ _id: { $in: ids } }, function (err) { | ||
28 | if (err) { | ||
29 | logger.error('Cannot remove requests from the pool requests database.', { error: err }) | ||
30 | return | ||
31 | } | ||
32 | |||
33 | logger.info('Pool requests flushed.') | ||
34 | }) | ||
35 | } | ||
36 | |||
26 | function makePoolRequests () { | 37 | function makePoolRequests () { |
27 | logger.info('Making pool requests to friends.') | 38 | logger.info('Making pool requests to friends.') |
28 | 39 | ||
29 | PoolRequestsDB.find({}, { type: 1, request: 1 }, function (err, pool_requests) { | 40 | PoolRequestsDB.find({}, { _id: 1, type: 1, request: 1 }, function (err, pool_requests) { |
30 | if (err) throw err | 41 | if (err) throw err |
31 | 42 | ||
32 | if (pool_requests.length === 0) return | 43 | if (pool_requests.length === 0) return |
33 | 44 | ||
34 | var requests = { | 45 | var requests = { |
35 | add: [], | 46 | add: { |
36 | remove: [] | 47 | ids: [], |
48 | requests: [] | ||
49 | }, | ||
50 | remove: { | ||
51 | ids: [], | ||
52 | requests: [] | ||
53 | } | ||
37 | } | 54 | } |
38 | 55 | ||
39 | async.each(pool_requests, function (pool_request, callback_each) { | 56 | async.each(pool_requests, function (pool_request, callback_each) { |
40 | if (pool_request.type === 'add') { | 57 | if (pool_request.type === 'add') { |
41 | requests.add.push(pool_request.request) | 58 | requests.add.requests.push(pool_request.request) |
59 | requests.add.ids.push(pool_request._id) | ||
42 | } else if (pool_request.type === 'remove') { | 60 | } else if (pool_request.type === 'remove') { |
43 | requests.remove.push(pool_request.request) | 61 | requests.remove.requests.push(pool_request.request) |
62 | requests.remove.ids.push(pool_request._id) | ||
44 | } else { | 63 | } else { |
45 | throw new Error('Unkown pool request type.') | 64 | throw new Error('Unkown pool request type.') |
46 | } | 65 | } |
47 | 66 | ||
48 | callback_each() | 67 | callback_each() |
49 | }, function () { | 68 | }, function () { |
50 | makePoolRequest('add', requests.add) | 69 | // Send the add requests |
51 | makePoolRequest('remove', requests.remove) | 70 | if (requests.add.requests.length !== 0) { |
52 | logger.info('Pool requests to friends sent.') | 71 | makePoolRequest('add', requests.add.requests, function (err) { |
72 | if (err) logger.error('Errors when sent add pool requests.', { error: err }) | ||
73 | |||
74 | removePoolRequestsFromDB(requests.add.ids) | ||
75 | }) | ||
76 | } | ||
77 | |||
78 | // Send the remove requests | ||
79 | if (requests.remove.requests.length !== 0) { | ||
80 | makePoolRequest('remove', requests.remove.requests, function (err) { | ||
81 | if (err) logger.error('Errors when sent remove pool requests.', { error: err }) | ||
82 | |||
83 | removePoolRequestsFromDB(requests.remove.ids) | ||
84 | }) | ||
85 | } | ||
53 | }) | 86 | }) |
54 | }) | 87 | }) |
55 | } | 88 | } |
@@ -73,7 +106,9 @@ | |||
73 | }) | 106 | }) |
74 | } | 107 | } |
75 | 108 | ||
76 | function makePoolRequest (type, requests) { | 109 | function makePoolRequest (type, requests, callback) { |
110 | if (!callback) callback = function () {} | ||
111 | |||
77 | PodsDB.find({}, { _id: 1, url: 1, publicKey: 1 }).exec(function (err, pods) { | 112 | PodsDB.find({}, { _id: 1, url: 1, publicKey: 1 }).exec(function (err, pods) { |
78 | if (err) throw err | 113 | if (err) throw err |
79 | 114 | ||
@@ -110,12 +145,10 @@ | |||
110 | } | 145 | } |
111 | 146 | ||
112 | function callbackAllPodsFinished (err) { | 147 | function callbackAllPodsFinished (err) { |
113 | if (err) { | 148 | if (err) return callback(err) |
114 | logger.error('There was some errors when sending the video meta data.', { error: err }) | ||
115 | } | ||
116 | 149 | ||
117 | updatePodsScore(good_pods, bad_pods) | 150 | updatePodsScore(good_pods, bad_pods) |
118 | PoolRequestsDB.remove().exec() | 151 | callback(null) |
119 | } | 152 | } |
120 | }) | 153 | }) |
121 | } | 154 | } |
diff --git a/test/api/friendsAdvanced.js b/test/api/friendsAdvanced.js index 7a0940647..5d3891923 100644 --- a/test/api/friendsAdvanced.js +++ b/test/api/friendsAdvanced.js | |||
@@ -115,13 +115,13 @@ | |||
115 | }) | 115 | }) |
116 | }) | 116 | }) |
117 | }) | 117 | }) |
118 | }, 11000) | 118 | }, 15000) |
119 | }) | 119 | }) |
120 | }, 11000) | 120 | }, 15000) |
121 | }) | 121 | }) |
122 | }, 11000) | 122 | }, 15000) |
123 | }) | 123 | }) |
124 | }, 11000) | 124 | }, 15000) |
125 | }) | 125 | }) |
126 | }) | 126 | }) |
127 | }) | 127 | }) |