|
|
|
@ -10,16 +10,17 @@ var meta = require('../meta');
|
|
|
|
|
var notifications = require('../notifications');
|
|
|
|
|
var privileges = require('../privileges');
|
|
|
|
|
|
|
|
|
|
(function (UserNotifications) {
|
|
|
|
|
UserNotifications.get = function (uid, callback) {
|
|
|
|
|
if (!parseInt(uid, 10)) {
|
|
|
|
|
return callback(null, { read: [], unread: [] });
|
|
|
|
|
}
|
|
|
|
|
getNotifications(uid, 0, 9, function (err, notifications) {
|
|
|
|
|
if (err) {
|
|
|
|
|
return callback(err);
|
|
|
|
|
}
|
|
|
|
|
var UserNotifications = module.exports;
|
|
|
|
|
|
|
|
|
|
UserNotifications.get = function (uid, callback) {
|
|
|
|
|
if (!parseInt(uid, 10)) {
|
|
|
|
|
return callback(null, { read: [], unread: [] });
|
|
|
|
|
}
|
|
|
|
|
async.waterfall([
|
|
|
|
|
function (next) {
|
|
|
|
|
getNotifications(uid, 0, 9, next);
|
|
|
|
|
},
|
|
|
|
|
function (notifications, next) {
|
|
|
|
|
notifications.read = notifications.read.filter(Boolean);
|
|
|
|
|
notifications.unread = notifications.unread.filter(Boolean);
|
|
|
|
|
|
|
|
|
@ -28,326 +29,336 @@ var privileges = require('../privileges');
|
|
|
|
|
notifications.read.length = maxNotifs - notifications.unread.length;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
callback(null, notifications);
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
function filterNotifications(nids, filter, callback) {
|
|
|
|
|
if (!filter) {
|
|
|
|
|
return setImmediate(callback, null, nids);
|
|
|
|
|
}
|
|
|
|
|
async.waterfall([
|
|
|
|
|
function (next) {
|
|
|
|
|
var keys = nids.map(function (nid) {
|
|
|
|
|
return 'notifications:' + nid;
|
|
|
|
|
});
|
|
|
|
|
db.getObjectsFields(keys, ['nid', 'type'], next);
|
|
|
|
|
},
|
|
|
|
|
function (notifications, next) {
|
|
|
|
|
nids = notifications.filter(function (notification) {
|
|
|
|
|
return notification && notification.nid && notification.type === filter;
|
|
|
|
|
}).map(function (notification) {
|
|
|
|
|
return notification.nid;
|
|
|
|
|
});
|
|
|
|
|
next(null, nids);
|
|
|
|
|
},
|
|
|
|
|
], callback);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
UserNotifications.getAll = function (uid, filter, callback) {
|
|
|
|
|
var nids;
|
|
|
|
|
async.waterfall([
|
|
|
|
|
function (next) {
|
|
|
|
|
async.parallel({
|
|
|
|
|
unread: function (next) {
|
|
|
|
|
db.getSortedSetRevRange('uid:' + uid + ':notifications:unread', 0, -1, next);
|
|
|
|
|
},
|
|
|
|
|
read: function (next) {
|
|
|
|
|
db.getSortedSetRevRange('uid:' + uid + ':notifications:read', 0, -1, next);
|
|
|
|
|
},
|
|
|
|
|
}, next);
|
|
|
|
|
},
|
|
|
|
|
function (results, next) {
|
|
|
|
|
nids = results.unread.concat(results.read);
|
|
|
|
|
db.isSortedSetMembers('notifications', nids, next);
|
|
|
|
|
},
|
|
|
|
|
function (exists, next) {
|
|
|
|
|
var deleteNids = [];
|
|
|
|
|
|
|
|
|
|
nids = nids.filter(function (nid, index) {
|
|
|
|
|
if (!nid || !exists[index]) {
|
|
|
|
|
deleteNids.push(nid);
|
|
|
|
|
}
|
|
|
|
|
return nid && exists[index];
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
deleteUserNids(deleteNids, uid, next);
|
|
|
|
|
},
|
|
|
|
|
function (next) {
|
|
|
|
|
filterNotifications(nids, filter, next);
|
|
|
|
|
},
|
|
|
|
|
], callback);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
function deleteUserNids(nids, uid, callback) {
|
|
|
|
|
callback = callback || function () {};
|
|
|
|
|
if (!nids.length) {
|
|
|
|
|
return setImmediate(callback);
|
|
|
|
|
}
|
|
|
|
|
async.parallel([
|
|
|
|
|
function (next) {
|
|
|
|
|
db.sortedSetRemove('uid:' + uid + ':notifications:read', nids, next);
|
|
|
|
|
},
|
|
|
|
|
function (next) {
|
|
|
|
|
db.sortedSetRemove('uid:' + uid + ':notifications:unread', nids, next);
|
|
|
|
|
},
|
|
|
|
|
], function (err) {
|
|
|
|
|
callback(err);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
next(null, notifications);
|
|
|
|
|
},
|
|
|
|
|
], callback);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
function getNotifications(uid, start, stop, callback) {
|
|
|
|
|
async.parallel({
|
|
|
|
|
unread: function (next) {
|
|
|
|
|
getNotificationsFromSet('uid:' + uid + ':notifications:unread', false, uid, start, stop, next);
|
|
|
|
|
},
|
|
|
|
|
read: function (next) {
|
|
|
|
|
getNotificationsFromSet('uid:' + uid + ':notifications:read', true, uid, start, stop, next);
|
|
|
|
|
},
|
|
|
|
|
}, callback);
|
|
|
|
|
function filterNotifications(nids, filter, callback) {
|
|
|
|
|
if (!filter) {
|
|
|
|
|
return setImmediate(callback, null, nids);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getNotificationsFromSet(set, read, uid, start, stop, callback) {
|
|
|
|
|
async.waterfall([
|
|
|
|
|
function (next) {
|
|
|
|
|
db.getSortedSetRevRange(set, start, stop, next);
|
|
|
|
|
},
|
|
|
|
|
function (nids, next) {
|
|
|
|
|
if (!Array.isArray(nids) || !nids.length) {
|
|
|
|
|
return callback(null, []);
|
|
|
|
|
async.waterfall([
|
|
|
|
|
function (next) {
|
|
|
|
|
var keys = nids.map(function (nid) {
|
|
|
|
|
return 'notifications:' + nid;
|
|
|
|
|
});
|
|
|
|
|
db.getObjectsFields(keys, ['nid', 'type'], next);
|
|
|
|
|
},
|
|
|
|
|
function (notifications, next) {
|
|
|
|
|
nids = notifications.filter(function (notification) {
|
|
|
|
|
return notification && notification.nid && notification.type === filter;
|
|
|
|
|
}).map(function (notification) {
|
|
|
|
|
return notification.nid;
|
|
|
|
|
});
|
|
|
|
|
next(null, nids);
|
|
|
|
|
},
|
|
|
|
|
], callback);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
UserNotifications.getAll = function (uid, filter, callback) {
|
|
|
|
|
var nids;
|
|
|
|
|
async.waterfall([
|
|
|
|
|
function (next) {
|
|
|
|
|
async.parallel({
|
|
|
|
|
unread: function (next) {
|
|
|
|
|
db.getSortedSetRevRange('uid:' + uid + ':notifications:unread', 0, -1, next);
|
|
|
|
|
},
|
|
|
|
|
read: function (next) {
|
|
|
|
|
db.getSortedSetRevRange('uid:' + uid + ':notifications:read', 0, -1, next);
|
|
|
|
|
},
|
|
|
|
|
}, next);
|
|
|
|
|
},
|
|
|
|
|
function (results, next) {
|
|
|
|
|
nids = results.unread.concat(results.read);
|
|
|
|
|
db.isSortedSetMembers('notifications', nids, next);
|
|
|
|
|
},
|
|
|
|
|
function (exists, next) {
|
|
|
|
|
var deleteNids = [];
|
|
|
|
|
|
|
|
|
|
nids = nids.filter(function (nid, index) {
|
|
|
|
|
if (!nid || !exists[index]) {
|
|
|
|
|
deleteNids.push(nid);
|
|
|
|
|
}
|
|
|
|
|
return nid && exists[index];
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
UserNotifications.getNotifications(nids, uid, next);
|
|
|
|
|
},
|
|
|
|
|
], callback);
|
|
|
|
|
deleteUserNids(deleteNids, uid, next);
|
|
|
|
|
},
|
|
|
|
|
function (next) {
|
|
|
|
|
filterNotifications(nids, filter, next);
|
|
|
|
|
},
|
|
|
|
|
], callback);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
function deleteUserNids(nids, uid, callback) {
|
|
|
|
|
callback = callback || function () {};
|
|
|
|
|
if (!nids.length) {
|
|
|
|
|
return setImmediate(callback);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
UserNotifications.getNotifications = function (nids, uid, callback) {
|
|
|
|
|
var notificationData = [];
|
|
|
|
|
async.waterfall([
|
|
|
|
|
function (next) {
|
|
|
|
|
async.parallel({
|
|
|
|
|
notifications: function (next) {
|
|
|
|
|
notifications.getMultiple(nids, next);
|
|
|
|
|
},
|
|
|
|
|
hasRead: function (next) {
|
|
|
|
|
db.isSortedSetMembers('uid:' + uid + ':notifications:read', nids, next);
|
|
|
|
|
},
|
|
|
|
|
}, next);
|
|
|
|
|
},
|
|
|
|
|
function (results, next) {
|
|
|
|
|
var deletedNids = [];
|
|
|
|
|
notificationData = results.notifications.filter(function (notification, index) {
|
|
|
|
|
if (!notification || !notification.nid) {
|
|
|
|
|
deletedNids.push(nids[index]);
|
|
|
|
|
}
|
|
|
|
|
if (notification) {
|
|
|
|
|
notification.read = results.hasRead[index];
|
|
|
|
|
notification.readClass = !notification.read ? 'unread' : '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return notification && notification.path;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
deleteUserNids(deletedNids, uid, next);
|
|
|
|
|
},
|
|
|
|
|
function (next) {
|
|
|
|
|
notifications.merge(notificationData, next);
|
|
|
|
|
},
|
|
|
|
|
], callback);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
UserNotifications.getDailyUnread = function (uid, callback) {
|
|
|
|
|
var yesterday = Date.now() - (1000 * 60 * 60 * 24); // Approximate, can be more or less depending on time changes, makes no difference really.
|
|
|
|
|
|
|
|
|
|
db.getSortedSetRevRangeByScore('uid:' + uid + ':notifications:unread', 0, 20, '+inf', yesterday, function (err, nids) {
|
|
|
|
|
if (err) {
|
|
|
|
|
return callback(err);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async.parallel([
|
|
|
|
|
function (next) {
|
|
|
|
|
db.sortedSetRemove('uid:' + uid + ':notifications:read', nids, next);
|
|
|
|
|
},
|
|
|
|
|
function (next) {
|
|
|
|
|
db.sortedSetRemove('uid:' + uid + ':notifications:unread', nids, next);
|
|
|
|
|
},
|
|
|
|
|
], function (err) {
|
|
|
|
|
callback(err);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getNotifications(uid, start, stop, callback) {
|
|
|
|
|
async.parallel({
|
|
|
|
|
unread: function (next) {
|
|
|
|
|
getNotificationsFromSet('uid:' + uid + ':notifications:unread', false, uid, start, stop, next);
|
|
|
|
|
},
|
|
|
|
|
read: function (next) {
|
|
|
|
|
getNotificationsFromSet('uid:' + uid + ':notifications:read', true, uid, start, stop, next);
|
|
|
|
|
},
|
|
|
|
|
}, callback);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getNotificationsFromSet(set, read, uid, start, stop, callback) {
|
|
|
|
|
async.waterfall([
|
|
|
|
|
function (next) {
|
|
|
|
|
db.getSortedSetRevRange(set, start, stop, next);
|
|
|
|
|
},
|
|
|
|
|
function (nids, next) {
|
|
|
|
|
if (!Array.isArray(nids) || !nids.length) {
|
|
|
|
|
return callback(null, []);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
UserNotifications.getNotifications(nids, uid, callback);
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
UserNotifications.getUnreadCount = function (uid, callback) {
|
|
|
|
|
if (!parseInt(uid, 10)) {
|
|
|
|
|
return callback(null, 0);
|
|
|
|
|
}
|
|
|
|
|
UserNotifications.getNotifications(nids, uid, next);
|
|
|
|
|
},
|
|
|
|
|
], callback);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
UserNotifications.getNotifications = function (nids, uid, callback) {
|
|
|
|
|
var notificationData = [];
|
|
|
|
|
async.waterfall([
|
|
|
|
|
function (next) {
|
|
|
|
|
async.parallel({
|
|
|
|
|
notifications: function (next) {
|
|
|
|
|
notifications.getMultiple(nids, next);
|
|
|
|
|
},
|
|
|
|
|
hasRead: function (next) {
|
|
|
|
|
db.isSortedSetMembers('uid:' + uid + ':notifications:read', nids, next);
|
|
|
|
|
},
|
|
|
|
|
}, next);
|
|
|
|
|
},
|
|
|
|
|
function (results, next) {
|
|
|
|
|
var deletedNids = [];
|
|
|
|
|
notificationData = results.notifications.filter(function (notification, index) {
|
|
|
|
|
if (!notification || !notification.nid) {
|
|
|
|
|
deletedNids.push(nids[index]);
|
|
|
|
|
}
|
|
|
|
|
if (notification) {
|
|
|
|
|
notification.read = results.hasRead[index];
|
|
|
|
|
notification.readClass = !notification.read ? 'unread' : '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Collapse any notifications with identical mergeIds
|
|
|
|
|
async.waterfall([
|
|
|
|
|
async.apply(db.getSortedSetRevRange, 'uid:' + uid + ':notifications:unread', 0, 99),
|
|
|
|
|
async.apply(notifications.filterExists),
|
|
|
|
|
function (nids, next) {
|
|
|
|
|
var keys = nids.map(function (nid) {
|
|
|
|
|
return 'notifications:' + nid;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
db.getObjectsFields(keys, ['mergeId'], next);
|
|
|
|
|
},
|
|
|
|
|
function (mergeIds, next) {
|
|
|
|
|
mergeIds = mergeIds.map(function (set) {
|
|
|
|
|
return set.mergeId;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
next(null, mergeIds.reduce(function (count, mergeId, idx, arr) {
|
|
|
|
|
// A missing (null) mergeId means that notification is counted separately.
|
|
|
|
|
if (mergeId === null || idx === arr.indexOf(mergeId)) {
|
|
|
|
|
count += 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return count;
|
|
|
|
|
}, 0));
|
|
|
|
|
},
|
|
|
|
|
], callback);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
UserNotifications.getUnreadByField = function (uid, field, values, callback) {
|
|
|
|
|
db.getSortedSetRevRange('uid:' + uid + ':notifications:unread', 0, 99, function (err, nids) {
|
|
|
|
|
if (err) {
|
|
|
|
|
return callback(err);
|
|
|
|
|
}
|
|
|
|
|
return notification && notification.path;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
deleteUserNids(deletedNids, uid, next);
|
|
|
|
|
},
|
|
|
|
|
function (next) {
|
|
|
|
|
notifications.merge(notificationData, next);
|
|
|
|
|
},
|
|
|
|
|
], callback);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
UserNotifications.getDailyUnread = function (uid, callback) {
|
|
|
|
|
var yesterday = Date.now() - (1000 * 60 * 60 * 24); // Approximate, can be more or less depending on time changes, makes no difference really.
|
|
|
|
|
|
|
|
|
|
async.waterfall([
|
|
|
|
|
function (next) {
|
|
|
|
|
db.getSortedSetRevRangeByScore('uid:' + uid + ':notifications:unread', 0, 20, '+inf', yesterday, next);
|
|
|
|
|
},
|
|
|
|
|
function (nids, next) {
|
|
|
|
|
if (!Array.isArray(nids) || !nids.length) {
|
|
|
|
|
return callback(null, []);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
UserNotifications.getNotifications(nids, uid, next);
|
|
|
|
|
},
|
|
|
|
|
], callback);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
UserNotifications.getUnreadCount = function (uid, callback) {
|
|
|
|
|
if (!parseInt(uid, 10)) {
|
|
|
|
|
return callback(null, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
async.waterfall([
|
|
|
|
|
function (next) {
|
|
|
|
|
db.getSortedSetRevRange('uid:' + uid + ':notifications:unread', 0, 99, next);
|
|
|
|
|
},
|
|
|
|
|
function (nids, next) {
|
|
|
|
|
notifications.filterExists(nids, next);
|
|
|
|
|
},
|
|
|
|
|
function (nids, next) {
|
|
|
|
|
var keys = nids.map(function (nid) {
|
|
|
|
|
return 'notifications:' + nid;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
db.getObjectsFields(keys, ['nid', field], function (err, notifications) {
|
|
|
|
|
if (err) {
|
|
|
|
|
return callback(err);
|
|
|
|
|
db.getObjectsFields(keys, ['mergeId'], next);
|
|
|
|
|
},
|
|
|
|
|
function (mergeIds, next) {
|
|
|
|
|
// Collapse any notifications with identical mergeIds
|
|
|
|
|
mergeIds = mergeIds.map(function (set) {
|
|
|
|
|
return set.mergeId;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
next(null, mergeIds.reduce(function (count, mergeId, idx, arr) {
|
|
|
|
|
// A missing (null) mergeId means that notification is counted separately.
|
|
|
|
|
if (mergeId === null || idx === arr.indexOf(mergeId)) {
|
|
|
|
|
count += 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
values = values.map(function () { return values.toString(); });
|
|
|
|
|
nids = notifications.filter(function (notification) {
|
|
|
|
|
return notification && notification[field] && values.indexOf(notification[field].toString()) !== -1;
|
|
|
|
|
}).map(function (notification) {
|
|
|
|
|
return notification.nid;
|
|
|
|
|
});
|
|
|
|
|
return count;
|
|
|
|
|
}, 0));
|
|
|
|
|
},
|
|
|
|
|
], callback);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
UserNotifications.getUnreadByField = function (uid, field, values, callback) {
|
|
|
|
|
var nids;
|
|
|
|
|
async.waterfall([
|
|
|
|
|
function (next) {
|
|
|
|
|
db.getSortedSetRevRange('uid:' + uid + ':notifications:unread', 0, 99, next);
|
|
|
|
|
},
|
|
|
|
|
function (_nids, next) {
|
|
|
|
|
nids = _nids;
|
|
|
|
|
if (!Array.isArray(nids) || !nids.length) {
|
|
|
|
|
return callback(null, []);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
callback(null, nids);
|
|
|
|
|
var keys = nids.map(function (nid) {
|
|
|
|
|
return 'notifications:' + nid;
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
UserNotifications.deleteAll = function (uid, callback) {
|
|
|
|
|
if (!parseInt(uid, 10)) {
|
|
|
|
|
return callback();
|
|
|
|
|
}
|
|
|
|
|
async.parallel([
|
|
|
|
|
function (next) {
|
|
|
|
|
db.delete('uid:' + uid + ':notifications:unread', next);
|
|
|
|
|
},
|
|
|
|
|
function (next) {
|
|
|
|
|
db.delete('uid:' + uid + ':notifications:read', next);
|
|
|
|
|
},
|
|
|
|
|
], callback);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
UserNotifications.sendTopicNotificationToFollowers = function (uid, topicData, postData) {
|
|
|
|
|
var followers;
|
|
|
|
|
async.waterfall([
|
|
|
|
|
function (next) {
|
|
|
|
|
db.getSortedSetRange('followers:' + uid, 0, -1, next);
|
|
|
|
|
},
|
|
|
|
|
function (followers, next) {
|
|
|
|
|
if (!Array.isArray(followers) || !followers.length) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
privileges.categories.filterUids('read', topicData.cid, followers, next);
|
|
|
|
|
},
|
|
|
|
|
function (_followers, next) {
|
|
|
|
|
followers = _followers;
|
|
|
|
|
if (!followers.length) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
db.getObjectsFields(keys, ['nid', field], next);
|
|
|
|
|
},
|
|
|
|
|
function (notifications, next) {
|
|
|
|
|
values = values.map(function () { return values.toString(); });
|
|
|
|
|
nids = notifications.filter(function (notification) {
|
|
|
|
|
return notification && notification[field] && values.indexOf(notification[field].toString()) !== -1;
|
|
|
|
|
}).map(function (notification) {
|
|
|
|
|
return notification.nid;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
var title = topicData.title;
|
|
|
|
|
if (title) {
|
|
|
|
|
title = S(title).decodeHTMLEntities().s;
|
|
|
|
|
}
|
|
|
|
|
next(null, nids);
|
|
|
|
|
},
|
|
|
|
|
], callback);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
notifications.create({
|
|
|
|
|
type: 'new-topic',
|
|
|
|
|
bodyShort: '[[notifications:user_posted_topic, ' + postData.user.username + ', ' + title + ']]',
|
|
|
|
|
bodyLong: postData.content,
|
|
|
|
|
pid: postData.pid,
|
|
|
|
|
path: '/post/' + postData.pid,
|
|
|
|
|
nid: 'tid:' + postData.tid + ':uid:' + uid,
|
|
|
|
|
tid: postData.tid,
|
|
|
|
|
from: uid,
|
|
|
|
|
}, next);
|
|
|
|
|
},
|
|
|
|
|
], function (err, notification) {
|
|
|
|
|
if (err) {
|
|
|
|
|
return winston.error(err);
|
|
|
|
|
UserNotifications.deleteAll = function (uid, callback) {
|
|
|
|
|
if (!parseInt(uid, 10)) {
|
|
|
|
|
return callback();
|
|
|
|
|
}
|
|
|
|
|
async.parallel([
|
|
|
|
|
function (next) {
|
|
|
|
|
db.delete('uid:' + uid + ':notifications:unread', next);
|
|
|
|
|
},
|
|
|
|
|
function (next) {
|
|
|
|
|
db.delete('uid:' + uid + ':notifications:read', next);
|
|
|
|
|
},
|
|
|
|
|
], callback);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
UserNotifications.sendTopicNotificationToFollowers = function (uid, topicData, postData) {
|
|
|
|
|
var followers;
|
|
|
|
|
async.waterfall([
|
|
|
|
|
function (next) {
|
|
|
|
|
db.getSortedSetRange('followers:' + uid, 0, -1, next);
|
|
|
|
|
},
|
|
|
|
|
function (followers, next) {
|
|
|
|
|
if (!Array.isArray(followers) || !followers.length) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
privileges.categories.filterUids('read', topicData.cid, followers, next);
|
|
|
|
|
},
|
|
|
|
|
function (_followers, next) {
|
|
|
|
|
followers = _followers;
|
|
|
|
|
if (!followers.length) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (notification) {
|
|
|
|
|
notifications.push(notification, followers);
|
|
|
|
|
var title = topicData.title;
|
|
|
|
|
if (title) {
|
|
|
|
|
title = S(title).decodeHTMLEntities().s;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
UserNotifications.sendWelcomeNotification = function (uid, callback) {
|
|
|
|
|
callback = callback || function () {};
|
|
|
|
|
if (!meta.config.welcomeNotification) {
|
|
|
|
|
return callback();
|
|
|
|
|
notifications.create({
|
|
|
|
|
type: 'new-topic',
|
|
|
|
|
bodyShort: '[[notifications:user_posted_topic, ' + postData.user.username + ', ' + title + ']]',
|
|
|
|
|
bodyLong: postData.content,
|
|
|
|
|
pid: postData.pid,
|
|
|
|
|
path: '/post/' + postData.pid,
|
|
|
|
|
nid: 'tid:' + postData.tid + ':uid:' + uid,
|
|
|
|
|
tid: postData.tid,
|
|
|
|
|
from: uid,
|
|
|
|
|
}, next);
|
|
|
|
|
},
|
|
|
|
|
], function (err, notification) {
|
|
|
|
|
if (err) {
|
|
|
|
|
return winston.error(err);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var path = meta.config.welcomeLink ? meta.config.welcomeLink : '#';
|
|
|
|
|
if (notification) {
|
|
|
|
|
notifications.push(notification, followers);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
notifications.create({
|
|
|
|
|
bodyShort: meta.config.welcomeNotification,
|
|
|
|
|
path: path,
|
|
|
|
|
nid: 'welcome_' + uid,
|
|
|
|
|
}, function (err, notification) {
|
|
|
|
|
if (err || !notification) {
|
|
|
|
|
return callback(err);
|
|
|
|
|
}
|
|
|
|
|
UserNotifications.sendWelcomeNotification = function (uid, callback) {
|
|
|
|
|
callback = callback || function () {};
|
|
|
|
|
if (!meta.config.welcomeNotification) {
|
|
|
|
|
return callback();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
notifications.push(notification, [uid], callback);
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
UserNotifications.sendNameChangeNotification = function (uid, username) {
|
|
|
|
|
notifications.create({
|
|
|
|
|
bodyShort: '[[user:username_taken_workaround, ' + username + ']]',
|
|
|
|
|
image: 'brand:logo',
|
|
|
|
|
nid: 'username_taken:' + uid,
|
|
|
|
|
datetime: Date.now(),
|
|
|
|
|
}, function (err, notification) {
|
|
|
|
|
if (!err && notification) {
|
|
|
|
|
notifications.push(notification, uid);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
UserNotifications.pushCount = function (uid) {
|
|
|
|
|
var websockets = require('./../socket.io');
|
|
|
|
|
UserNotifications.getUnreadCount(uid, function (err, count) {
|
|
|
|
|
if (err) {
|
|
|
|
|
return winston.error(err.stack);
|
|
|
|
|
var path = meta.config.welcomeLink ? meta.config.welcomeLink : '#';
|
|
|
|
|
|
|
|
|
|
async.waterfall([
|
|
|
|
|
function (next) {
|
|
|
|
|
notifications.create({
|
|
|
|
|
bodyShort: meta.config.welcomeNotification,
|
|
|
|
|
path: path,
|
|
|
|
|
nid: 'welcome_' + uid,
|
|
|
|
|
}, next);
|
|
|
|
|
},
|
|
|
|
|
function (notification, next) {
|
|
|
|
|
if (!notification) {
|
|
|
|
|
return next();
|
|
|
|
|
}
|
|
|
|
|
notifications.push(notification, [uid], next);
|
|
|
|
|
},
|
|
|
|
|
], callback);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
UserNotifications.sendNameChangeNotification = function (uid, username) {
|
|
|
|
|
notifications.create({
|
|
|
|
|
bodyShort: '[[user:username_taken_workaround, ' + username + ']]',
|
|
|
|
|
image: 'brand:logo',
|
|
|
|
|
nid: 'username_taken:' + uid,
|
|
|
|
|
datetime: Date.now(),
|
|
|
|
|
}, function (err, notification) {
|
|
|
|
|
if (!err && notification) {
|
|
|
|
|
notifications.push(notification, uid);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
UserNotifications.pushCount = function (uid) {
|
|
|
|
|
var websockets = require('./../socket.io');
|
|
|
|
|
UserNotifications.getUnreadCount(uid, function (err, count) {
|
|
|
|
|
if (err) {
|
|
|
|
|
return winston.error(err.stack);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
websockets.in('uid_' + uid).emit('event:notifications.updateCount', count);
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
}(exports));
|
|
|
|
|
websockets.in('uid_' + uid).emit('event:notifications.updateCount', count);
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|