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')
|
|
|
|
const waterfall = require('async/waterfall')
|
2016-12-28 09:49:23 -05:00
|
|
|
const values = require('lodash/values')
|
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-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-12-11 15:50:51 -05:00
|
|
|
module.exports = function (sequelize, DataTypes) {
|
|
|
|
const Request = sequelize.define('Request',
|
|
|
|
{
|
|
|
|
request: {
|
2016-12-28 09:49:23 -05:00
|
|
|
type: DataTypes.JSON,
|
|
|
|
allowNull: false
|
2016-12-11 15:50:51 -05:00
|
|
|
},
|
|
|
|
endpoint: {
|
2016-12-28 09:49:23 -05:00
|
|
|
type: DataTypes.ENUM(values(constants.REQUEST_ENDPOINTS)),
|
|
|
|
allowNull: false
|
2016-12-11 15:50:51 -05:00
|
|
|
}
|
|
|
|
},
|
2016-11-01 13:47:57 -04:00
|
|
|
{
|
2016-12-11 15:50:51 -05:00
|
|
|
classMethods: {
|
|
|
|
associate,
|
|
|
|
|
|
|
|
activate,
|
|
|
|
countTotalRequests,
|
|
|
|
deactivate,
|
|
|
|
flush,
|
|
|
|
forceSend,
|
|
|
|
remainingMilliSeconds
|
|
|
|
}
|
2016-11-01 13:47:57 -04:00
|
|
|
}
|
2016-12-11 15:50:51 -05:00
|
|
|
)
|
2016-06-18 10:13:54 -04:00
|
|
|
|
2016-12-11 15:50:51 -05:00
|
|
|
return Request
|
|
|
|
}
|
2016-06-28 14:10:32 -04:00
|
|
|
|
|
|
|
// ------------------------------ STATICS ------------------------------
|
|
|
|
|
2016-12-11 15:50:51 -05:00
|
|
|
function associate (models) {
|
|
|
|
this.belongsToMany(models.Pod, {
|
|
|
|
foreignKey: {
|
|
|
|
name: 'requestId',
|
|
|
|
allowNull: false
|
|
|
|
},
|
|
|
|
through: models.RequestToPod,
|
|
|
|
onDelete: 'CASCADE'
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-06-28 14:10:32 -04:00
|
|
|
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-12-11 15:50:51 -05:00
|
|
|
function countTotalRequests (callback) {
|
|
|
|
const query = {
|
|
|
|
include: [ this.sequelize.models.Pod ]
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.count(query).asCallback(callback)
|
|
|
|
}
|
|
|
|
|
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-12-24 10:59:17 -05:00
|
|
|
function flush (callback) {
|
2016-06-28 14:10:32 -04:00
|
|
|
removeAll.call(this, function (err) {
|
|
|
|
if (err) logger.error('Cannot flush the requests.', { error: err })
|
2016-12-24 10:59:17 -05:00
|
|
|
|
|
|
|
return callback(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-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,
|
2016-11-27 12:25:35 -05:00
|
|
|
sign: true, // Prove our identity
|
2016-06-18 10:13:54 -04:00
|
|
|
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
|
|
|
{
|
2017-01-04 16:23:07 -05:00
|
|
|
error: err ? err.message : '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-12-11 15:50:51 -05:00
|
|
|
const RequestToPod = this.sequelize.models.RequestToPod
|
2016-06-28 14:10:32 -04:00
|
|
|
|
2017-01-10 16:24:42 -05:00
|
|
|
// We limit the size of the requests
|
2016-10-23 13:14:28 -04:00
|
|
|
// We don't want to stuck with the same failing requests so we get a random list
|
2017-01-10 16:24:42 -05:00
|
|
|
listWithLimitAndRandom.call(self, constants.REQUESTS_LIMIT_PODS, constants.REQUESTS_LIMIT_PER_POD, 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-11-01 13:47:57 -04:00
|
|
|
// We want to group requests by destinations pod and endpoint
|
|
|
|
const requestsToMakeGrouped = {}
|
2017-01-10 16:24:42 -05:00
|
|
|
Object.keys(requests).forEach(function (toPodId) {
|
|
|
|
requests[toPodId].forEach(function (data) {
|
|
|
|
const request = data.request
|
|
|
|
const pod = data.pod
|
|
|
|
const hashKey = toPodId + request.endpoint
|
2016-02-07 05:23:23 -05:00
|
|
|
|
2016-11-01 13:47:57 -04:00
|
|
|
if (!requestsToMakeGrouped[hashKey]) {
|
|
|
|
requestsToMakeGrouped[hashKey] = {
|
2017-01-10 16:24:42 -05:00
|
|
|
toPod: pod,
|
2016-12-11 15:50:51 -05:00
|
|
|
endpoint: request.endpoint,
|
|
|
|
ids: [], // request ids, to delete them from the DB in the future
|
2016-11-01 13:47:57 -04:00
|
|
|
datas: [] // requests data,
|
2016-06-18 10:13:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-11 15:50:51 -05:00
|
|
|
requestsToMakeGrouped[hashKey].ids.push(request.id)
|
|
|
|
requestsToMakeGrouped[hashKey].datas.push(request.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
|
|
|
|
2017-01-11 12:41:40 -05:00
|
|
|
logger.info('Making requests to friends.')
|
2017-01-11 12:06:51 -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]
|
2017-01-10 16:24:42 -05:00
|
|
|
const toPod = requestToMake.toPod
|
2016-06-18 10:13:54 -04:00
|
|
|
|
2017-01-10 16:24:42 -05:00
|
|
|
// Maybe the pod is not our friend anymore so simply remove it
|
|
|
|
if (!toPod) {
|
|
|
|
const requestIdsToDelete = requestToMake.ids
|
2016-11-01 13:47:57 -04:00
|
|
|
|
2017-01-10 16:24:42 -05:00
|
|
|
logger.info('Removing %d requests of unexisting pod %s.', requestIdsToDelete.length, requestToMake.toPod.id)
|
|
|
|
RequestToPod.removePodOf.call(self, requestIdsToDelete, requestToMake.toPod.id)
|
|
|
|
return callbackEach()
|
|
|
|
}
|
2016-06-18 10:13:54 -04:00
|
|
|
|
2017-01-10 16:24:42 -05:00
|
|
|
makeRequest(toPod, requestToMake.endpoint, requestToMake.datas, function (success) {
|
|
|
|
if (success === true) {
|
|
|
|
logger.debug('Removing requests for pod %s.', requestToMake.toPod.id, { requestsIds: requestToMake.ids })
|
2016-06-14 14:14:17 -04:00
|
|
|
|
2017-01-10 16:24:42 -05:00
|
|
|
goodPods.push(requestToMake.toPod.id)
|
2016-10-17 15:38:14 -04:00
|
|
|
|
2017-01-10 16:24:42 -05:00
|
|
|
// Remove the pod id of these request ids
|
|
|
|
RequestToPod.removePodOf(requestToMake.ids, requestToMake.toPod.id, callbackEach)
|
|
|
|
} else {
|
|
|
|
badPods.push(requestToMake.toPod.id)
|
|
|
|
callbackEach()
|
|
|
|
}
|
2016-06-18 10:13:54 -04:00
|
|
|
})
|
|
|
|
}, function () {
|
|
|
|
// All the requests were made, we update the pods score
|
2016-12-11 15:50:51 -05:00
|
|
|
updatePodsScore.call(self, goodPods, badPods)
|
2016-06-18 10:13:54 -04:00
|
|
|
// Flush requests with no pod
|
2016-12-11 15:50:51 -05:00
|
|
|
removeWithEmptyTo.call(self, function (err) {
|
|
|
|
if (err) logger.error('Error when removing requests with no pods.', { error: err })
|
|
|
|
})
|
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-12-11 15:50:51 -05:00
|
|
|
const self = this
|
|
|
|
|
2016-07-18 11:17:52 -04:00
|
|
|
waterfall([
|
2016-05-15 12:03:43 -04:00
|
|
|
function findBadPods (callback) {
|
2016-12-11 15:50:51 -05:00
|
|
|
self.sequelize.models.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) {
|
2016-07-18 11:17:52 -04:00
|
|
|
each(pods, function (pod, callbackEach) {
|
2016-12-11 15:50:51 -05:00
|
|
|
pod.destroy().asCallback(callbackEach)
|
2016-06-30 16:39:08 -04:00
|
|
|
}, 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) {
|
2016-12-11 15:50:51 -05:00
|
|
|
const self = this
|
|
|
|
const Pod = this.sequelize.models.Pod
|
|
|
|
|
2016-05-11 15:19:34 -04:00
|
|
|
logger.info('Updating %d good pods and %d bad pods scores.', goodPods.length, badPods.length)
|
2015-12-04 10:13:32 -05:00
|
|
|
|
2016-12-11 15:50:51 -05:00
|
|
|
if (goodPods.length !== 0) {
|
|
|
|
Pod.incrementScores(goodPods, constants.PODS_SCORE.BONUS, function (err) {
|
2016-12-28 09:49:23 -05:00
|
|
|
if (err) logger.error('Cannot increment scores of good pods.', { error: err })
|
2016-12-11 15:50:51 -05:00
|
|
|
})
|
|
|
|
}
|
2016-02-05 13:02:05 -05:00
|
|
|
|
2016-12-11 15:50:51 -05:00
|
|
|
if (badPods.length !== 0) {
|
|
|
|
Pod.incrementScores(badPods, constants.PODS_SCORE.MALUS, function (err) {
|
2016-12-28 09:49:23 -05:00
|
|
|
if (err) logger.error('Cannot decrement scores of bad pods.', { error: err })
|
2016-12-11 15:50:51 -05:00
|
|
|
removeBadPods.call(self)
|
|
|
|
})
|
|
|
|
}
|
2016-02-07 05:23:23 -05:00
|
|
|
}
|
2016-06-28 14:10:32 -04:00
|
|
|
|
2017-01-10 16:24:42 -05:00
|
|
|
function listWithLimitAndRandom (limitPods, limitRequestsPerPod, callback) {
|
2016-10-23 13:14:28 -04:00
|
|
|
const self = this
|
2017-01-10 16:24:42 -05:00
|
|
|
const Pod = this.sequelize.models.Pod
|
2016-10-23 13:14:28 -04:00
|
|
|
|
2017-01-10 16:24:42 -05:00
|
|
|
Pod.listRandomPodIdsWithRequest(limitPods, function (err, podIds) {
|
2016-10-23 13:14:28 -04:00
|
|
|
if (err) return callback(err)
|
|
|
|
|
2017-01-10 16:24:42 -05:00
|
|
|
// We don't have friends that have requests
|
|
|
|
if (podIds.length === 0) return callback(null, [])
|
2016-10-23 13:14:28 -04:00
|
|
|
|
2017-01-10 16:24:42 -05:00
|
|
|
// The the first x requests of these pods
|
|
|
|
// It is very important to sort by id ASC to keep the requests order!
|
2016-12-11 15:50:51 -05:00
|
|
|
const query = {
|
|
|
|
order: [
|
|
|
|
[ 'id', 'ASC' ]
|
|
|
|
],
|
2017-01-10 16:24:42 -05:00
|
|
|
include: [
|
|
|
|
{
|
|
|
|
model: self.sequelize.models.Pod,
|
|
|
|
where: {
|
|
|
|
id: {
|
|
|
|
$in: podIds
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2016-12-11 15:50:51 -05:00
|
|
|
}
|
|
|
|
|
2017-01-10 16:24:42 -05:00
|
|
|
self.findAll(query).asCallback(function (err, requests) {
|
|
|
|
if (err) return callback(err)
|
|
|
|
|
|
|
|
const requestsGrouped = groupAndTruncateRequests(requests, limitRequestsPerPod)
|
|
|
|
return callback(err, requestsGrouped)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function groupAndTruncateRequests (requests, limitRequestsPerPod) {
|
|
|
|
const requestsGrouped = {}
|
|
|
|
|
|
|
|
requests.forEach(function (request) {
|
|
|
|
request.Pods.forEach(function (pod) {
|
|
|
|
if (!requestsGrouped[pod.id]) requestsGrouped[pod.id] = []
|
|
|
|
|
|
|
|
if (requestsGrouped[pod.id].length < limitRequestsPerPod) {
|
|
|
|
requestsGrouped[pod.id].push({
|
|
|
|
request,
|
|
|
|
pod
|
|
|
|
})
|
|
|
|
}
|
|
|
|
})
|
2016-10-23 13:14:28 -04:00
|
|
|
})
|
2017-01-10 16:24:42 -05:00
|
|
|
|
|
|
|
return requestsGrouped
|
2016-06-28 14:10:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function removeAll (callback) {
|
2016-12-11 15:50:51 -05:00
|
|
|
// Delete all requests
|
2016-12-24 10:59:17 -05:00
|
|
|
this.truncate({ cascade: true }).asCallback(callback)
|
2016-06-28 14:10:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function removeWithEmptyTo (callback) {
|
|
|
|
if (!callback) callback = function () {}
|
|
|
|
|
2016-12-11 15:50:51 -05:00
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
id: {
|
|
|
|
$notIn: [
|
|
|
|
this.sequelize.literal('SELECT "requestId" FROM "RequestToPods"')
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.destroy(query).asCallback(callback)
|
2016-06-28 14:10:32 -04:00
|
|
|
}
|