PeerTube/server/models/request.js

321 lines
8.6 KiB
JavaScript
Raw Normal View History

'use strict'
2016-07-18 17:17:52 +02:00
const each = require('async/each')
const eachLimit = require('async/eachLimit')
const waterfall = require('async/waterfall')
2016-03-16 22:29:27 +01:00
const constants = require('../initializers/constants')
const logger = require('../helpers/logger')
const requests = require('../helpers/requests')
2016-03-16 22:29:27 +01:00
let timer = null
let lastRequestTimestamp = 0
// ---------------------------------------------------------------------------
2016-12-11 21:50:51 +01:00
module.exports = function (sequelize, DataTypes) {
const Request = sequelize.define('Request',
{
request: {
type: DataTypes.JSON
},
endpoint: {
// TODO: enum?
type: DataTypes.STRING
}
},
2016-11-01 18:47:57 +01:00
{
2016-12-11 21:50:51 +01:00
classMethods: {
associate,
activate,
countTotalRequests,
deactivate,
flush,
forceSend,
remainingMilliSeconds
}
2016-11-01 18:47:57 +01:00
}
2016-12-11 21:50:51 +01:00
)
2016-12-11 21:50:51 +01:00
return Request
}
// ------------------------------ STATICS ------------------------------
2016-12-11 21:50:51 +01:00
function associate (models) {
this.belongsToMany(models.Pod, {
foreignKey: {
name: 'requestId',
allowNull: false
},
through: models.RequestToPod,
onDelete: 'CASCADE'
})
}
function activate () {
logger.info('Requests scheduler activated.')
lastRequestTimestamp = Date.now()
const self = this
timer = setInterval(function () {
lastRequestTimestamp = Date.now()
makeRequests.call(self)
}, constants.REQUESTS_INTERVAL)
}
2016-12-11 21:50:51 +01:00
function countTotalRequests (callback) {
const query = {
include: [ this.sequelize.models.Pod ]
}
return this.count(query).asCallback(callback)
}
function deactivate () {
logger.info('Requests scheduler deactivated.')
clearInterval(timer)
timer = null
}
2016-12-24 16:59:17 +01:00
function flush (callback) {
removeAll.call(this, function (err) {
if (err) logger.error('Cannot flush the requests.', { error: err })
2016-12-24 16:59:17 +01:00
return callback(err)
})
}
function forceSend () {
logger.info('Force requests scheduler sending.')
makeRequests.call(this)
}
2016-01-31 11:23:52 +01:00
function remainingMilliSeconds () {
if (timer === null) return -1
return constants.REQUESTS_INTERVAL - (Date.now() - lastRequestTimestamp)
}
// ---------------------------------------------------------------------------
2016-01-31 11:23:52 +01:00
// Make a requests to friends of a certain type
2016-11-01 18:47:57 +01:00
function makeRequest (toPod, requestEndpoint, requestsToMake, callback) {
if (!callback) callback = function () {}
2016-01-31 11:23:52 +01:00
const params = {
toPod: toPod,
sign: true, // Prove our identity
method: 'POST',
2016-11-01 18:47:57 +01:00
path: '/api/' + constants.API_VERSION + '/remote/' + requestEndpoint,
data: requestsToMake // Requests we need to make
}
// Make multiple retry requests to all of pods
// The function fire some useful callbacks
requests.makeSecureRequest(params, function (err, res) {
if (err || (res.statusCode !== 200 && res.statusCode !== 201 && res.statusCode !== 204)) {
logger.error(
'Error sending secure request to %s pod.',
toPod.host,
{
error: err || new Error('Status code not 20x : ' + res.statusCode)
}
)
return callback(false)
}
2016-01-31 11:23:52 +01:00
return callback(true)
})
}
// Make all the requests of the scheduler
function makeRequests () {
const self = this
2016-12-11 21:50:51 +01:00
const RequestToPod = this.sequelize.models.RequestToPod
// We limit the size of the requests (REQUESTS_LIMIT)
// We don't want to stuck with the same failing requests so we get a random list
listWithLimitAndRandom.call(self, constants.REQUESTS_LIMIT, function (err, requests) {
if (err) {
logger.error('Cannot get the list of requests.', { err: err })
return // Abort
}
// If there are no requests, abort
if (requests.length === 0) {
logger.info('No requests to make.')
return
}
logger.info('Making requests to friends.')
2016-11-01 18:47:57 +01:00
// We want to group requests by destinations pod and endpoint
const requestsToMakeGrouped = {}
2016-12-11 21:50:51 +01:00
requests.forEach(function (request) {
request.Pods.forEach(function (toPod) {
const hashKey = toPod.id + request.endpoint
2016-11-01 18:47:57 +01:00
if (!requestsToMakeGrouped[hashKey]) {
requestsToMakeGrouped[hashKey] = {
2016-12-11 21:50:51 +01:00
toPodId: toPod.id,
endpoint: request.endpoint,
ids: [], // request ids, to delete them from the DB in the future
2016-11-01 18:47:57 +01:00
datas: [] // requests data,
}
}
2016-12-11 21:50:51 +01:00
requestsToMakeGrouped[hashKey].ids.push(request.id)
requestsToMakeGrouped[hashKey].datas.push(request.request)
})
2016-06-14 20:14:17 +02:00
})
2015-12-06 22:40:30 +01:00
const goodPods = []
const badPods = []
2016-11-01 18:47:57 +01:00
eachLimit(Object.keys(requestsToMakeGrouped), constants.REQUESTS_IN_PARALLEL, function (hashKey, callbackEach) {
const requestToMake = requestsToMakeGrouped[hashKey]
2016-12-11 21:50:51 +01:00
// FIXME: SQL request inside a loop :/
self.sequelize.models.Pod.load(requestToMake.toPodId, function (err, toPod) {
if (err) {
logger.error('Error finding pod by id.', { err: err })
return callbackEach()
}
// Maybe the pod is not our friend anymore so simply remove it
if (!toPod) {
2016-11-01 18:47:57 +01:00
const requestIdsToDelete = requestToMake.ids
logger.info('Removing %d requests of unexisting pod %s.', requestIdsToDelete.length, requestToMake.toPodId)
2016-12-11 21:50:51 +01:00
RequestToPod.removePodOf.call(self, requestIdsToDelete, requestToMake.toPodId)
return callbackEach()
}
2016-11-01 18:47:57 +01:00
makeRequest(toPod, requestToMake.endpoint, requestToMake.datas, function (success) {
if (success === true) {
2016-11-01 18:47:57 +01:00
logger.debug('Removing requests for %s pod.', requestToMake.toPodId, { requestsIds: requestToMake.ids })
2016-06-14 20:14:17 +02:00
2016-11-01 18:47:57 +01:00
goodPods.push(requestToMake.toPodId)
// Remove the pod id of these request ids
2016-12-11 21:50:51 +01:00
RequestToPod.removePodOf(requestToMake.ids, requestToMake.toPodId, callbackEach)
} else {
2016-11-01 18:47:57 +01:00
badPods.push(requestToMake.toPodId)
callbackEach()
}
2016-06-14 20:14:17 +02:00
})
})
}, function () {
// All the requests were made, we update the pods score
2016-12-11 21:50:51 +01:00
updatePodsScore.call(self, goodPods, badPods)
// Flush requests with no pod
2016-12-11 21:50:51 +01:00
removeWithEmptyTo.call(self, function (err) {
if (err) logger.error('Error when removing requests with no pods.', { error: err })
})
})
})
}
// Remove pods with a score of 0 (too many requests where they were unreachable)
function removeBadPods () {
2016-12-11 21:50:51 +01:00
const self = this
2016-07-18 17:17:52 +02:00
waterfall([
function findBadPods (callback) {
2016-12-11 21:50:51 +01:00
self.sequelize.models.Pod.listBadPods(function (err, pods) {
if (err) {
logger.error('Cannot find bad pods.', { error: err })
return callback(err)
}
2015-12-06 22:40:30 +01:00
return callback(null, pods)
})
},
2015-12-06 22:40:30 +01:00
2016-10-21 11:20:45 +02:00
function removeTheseBadPods (pods, callback) {
2016-07-18 17:17:52 +02:00
each(pods, function (pod, callbackEach) {
2016-12-11 21:50:51 +01:00
pod.destroy().asCallback(callbackEach)
}, function (err) {
2016-10-21 11:20:45 +02:00
return callback(err, pods.length)
})
}
], function (err, numberOfPodsRemoved) {
if (err) {
logger.error('Cannot remove bad pods.', { error: err })
} else if (numberOfPodsRemoved) {
logger.info('Removed %d pods.', numberOfPodsRemoved)
} else {
logger.info('No need to remove bad pods.')
}
})
}
function updatePodsScore (goodPods, badPods) {
2016-12-11 21:50:51 +01:00
const self = this
const Pod = this.sequelize.models.Pod
logger.info('Updating %d good pods and %d bad pods scores.', goodPods.length, badPods.length)
2016-12-11 21:50:51 +01:00
if (goodPods.length !== 0) {
Pod.incrementScores(goodPods, constants.PODS_SCORE.BONUS, function (err) {
if (err) logger.error('Cannot increment scores of good pods.')
})
}
2016-02-05 19:02:05 +01:00
2016-12-11 21:50:51 +01:00
if (badPods.length !== 0) {
Pod.incrementScores(badPods, constants.PODS_SCORE.MALUS, function (err) {
if (err) logger.error('Cannot decrement scores of bad pods.')
removeBadPods.call(self)
})
}
}
function listWithLimitAndRandom (limit, callback) {
const self = this
2016-12-11 21:50:51 +01:00
self.count().asCallback(function (err, count) {
if (err) return callback(err)
2016-12-11 21:50:51 +01:00
// Optimization...
if (count === 0) return callback(null, [])
let start = Math.floor(Math.random() * count) - limit
if (start < 0) start = 0
2016-12-11 21:50:51 +01:00
const query = {
order: [
[ 'id', 'ASC' ]
],
offset: start,
limit: limit,
include: [ this.sequelize.models.Pod ]
}
self.findAll(query).asCallback(callback)
})
}
function removeAll (callback) {
2016-12-11 21:50:51 +01:00
// Delete all requests
2016-12-24 16:59:17 +01:00
this.truncate({ cascade: true }).asCallback(callback)
}
function removeWithEmptyTo (callback) {
if (!callback) callback = function () {}
2016-12-11 21:50:51 +01:00
const query = {
where: {
id: {
$notIn: [
this.sequelize.literal('SELECT "requestId" FROM "RequestToPods"')
]
}
}
}
this.destroy(query).asCallback(callback)
}