2012-09-27 13:13:55 -07:00
|
|
|
// "secret" server code to recalculate scores
|
2012-09-11 15:32:25 +10:00
|
|
|
|
2012-09-27 13:13:55 -07:00
|
|
|
var updateScore = function (collection, id) {
|
|
|
|
var object = collection.findOne(id);
|
2012-09-12 08:53:13 +09:00
|
|
|
|
2012-09-27 13:13:55 -07:00
|
|
|
// use baseScore if defined, if not just use the number of votes
|
|
|
|
// note: for transition period, also use votes if there are more votes than baseScore
|
2012-12-23 17:25:03 +01:00
|
|
|
// var baseScore = Math.max(object.votes || 0, object.baseScore || 0);
|
|
|
|
var baseScore = object.baseScore;
|
2012-09-17 12:51:35 +09:00
|
|
|
|
2012-09-27 13:13:55 -07:00
|
|
|
// now multiply by 'age' exponentiated
|
|
|
|
// FIXME: timezones <-- set by server or is getTime() ok?
|
|
|
|
var ageInHours = (new Date().getTime() - object.submitted) / (60 * 60 * 1000);
|
2012-09-20 10:59:53 +10:00
|
|
|
|
2012-12-23 17:25:03 +01:00
|
|
|
// HN algorithm
|
2012-09-27 13:13:55 -07:00
|
|
|
var newScore = baseScore / Math.pow(ageInHours + 2, 1.3);
|
|
|
|
|
2012-12-23 17:25:03 +01:00
|
|
|
// Note: before the first time updateScore runs on a new item, its score will be at 0
|
|
|
|
var scoreDiff = Math.abs(object.score - newScore);
|
2012-12-07 09:31:38 +09:00
|
|
|
|
2012-12-23 17:25:03 +01:00
|
|
|
// console.log('updating score | scoreDiff:'+scoreDiff);
|
|
|
|
|
|
|
|
// only update database if difference is larger than a given value to avoid extra work
|
|
|
|
if (scoreDiff > 0.00001){
|
|
|
|
collection.update(id, {$set: {score: newScore}});
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
2012-09-27 13:13:55 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
Meteor.startup(function () {
|
2012-11-21 12:30:45 +09:00
|
|
|
var scoreInterval = getSetting("scoreUpdateInterval") || 30;
|
2012-10-22 14:00:47 +09:00
|
|
|
// recalculate scores every N seconds
|
|
|
|
if(scoreInterval>0){
|
|
|
|
intervalId=Meteor.setInterval(function () {
|
2012-12-23 17:25:03 +01:00
|
|
|
var updatedPosts = 0;
|
|
|
|
var updatedComments = 0;
|
2012-10-23 12:24:38 +09:00
|
|
|
// console.log('tick ('+scoreInterval+')');
|
2012-12-23 17:25:03 +01:00
|
|
|
Posts.find().forEach(function (post) {
|
|
|
|
updatedPosts += updateScore(Posts, post._id);
|
|
|
|
});
|
|
|
|
Comments.find().forEach(function (comment) {
|
|
|
|
updatedComments += updateScore(Comments, comment._id);
|
|
|
|
});
|
|
|
|
console.log("Updated "+updatedPosts+"/"+Posts.find().count()+" Posts")
|
|
|
|
console.log("Updated "+updatedComments+"/"+Comments.find().count()+" Comments")
|
2012-10-22 14:00:47 +09:00
|
|
|
}, scoreInterval * 1000);
|
|
|
|
}
|
2012-09-27 13:13:55 -07:00
|
|
|
});
|