2016-02-07 05:23:23 -05:00
|
|
|
'use strict'
|
|
|
|
|
2016-07-18 11:17:52 -04:00
|
|
|
const each = require('async/each')
|
|
|
|
const eachLimit = require('async/eachLimit')
|
2016-11-01 13:47:57 -04:00
|
|
|
const values = require('lodash/values')
|
2016-06-24 11:42:51 -04:00
|
|
|
const mongoose = require('mongoose')
|
2016-07-18 11:17:52 -04:00
|
|
|
const waterfall = require('async/waterfall')
|
2016-02-07 05:23:23 -05:00
|
|
|
|
2016-03-16 17:29:27 -04:00
|
|
|
const constants = require('../initializers/constants')
|
|
|
|
const logger = require('../helpers/logger')
|
|
|
|
const requests = require('../helpers/requests')
|
2016-06-24 11:42:51 -04:00
|
|
|
|
2016-06-30 16:39:08 -04:00
|
|
|
const Pod = mongoose.model('Pod')
|
2016-02-07 05:23:23 -05:00
|
|
|
|
2016-03-16 17:29:27 -04:00
|
|
|
let timer = null
|
2016-10-01 09:33:27 -04:00
|
|
|
let lastRequestTimestamp = 0
|
2016-02-07 05:23:23 -05:00
|
|
|
|
2016-06-28 14:10:32 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-02-07 05:23:23 -05:00
|
|
|
|
2016-06-28 14:10:32 -04:00
|
|
|
const RequestSchema = mongoose.Schema({
|
|
|
|
request: mongoose.Schema.Types.Mixed,
|
2016-11-01 13:47:57 -04:00
|
|
|
endpoint: {
|
|
|
|
type: String,
|
|
|
|
enum: [ values(constants.REQUEST_ENDPOINTS) ]
|
|
|
|
},
|
|
|
|
to: [
|
|
|
|
{
|
|
|
|
type: mongoose.Schema.Types.ObjectId,
|
|
|
|
ref: 'Pod'
|
|
|
|
}
|
|
|
|
]
|
2016-06-28 14:10:32 -04:00
|
|
|
})
|
2016-02-07 05:23:23 -05:00
|
|
|
|
2016-06-28 14:10:32 -04:00
|
|
|
RequestSchema.statics = {
|
|
|
|
activate,
|
|
|
|
deactivate,
|
|
|
|
flush,
|
2016-09-19 15:33:46 -04:00
|
|
|
forceSend,
|
2016-10-01 09:33:27 -04:00
|
|
|
list,
|
|
|
|
remainingMilliSeconds
|
2016-06-28 14:10:32 -04:00
|
|
|
}
|
2016-02-07 05:23:23 -05:00
|
|
|
|
2016-06-28 14:10:32 -04:00
|
|
|
RequestSchema.pre('save', function (next) {
|
|
|
|
const self = this
|
2016-06-18 10:13:54 -04:00
|
|
|
|
2016-06-28 14:10:32 -04:00
|
|
|
if (self.to.length === 0) {
|
2016-06-30 16:39:08 -04:00
|
|
|
Pod.listAllIds(function (err, podIds) {
|
2016-06-28 14:10:32 -04:00
|
|
|
if (err) return next(err)
|
2016-02-07 05:23:23 -05:00
|
|
|
|
2016-06-28 14:10:32 -04:00
|
|
|
// No friends
|
|
|
|
if (podIds.length === 0) return
|
2016-06-18 10:13:54 -04:00
|
|
|
|
2016-06-28 14:10:32 -04:00
|
|
|
self.to = podIds
|
|
|
|
return next()
|
2016-06-18 10:13:54 -04:00
|
|
|
})
|
2016-06-28 14:10:32 -04:00
|
|
|
} else {
|
|
|
|
return next()
|
2016-06-18 10:13:54 -04:00
|
|
|
}
|
2016-06-28 14:10:32 -04:00
|
|
|
})
|
2016-06-18 10:13:54 -04:00
|
|
|
|
2016-06-28 14:10:32 -04:00
|
|
|
mongoose.model('Request', RequestSchema)
|
|
|
|
|
|
|
|
// ------------------------------ STATICS ------------------------------
|
|
|
|
|
|
|
|
function activate () {
|
|
|
|
logger.info('Requests scheduler activated.')
|
2016-10-01 09:33:27 -04:00
|
|
|
lastRequestTimestamp = Date.now()
|
|
|
|
|
|
|
|
const self = this
|
|
|
|
timer = setInterval(function () {
|
|
|
|
lastRequestTimestamp = Date.now()
|
|
|
|
makeRequests.call(self)
|
|
|
|
}, constants.REQUESTS_INTERVAL)
|
2016-02-07 05:23:23 -05:00
|
|
|
}
|
2016-02-05 13:41:22 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
function deactivate () {
|
2016-05-02 11:25:05 -04:00
|
|
|
logger.info('Requests scheduler deactivated.')
|
2016-02-07 05:23:23 -05:00
|
|
|
clearInterval(timer)
|
2016-10-01 09:33:27 -04:00
|
|
|
timer = null
|
2016-02-07 05:23:23 -05:00
|
|
|
}
|
2016-02-05 13:41:22 -05:00
|
|
|
|
2016-06-18 10:13:54 -04:00
|
|
|
function flush () {
|
2016-06-28 14:10:32 -04:00
|
|
|
removeAll.call(this, function (err) {
|
|
|
|
if (err) logger.error('Cannot flush the requests.', { error: err })
|
2016-06-18 10:13:54 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
function forceSend () {
|
2016-05-02 11:25:05 -04:00
|
|
|
logger.info('Force requests scheduler sending.')
|
2016-06-28 14:10:32 -04:00
|
|
|
makeRequests.call(this)
|
2016-02-07 05:23:23 -05:00
|
|
|
}
|
2016-01-31 05:23:52 -05:00
|
|
|
|
2016-09-19 15:33:46 -04:00
|
|
|
function list (callback) {
|
|
|
|
this.find({ }, callback)
|
|
|
|
}
|
|
|
|
|
2016-10-01 09:33:27 -04:00
|
|
|
function remainingMilliSeconds () {
|
|
|
|
if (timer === null) return -1
|
|
|
|
|
|
|
|
return constants.REQUESTS_INTERVAL - (Date.now() - lastRequestTimestamp)
|
|
|
|
}
|
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-01-31 05:23:52 -05:00
|
|
|
|
2016-06-06 09:28:33 -04:00
|
|
|
// Make a requests to friends of a certain type
|
2016-11-01 13:47:57 -04:00
|
|
|
function makeRequest (toPod, requestEndpoint, requestsToMake, callback) {
|
2016-02-07 05:23:23 -05:00
|
|
|
if (!callback) callback = function () {}
|
2016-01-31 05:23:52 -05:00
|
|
|
|
2016-06-18 10:13:54 -04:00
|
|
|
const params = {
|
|
|
|
toPod: toPod,
|
|
|
|
encrypt: true, // Security
|
|
|
|
sign: true, // To prove our identity
|
|
|
|
method: 'POST',
|
2016-11-01 13:47:57 -04:00
|
|
|
path: '/api/' + constants.API_VERSION + '/remote/' + requestEndpoint,
|
2016-06-18 10:13:54 -04:00
|
|
|
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)) {
|
2016-10-01 03:48:49 -04:00
|
|
|
logger.error(
|
|
|
|
'Error sending secure request to %s pod.',
|
2016-11-14 14:03:04 -05:00
|
|
|
toPod.host,
|
2016-10-01 03:48:49 -04:00
|
|
|
{
|
2016-10-01 04:10:49 -04:00
|
|
|
error: err || new Error('Status code not 20x : ' + res.statusCode)
|
2016-10-01 03:48:49 -04:00
|
|
|
}
|
|
|
|
)
|
2016-06-18 10:13:54 -04:00
|
|
|
|
|
|
|
return callback(false)
|
2016-02-07 05:23:23 -05:00
|
|
|
}
|
2016-01-31 05:23:52 -05:00
|
|
|
|
2016-06-18 10:13:54 -04:00
|
|
|
return callback(true)
|
2016-02-07 05:23:23 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-06-06 09:28:33 -04:00
|
|
|
// Make all the requests of the scheduler
|
2016-05-02 11:25:05 -04:00
|
|
|
function makeRequests () {
|
2016-06-28 14:10:32 -04:00
|
|
|
const self = this
|
|
|
|
|
2016-10-23 13:14:28 -04:00
|
|
|
// 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) {
|
2016-02-07 05:23:23 -05:00
|
|
|
if (err) {
|
2016-05-02 11:25:05 -04:00
|
|
|
logger.error('Cannot get the list of requests.', { err: err })
|
2016-02-07 05:23:23 -05:00
|
|
|
return // Abort
|
|
|
|
}
|
|
|
|
|
2016-06-06 09:28:33 -04:00
|
|
|
// If there are no requests, abort
|
|
|
|
if (requests.length === 0) {
|
|
|
|
logger.info('No requests to make.')
|
|
|
|
return
|
|
|
|
}
|
2016-02-07 05:23:23 -05:00
|
|
|
|
2016-06-06 09:28:33 -04:00
|
|
|
logger.info('Making requests to friends.')
|
|
|
|
|
2016-11-01 13:47:57 -04:00
|
|
|
// We want to group requests by destinations pod and endpoint
|
|
|
|
const requestsToMakeGrouped = {}
|
2016-02-07 05:23:23 -05:00
|
|
|
|
2016-06-14 14:14:17 -04:00
|
|
|
requests.forEach(function (poolRequest) {
|
2016-06-18 10:13:54 -04:00
|
|
|
poolRequest.to.forEach(function (toPodId) {
|
2016-11-01 13:47:57 -04:00
|
|
|
const hashKey = toPodId + poolRequest.endpoint
|
|
|
|
if (!requestsToMakeGrouped[hashKey]) {
|
|
|
|
requestsToMakeGrouped[hashKey] = {
|
|
|
|
toPodId,
|
|
|
|
endpoint: poolRequest.endpoint,
|
|
|
|
ids: [], // pool request ids, to delete them from the DB in the future
|
|
|
|
datas: [] // requests data,
|
2016-06-18 10:13:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-01 13:47:57 -04:00
|
|
|
requestsToMakeGrouped[hashKey].ids.push(poolRequest._id)
|
|
|
|
requestsToMakeGrouped[hashKey].datas.push(poolRequest.request)
|
2016-06-18 10:13:54 -04:00
|
|
|
})
|
2016-06-14 14:14:17 -04:00
|
|
|
})
|
2015-12-06 16:40:30 -05:00
|
|
|
|
2016-06-18 10:13:54 -04:00
|
|
|
const goodPods = []
|
|
|
|
const badPods = []
|
|
|
|
|
2016-11-01 13:47:57 -04:00
|
|
|
eachLimit(Object.keys(requestsToMakeGrouped), constants.REQUESTS_IN_PARALLEL, function (hashKey, callbackEach) {
|
|
|
|
const requestToMake = requestsToMakeGrouped[hashKey]
|
2016-06-18 10:13:54 -04:00
|
|
|
|
|
|
|
// FIXME: mongodb request inside a loop :/
|
2016-11-01 13:47:57 -04:00
|
|
|
Pod.load(requestToMake.toPodId, function (err, toPod) {
|
2016-06-28 14:10:32 -04:00
|
|
|
if (err) {
|
|
|
|
logger.error('Error finding pod by id.', { err: err })
|
|
|
|
return callbackEach()
|
|
|
|
}
|
2016-06-18 10:13:54 -04:00
|
|
|
|
2016-10-01 09:33:27 -04:00
|
|
|
// Maybe the pod is not our friend anymore so simply remove it
|
2016-06-18 10:13:54 -04:00
|
|
|
if (!toPod) {
|
2016-11-01 13:47:57 -04:00
|
|
|
const requestIdsToDelete = requestToMake.ids
|
|
|
|
|
|
|
|
logger.info('Removing %d requests of unexisting pod %s.', requestIdsToDelete.length, requestToMake.toPodId)
|
|
|
|
removePodOf.call(self, requestIdsToDelete, requestToMake.toPodId)
|
2016-06-18 10:13:54 -04:00
|
|
|
return callbackEach()
|
|
|
|
}
|
|
|
|
|
2016-11-01 13:47:57 -04:00
|
|
|
makeRequest(toPod, requestToMake.endpoint, requestToMake.datas, function (success) {
|
2016-06-18 10:13:54 -04:00
|
|
|
if (success === true) {
|
2016-11-01 13:47:57 -04:00
|
|
|
logger.debug('Removing requests for %s pod.', requestToMake.toPodId, { requestsIds: requestToMake.ids })
|
2016-06-14 14:14:17 -04:00
|
|
|
|
2016-11-01 13:47:57 -04:00
|
|
|
goodPods.push(requestToMake.toPodId)
|
2016-10-17 15:38:14 -04:00
|
|
|
|
|
|
|
// Remove the pod id of these request ids
|
2016-11-01 13:47:57 -04:00
|
|
|
removePodOf.call(self, requestToMake.ids, requestToMake.toPodId, callbackEach)
|
2016-06-18 10:13:54 -04:00
|
|
|
} else {
|
2016-11-01 13:47:57 -04:00
|
|
|
badPods.push(requestToMake.toPodId)
|
2016-10-17 15:38:14 -04:00
|
|
|
callbackEach()
|
2016-06-18 10:13:54 -04:00
|
|
|
}
|
2016-06-14 14:14:17 -04:00
|
|
|
})
|
2016-06-18 10:13:54 -04:00
|
|
|
})
|
|
|
|
}, function () {
|
|
|
|
// All the requests were made, we update the pods score
|
|
|
|
updatePodsScore(goodPods, badPods)
|
|
|
|
// Flush requests with no pod
|
2016-06-28 14:10:32 -04:00
|
|
|
removeWithEmptyTo.call(self)
|
2016-06-18 10:13:54 -04:00
|
|
|
})
|
2016-02-07 05:23:23 -05:00
|
|
|
})
|
|
|
|
}
|
2015-12-04 10:13:32 -05:00
|
|
|
|
2016-06-06 09:28:33 -04:00
|
|
|
// Remove pods with a score of 0 (too many requests where they were unreachable)
|
2016-02-07 05:23:23 -05:00
|
|
|
function removeBadPods () {
|
2016-07-18 11:17:52 -04:00
|
|
|
waterfall([
|
2016-05-15 12:03:43 -04:00
|
|
|
function findBadPods (callback) {
|
2016-06-30 16:39:08 -04:00
|
|
|
Pod.listBadPods(function (err, pods) {
|
2016-05-15 12:03:43 -04:00
|
|
|
if (err) {
|
|
|
|
logger.error('Cannot find bad pods.', { error: err })
|
|
|
|
return callback(err)
|
|
|
|
}
|
2015-12-06 16:40:30 -05:00
|
|
|
|
2016-05-15 12:03:43 -04:00
|
|
|
return callback(null, pods)
|
|
|
|
})
|
|
|
|
},
|
2015-12-06 16:40:30 -05:00
|
|
|
|
2016-10-21 05:20:45 -04:00
|
|
|
function removeTheseBadPods (pods, callback) {
|
|
|
|
if (pods.length === 0) return callback(null, 0)
|
2016-06-30 16:39:08 -04:00
|
|
|
|
2016-07-18 11:17:52 -04:00
|
|
|
each(pods, function (pod, callbackEach) {
|
2016-06-30 16:39:08 -04:00
|
|
|
pod.remove(callbackEach)
|
|
|
|
}, function (err) {
|
2016-10-21 05:20:45 -04:00
|
|
|
return callback(err, pods.length)
|
2016-06-30 16:39:08 -04:00
|
|
|
})
|
2016-05-15 12:03:43 -04:00
|
|
|
}
|
2016-06-30 16:39:08 -04:00
|
|
|
], function (err, numberOfPodsRemoved) {
|
2016-05-15 12:03:43 -04:00
|
|
|
if (err) {
|
|
|
|
logger.error('Cannot remove bad pods.', { error: err })
|
2016-06-30 16:39:08 -04:00
|
|
|
} else if (numberOfPodsRemoved) {
|
|
|
|
logger.info('Removed %d pods.', numberOfPodsRemoved)
|
2016-05-15 12:03:43 -04:00
|
|
|
} else {
|
|
|
|
logger.info('No need to remove bad pods.')
|
|
|
|
}
|
2016-02-07 05:23:23 -05:00
|
|
|
})
|
|
|
|
}
|
2015-12-04 10:13:32 -05:00
|
|
|
|
2016-05-11 15:19:34 -04:00
|
|
|
function updatePodsScore (goodPods, badPods) {
|
|
|
|
logger.info('Updating %d good pods and %d bad pods scores.', goodPods.length, badPods.length)
|
2015-12-04 10:13:32 -05:00
|
|
|
|
2016-06-30 16:39:08 -04:00
|
|
|
Pod.incrementScores(goodPods, constants.PODS_SCORE.BONUS, function (err) {
|
2016-02-07 05:23:23 -05:00
|
|
|
if (err) logger.error('Cannot increment scores of good pods.')
|
|
|
|
})
|
2016-02-05 13:02:05 -05:00
|
|
|
|
2016-06-30 16:39:08 -04:00
|
|
|
Pod.incrementScores(badPods, constants.PODS_SCORE.MALUS, function (err) {
|
2016-06-06 09:28:33 -04:00
|
|
|
if (err) logger.error('Cannot decrement scores of bad pods.')
|
2016-02-07 05:23:23 -05:00
|
|
|
removeBadPods()
|
|
|
|
})
|
|
|
|
}
|
2016-06-28 14:10:32 -04:00
|
|
|
|
2016-10-23 13:14:28 -04:00
|
|
|
function listWithLimitAndRandom (limit, callback) {
|
|
|
|
const self = this
|
|
|
|
|
|
|
|
self.count(function (err, count) {
|
|
|
|
if (err) return callback(err)
|
|
|
|
|
|
|
|
let start = Math.floor(Math.random() * count) - limit
|
|
|
|
if (start < 0) start = 0
|
|
|
|
|
2016-11-01 13:47:57 -04:00
|
|
|
self.find().sort({ _id: 1 }).skip(start).limit(limit).exec(callback)
|
2016-10-23 13:14:28 -04:00
|
|
|
})
|
2016-06-28 14:10:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function removeAll (callback) {
|
|
|
|
this.remove({ }, callback)
|
|
|
|
}
|
|
|
|
|
|
|
|
function removePodOf (requestsIds, podId, callback) {
|
|
|
|
if (!callback) callback = function () {}
|
|
|
|
|
|
|
|
this.update({ _id: { $in: requestsIds } }, { $pull: { to: podId } }, { multi: true }, callback)
|
|
|
|
}
|
|
|
|
|
|
|
|
function removeWithEmptyTo (callback) {
|
|
|
|
if (!callback) callback = function () {}
|
|
|
|
|
|
|
|
this.remove({ to: { $size: 0 } }, callback)
|
|
|
|
}
|