reduced DRY fail

v1.18.x
Baris Soner Usakli 11 years ago
parent 8456025f28
commit c560f8fb75

@ -956,69 +956,47 @@ var bcrypt = require('bcryptjs'),
User.notifications = { User.notifications = {
get: function(uid, callback) { get: function(uid, callback) {
var maxNotifs = 15;
async.parallel({ function getNotifications(set, start, stop, iterator, done) {
unread: function(next) { db.getSortedSetRevRange(set, start, stop, function(err, nids) {
db.getSortedSetRevRange('uid:' + uid + ':notifications:unread', 0, 10, function(err, nids) { if(err) {
// @todo handle err return done(err);
var unread = [];
// Cap the number of notifications returned
if (nids.length > maxNotifs) {
nids.length = maxNotifs;
}
if (nids && nids.length > 0) {
async.eachSeries(nids, function(nid, next) {
notifications.get(nid, uid, function(notif_data) {
// If the notification could not be found, silently drop it
if (notif_data) {
notif_data.readClass = !notif_data.read ? 'label-warning' : '';
unread.push(notif_data);
} else {
db.sortedSetRemove('uid:' + uid + ':notifications:unread', nid);
} }
next(); if(!nids || nids.length === 0) {
}); return done(null, []);
}, function(err) {
next(null, unread);
});
} else {
next(null, unread);
} }
});
},
read: function(next) {
db.getSortedSetRevRange('uid:' + uid + ':notifications:read', 0, 10, function(err, nids) {
// @todo handle err
var read = [];
// Cap the number of notifications returned
if (nids.length > maxNotifs) { if (nids.length > maxNotifs) {
nids.length = maxNotifs; nids.length = maxNotifs;
} }
if (nids && nids.length > 0) { async.map(nids, function(nid, next) {
async.eachSeries(nids, function(nid, next) {
notifications.get(nid, uid, function(notif_data) { notifications.get(nid, uid, function(notif_data) {
// If the notification could not be found, silently drop it if(!notif_data) {
if (notif_data) { db.sortedSetRemove(set, nid);
read.push(notif_data);
} else { } else {
db.sortedSetRemove('uid:' + uid + ':notifications:read', nid); if(typeof iterator === 'function') {
iterator(notif_data);
}
} }
next(); next(null, notif_data);
}); });
}, function(err) { }, done);
next(null, read);
}); });
} else {
next(null, read);
} }
});
var maxNotifs = 15;
async.parallel({
unread: function(next) {
getNotifications('uid:' + uid + ':notifications:unread', 0, 10, function(notif_data) {
notif_data.readClass = !notif_data.read ? 'label-warning' : '';
}, next);
},
read: function(next) {
getNotifications('uid:' + uid + 'notifications:read', 0, 10, null, next);
} }
}, function(err, notifications) { }, function(err, notifications) {
// Limit the number of notifications to `maxNotifs`, prioritising unread notifications // Limit the number of notifications to `maxNotifs`, prioritising unread notifications

Loading…
Cancel
Save