feat: removed series from upgrade script

v1.18.x
Barış Soner Uşaklı 6 years ago
parent cb51c239f2
commit 23fb904fa6

@ -14,39 +14,30 @@ module.exports = {
const progress = this.progress; const progress = this.progress;
batch.processSortedSet('posts:pid', function (pids, next) { batch.processSortedSet('posts:pid', function (pids, next) {
async.eachSeries(pids, function (pid, _next) { progress.incr(pids.length);
progress.incr(); let postData;
let postData; async.waterfall([
function (next) {
async.waterfall([ posts.getPostsFields(pids, ['uid', 'tid', 'upvotes', 'downvotes', 'timestamp'], next);
function (next) { },
posts.getPostFields(pid, ['uid', 'tid', 'upvotes', 'downvotes', 'timestamp'], next); function (_postData, next) {
}, postData = _postData;
function (_postData, next) { const tids = postData.map(p => p.tid);
if (!_postData.uid || !_postData.tid) { topics.getTopicsFields(tids, ['cid'], next);
return _next(); },
} function (topicData, next) {
postData = _postData; const bulk = [];
topics.getTopicField(postData.tid, 'cid', next); postData.forEach(function (p, index) {
}, if (p && p.uid && p.tid) {
function (cid, next) { bulk.push(['cid:' + topicData[index].cid + ':uid:' + p.uid + ':pids', p.timestamp, p.pid]);
const keys = [ if (p.votes > 0) {
'cid:' + cid + ':uid:' + postData.uid + ':pids', bulk.push(['cid:' + topicData[index].cid + ':uid:' + p.uid + ':pids:votes', p.votes, p.pid]);
]; }
const scores = [
postData.timestamp,
];
if (postData.votes > 0) {
keys.push('cid:' + cid + ':uid:' + postData.uid + ':pids:votes');
scores.push(postData.votes);
} }
db.sortedSetsAdd(keys, scores, pid, next); });
}, db.sortedSetAddBulk(bulk, next);
function (next) { },
db.sortedSetRemove('uid:' + postData.uid + ':posts:votes', pid, next); ], next);
},
], _next);
}, next);
}, { }, {
progress: progress, progress: progress,
}, callback); }, callback);

Loading…
Cancel
Save