-
Notifications
You must be signed in to change notification settings - Fork 1
/
chat.js
318 lines (272 loc) · 9.35 KB
/
chat.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
var sess;
var currentUsername = 'guest';
var messageId = 0;
// Initialize on load
$(function() {
$('#error-modal').modal({ show: false, backdrop: 'static', keyboard: false });
if (! hasWebsockets()) {
$('#error-modal .reason').html(
"Sorry, your browser does not support WebSockets.<br>" +
"This demo will not work for you."
);
$('#error-modal').modal('show');
return;
}
// Connect to WebSocket
ab.connect(
WS_URI,
// Connection callback
function (session) {
sess = session;
console.log("Connected to " + WS_URI, sess.sessionid());
$('#error-modal').modal('hide');
// Authenticate
var username = 'guest';
var password = 'secret-password';
// send authreq rpc call
sess.authreq(username).then(
function (challenge) {
console.log("Received auth challenge", challenge);
var signature = sess.authsign(password, challenge);
// send auth rpc call
sess.auth(signature).then(
function(permissions) {
console.log("Authentication complete", permissions);
sess.prefix("event", "http://clj-wamp-example/event#"); // Add a CURI prefix
sess.subscribe("event:chat", onEvent); // Subscribe to chat channel
// Enable below to show the change username modal upon connection
//setTimeout(function () { $('#change-username-modal').modal('show'); }, 500);
},
function() { console.log("Authentication failed"); });
},
function() { console.log("AuthRequest failed"); });
},
// Disconnection callback
function (code, reason) {
sess = null;
console.log("Connection lost (" + reason + ")");
$('#change-username-modal').modal('hide');
if (code != 0) { // ignore app disconnects
$('#error-modal .reason').text(reason);
$('#error-modal').modal('show');
}
},
// Options
{'maxRetries': 60, 'retryDelay': 30000}
);
// Message submit form handler
$('#send-message-form').submit(function (e) {
var $msgInput = $('#message-input'),
chatMsg = $msgInput.val();
if (chatMsg.length > 0) {
// Publish a chat message
var event = { type: 'message', message: chatMsg };
console.log("event:chat SND", event);
sess.publish("event:chat", event);
}
$msgInput.val(''); // Clear message after sending
return false; // Cancel form submit
});
// Change username form/modal
$('#change-username-form').submit(function(e) {
changeUsername($('#username').val());
$('#change-username-modal').modal('hide');
return false; // Cancel form submit
});
$('#change-username-modal')
.modal({show: false})
.on('hidden', function() {
$('#message-input').focus();
})
.on('show', function() {
$('#username').val(currentUsername);
})
.on('shown', function() {
$('#username').focus().select();
});
// System messages toggle
$('#hide-system-msgs-btn').button().click(toggleSystemMessages);
toggleSystemMessages();
});
// Handle WebSocket/WAMP Events
function onEvent(topic, event) {
console.log("event:chat RCV", event);
switch (event.type) {
case 'message':
notifyChatMessage(event.clientId, event.username, event.message);
break;
case 'user-joined':
addUser(event.clientId, event.username);
notifyJoined(event.username);
break;
case 'user-left':
delUser(event.clientId);
notifyUserLeft(event.username);
break;
case 'user-list':
resetUserList(event.users);
break;
case 'username':
delUser(event.clientId);
addUser(event.clientId, event.newUsername);
notifyUsernameChanged(event.oldUsername, event.newUsername);
break;
}
}
// Chat Messaging
function addMessage(mid, msgStr) {
var $msgWrap = $('#messages-wrap');
// Get scroll position prior to adding elements.
// Only keep chat scrolled to bottom when already scrolled to bottom.
var scrollDiff = getScrollDiff($msgWrap);
var messages = $('#messages').append(msgStr);
// Trigger the CSS3 transition
setTimeout(function() { $('#msg-' + mid).removeClass('new') }, 1);
// Don't scroll if user has backscrolled (might be reading)
if (scrollDiff < 5) { // 5px threshold
scrollToBottom($msgWrap);
}
}
function notifyChatMessage(clientId, username, message) {
var mid = messageId++;
var type = "user";
if (clientId === sess.sessionid()) {
type = "self";
} else if (clientId == 0) {
type = "admin";
}
addMessage(mid,
formatTemplate('message-template', {
"id": "msg-" + mid,
"username": username,
"time": getTimeFmt(),
"message": message,
"type": type
}));
}
// User List Management
function addUser(clientId, username) {
var templateId = (clientId === sess.sessionid())
? "user-self-template" : "user-template";
var users = $('#users').append(
formatTemplate(templateId, {
"clientId": clientId,
"username": username,
"type": (clientId === sess.sessionid()) ? "self" : "user"
}));
sortUsers();
var $newUserEle = $('#user-' + clientId);
// Trigger the CSS3 transition
setTimeout(function() { $newUserEle.removeClass('new'); }, 1);
if (clientId === sess.sessionid()) {
currentUsername = username;
$newUserEle.click(function(e) {
$('#change-username-modal').modal('show');
});
$newUserEle.css('cursor','pointer');
}
}
function sortUsers() {
var tmpArr = $('#users li');
$(tmpArr).detach();
tmpArr.sort(function(a, b) {
a = $('.label', a).text().toLowerCase();
b = $('.label', b).text().toLowerCase();
if (a < b) {
return -1;
} else if (a > b) {
return 1;
} else {
return 0;
}
});
$('#users').append(tmpArr);
}
function notifyJoined(username) {
var message = escapeHtml(username) + " has joined the channel";
var mid = messageId++;
addMessage(mid,
formatTemplate('system-message-template', {
"id": "msg-" + mid,
"time": getTimeFmt(),
"message": message
}));
}
function delUser(clientId) {
$('#user-' + clientId).remove();
}
function notifyUserLeft(username) {
var message = escapeHtml(username) + " has left the channel";
var mid = messageId++;
addMessage(mid,
formatTemplate('system-message-template', {
"id": "msg-" + mid,
"time": getTimeFmt(),
"message": message
}));
}
function resetUserList(users) {
$('#users').empty();
for (var i=0; i < users.length; i++) {
addUser(users[i].clientId, users[i].username);
}
}
// Username Changes
function changeUsername(newUsername) {
if (newUsername != currentUsername) {
var event = { type: 'username', newUsername: newUsername };
console.log("event:chat SND", event);
sess.publish("event:chat", event);
}
}
function notifyUsernameChanged(oldUsername, newUsername) {
var message = escapeHtml(oldUsername) + " has changed username to: " + escapeHtml(newUsername);
var mid = messageId++;
addMessage(mid,
formatTemplate('system-message-template', {
"id": "msg-" + mid,
"time": getTimeFmt(),
"message": message
}));
}
// Utilities
function getTimeFmt() {
return new Date().toTimeString().replace(/.*(\d{2}:\d{2}):\d{2}.*/, "$1");
}
function escapeHtml(str) {
return $('<div/>').text(str).html();
}
function getScrollDiff(div) {
return $(div)[0].scrollHeight - $(div).height() - $(div).scrollTop();
}
function scrollToBottom(div) {
$(div).scrollTop($(div)[0].scrollHeight);
}
function formatTemplate(templateId, varMap) {
var template = $('#' + templateId).html();
return template.replace(/\${(.+?)}/g, function(match, key) {
return (key in varMap) ? escapeHtml(varMap[key]) : '';
});
}
function toggleSystemMessages() {
var styleFilter = $('#filter-system-msgs-style');
var disabled = styleFilter[0].disabled = !(styleFilter[0].disabled);
if (disabled) {
scrollToBottom($('#messages-wrap'));
}
}
// Thanks to Modernizr
// https://github.com/Modernizr/Modernizr/blob/master/feature-detects/websockets/binary.js
function hasWebsockets() {
var protocol = 'https:'==location.protocol?'wss':'ws',
protoBin;
if("WebSocket" in window) {
if( protoBin = "binaryType" in WebSocket.prototype ) {
return protoBin;
}
try {
return !!(new WebSocket(protocol+'://.').binaryType);
} catch (e){}
}
return false;
}