1
0
Fork 0
peertube/lib/poolRequests.js

177 lines
5.1 KiB
JavaScript
Raw Normal View History

;(function () {
'use strict'
var async = require('async')
2016-01-31 10:23:52 +00:00
var pluck = require('lodash-node/compat/collection/pluck')
2016-01-30 16:05:22 +00:00
var constants = require('../initializers/constants')
2016-01-31 10:23:52 +00:00
var logger = require('../helpers/logger')
2016-02-04 20:10:33 +00:00
var Pods = require('../models/pods')
var PoolRequests = require('../models/poolRequests')
2016-02-05 17:03:20 +00:00
var requests = require('../helpers/requests')
2016-02-04 20:10:33 +00:00
var Videos = require('../models/videos')
var timer = null
2016-01-31 10:23:52 +00:00
var poolRequests = {
activate: activate,
deactivate: deactivate,
forceSend: forceSend
}
function deactivate () {
logger.info('Pool requests deactivated.')
clearInterval(timer)
}
function forceSend () {
logger.info('Force pool requests sending.')
makePoolRequests()
}
function activate () {
logger.info('Pool requests activated.')
timer = setInterval(makePoolRequests, constants.INTERVAL)
}
// ---------------------------------------------------------------------------
module.exports = poolRequests
// ---------------------------------------------------------------------------
2016-02-05 17:03:20 +00:00
function makePoolRequest (type, requests_to_make, callback) {
2016-01-31 10:23:52 +00:00
if (!callback) callback = function () {}
2016-02-04 20:10:33 +00:00
Pods.list(function (err, pods) {
2016-01-31 10:23:52 +00:00
if (err) throw err
var params = {
encrypt: true,
sign: true,
method: 'POST',
path: null,
2016-02-05 17:03:20 +00:00
data: requests_to_make
2016-01-31 10:23:52 +00:00
}
if (type === 'add') {
params.path = '/api/' + constants.API_VERSION + '/remotevideos/add'
} else if (type === 'remove') {
params.path = '/api/' + constants.API_VERSION + '/remotevideos/remove'
} else {
throw new Error('Unkown pool request type.')
}
var bad_pods = []
var good_pods = []
2016-02-05 17:03:20 +00:00
requests.makeMultipleRetryRequest(params, pods, callbackEachPodFinished, callbackAllPodsFinished)
2016-01-31 10:23:52 +00:00
function callbackEachPodFinished (err, response, body, url, pod, callback_each_pod_finished) {
if (err || (response.statusCode !== 200 && response.statusCode !== 204)) {
bad_pods.push(pod._id)
logger.error('Error sending secure request to %s pod.', url, { error: err || new Error('Status code not 20x') })
} else {
good_pods.push(pod._id)
}
return callback_each_pod_finished()
}
function callbackAllPodsFinished (err) {
if (err) return callback(err)
updatePodsScore(good_pods, bad_pods)
callback(null)
}
2015-12-06 21:40:30 +00:00
})
}
function makePoolRequests () {
logger.info('Making pool requests to friends.')
2016-02-04 20:10:33 +00:00
PoolRequests.list(function (err, pool_requests) {
if (err) throw err
2015-12-04 18:17:45 +00:00
if (pool_requests.length === 0) return
2016-02-05 17:03:20 +00:00
var requests_to_make = {
2015-12-06 21:40:30 +00:00
add: {
ids: [],
requests: []
},
remove: {
ids: [],
requests: []
}
}
async.each(pool_requests, function (pool_request, callback_each) {
if (pool_request.type === 'add') {
2016-02-05 17:03:20 +00:00
requests_to_make.add.requests.push(pool_request.request)
requests_to_make.add.ids.push(pool_request._id)
} else if (pool_request.type === 'remove') {
2016-02-05 17:03:20 +00:00
requests_to_make.remove.requests.push(pool_request.request)
requests_to_make.remove.ids.push(pool_request._id)
} else {
throw new Error('Unkown pool request type.')
}
callback_each()
}, function () {
2015-12-06 21:40:30 +00:00
// Send the add requests
2016-02-05 17:03:20 +00:00
if (requests_to_make.add.requests.length !== 0) {
makePoolRequest('add', requests_to_make.add.requests, function (err) {
2015-12-06 21:40:30 +00:00
if (err) logger.error('Errors when sent add pool requests.', { error: err })
2016-02-05 17:03:20 +00:00
PoolRequests.removeRequests(requests_to_make.add.ids)
2015-12-06 21:40:30 +00:00
})
}
// Send the remove requests
2016-02-05 17:03:20 +00:00
if (requests_to_make.remove.requests.length !== 0) {
makePoolRequest('remove', requests_to_make.remove.requests, function (err) {
2015-12-06 21:40:30 +00:00
if (err) logger.error('Errors when sent remove pool requests.', { error: err })
2016-02-05 17:03:20 +00:00
PoolRequests.removeRequests(requests_to_make.remove.ids)
2015-12-06 21:40:30 +00:00
})
}
})
})
}
function removeBadPods () {
2016-02-04 20:10:33 +00:00
Pods.findBadPods(function (err, pods) {
if (err) throw err
if (pods.length === 0) return
var urls = pluck(pods, 'url')
var ids = pluck(pods, '_id')
2016-02-04 20:10:33 +00:00
Videos.removeAllRemotesOf(urls, function (err, r) {
if (err) logger.error('Cannot remove videos from a pod that we removing.', { error: err })
var videos_removed = r.result.n
logger.info('Removed %d videos.', videos_removed)
2016-02-04 20:10:33 +00:00
Pods.removeAllByIds(ids, function (err, r) {
if (err) logger.error('Cannot remove bad pods.', { error: err })
var pods_removed = r.result.n
logger.info('Removed %d pods.', pods_removed)
})
})
})
}
2016-01-31 10:23:52 +00:00
function updatePodsScore (good_pods, bad_pods) {
logger.info('Updating %d good pods and %d bad pods scores.', good_pods.length, bad_pods.length)
2016-02-04 20:10:33 +00:00
Pods.incrementScores(good_pods, constants.PODS_SCORE.BONUS)
Pods.incrementScores(bad_pods, constants.PODS_SCORE.MALUS, function (err) {
2016-01-31 10:23:52 +00:00
if (err) throw err
removeBadPods()
})
}
})()