Merge branch 'master' of https://github.com/NodeBB/NodeBB
commit
7bc69e9182
@ -0,0 +1,46 @@
|
||||
'use strict';
|
||||
|
||||
var db = require('../../database');
|
||||
|
||||
var async = require('async');
|
||||
var batch = require('../../batch');
|
||||
|
||||
module.exports = {
|
||||
name: 'add filters to events',
|
||||
timestamp: Date.UTC(2018, 9, 4),
|
||||
method: function (callback) {
|
||||
const progress = this.progress;
|
||||
|
||||
batch.processSortedSet('events:time', function (eids, next) {
|
||||
async.eachSeries(eids, function (eid, next) {
|
||||
progress.incr();
|
||||
|
||||
db.getObject('event:' + eid, function (err, eventData) {
|
||||
if (err) {
|
||||
return next(err);
|
||||
}
|
||||
if (!eventData) {
|
||||
return db.sortedSetRemove('events:time', eid, next);
|
||||
}
|
||||
// privilege events we're missing type field
|
||||
if (!eventData.type && eventData.privilege) {
|
||||
eventData.type = 'privilege-change';
|
||||
async.waterfall([
|
||||
function (next) {
|
||||
db.setObjectField('event:' + eid, 'type', 'privilege-change', next);
|
||||
},
|
||||
function (next) {
|
||||
db.sortedSetAdd('events:time:' + eventData.type, eventData.timestamp, eid, next);
|
||||
},
|
||||
], next);
|
||||
return;
|
||||
}
|
||||
|
||||
db.sortedSetAdd('events:time:' + (eventData.type || ''), eventData.timestamp, eid, next);
|
||||
});
|
||||
}, next);
|
||||
}, {
|
||||
progress: this.progress,
|
||||
}, callback);
|
||||
},
|
||||
};
|
Loading…
Reference in New Issue