mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-22 08:26:16 -04:00
client loads messages using the new client loads messages using new method, getChatMessages restructured and renamed to getLastChatMessages, added GET_CHAT_MESSAGES, getChatMessages restructured and renamed to getLastChatMessages
This commit is contained in:
parent
9484b92ae2
commit
5592c4b0fe
5 changed files with 108 additions and 47 deletions
|
@ -281,27 +281,7 @@ Pad.prototype.getChatMessage = function getChatMessage(entryNum, callback) {
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
Pad.prototype.getLastChatMessages = function getLastChatMessages(count, callback) {
|
Pad.prototype.getChatMessages = function getChatMessages(start, end, callback) {
|
||||||
//return an empty array if there are no chat messages
|
|
||||||
if(this.chatHead == -1)
|
|
||||||
{
|
|
||||||
callback(null, []);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var _this = this;
|
|
||||||
|
|
||||||
//works only if we decrement the amount, for some reason
|
|
||||||
count--;
|
|
||||||
|
|
||||||
//set the startpoint
|
|
||||||
var start = this.chatHead-count;
|
|
||||||
if(start < 0)
|
|
||||||
start = 0;
|
|
||||||
|
|
||||||
//set the endpoint
|
|
||||||
var end = this.chatHead;
|
|
||||||
|
|
||||||
//collect the numbers of chat entries and in which order we need them
|
//collect the numbers of chat entries and in which order we need them
|
||||||
var neededEntries = [];
|
var neededEntries = [];
|
||||||
var order = 0;
|
var order = 0;
|
||||||
|
@ -311,6 +291,8 @@ Pad.prototype.getLastChatMessages = function getLastChatMessages(count, callback
|
||||||
order++;
|
order++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var _this = this;
|
||||||
|
|
||||||
//get all entries out of the database
|
//get all entries out of the database
|
||||||
var entries = [];
|
var entries = [];
|
||||||
async.forEach(neededEntries, function(entryObject, callback)
|
async.forEach(neededEntries, function(entryObject, callback)
|
||||||
|
|
|
@ -205,6 +205,8 @@ exports.handleMessage = function(client, message)
|
||||||
handleUserInfoUpdate(client, message);
|
handleUserInfoUpdate(client, message);
|
||||||
} else if (message.data.type == "CHAT_MESSAGE") {
|
} else if (message.data.type == "CHAT_MESSAGE") {
|
||||||
handleChatMessage(client, message);
|
handleChatMessage(client, message);
|
||||||
|
} else if (message.data.type == "GET_CHAT_MESSAGES") {
|
||||||
|
handleGetChatMessages(client, message);
|
||||||
} else if (message.data.type == "SAVE_REVISION") {
|
} else if (message.data.type == "SAVE_REVISION") {
|
||||||
handleSaveRevisionMessage(client, message);
|
handleSaveRevisionMessage(client, message);
|
||||||
} else if (message.data.type == "CLIENT_MESSAGE" &&
|
} else if (message.data.type == "CLIENT_MESSAGE" &&
|
||||||
|
@ -362,6 +364,74 @@ function handleChatMessage(client, message)
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handles the clients requets for more chat-messages
|
||||||
|
* @param client the client that send this message
|
||||||
|
* @param message the message from the client
|
||||||
|
*/
|
||||||
|
function handleGetChatMessages(client, message)
|
||||||
|
{
|
||||||
|
if(message.data.start == null)
|
||||||
|
{
|
||||||
|
messageLogger.warn("Dropped message, GetChatMessages Message has no start!");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if(message.data.end == null)
|
||||||
|
{
|
||||||
|
messageLogger.warn("Dropped message, GetChatMessages Message has no start!");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var start = message.data.start;
|
||||||
|
var end = message.data.end;
|
||||||
|
var count = start - count;
|
||||||
|
|
||||||
|
if(count < 0 && count > 100)
|
||||||
|
{
|
||||||
|
messageLogger.warn("Dropped message, GetChatMessages Message, client requested invalid amout of messages!");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var padId = sessioninfos[client.id].padId;
|
||||||
|
var pad;
|
||||||
|
|
||||||
|
async.series([
|
||||||
|
//get the pad
|
||||||
|
function(callback)
|
||||||
|
{
|
||||||
|
padManager.getPad(padId, function(err, _pad)
|
||||||
|
{
|
||||||
|
if(ERR(err, callback)) return;
|
||||||
|
pad = _pad;
|
||||||
|
callback();
|
||||||
|
});
|
||||||
|
},
|
||||||
|
function(callback)
|
||||||
|
{
|
||||||
|
pad.getChatMessages(start, end, function(err, chatMessages)
|
||||||
|
{
|
||||||
|
if(ERR(err, callback)) return;
|
||||||
|
|
||||||
|
var infoMsg = {
|
||||||
|
type: "COLLABROOM",
|
||||||
|
data: {
|
||||||
|
type: "CHAT_MESSAGES",
|
||||||
|
messages: chatMessages
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// send the messages back to the client
|
||||||
|
for(var i in pad2sessions[padId])
|
||||||
|
{
|
||||||
|
if(pad2sessions[padId][i] == client.id)
|
||||||
|
{
|
||||||
|
socketio.sockets.sockets[pad2sessions[padId][i]].json.send(infoMsg);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}]);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handles a handleSuggestUserName, that means a user have suggest a userName for a other user
|
* Handles a handleSuggestUserName, that means a user have suggest a userName for a other user
|
||||||
|
@ -778,7 +848,6 @@ function handleClientReady(client, message)
|
||||||
var pad;
|
var pad;
|
||||||
var historicalAuthorData = {};
|
var historicalAuthorData = {};
|
||||||
var currentTime;
|
var currentTime;
|
||||||
var chatMessages;
|
|
||||||
var padIds;
|
var padIds;
|
||||||
|
|
||||||
async.series([
|
async.series([
|
||||||
|
@ -852,7 +921,7 @@ function handleClientReady(client, message)
|
||||||
}
|
}
|
||||||
], callback);
|
], callback);
|
||||||
},
|
},
|
||||||
//these db requests all need the pad object (timestamp of latest revission, author data, chat messages)
|
//these db requests all need the pad object (timestamp of latest revission, author data)
|
||||||
function(callback)
|
function(callback)
|
||||||
{
|
{
|
||||||
var authors = pad.getAllAuthors();
|
var authors = pad.getAllAuthors();
|
||||||
|
@ -881,16 +950,6 @@ function handleClientReady(client, message)
|
||||||
callback();
|
callback();
|
||||||
});
|
});
|
||||||
}, callback);
|
}, callback);
|
||||||
},
|
|
||||||
//get the latest chat messages
|
|
||||||
function(callback)
|
|
||||||
{
|
|
||||||
pad.getLastChatMessages(100, function(err, _chatMessages)
|
|
||||||
{
|
|
||||||
if(ERR(err, callback)) return;
|
|
||||||
chatMessages = _chatMessages;
|
|
||||||
callback();
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
], callback);
|
], callback);
|
||||||
|
|
||||||
|
@ -968,7 +1027,9 @@ function handleClientReady(client, message)
|
||||||
"padId": message.padId,
|
"padId": message.padId,
|
||||||
"initialTitle": "Pad: " + message.padId,
|
"initialTitle": "Pad: " + message.padId,
|
||||||
"opts": {},
|
"opts": {},
|
||||||
"chatHistory": chatMessages,
|
// tell the client the number of the latest chat-message, which will be
|
||||||
|
// used to request the latest 100 chat-messages later (GET_CHAT_MESSAGES)
|
||||||
|
"chatHead": pad.chatHead,
|
||||||
"numConnectedUsers": pad2sessions[padIds.padId].length,
|
"numConnectedUsers": pad2sessions[padIds.padId].length,
|
||||||
"isProPad": false,
|
"isProPad": false,
|
||||||
"readOnlyId": padIds.readOnlyPadId,
|
"readOnlyId": padIds.readOnlyPadId,
|
||||||
|
|
|
@ -28,6 +28,7 @@ var Tinycon = require('tinycon/tinycon');
|
||||||
var chat = (function()
|
var chat = (function()
|
||||||
{
|
{
|
||||||
var isStuck = false;
|
var isStuck = false;
|
||||||
|
var gotInitialMessages = false;
|
||||||
var chatMentions = 0;
|
var chatMentions = 0;
|
||||||
var self = {
|
var self = {
|
||||||
show: function ()
|
show: function ()
|
||||||
|
@ -76,7 +77,7 @@ var chat = (function()
|
||||||
this._pad.collabClient.sendMessage({"type": "CHAT_MESSAGE", "text": text});
|
this._pad.collabClient.sendMessage({"type": "CHAT_MESSAGE", "text": text});
|
||||||
$("#chatinput").val("");
|
$("#chatinput").val("");
|
||||||
},
|
},
|
||||||
addMessage: function(msg, increment)
|
addMessage: function(msg, increment, isHistoryAdd)
|
||||||
{
|
{
|
||||||
//correct the time
|
//correct the time
|
||||||
msg.time += this._pad.clientTimeOffset;
|
msg.time += this._pad.clientTimeOffset;
|
||||||
|
@ -112,7 +113,10 @@ var chat = (function()
|
||||||
var authorName = msg.userName == null ? _('pad.userlist.unnamed') : padutils.escapeHtml(msg.userName);
|
var authorName = msg.userName == null ? _('pad.userlist.unnamed') : padutils.escapeHtml(msg.userName);
|
||||||
|
|
||||||
var html = "<p class='" + authorClass + "'><b>" + authorName + ":</b><span class='time " + authorClass + "'>" + timeStr + "</span> " + text + "</p>";
|
var html = "<p class='" + authorClass + "'><b>" + authorName + ":</b><span class='time " + authorClass + "'>" + timeStr + "</span> " + text + "</p>";
|
||||||
$("#chattext").append(html);
|
if(isHistoryAdd)
|
||||||
|
$("#chattext").prepend(html);
|
||||||
|
else
|
||||||
|
$("#chattext").append(html);
|
||||||
|
|
||||||
//should we increment the counter??
|
//should we increment the counter??
|
||||||
if(increment)
|
if(increment)
|
||||||
|
@ -125,7 +129,7 @@ var chat = (function()
|
||||||
|
|
||||||
$("#chatcounter").text(count);
|
$("#chatcounter").text(count);
|
||||||
// chat throb stuff -- Just make it throw for twice as long
|
// chat throb stuff -- Just make it throw for twice as long
|
||||||
if(wasMentioned && !alreadyFocused)
|
if(wasMentioned && !alreadyFocused && !isHistoryAdd)
|
||||||
{ // If the user was mentioned show for twice as long and flash the browser window
|
{ // If the user was mentioned show for twice as long and flash the browser window
|
||||||
$('#chatthrob').html("<b>"+authorName+"</b>" + ": " + text).show().delay(4000).hide(400);
|
$('#chatthrob').html("<b>"+authorName+"</b>" + ": " + text).show().delay(4000).hide(400);
|
||||||
chatMentions++;
|
chatMentions++;
|
||||||
|
@ -141,8 +145,8 @@ var chat = (function()
|
||||||
chatMentions = 0;
|
chatMentions = 0;
|
||||||
Tinycon.setBubble(0);
|
Tinycon.setBubble(0);
|
||||||
});
|
});
|
||||||
self.scrollDown();
|
if(!isHistoryAdd)
|
||||||
|
self.scrollDown();
|
||||||
},
|
},
|
||||||
init: function(pad)
|
init: function(pad)
|
||||||
{
|
{
|
||||||
|
@ -157,12 +161,9 @@ var chat = (function()
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
var that = this;
|
// initial messages are loaded in pad.js' _afterHandshake
|
||||||
$.each(clientVars.chatHistory, function(i, o){
|
|
||||||
that.addMessage(o, false);
|
|
||||||
})
|
|
||||||
|
|
||||||
$("#chatcounter").text(clientVars.chatHistory.length);
|
$("#chatcounter").text(0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -400,7 +400,19 @@ function getCollabClient(ace2editor, serverVars, initialUserInfo, options, _pad)
|
||||||
}
|
}
|
||||||
else if (msg.type == "CHAT_MESSAGE")
|
else if (msg.type == "CHAT_MESSAGE")
|
||||||
{
|
{
|
||||||
chat.addMessage(msg, true);
|
chat.addMessage(msg, true, false);
|
||||||
|
}
|
||||||
|
else if (msg.type == "CHAT_MESSAGES")
|
||||||
|
{
|
||||||
|
for(var i = msg.messages.length - 1; i >= 0; i--)
|
||||||
|
{
|
||||||
|
chat.addMessage(msg.messages[i], true, true);
|
||||||
|
}
|
||||||
|
if(!chat.gotInitalMessages)
|
||||||
|
{
|
||||||
|
chat.scrollDown();
|
||||||
|
chat.gotInitalMessages = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else if (msg.type == "SERVER_MESSAGE")
|
else if (msg.type == "SERVER_MESSAGE")
|
||||||
{
|
{
|
||||||
|
|
|
@ -555,6 +555,11 @@ var pad = {
|
||||||
pad.collabClient.setOnChannelStateChange(pad.handleChannelStateChange);
|
pad.collabClient.setOnChannelStateChange(pad.handleChannelStateChange);
|
||||||
pad.collabClient.setOnInternalAction(pad.handleCollabAction);
|
pad.collabClient.setOnInternalAction(pad.handleCollabAction);
|
||||||
|
|
||||||
|
// load initial chat-messages
|
||||||
|
var chatHead = clientVars.chatHead;
|
||||||
|
var start = Math.max(chatHead - 100, 0);
|
||||||
|
pad.collabClient.sendMessage({"type": "GET_CHAT_MESSAGES", "start": start, "end": chatHead});
|
||||||
|
|
||||||
function postAceInit()
|
function postAceInit()
|
||||||
{
|
{
|
||||||
padeditbar.init();
|
padeditbar.init();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue