You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
923 B
JavaScript
32 lines
923 B
JavaScript
/* jslint node: true */
|
|
|
|
'use strict';
|
|
|
|
var db = require('../database');
|
|
|
|
var async = require('async');
|
|
var winston = require('winston');
|
|
|
|
module.exports = {
|
|
name: 'Creating user best post sorted sets',
|
|
timestamp: Date.UTC(2016, 0, 14),
|
|
method: function (callback) {
|
|
var batch = require('../batch');
|
|
|
|
batch.processSortedSet('posts:pid', function (ids, next) {
|
|
async.eachSeries(ids, function (id, next) {
|
|
db.getObjectFields('post:' + id, ['pid', 'uid', 'votes'], function (err, postData) {
|
|
if (err) {
|
|
return next(err);
|
|
}
|
|
if (!postData || !parseInt(postData.votes, 10) || !parseInt(postData.uid, 10)) {
|
|
return next();
|
|
}
|
|
winston.verbose('processing pid: ' + postData.pid + ' uid: ' + postData.uid + ' votes: ' + postData.votes);
|
|
db.sortedSetAdd('uid:' + postData.uid + ':posts:votes', postData.votes, postData.pid, next);
|
|
});
|
|
}, next);
|
|
}, {}, callback);
|
|
},
|
|
};
|