]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/models/request.js
Server: pod removing refractoring
[github/Chocobozzz/PeerTube.git] / server / models / request.js
CommitLineData
9f10b292
C
1'use strict'
2
1a42c9e2
C
3const each = require('async/each')
4const eachLimit = require('async/eachLimit')
aaf61f38 5const mongoose = require('mongoose')
1a42c9e2 6const waterfall = require('async/waterfall')
9f10b292 7
f0f5567b
C
8const constants = require('../initializers/constants')
9const logger = require('../helpers/logger')
f0f5567b 10const requests = require('../helpers/requests')
aaf61f38 11
a3ee6fa2 12const Pod = mongoose.model('Pod')
9f10b292 13
f0f5567b 14let timer = null
5abeec31 15let lastRequestTimestamp = 0
9f10b292 16
00057e85 17// ---------------------------------------------------------------------------
9f10b292 18
00057e85
C
19const RequestSchema = mongoose.Schema({
20 request: mongoose.Schema.Types.Mixed,
d3cd34be 21 to: [ { type: mongoose.Schema.Types.ObjectId, ref: 'Pod' } ]
00057e85 22})
9f10b292 23
00057e85
C
24RequestSchema.statics = {
25 activate,
26 deactivate,
27 flush,
d3cd34be 28 forceSend,
5abeec31
C
29 list,
30 remainingMilliSeconds
00057e85 31}
9f10b292 32
00057e85
C
33RequestSchema.pre('save', function (next) {
34 const self = this
528a9efa 35
00057e85 36 if (self.to.length === 0) {
a3ee6fa2 37 Pod.listAllIds(function (err, podIds) {
00057e85 38 if (err) return next(err)
9f10b292 39
00057e85
C
40 // No friends
41 if (podIds.length === 0) return
528a9efa 42
00057e85
C
43 self.to = podIds
44 return next()
528a9efa 45 })
00057e85
C
46 } else {
47 return next()
528a9efa 48 }
00057e85 49})
528a9efa 50
00057e85
C
51mongoose.model('Request', RequestSchema)
52
53// ------------------------------ STATICS ------------------------------
54
55function activate () {
56 logger.info('Requests scheduler activated.')
5abeec31
C
57 lastRequestTimestamp = Date.now()
58
59 const self = this
60 timer = setInterval(function () {
61 lastRequestTimestamp = Date.now()
62 makeRequests.call(self)
63 }, constants.REQUESTS_INTERVAL)
9f10b292 64}
1fe5076f 65
9f10b292 66function deactivate () {
e3647ae2 67 logger.info('Requests scheduler deactivated.')
9f10b292 68 clearInterval(timer)
5abeec31 69 timer = null
9f10b292 70}
1fe5076f 71
528a9efa 72function flush () {
00057e85
C
73 removeAll.call(this, function (err) {
74 if (err) logger.error('Cannot flush the requests.', { error: err })
528a9efa
C
75 })
76}
77
9f10b292 78function forceSend () {
e3647ae2 79 logger.info('Force requests scheduler sending.')
00057e85 80 makeRequests.call(this)
9f10b292 81}
c45f7f84 82
d3cd34be
C
83function list (callback) {
84 this.find({ }, callback)
85}
86
5abeec31
C
87function remainingMilliSeconds () {
88 if (timer === null) return -1
89
90 return constants.REQUESTS_INTERVAL - (Date.now() - lastRequestTimestamp)
91}
92
9f10b292 93// ---------------------------------------------------------------------------
c45f7f84 94
8c255eb5 95// Make a requests to friends of a certain type
528a9efa 96function makeRequest (toPod, requestsToMake, callback) {
9f10b292 97 if (!callback) callback = function () {}
c45f7f84 98
528a9efa
C
99 const params = {
100 toPod: toPod,
101 encrypt: true, // Security
102 sign: true, // To prove our identity
103 method: 'POST',
104 path: '/api/' + constants.API_VERSION + '/remote/videos',
105 data: requestsToMake // Requests we need to make
106 }
107
108 // Make multiple retry requests to all of pods
109 // The function fire some useful callbacks
110 requests.makeSecureRequest(params, function (err, res) {
111 if (err || (res.statusCode !== 200 && res.statusCode !== 201 && res.statusCode !== 204)) {
b9135905
C
112 logger.error(
113 'Error sending secure request to %s pod.',
114 toPod.url,
115 {
7c34bc64 116 error: err || new Error('Status code not 20x : ' + res.statusCode)
b9135905
C
117 }
118 )
528a9efa
C
119
120 return callback(false)
9f10b292 121 }
c45f7f84 122
528a9efa 123 return callback(true)
9f10b292
C
124 })
125}
126
8c255eb5 127// Make all the requests of the scheduler
e3647ae2 128function makeRequests () {
00057e85
C
129 const self = this
130
b3595463 131 listWithLimit.call(self, constants.REQUESTS_LIMIT, function (err, requests) {
9f10b292 132 if (err) {
e3647ae2 133 logger.error('Cannot get the list of requests.', { err: err })
9f10b292
C
134 return // Abort
135 }
136
8c255eb5
C
137 // If there are no requests, abort
138 if (requests.length === 0) {
139 logger.info('No requests to make.')
140 return
141 }
9f10b292 142
8c255eb5
C
143 logger.info('Making requests to friends.')
144
528a9efa 145 // Requests by pods id
8c255eb5 146 const requestsToMake = {}
9f10b292 147
3c8ee69f 148 requests.forEach(function (poolRequest) {
528a9efa
C
149 poolRequest.to.forEach(function (toPodId) {
150 if (!requestsToMake[toPodId]) {
151 requestsToMake[toPodId] = {
152 ids: [],
153 datas: []
154 }
155 }
156
157 requestsToMake[toPodId].ids.push(poolRequest._id)
158 requestsToMake[toPodId].datas.push(poolRequest.request)
159 })
3c8ee69f 160 })
8d6ae227 161
528a9efa
C
162 const goodPods = []
163 const badPods = []
164
1a42c9e2 165 eachLimit(Object.keys(requestsToMake), constants.REQUESTS_IN_PARALLEL, function (toPodId, callbackEach) {
528a9efa
C
166 const requestToMake = requestsToMake[toPodId]
167
168 // FIXME: mongodb request inside a loop :/
a3ee6fa2 169 Pod.load(toPodId, function (err, toPod) {
00057e85
C
170 if (err) {
171 logger.error('Error finding pod by id.', { err: err })
172 return callbackEach()
173 }
528a9efa 174
5abeec31 175 // Maybe the pod is not our friend anymore so simply remove it
528a9efa 176 if (!toPod) {
d6cf31b7 177 logger.info('Removing %d requests of unexisting pod %s.', requestToMake.ids.length, toPodId)
00057e85 178 removePodOf.call(self, requestToMake.ids, toPodId)
528a9efa
C
179 return callbackEach()
180 }
181
182 makeRequest(toPod, requestToMake.datas, function (success) {
528a9efa
C
183 if (success === true) {
184 logger.debug('Removing requests for %s pod.', toPodId, { requestsIds: requestToMake.ids })
3c8ee69f 185
528a9efa 186 goodPods.push(toPodId)
c2ee5ce8
C
187
188 // Remove the pod id of these request ids
189 removePodOf.call(self, requestToMake.ids, toPodId, callbackEach)
528a9efa
C
190 } else {
191 badPods.push(toPodId)
c2ee5ce8 192 callbackEach()
528a9efa 193 }
3c8ee69f 194 })
528a9efa
C
195 })
196 }, function () {
197 // All the requests were made, we update the pods score
198 updatePodsScore(goodPods, badPods)
199 // Flush requests with no pod
00057e85 200 removeWithEmptyTo.call(self)
528a9efa 201 })
9f10b292
C
202 })
203}
0b697522 204
8c255eb5 205// Remove pods with a score of 0 (too many requests where they were unreachable)
9f10b292 206function removeBadPods () {
1a42c9e2 207 waterfall([
e856e334 208 function findBadPods (callback) {
a3ee6fa2 209 Pod.listBadPods(function (err, pods) {
e856e334
C
210 if (err) {
211 logger.error('Cannot find bad pods.', { error: err })
212 return callback(err)
213 }
8d6ae227 214
e856e334
C
215 return callback(null, pods)
216 })
217 },
8d6ae227 218
80a6c9e7
C
219 function removeTheseBadPods (pods, callback) {
220 if (pods.length === 0) return callback(null, 0)
a3ee6fa2 221
1a42c9e2 222 each(pods, function (pod, callbackEach) {
a3ee6fa2
C
223 pod.remove(callbackEach)
224 }, function (err) {
80a6c9e7 225 return callback(err, pods.length)
a3ee6fa2 226 })
e856e334 227 }
a3ee6fa2 228 ], function (err, numberOfPodsRemoved) {
e856e334
C
229 if (err) {
230 logger.error('Cannot remove bad pods.', { error: err })
a3ee6fa2
C
231 } else if (numberOfPodsRemoved) {
232 logger.info('Removed %d pods.', numberOfPodsRemoved)
e856e334
C
233 } else {
234 logger.info('No need to remove bad pods.')
235 }
9f10b292
C
236 })
237}
0b697522 238
bc503c2a
C
239function updatePodsScore (goodPods, badPods) {
240 logger.info('Updating %d good pods and %d bad pods scores.', goodPods.length, badPods.length)
0b697522 241
a3ee6fa2 242 Pod.incrementScores(goodPods, constants.PODS_SCORE.BONUS, function (err) {
9f10b292
C
243 if (err) logger.error('Cannot increment scores of good pods.')
244 })
8425cb89 245
a3ee6fa2 246 Pod.incrementScores(badPods, constants.PODS_SCORE.MALUS, function (err) {
8c255eb5 247 if (err) logger.error('Cannot decrement scores of bad pods.')
9f10b292
C
248 removeBadPods()
249 })
250}
00057e85 251
b3595463
C
252function listWithLimit (limit, callback) {
253 this.find({ }, { _id: 1, request: 1, to: 1 }).sort({ _id: 1 }).limit(limit).exec(callback)
00057e85
C
254}
255
256function removeAll (callback) {
257 this.remove({ }, callback)
258}
259
260function removePodOf (requestsIds, podId, callback) {
261 if (!callback) callback = function () {}
262
263 this.update({ _id: { $in: requestsIds } }, { $pull: { to: podId } }, { multi: true }, callback)
264}
265
266function removeWithEmptyTo (callback) {
267 if (!callback) callback = function () {}
268
269 this.remove({ to: { $size: 0 } }, callback)
270}