recent chat list with rooms

v1.18.x
barisusakli 9 years ago
parent e2e547db45
commit 58d05f7c79

@ -1,5 +1,5 @@
"use strict"; "use strict";
/* globals app, config, define, socket, templates, utils, ajaxify */ /* globals app, define, socket, templates, utils, ajaxify */
define('chat', ['components', 'taskbar', 'string', 'sounds', 'forum/chats', 'translator'], function(components, taskbar, S, sounds, Chats, translator) { define('chat', ['components', 'taskbar', 'string', 'sounds', 'forum/chats', 'translator'], function(components, taskbar, S, sounds, Chats, translator) {
@ -90,15 +90,16 @@ define('chat', ['components', 'taskbar', 'string', 'sounds', 'forum/chats', 'tra
module.loadChatsDropdown = function(chatsListEl) { module.loadChatsDropdown = function(chatsListEl) {
var dropdownEl; var dropdownEl;
socket.emit('modules.chats.getRecentChats', {after: 0}, function(err, chats) { socket.emit('modules.chats.getRecentChats', {after: 0}, function(err, data) {
if (err) { if (err) {
return app.alertError(err.message); return app.alertError(err.message);
} }
chats = chats.users;
var rooms = data.rooms;
chatsListEl.empty(); chatsListEl.empty();
if (!chats.length) { if (!rooms.length) {
translator.translate('[[modules:chat.no_active]]', function(str) { translator.translate('[[modules:chat.no_active]]', function(str) {
$('<li />') $('<li />')
.addClass('no_active') .addClass('no_active')
@ -108,17 +109,23 @@ define('chat', ['components', 'taskbar', 'string', 'sounds', 'forum/chats', 'tra
return; return;
} }
chats.forEach(function(userObj) { rooms.forEach(function(roomObj) {
dropdownEl = $('<li class="' + (userObj.unread ? 'unread' : '') + '"/>') function createUserImage(userObj) {
.attr('data-uid', userObj.uid) return '<a data-ajaxify="false">' +
.html('<a data-ajaxify="false">'+
(userObj.picture ? (userObj.picture ?
'<img src="' + userObj.picture + '" title="' + userObj.username +'" />' : '<img src="' + userObj.picture + '" title="' + userObj.username +'" />' :
'<div class="user-icon" style="background-color: ' + userObj['icon:bgColor'] + '">' + userObj['icon:text'] + '</div>') + '<div class="user-icon" style="background-color: ' + userObj['icon:bgColor'] + '">' + userObj['icon:text'] + '</div>') +
'<i class="fa fa-circle status ' + userObj.status + '"></i> ' + '<i class="fa fa-circle status ' + userObj.status + '"></i> ' +
userObj.username + '</a>') userObj.username + '</a>';
}
dropdownEl = $('<li class="' + (roomObj.unread ? 'unread' : '') + '"/>')
.attr('data-roomId', roomObj.roomId)
.appendTo(chatsListEl); .appendTo(chatsListEl);
roomObj.users.forEach(function(userObj) {
dropdownEl.append(createUserImage(userObj));
});
dropdownEl.click(function() { dropdownEl.click(function() {
if (!ajaxify.currentPage.match(/^chats\//)) { if (!ajaxify.currentPage.match(/^chats\//)) {
@ -229,7 +236,7 @@ define('chat', ['components', 'taskbar', 'string', 'sounds', 'forum/chats', 'tra
chatModal.find('.modal-header').on('dblclick', gotoChats); chatModal.find('.modal-header').on('dblclick', gotoChats);
chatModal.find('button[data-action="maximize"]').on('click', gotoChats); chatModal.find('button[data-action="maximize"]').on('click', gotoChats);
chatModal.on('click', function(e) { chatModal.on('click', function() {
module.bringModalToTop(chatModal); module.bringModalToTop(chatModal);
if (!dragged) { if (!dragged) {

@ -1,27 +1,28 @@
'use strict'; 'use strict';
var db = require('./database'),
async = require('async'), var async = require('async'),
nconf = require('nconf'),
winston = require('winston'), winston = require('winston'),
S = require('string'), S = require('string'),
nconf = require('nconf'),
db = require('./database'),
user = require('./user'), user = require('./user'),
plugins = require('./plugins'), plugins = require('./plugins'),
meta = require('./meta'), meta = require('./meta'),
emailer = require('./emailer'),
utils = require('../public/src/utils'), utils = require('../public/src/utils'),
notifications = require('./notifications'), notifications = require('./notifications'),
userNotifications = require('./user/notifications'), userNotifications = require('./user/notifications'),
emailer = require('./emailer'),
sockets = require('./socket.io'); sockets = require('./socket.io');
(function(Messaging) { (function(Messaging) {
require('./create')(Messaging); require('./messaging/create')(Messaging);
require('./delete')(Messaging); require('./messaging/delete')(Messaging);
require('./edit')(Messaging); require('./messaging/edit')(Messaging);
require('./rooms')(Messaging); require('./messaging/rooms')(Messaging);
require('./unread')(Messaging); require('./messaging/unread')(Messaging);
Messaging.notifyQueue = {}; // Only used to notify a user of a new chat message, see Messaging.notifyUser Messaging.notifyQueue = {}; // Only used to notify a user of a new chat message, see Messaging.notifyUser
@ -32,13 +33,9 @@ var db = require('./database'),
threemonths: 7776000000 threemonths: 7776000000
}; };
function sortUids(fromuid, touid) {
return [fromuid, touid].sort();
}
Messaging.getMessageField = function(mid, field, callback) { Messaging.getMessageField = function(mid, field, callback) {
Messaging.getMessageFields(mid, [field], function(err, fields) { Messaging.getMessageFields(mid, [field], function(err, fields) {
callback(err, fields[field]); callback(err, fields ? fields[field] : null);
}); });
}; };
@ -55,22 +52,21 @@ var db = require('./database'),
}; };
Messaging.getMessages = function(params, callback) { Messaging.getMessages = function(params, callback) {
var fromuid = params.fromuid, var uid = params.uid,
touid = params.touid, roomId = params.roomId,
since = params.since, since = params.since,
isNew = params.isNew, isNew = params.isNew,
count = params.count || parseInt(meta.config.chatMessageInboxSize, 10) || 250, count = params.count || parseInt(meta.config.chatMessageInboxSize, 10) || 250,
markRead = params.markRead || true; markRead = params.markRead || true;
var uids = sortUids(fromuid, touid), var min = params.count ? 0 : Date.now() - (terms[since] || terms.day);
min = params.count ? 0 : Date.now() - (terms[since] || terms.day);
if (since === 'recent') { if (since === 'recent') {
count = 49; count = 49;
min = 0; min = 0;
} }
db.getSortedSetRevRangeByScore('messages:uid:' + uids[0] + ':to:' + uids[1], 0, count, '+inf', min, function(err, mids) { db.getSortedSetRevRangeByScore('uid:' + uid + ':chat:room:' + roomId + ':mids', 0, count, '+inf', min, function(err, mids) {
if (err) { if (err) {
return callback(err); return callback(err);
} }
@ -81,115 +77,122 @@ var db = require('./database'),
mids.reverse(); mids.reverse();
Messaging.getMessagesData(mids, fromuid, touid, isNew, callback); Messaging.getMessagesData(mids, uid, roomId, isNew, callback);
}); });
if (markRead) { if (markRead) {
notifications.markRead('chat_' + touid + '_' + fromuid, fromuid, function(err) { notifications.markRead('chat_' + roomId + '_' + uid, uid, function(err) {
if (err) { if (err) {
winston.error('[messaging] Could not mark notifications related to this chat as read: ' + err.message); winston.error('[messaging] Could not mark notifications related to this chat as read: ' + err.message);
} }
userNotifications.pushCount(fromuid); userNotifications.pushCount(uid);
}); });
} }
}; };
Messaging.getMessagesData = function(mids, fromuid, touid, isNew, callback) { Messaging.getMessagesData = function(mids, uid, roomId, isNew, callback) {
user.getUsersFields([fromuid, touid], ['uid', 'username', 'userslug', 'picture', 'status'], function(err, userData) {
if(err) {
return callback(err);
}
var keys = mids.map(function(mid) { var keys = mids.map(function(mid) {
return 'message:' + mid; return 'message:' + mid;
}); });
async.waterfall([ var messages;
async.apply(db.getObjects, keys),
function(messages, next) {
messages = messages.map(function(msg, idx) {
if (msg) {
msg.messageId = parseInt(mids[idx], 10);
}
return msg;
}).filter(Boolean);
async.map(messages, function(message, next) {
var self = parseInt(message.fromuid, 10) === parseInt(fromuid, 10);
message.fromUser = self ? userData[0] : userData[1];
message.toUser = self ? userData[1] : userData[0];
message.timestampISO = utils.toISOString(message.timestamp);
message.self = self ? 1 : 0;
message.newSet = false;
if (message.hasOwnProperty('edited')) {
message.editedISO = new Date(parseInt(message.edited, 10)).toISOString();
}
Messaging.parse(message.content, message.fromuid, fromuid, userData[1], userData[0], isNew, function(result) { async.waterfall([
message.content = result; function (next) {
message.cleanedContent = S(result).stripTags().decodeHTMLEntities().s; db.getObjects(keys, next);
next(null, message); },
}); function (_messages, next) {
}, next); messages = _messages.map(function(msg, idx) {
}, if (msg) {
function(messages, next) { msg.messageId = parseInt(mids[idx], 10);
if (messages.length > 1) { }
// Add a spacer in between messages with time gaps between them return msg;
messages = messages.map(function(message, index) { }).filter(Boolean);
// Compare timestamps with the previous message, and check if a spacer needs to be added
if (index > 0 && parseInt(message.timestamp, 10) > parseInt(messages[index-1].timestamp, 10) + (1000*60*5)) {
// If it's been 5 minutes, this is a new set of messages
message.newSet = true;
} else if (index > 0 && message.fromuid !== messages[index-1].fromuid) {
// If the previous message was from the other person, this is also a new set
message.newSet = true;
}
return message; var uids = messages.map(function(msg) {
}); return msg && msg.fromuid;
});
next(undefined, messages); user.getUsersFields(uids, ['uid', 'username', 'userslug', 'picture', 'status'], next);
} else { },
// For single messages, we don't know the context, so look up the previous message and compare function (users, next) {
var uids = [fromuid, touid].sort(function(a, b) { return a > b ? 1 : -1; }); messages.forEach(function(message, index) {
var key = 'messages:uid:' + uids[0] + ':to:' + uids[1]; message.fromUser = users[index];
async.waterfall([ var self = parseInt(message.fromuid, 10) === parseInt(uid, 10);
async.apply(db.sortedSetRank, key, messages[0].messageId), message.self = self ? 1 : 0;
function(index, next) { message.timestampISO = utils.toISOString(message.timestamp);
// Continue only if this isn't the first message in sorted set message.newSet = false;
if (index > 0) { if (message.hasOwnProperty('edited')) {
db.getSortedSetRange(key, index-1, index-1, next); message.editedISO = new Date(parseInt(message.edited, 10)).toISOString();
} else { }
messages[0].newSet = true; });
return next(undefined, messages);
}
},
function(mid, next) {
Messaging.getMessageFields(mid, ['fromuid', 'timestamp'], next);
}
], function(err, fields) {
if (err) {
return next(err);
}
if ( async.map(messages, function(message, next) {
(parseInt(messages[0].timestamp, 10) > parseInt(fields.timestamp, 10) + (1000*60*5)) || Messaging.parse(message.content, message.fromuid, uid, roomId, isNew, function(result) {
(parseInt(messages[0].fromuid, 10) !== parseInt(fields.fromuid, 10)) message.content = result;
) { message.cleanedContent = S(result).stripTags().decodeHTMLEntities().s;
// If it's been 5 minutes, this is a new set of messages next(null, message);
});
}, next);
},
function(messages, next) {
if (messages.length > 1) {
// Add a spacer in between messages with time gaps between them
messages = messages.map(function(message, index) {
// Compare timestamps with the previous message, and check if a spacer needs to be added
if (index > 0 && parseInt(message.timestamp, 10) > parseInt(messages[index-1].timestamp, 10) + (1000*60*5)) {
// If it's been 5 minutes, this is a new set of messages
message.newSet = true;
} else if (index > 0 && message.fromuid !== messages[index-1].fromuid) {
// If the previous message was from the other person, this is also a new set
message.newSet = true;
}
return message;
});
next(undefined, messages);
} else {
// For single messages, we don't know the context, so look up the previous message and compare
var key = 'uid:' + uid + ':chat:room:' + roomId + ':mids';
async.waterfall([
async.apply(db.sortedSetRank, key, messages[0].messageId),
function(index, next) {
// Continue only if this isn't the first message in sorted set
if (index > 0) {
db.getSortedSetRange(key, index-1, index-1, next);
} else {
messages[0].newSet = true; messages[0].newSet = true;
return next(undefined, messages);
} }
},
function(mid, next) {
Messaging.getMessageFields(mid, ['fromuid', 'timestamp'], next);
}
], function(err, fields) {
if (err) {
return next(err);
}
next(undefined, messages); if (
}); (parseInt(messages[0].timestamp, 10) > parseInt(fields.timestamp, 10) + (1000*60*5)) ||
} (parseInt(messages[0].fromuid, 10) !== parseInt(fields.fromuid, 10))
) {
// If it's been 5 minutes, this is a new set of messages
messages[0].newSet = true;
}
next(undefined, messages);
});
} }
], callback); }
}); ], callback);
}; };
Messaging.parse = function (message, fromuid, myuid, toUserData, myUserData, isNew, callback) { Messaging.parse = function (message, fromuid, uid, roomId, isNew, callback) {
plugins.fireHook('filter:parse.raw', message, function(err, parsed) { plugins.fireHook('filter:parse.raw', message, function(err, parsed) {
if (err) { if (err) {
return callback(message); return callback(message);
@ -199,9 +202,8 @@ var db = require('./database'),
message: message, message: message,
parsed: parsed, parsed: parsed,
fromuid: fromuid, fromuid: fromuid,
myuid: myuid, uid: uid,
toUserData: toUserData, roomId: roomId,
myUserData: myUserData,
isNew: isNew, isNew: isNew,
parsedMessage: parsed parsedMessage: parsed
}; };
@ -212,15 +214,14 @@ var db = require('./database'),
}); });
}; };
Messaging.isNewSet = function(fromuid, touid, mid, callback) { Messaging.isNewSet = function(uid, roomId, mid, callback) {
var uids = sortUids(fromuid, touid), var setKey = 'uid:' + uid + ':chat:room:' + roomId + ':mids';
setKey = 'messages:uid:' + uids[0] + ':to:' + uids[1];
async.waterfall([ async.waterfall([
async.apply(db.sortedSetRank, setKey, mid), async.apply(db.sortedSetRank, setKey, mid),
function(index, next) { function(index, next) {
if (index > 0) { if (index > 0) {
db.getSortedSetRange(setKey, index-1, index, next); db.getSortedSetRange(setKey, index - 1, index, next);
} else { } else {
next(null, true); next(null, true);
} }
@ -244,23 +245,33 @@ var db = require('./database'),
Messaging.getRecentChats = function(uid, start, stop, callback) { Messaging.getRecentChats = function(uid, start, stop, callback) {
db.getSortedSetRevRange('uid:' + uid + ':chats', start, stop, function(err, uids) { db.getSortedSetRevRange('uid:' + uid + ':chat:rooms', start, stop, function(err, roomIds) {
if (err) { if (err) {
return callback(err); return callback(err);
} }
async.parallel({ async.parallel({
unread: function(next) { unread: function(next) {
db.isSortedSetMembers('uid:' + uid + ':chats:unread', uids, next); db.isSortedSetMembers('uid:' + uid + ':chat:rooms:unread', roomIds, next);
}, },
users: function(next) { users: function(next) {
user.getUsersFields(uids, ['uid', 'username', 'picture', 'status', 'lastonline'] , next); async.map(roomIds, function(roomId, next) {
db.getSortedSetRevRange('chat:room:' + roomId + ':uids', 0, 3, function(err, uids) {
if (err) {
return next(err);
}
uids = uids.filter(function(value, index, array) {
return value && parseInt(value, 10) !== parseInt(uid, 10);
});
user.getUsersFields(uids, ['uid', 'username', 'picture', 'status', 'lastonline'] , next);
});
}, next);
}, },
teasers: function(next) { teasers: function(next) {
async.map(uids, function(fromuid, next) { async.map(roomIds, function(roomId, next) {
Messaging.getMessages({ Messaging.getMessages({
fromuid: fromuid, uid: uid,
touid: uid, roomId: roomId,
isNew: false, isNew: false,
count: 1, count: 1,
markRead: false markRead: false
@ -275,20 +286,25 @@ var db = require('./database'),
if (err) { if (err) {
return callback(err); return callback(err);
} }
var rooms = results.users.map(function(users, index) {
results.users.forEach(function(userData, index) { var data = {
if (userData && parseInt(userData.uid, 10)) { users: users,
userData.unread = results.unread[index]; unread: results.unread[index],
userData.status = user.getStatus(userData); roomId: roomIds[index],
userData.teaser = results.teasers[index]; teaser: results.teasers[index]
} };
}); data.users.forEach(function(userData) {
if (userData && parseInt(userData.uid, 10)) {
results.users = results.users.filter(function(user) { userData.status = user.getStatus(userData);
return user && parseInt(user.uid, 10); }
});
data.users = data.users.filter(function(user) {
return user && parseInt(user.uid, 10);
});
return data;
}); });
callback(null, {users: results.users, nextStart: stop + 1}); callback(null, {rooms: rooms, nextStart: stop + 1});
}); });
}); });
}; };

@ -95,7 +95,7 @@ module.exports = function(Messaging) {
], next); ], next);
}, },
function (results, next) { function (results, next) {
getMessages([mid], fromuid, touid, true, next); Messaging.getMessagesData([mid], fromuid, touid, true, next);
}, },
function (messages, next) { function (messages, next) {
Messaging.isNewSet(fromuid, touid, mid, next); Messaging.isNewSet(fromuid, touid, mid, next);
@ -119,7 +119,7 @@ module.exports = function(Messaging) {
var keys = uids.map(function(uid) { var keys = uids.map(function(uid) {
return 'uid:' + uid + ':chat:rooms'; return 'uid:' + uid + ':chat:rooms';
}); });
db.sortedSetsAdd(keys, timestamp, roomId, next); db.sortedSetsAdd(keys, timestamp, roomId, callback);
}; };
Messaging.addMessageToUsers = function(roomId, uids, mid, timestamp, callback) { Messaging.addMessageToUsers = function(roomId, uids, mid, timestamp, callback) {

@ -43,4 +43,5 @@ module.exports = function(Messaging) {
Messaging.getUidsInRoom = function(roomId, start, stop, callback) { Messaging.getUidsInRoom = function(roomId, start, stop, callback) {
db.getSortedSetRange('chat:room:' + roomId + ':uids', start, stop, callback); db.getSortedSetRange('chat:room:' + roomId + ':uids', start, stop, callback);
}; };
}; };

@ -57,7 +57,12 @@ module.exports = function(app, middleware, controllers) {
}); });
router.get('/test', function(req, res) { router.get('/test', function(req, res) {
res.redirect(404); //res.redirect(404);
var messaging = require('../messaging');
messaging.getRecentChats(1, 0, 9, function(err, data) {
res.json(data);
})
}); });
app.use(nconf.get('relative_path') + '/debug', router); app.use(nconf.get('relative_path') + '/debug', router);

@ -22,14 +22,13 @@ SocketModules.chats.get = function(socket, data, callback) {
} }
Messaging.getMessages({ Messaging.getMessages({
fromuid: socket.uid, uid: socket.uid,
touid: data.touid, roomId: data.roomId,
since: data.since, since: data.since,
isNew: false isNew: false
}, callback); }, callback);
// Mark chat as read Messaging.markRead(socket.uid, data.roomId);
Messaging.markRead(socket.uid, data.touid);
}; };
SocketModules.chats.getRaw = function(socket, data, callback) { SocketModules.chats.getRaw = function(socket, data, callback) {

Loading…
Cancel
Save