2012-07-22 16:44:01 +02:00
|
|
|
/*!
|
2012-07-22 20:43:18 +02:00
|
|
|
* Converse.js (XMPP-based instant messaging with Strophe.js and backbone.js)
|
2012-07-22 16:44:01 +02:00
|
|
|
* http://opkode.com
|
|
|
|
*
|
|
|
|
* Copyright (c) 2012 Jan-Carel Brand
|
|
|
|
* Dual licensed under the MIT and GPL Licenses
|
|
|
|
*/
|
|
|
|
|
2012-06-23 14:26:04 +02:00
|
|
|
var xmppchat = (function (jarnxmpp, $, console) {
|
|
|
|
var ob = jarnxmpp;
|
2012-07-22 16:44:01 +02:00
|
|
|
ob.messages = {};
|
|
|
|
ob.messages.ClientStorage = (function () {
|
2012-07-14 06:46:46 +02:00
|
|
|
// TODO: Messages must be encrypted with a key and salt
|
2012-07-01 12:03:43 +02:00
|
|
|
methods = {};
|
|
|
|
|
|
|
|
methods.addMessage = function (jid, msg, direction) {
|
|
|
|
var bare_jid = Strophe.getBareJidFromJid(jid),
|
|
|
|
now = new Date().toISOString(),
|
|
|
|
msgs = store.get(bare_jid) || [];
|
|
|
|
if (msgs.length >= 30) {
|
2012-07-01 19:48:18 +02:00
|
|
|
msgs.shift();
|
2012-07-01 12:03:43 +02:00
|
|
|
}
|
|
|
|
msgs.push(now+' '+direction+' '+msg);
|
|
|
|
store.set(bare_jid, msgs);
|
|
|
|
};
|
|
|
|
|
|
|
|
methods.getMessages = function (jid) {
|
|
|
|
return store.get(jid) || [];
|
|
|
|
};
|
|
|
|
return methods;
|
|
|
|
})();
|
|
|
|
|
2012-07-22 16:44:01 +02:00
|
|
|
ob.messages.getMessages = function (jid, callback) {
|
2012-07-01 12:03:43 +02:00
|
|
|
var bare_jid = Strophe.getBareJidFromJid(jid),
|
|
|
|
msgs = this.ClientStorage.getMessages(bare_jid);
|
|
|
|
callback(msgs);
|
|
|
|
};
|
|
|
|
|
2012-07-22 16:44:01 +02:00
|
|
|
ob.collections = {
|
2012-07-22 20:43:18 +02:00
|
|
|
/* FIXME: XEP-0136 specifies 'urn:xmpp:archive' but the mod_archive_odbc
|
|
|
|
* add-on for ejabberd wants the URL below. This might break for other
|
|
|
|
* Jabber servers.
|
|
|
|
*/
|
2012-07-22 16:44:01 +02:00
|
|
|
'URI': 'http://www.xmpp.org/extensions/xep-0136.html#ns'
|
|
|
|
};
|
|
|
|
ob.collections.getLastCollection = function (jid, callback) {
|
2012-06-24 13:16:19 +02:00
|
|
|
var bare_jid = Strophe.getBareJidFromJid(jid),
|
|
|
|
iq = $iq({'type':'get'})
|
|
|
|
.c('list', {'xmlns': this.URI,
|
|
|
|
'with': bare_jid
|
2012-06-23 14:26:04 +02:00
|
|
|
})
|
|
|
|
.c('set', {'xmlns': 'http://jabber.org/protocol/rsm'})
|
2012-06-24 13:16:19 +02:00
|
|
|
.c('before').up()
|
2012-06-23 14:26:04 +02:00
|
|
|
.c('max')
|
2012-06-24 13:16:19 +02:00
|
|
|
.t('1');
|
|
|
|
|
|
|
|
xmppchat.connection.sendIQ(iq,
|
|
|
|
callback,
|
|
|
|
function () {
|
|
|
|
console.log('Error while retrieving collections');
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2012-07-22 16:44:01 +02:00
|
|
|
ob.collections.getLastMessages = function (jid, callback) {
|
2012-06-24 13:16:19 +02:00
|
|
|
var that = this;
|
|
|
|
this.getLastCollection(jid, function (result) {
|
2012-06-25 09:28:24 +02:00
|
|
|
// Retrieve the last page of a collection (max 30 elements).
|
2012-06-24 13:16:19 +02:00
|
|
|
var $collection = $(result).find('chat'),
|
|
|
|
jid = $collection.attr('with'),
|
|
|
|
start = $collection.attr('start'),
|
|
|
|
iq = $iq({'type':'get'})
|
|
|
|
.c('retrieve', {'start': start,
|
|
|
|
'xmlns': that.URI,
|
|
|
|
'with': jid
|
|
|
|
})
|
|
|
|
.c('set', {'xmlns': 'http://jabber.org/protocol/rsm'})
|
|
|
|
.c('max')
|
|
|
|
.t('30');
|
2012-06-25 09:28:24 +02:00
|
|
|
xmppchat.connection.sendIQ(iq, callback);
|
2012-06-24 13:16:19 +02:00
|
|
|
});
|
2012-06-23 14:26:04 +02:00
|
|
|
};
|
|
|
|
return ob;
|
|
|
|
})(jarnxmpp || {}, jQuery, console || {log: function(){}});
|
|
|
|
|
2012-07-08 12:27:13 +02:00
|
|
|
|
2012-07-08 22:18:49 +02:00
|
|
|
xmppchat.ChatBox = Backbone.Model.extend({
|
2012-07-09 18:47:50 +02:00
|
|
|
|
|
|
|
hash: function (str) {
|
|
|
|
var shaobj = new jsSHA(str);
|
|
|
|
return shaobj.getHash("HEX");
|
|
|
|
},
|
|
|
|
|
|
|
|
initialize: function () {
|
|
|
|
this.set({
|
|
|
|
'user_id' : Strophe.getNodeFromJid(this.get('jid')),
|
2012-09-13 14:19:19 +02:00
|
|
|
'box_id' : this.hash(this.get('jid')),
|
|
|
|
'fullname' : this.get('fullname')
|
2012-07-09 18:47:50 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
xmppchat.ChatBoxView = Backbone.View.extend({
|
2012-07-21 17:58:07 +02:00
|
|
|
length: 200,
|
2012-07-09 22:22:08 +02:00
|
|
|
tagName: 'div',
|
|
|
|
className: 'chatbox',
|
|
|
|
|
|
|
|
events: {
|
2012-07-11 23:47:49 +02:00
|
|
|
'click .close-chatbox-button': 'closeChat',
|
|
|
|
'keypress textarea.chat-textarea': 'keyPressed'
|
|
|
|
},
|
|
|
|
|
2012-07-12 23:57:04 +02:00
|
|
|
message_template: _.template(
|
|
|
|
'<div class="chat-message <%=extra_classes%>">' +
|
|
|
|
'<span class="chat-message-<%=sender%>"><%=time%> <%=username%>: </span>' +
|
|
|
|
'<span class="chat-message-content"><%=message%></span>' +
|
|
|
|
'</div>'),
|
|
|
|
|
2012-07-28 23:28:32 +02:00
|
|
|
action_template: _.template(
|
|
|
|
'<div class="chat-message <%=extra_classes%>">' +
|
|
|
|
'<span class="chat-message-<%=sender%>"><%=time%>: </span>' +
|
|
|
|
'<span class="chat-message-content"><%=message%></span>' +
|
|
|
|
'</div>'),
|
|
|
|
|
2012-07-11 23:47:49 +02:00
|
|
|
appendMessage: function (message) {
|
|
|
|
var time,
|
|
|
|
now = new Date(),
|
|
|
|
minutes = now.getMinutes().toString(),
|
|
|
|
list,
|
2012-07-28 23:28:32 +02:00
|
|
|
$chat_content,
|
|
|
|
match;
|
|
|
|
message = message.replace(/</g,"<").replace(/>/g,">").replace(/\"/g,""").replace(/^\s*/, "");
|
2012-07-11 23:47:49 +02:00
|
|
|
list = message.match(/\b(http:\/\/www\.\S+\.\w+|www\.\S+\.\w+|http:\/\/(?=[^w]){3}\S+[\.:]\S+)[^ ]+\b/g);
|
|
|
|
if (list) {
|
|
|
|
for (i = 0; i < list.length; i++) {
|
2012-07-12 23:57:04 +02:00
|
|
|
message = message.replace(list[i], "<a target='_blank' href='" + escape( list[i] ) + "'>"+ list[i] + "</a>" );
|
2012-07-11 23:47:49 +02:00
|
|
|
}
|
|
|
|
}
|
2012-07-28 23:28:32 +02:00
|
|
|
|
2012-07-11 23:47:49 +02:00
|
|
|
if (minutes.length==1) {minutes = '0'+minutes;}
|
|
|
|
time = now.toLocaleTimeString().substring(0,5);
|
|
|
|
$chat_content = $(this.el).find('.chat-content');
|
2012-07-22 20:43:18 +02:00
|
|
|
$chat_content.find('div.chat-event').remove();
|
2012-07-28 23:28:32 +02:00
|
|
|
|
|
|
|
match = message.match(/^\/(.*?)(?: (.*))?$/);
|
|
|
|
if ((match) && (match[1] === 'me')) {
|
|
|
|
message = message.replace(/^\/me/, '*'+xmppchat.username);
|
|
|
|
$chat_content.append(this.action_template({
|
|
|
|
'sender': 'me',
|
|
|
|
'time': time,
|
|
|
|
'message': message,
|
|
|
|
'username': xmppchat.username,
|
|
|
|
'extra_classes': ''
|
|
|
|
}));
|
|
|
|
} else {
|
|
|
|
$chat_content.append(this.message_template({
|
|
|
|
'sender': 'me',
|
|
|
|
'time': time,
|
|
|
|
'message': message,
|
|
|
|
'username': 'me',
|
|
|
|
'extra_classes': ''
|
|
|
|
}));
|
|
|
|
}
|
2012-07-11 23:47:49 +02:00
|
|
|
$chat_content.scrollTop($chat_content[0].scrollHeight);
|
|
|
|
},
|
|
|
|
|
2012-07-26 00:31:58 +02:00
|
|
|
insertStatusNotification: function (user_id, message) {
|
2012-07-14 08:05:25 +02:00
|
|
|
var $chat_content = this.$el.find('.chat-content');
|
|
|
|
$chat_content.find('div.chat-event').remove().end()
|
2012-07-26 00:31:58 +02:00
|
|
|
.append($('<div class="chat-event"></div>').text(user_id+' '+message));
|
2012-07-14 08:05:25 +02:00
|
|
|
$chat_content.scrollTop($chat_content[0].scrollHeight);
|
|
|
|
},
|
|
|
|
|
2012-07-11 23:47:49 +02:00
|
|
|
messageReceived: function (message) {
|
|
|
|
/* XXX: event.mtype should be 'xhtml' for XHTML-IM messages,
|
|
|
|
but I only seem to get 'text'.
|
|
|
|
*/
|
|
|
|
var body = $(message).children('body').text(),
|
|
|
|
jid = $(message).attr('from'),
|
|
|
|
composing = $(message).find('composing'),
|
|
|
|
$chat_content = $(this.el).find('.chat-content'),
|
2012-09-13 15:58:31 +02:00
|
|
|
user_id = Strophe.getNodeFromJid(jid),
|
2012-09-13 17:42:11 +02:00
|
|
|
delayed = $(message).find('delay').length > 0,
|
2012-09-13 15:58:31 +02:00
|
|
|
fullname = this.model.get('fullname');
|
2012-07-11 23:47:49 +02:00
|
|
|
|
2012-07-22 16:44:01 +02:00
|
|
|
if (xmppchat.xmppstatus.getOwnStatus() === 'offline') {
|
|
|
|
// only update the UI if the user is not offline
|
|
|
|
return;
|
|
|
|
}
|
2012-07-11 23:47:49 +02:00
|
|
|
if (!body) {
|
|
|
|
if (composing.length > 0) {
|
2012-09-13 17:42:11 +02:00
|
|
|
this.insertStatusNotification(fullname, 'is typing');
|
2012-07-14 08:05:25 +02:00
|
|
|
return;
|
2012-07-11 23:47:49 +02:00
|
|
|
}
|
|
|
|
} else {
|
2012-07-22 16:44:01 +02:00
|
|
|
xmppchat.messages.ClientStorage.addMessage(jid, body, 'from');
|
2012-07-11 23:47:49 +02:00
|
|
|
$chat_content.find('div.chat-event').remove();
|
2012-09-13 17:42:11 +02:00
|
|
|
if (delayed) {
|
|
|
|
// XXX: Test properly
|
|
|
|
stamp = $(message).find('delay').attr('stamp');
|
|
|
|
time = (new Date(stamp)).toLocaleTimeString().substring(0,5);
|
|
|
|
} else {
|
|
|
|
time = (new Date()).toLocaleTimeString().substring(0,5);
|
|
|
|
}
|
2012-07-28 23:28:32 +02:00
|
|
|
match = body.match(/^\/(.*?)(?: (.*))?$/);
|
|
|
|
if ((match) && (match[1] === 'me')) {
|
|
|
|
$chat_content.append(this.action_template({
|
|
|
|
'sender': 'them',
|
2012-09-13 17:42:11 +02:00
|
|
|
'time': time,
|
2012-07-28 23:28:32 +02:00
|
|
|
'message': body.replace(/^\/me/, '*'+user_id).replace(/<br \/>/g, ""),
|
|
|
|
'username': xmppchat.username,
|
2012-09-13 17:42:11 +02:00
|
|
|
'extra_classes': delayed && 'delayed' || ''
|
2012-07-28 23:28:32 +02:00
|
|
|
}));
|
|
|
|
} else {
|
|
|
|
$chat_content.append(
|
|
|
|
this.message_template({
|
|
|
|
'sender': 'them',
|
2012-09-13 17:42:11 +02:00
|
|
|
'time': time,
|
2012-07-28 23:28:32 +02:00
|
|
|
'message': body.replace(/<br \/>/g, ""),
|
2012-09-13 15:58:31 +02:00
|
|
|
'username': fullname,
|
2012-09-13 17:42:11 +02:00
|
|
|
'extra_classes': delayed && 'delayed' || ''
|
2012-07-28 23:28:32 +02:00
|
|
|
}));
|
|
|
|
}
|
2012-07-14 08:05:25 +02:00
|
|
|
$chat_content.scrollTop($chat_content[0].scrollHeight);
|
2012-07-11 23:47:49 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2012-07-12 23:57:04 +02:00
|
|
|
insertClientStoredMessages: function () {
|
2012-07-28 23:28:32 +02:00
|
|
|
xmppchat.messages.getMessages(this.model.get('jid'), $.proxy(function (msgs) {
|
|
|
|
var $content = this.$el.find('.chat-content');
|
2012-07-12 23:57:04 +02:00
|
|
|
for (var i=0; i<_.size(msgs); i++) {
|
|
|
|
var msg = msgs[i],
|
|
|
|
msg_array = msg.split(' ', 2),
|
2012-07-28 23:28:32 +02:00
|
|
|
date = msg_array[0],
|
|
|
|
match;
|
|
|
|
msg = String(msg).replace(/(.*?\s.*?\s)/, '');
|
|
|
|
match = msg.match(/^\/(.*?)(?: (.*))?$/);
|
2012-07-12 23:57:04 +02:00
|
|
|
if (msg_array[1] == 'to') {
|
2012-07-28 23:28:32 +02:00
|
|
|
if ((match) && (match[1] === 'me')) {
|
|
|
|
$content.append(
|
|
|
|
this.action_template({
|
|
|
|
'sender': 'me',
|
|
|
|
'time': new Date(Date.parse(date)).toLocaleTimeString().substring(0,5),
|
|
|
|
'message': msg.replace(/^\/me/, '*'+xmppchat.username),
|
|
|
|
'username': xmppchat.username,
|
|
|
|
'extra_classes': 'delayed'
|
|
|
|
}));
|
|
|
|
} else {
|
|
|
|
$content.append(
|
|
|
|
this.message_template({
|
2012-07-12 23:57:04 +02:00
|
|
|
'sender': 'me',
|
|
|
|
'time': new Date(Date.parse(date)).toLocaleTimeString().substring(0,5),
|
2012-07-28 23:28:32 +02:00
|
|
|
'message': msg,
|
2012-07-12 23:57:04 +02:00
|
|
|
'username': 'me',
|
|
|
|
'extra_classes': 'delayed'
|
2012-07-28 23:28:32 +02:00
|
|
|
}));
|
|
|
|
}
|
2012-07-12 23:57:04 +02:00
|
|
|
} else {
|
2012-07-28 23:28:32 +02:00
|
|
|
if ((match) && (match[1] === 'me')) {
|
|
|
|
$content.append(
|
|
|
|
this.action_template({
|
2012-07-12 23:57:04 +02:00
|
|
|
'sender': 'them',
|
|
|
|
'time': new Date(Date.parse(date)).toLocaleTimeString().substring(0,5),
|
2012-07-28 23:28:32 +02:00
|
|
|
'message': msg.replace(/^\/me/, '*'+this.model.get('user_id')),
|
2012-09-13 15:58:31 +02:00
|
|
|
'username': this.model.get('fullname'),
|
2012-07-12 23:57:04 +02:00
|
|
|
'extra_classes': 'delayed'
|
|
|
|
}));
|
2012-07-28 23:28:32 +02:00
|
|
|
} else {
|
|
|
|
$content.append(
|
|
|
|
this.message_template({
|
|
|
|
'sender': 'them',
|
|
|
|
'time': new Date(Date.parse(date)).toLocaleTimeString().substring(0,5),
|
|
|
|
'message': msg,
|
2012-09-13 15:58:31 +02:00
|
|
|
'username': this.model.get('fullname'),
|
2012-07-28 23:28:32 +02:00
|
|
|
'extra_classes': 'delayed'
|
|
|
|
}));
|
|
|
|
}
|
2012-07-12 23:57:04 +02:00
|
|
|
}
|
|
|
|
}
|
2012-07-28 23:28:32 +02:00
|
|
|
}, this));
|
2012-07-12 23:57:04 +02:00
|
|
|
},
|
|
|
|
|
2012-07-11 23:47:49 +02:00
|
|
|
sendMessage: function (text) {
|
2012-07-12 23:57:04 +02:00
|
|
|
// TODO: Also send message to all my own connected resources, so that
|
|
|
|
// they can display it as well....
|
|
|
|
|
2012-07-11 23:47:49 +02:00
|
|
|
// TODO: Look in ChatPartners to see what resources we have for the recipient.
|
|
|
|
// if we have one resource, we sent to only that resources, if we have multiple
|
|
|
|
// we send to the bare jid.
|
|
|
|
var bare_jid = this.model.get('jid');
|
|
|
|
var message = $msg({to: bare_jid, type: 'chat'})
|
|
|
|
.c('body').t(text).up()
|
|
|
|
.c('active', {'xmlns': 'http://jabber.org/protocol/chatstates'});
|
|
|
|
xmppchat.connection.send(message);
|
2012-07-22 16:44:01 +02:00
|
|
|
xmppchat.messages.ClientStorage.addMessage(bare_jid, text, 'to');
|
2012-07-11 23:47:49 +02:00
|
|
|
this.appendMessage(text);
|
|
|
|
},
|
|
|
|
|
|
|
|
keyPressed: function (ev) {
|
|
|
|
var $textarea = $(ev.target),
|
|
|
|
message,
|
|
|
|
notify,
|
|
|
|
composing,
|
|
|
|
that = this;
|
|
|
|
|
|
|
|
if(ev.keyCode == 13) {
|
|
|
|
message = $textarea.val();
|
|
|
|
$textarea.val('').focus();
|
|
|
|
if (message !== '') {
|
|
|
|
this.sendMessage(message);
|
|
|
|
}
|
|
|
|
$(this.el).data('composing', false);
|
|
|
|
} else {
|
|
|
|
composing = $(this.el).data('composing');
|
|
|
|
if (!composing) {
|
|
|
|
notify = $msg({'to':this.model.get('jid'), 'type': 'chat'})
|
|
|
|
.c('composing', {'xmlns':'http://jabber.org/protocol/chatstates'});
|
|
|
|
xmppchat.connection.send(notify);
|
|
|
|
$(this.el).data('composing', true);
|
|
|
|
}
|
|
|
|
}
|
2012-07-09 22:22:08 +02:00
|
|
|
},
|
|
|
|
|
2012-07-11 16:16:17 +02:00
|
|
|
addChatToCookie: function () {
|
|
|
|
var cookie = jQuery.cookie('chats-open-'+xmppchat.username),
|
|
|
|
jid = this.model.get('jid'),
|
|
|
|
new_cookie,
|
|
|
|
open_chats = [];
|
|
|
|
|
|
|
|
if (cookie) {
|
|
|
|
open_chats = cookie.split('|');
|
|
|
|
}
|
|
|
|
if (!_.has(open_chats, jid)) {
|
|
|
|
// Update the cookie if this new chat is not yet in it.
|
|
|
|
open_chats.push(jid);
|
|
|
|
new_cookie = open_chats.join('|');
|
|
|
|
jQuery.cookie('chats-open-'+xmppchat.username, new_cookie, {path: '/'});
|
|
|
|
console.log('updated cookie = ' + new_cookie + '\n');
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
removeChatFromCookie: function () {
|
|
|
|
var cookie = jQuery.cookie('chats-open-'+xmppchat.username),
|
|
|
|
open_chats = [],
|
|
|
|
new_chats = [];
|
|
|
|
|
|
|
|
if (cookie) {
|
|
|
|
open_chats = cookie.split('|');
|
|
|
|
}
|
|
|
|
for (var i=0; i < open_chats.length; i++) {
|
|
|
|
if (open_chats[i] != this.model.get('jid')) {
|
|
|
|
new_chats.push(open_chats[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (new_chats.length) {
|
|
|
|
jQuery.cookie('chats-open-'+xmppchat.username, new_chats.join('|'), {path: '/'});
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
jQuery.cookie('chats-open-'+xmppchat.username, null, {path: '/'});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
closeChat: function () {
|
2012-07-09 22:22:08 +02:00
|
|
|
var that = this;
|
2012-07-21 18:39:32 +02:00
|
|
|
$('#'+this.model.get('box_id')).hide('fast', function () {
|
2012-07-11 16:16:17 +02:00
|
|
|
that.removeChatFromCookie(that.model.get('id'));
|
2012-07-09 22:22:08 +02:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2012-07-09 18:47:50 +02:00
|
|
|
initialize: function (){
|
|
|
|
$('body').append($(this.el).hide());
|
2012-07-14 08:05:25 +02:00
|
|
|
|
|
|
|
xmppchat.roster.on('change', function (item, changed) {
|
2012-07-28 16:29:54 +02:00
|
|
|
if (_.has(changed.changes, 'presence_type')) {
|
2012-07-14 08:05:25 +02:00
|
|
|
if (this.$el.is(':visible')) {
|
2012-07-28 16:29:54 +02:00
|
|
|
if (item.get('presence_type') === 'offline') {
|
2012-09-13 15:58:31 +02:00
|
|
|
this.insertStatusNotification(this.model.get('fullname'), 'has gone offline');
|
2012-07-28 16:29:54 +02:00
|
|
|
} else if (item.get('presence_type') === 'away') {
|
2012-09-13 15:58:31 +02:00
|
|
|
this.insertStatusNotification(this.model.get('fullname'), 'has gone away');
|
2012-07-28 16:29:54 +02:00
|
|
|
} else if ((item.get('presence_type') === 'busy') || (item.get('presence_type') === 'dnd')) {
|
2012-09-13 15:58:31 +02:00
|
|
|
this.insertStatusNotification(this.model.get('fullname'), 'is busy');
|
2012-07-28 16:29:54 +02:00
|
|
|
} else if (item.get('presence_type') === 'online') {
|
2012-07-14 08:05:25 +02:00
|
|
|
this.$el.find('div.chat-event').remove();
|
|
|
|
}
|
|
|
|
}
|
2012-07-28 22:46:14 +02:00
|
|
|
} else if (_.has(changed.changes, 'status')) {
|
2012-07-29 00:04:00 +02:00
|
|
|
if (item.get('jid') === this.model.get('jid')) {
|
|
|
|
this.$el.find('p.user-custom-message').text(item.get('status'));
|
|
|
|
}
|
2012-07-14 08:05:25 +02:00
|
|
|
}
|
|
|
|
}, this);
|
2012-07-09 18:47:50 +02:00
|
|
|
},
|
|
|
|
|
2012-07-21 17:58:07 +02:00
|
|
|
template: _.template(
|
|
|
|
'<div class="chat-head chat-head-chatbox">' +
|
2012-09-13 14:19:19 +02:00
|
|
|
'<div class="chat-title"> <%= fullname %> </div>' +
|
2012-07-09 18:47:50 +02:00
|
|
|
'<a href="javascript:void(0)" class="chatbox-button close-chatbox-button">X</a>' +
|
2012-07-22 22:08:19 +02:00
|
|
|
'<p class="user-custom-message"><p/>' +
|
2012-07-09 18:47:50 +02:00
|
|
|
'</div>' +
|
|
|
|
'<div class="chat-content"></div>' +
|
|
|
|
'<form class="sendXMPPMessage" action="" method="post">' +
|
|
|
|
'<textarea ' +
|
|
|
|
'type="text" ' +
|
|
|
|
'class="chat-textarea" ' +
|
2012-07-21 17:58:07 +02:00
|
|
|
'placeholder="Personal message"/>'+
|
|
|
|
'</form>'),
|
2012-07-09 18:47:50 +02:00
|
|
|
|
|
|
|
render: function () {
|
2012-07-21 18:39:32 +02:00
|
|
|
$(this.el).attr('id', this.model.get('box_id'));
|
2012-07-09 18:47:50 +02:00
|
|
|
$(this.el).html(this.template(this.model.toJSON()));
|
2012-07-12 23:57:04 +02:00
|
|
|
this.insertClientStoredMessages();
|
2012-07-09 18:47:50 +02:00
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
2012-07-09 22:22:08 +02:00
|
|
|
isVisible: function () {
|
|
|
|
return $(this.el).is(':visible');
|
|
|
|
},
|
|
|
|
|
|
|
|
focus: function () {
|
|
|
|
$(this.el).find('.chat-textarea').focus();
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
2012-07-11 16:16:17 +02:00
|
|
|
show: function () {
|
2012-07-26 00:31:58 +02:00
|
|
|
this.$el.css({'opacity': 0});
|
|
|
|
this.$el.css({'display': 'inline'});
|
|
|
|
this.$el.animate({
|
|
|
|
opacity: '1'
|
|
|
|
}, 200);
|
2012-07-09 22:22:08 +02:00
|
|
|
return this;
|
2012-07-12 23:57:04 +02:00
|
|
|
},
|
2012-07-11 16:16:17 +02:00
|
|
|
|
2012-07-12 23:57:04 +02:00
|
|
|
scrolldown: function () {
|
|
|
|
var $content = this.$el.find('.chat-content');
|
|
|
|
$content.scrollTop($content[0].scrollHeight);
|
|
|
|
}
|
2012-07-11 16:16:17 +02:00
|
|
|
});
|
|
|
|
|
2012-07-19 22:37:00 +02:00
|
|
|
xmppchat.ContactsPanel = Backbone.View.extend({
|
|
|
|
el: '#users',
|
2012-07-11 16:16:17 +02:00
|
|
|
events: {
|
2012-07-30 15:51:50 +02:00
|
|
|
'click a.add-xmpp-contact': 'toggleContactForm',
|
2012-07-15 13:10:11 +02:00
|
|
|
'submit form.search-xmpp-contact': 'searchContacts',
|
|
|
|
'click a.subscribe-to-user': 'subscribeToContact'
|
|
|
|
},
|
|
|
|
|
|
|
|
toggleContactForm: function (ev) {
|
|
|
|
ev.preventDefault();
|
|
|
|
this.$el.find('form.search-xmpp-contact').fadeToggle('medium').find('input.username').focus();
|
|
|
|
},
|
|
|
|
|
|
|
|
searchContacts: function (ev) {
|
|
|
|
ev.preventDefault();
|
|
|
|
$.getJSON(portal_url + "/search-users?q=" + $(ev.target).find('input.username').val(), function (data) {
|
|
|
|
var $results_el = $('#found-users');
|
|
|
|
$(data).each(function (idx, obj) {
|
|
|
|
if ($results_el.children().length > 0) {
|
|
|
|
$results_el.empty();
|
|
|
|
}
|
|
|
|
$results_el.append(
|
|
|
|
$('<li></li>')
|
|
|
|
.attr('id', 'found-users-'+obj.id)
|
|
|
|
.append(
|
|
|
|
$('<a class="subscribe-to-user" href="#" title="Click to add as a chat contact"></a>')
|
2012-09-13 14:19:19 +02:00
|
|
|
.attr('data-recipient', Strophe.escapeNode(obj.id)+'@'+xmppchat.connection.domain)
|
2012-07-15 13:10:11 +02:00
|
|
|
.text(obj.fullname)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
subscribeToContact: function (ev) {
|
|
|
|
ev.preventDefault();
|
2012-09-13 14:19:19 +02:00
|
|
|
var jid = $(ev.target).attr('data-recipient'),
|
|
|
|
name = $(ev.target).text();
|
|
|
|
xmppchat.connection.roster.add(jid, name, [], function (iq) {
|
2012-07-15 21:03:34 +02:00
|
|
|
xmppchat.connection.roster.subscribe(jid);
|
2012-07-15 13:10:11 +02:00
|
|
|
});
|
|
|
|
$(ev.target).parent().remove();
|
|
|
|
$('form.search-xmpp-contact').hide();
|
2012-07-19 22:37:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
xmppchat.RoomsPanel = Backbone.View.extend({
|
|
|
|
el: '#chatrooms',
|
2012-07-21 17:58:07 +02:00
|
|
|
events: {
|
2012-07-22 12:25:19 +02:00
|
|
|
'submit form.add-chatroom': 'createChatRoom',
|
|
|
|
'click a.open-room': 'createChatRoom'
|
|
|
|
},
|
|
|
|
room_template: _.template(
|
|
|
|
'<dd class="chatroom">' +
|
|
|
|
'<a class="open-room" room-jid="<%=jid%>" title="Click to open this chatroom" href="#">' +
|
|
|
|
'<%=name%></a></dd>'),
|
|
|
|
|
|
|
|
initialize: function () {
|
2012-07-22 16:44:01 +02:00
|
|
|
this.on('update-rooms-list', function (ev) {
|
|
|
|
this.updateRoomsList();
|
|
|
|
});
|
|
|
|
this.trigger('update-rooms-list');
|
|
|
|
},
|
|
|
|
|
|
|
|
updateRoomsList: function () {
|
2012-07-24 21:04:42 +02:00
|
|
|
xmppchat.connection.muc.listRooms(xmppchat.connection.muc_domain, $.proxy(function (iq) {
|
2012-07-22 12:25:19 +02:00
|
|
|
var room, name, jid,
|
|
|
|
rooms = $(iq).find('query').find('item');
|
2012-07-22 16:44:01 +02:00
|
|
|
this.$el.find('#available-chatrooms').find('dd.chatroom').remove();
|
2012-07-22 12:25:19 +02:00
|
|
|
if (rooms.length) {
|
|
|
|
this.$el.find('#available-chatrooms dt').show();
|
|
|
|
} else {
|
|
|
|
this.$el.find('#available-chatrooms dt').hide();
|
|
|
|
}
|
|
|
|
for (var i=0; i<rooms.length; i++) {
|
2012-09-12 15:38:04 +02:00
|
|
|
name = Strophe.unescapeNode($(rooms[i]).attr('name'));
|
2012-07-22 12:25:19 +02:00
|
|
|
jid = $(rooms[i]).attr('jid');
|
|
|
|
this.$el.find('#available-chatrooms').append(this.room_template({'name':name, 'jid':jid}));
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}, this));
|
2012-07-21 17:58:07 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
createChatRoom: function (ev) {
|
|
|
|
ev.preventDefault();
|
2012-07-22 12:25:19 +02:00
|
|
|
var name, jid;
|
|
|
|
if (ev.type === 'click') {
|
|
|
|
jid = $(ev.target).attr('room-jid');
|
|
|
|
} else {
|
2012-09-12 15:38:04 +02:00
|
|
|
name = _.str.strip($(ev.target).find('input.new-chatroom-name').val()).toLowerCase();
|
|
|
|
if (name) {
|
|
|
|
jid = Strophe.escapeNode(name) + '@' + xmppchat.connection.muc_domain;
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
2012-07-22 12:25:19 +02:00
|
|
|
}
|
|
|
|
xmppchat.chatboxesview.openChat(jid);
|
2012-07-19 22:37:00 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
xmppchat.SettingsPanel = Backbone.View.extend({
|
|
|
|
el: '#settings'
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
xmppchat.ControlBox = xmppchat.ChatBox.extend({
|
|
|
|
initialize: function () {
|
|
|
|
this.set({
|
2012-07-21 18:39:32 +02:00
|
|
|
'box_id' : 'online-users-container'
|
2012-07-19 22:37:00 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
xmppchat.ControlBoxView = xmppchat.ChatBoxView.extend({
|
|
|
|
el: '#online-users-container',
|
|
|
|
events: {
|
|
|
|
'click a.close-controlbox-button': 'closeChat'
|
2012-07-11 16:16:17 +02:00
|
|
|
},
|
|
|
|
|
2012-07-12 23:57:04 +02:00
|
|
|
initialize: function () {
|
2012-07-19 22:37:00 +02:00
|
|
|
var userspanel;
|
|
|
|
$('ul.tabs').tabs('div.panes > div');
|
|
|
|
this.contactspanel = new xmppchat.ContactsPanel();
|
|
|
|
this.roomspanel = new xmppchat.RoomsPanel();
|
|
|
|
this.settingspanel = new xmppchat.SettingsPanel();
|
2012-07-12 23:57:04 +02:00
|
|
|
},
|
|
|
|
|
2012-07-11 16:16:17 +02:00
|
|
|
render: function () {
|
|
|
|
return this;
|
|
|
|
}
|
2012-07-08 22:18:49 +02:00
|
|
|
});
|
|
|
|
|
2012-07-21 17:58:07 +02:00
|
|
|
xmppchat.ChatRoom = xmppchat.ChatBox.extend({
|
|
|
|
initialize: function (jid) {
|
|
|
|
var nick = Strophe.getNodeFromJid(xmppchat.connection.jid);
|
|
|
|
this.set({
|
|
|
|
'id': jid,
|
2012-09-12 15:38:04 +02:00
|
|
|
'name': Strophe.unescapeNode(Strophe.getNodeFromJid(jid)),
|
|
|
|
'nick': Strophe.unescapeNode(Strophe.getNodeFromJid(xmppchat.connection.jid)),
|
2012-07-21 17:58:07 +02:00
|
|
|
'jid': jid,
|
2012-07-21 18:39:32 +02:00
|
|
|
'box_id' : this.hash(jid)
|
2012-07-21 17:58:07 +02:00
|
|
|
}, {'silent': true});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
xmppchat.ChatRoomView = xmppchat.ChatBoxView.extend({
|
|
|
|
length: 300,
|
2012-07-19 22:37:00 +02:00
|
|
|
tagName: 'div',
|
|
|
|
className: 'chatroom',
|
2012-07-21 18:39:32 +02:00
|
|
|
events: {
|
2012-07-22 00:06:37 +02:00
|
|
|
'click .close-chatbox-button': 'closeChatRoom',
|
|
|
|
'keypress textarea.chat-textarea': 'keyPressed'
|
2012-07-21 18:39:32 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
closeChatRoom: function () {
|
|
|
|
this.closeChat();
|
2012-07-22 00:06:37 +02:00
|
|
|
xmppchat.connection.muc.leave(
|
|
|
|
this.model.get('jid'),
|
|
|
|
this.model.get('nick'),
|
2012-07-22 16:44:01 +02:00
|
|
|
this.onLeave,
|
2012-07-22 00:06:37 +02:00
|
|
|
undefined);
|
2012-07-22 16:44:01 +02:00
|
|
|
delete xmppchat.chatboxesview.views[this.model.get('jid')];
|
|
|
|
xmppchat.chatboxesview.model.remove(this.model.get('jid'));
|
|
|
|
this.remove();
|
2012-07-22 00:06:37 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
keyPressed: function (ev) {
|
|
|
|
var $textarea = $(ev.target),
|
|
|
|
message,
|
|
|
|
notify,
|
|
|
|
composing,
|
|
|
|
that = this;
|
|
|
|
|
|
|
|
if(ev.keyCode == 13) {
|
|
|
|
message = $textarea.val();
|
|
|
|
message = message.replace(/^\s+|\s+jQuery/g,"");
|
|
|
|
$textarea.val('').focus();
|
|
|
|
if (message !== '') {
|
|
|
|
this.sendGroupMessage(message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2012-07-22 22:08:19 +02:00
|
|
|
sendGroupMessage: function (body) {
|
|
|
|
var match = body.replace(/^\s*/, "").match(/^\/(.*?)(?: (.*))?$/);
|
|
|
|
var args = null;
|
|
|
|
if (match) {
|
|
|
|
if (match[1] === "msg") {
|
|
|
|
// TODO: Private messages
|
|
|
|
} else if (match[1] === "topic") {
|
|
|
|
xmppchat.connection.muc.setTopic(this.model.get('jid'), match[2]);
|
|
|
|
|
|
|
|
} else if (match[1] === "kick") {
|
|
|
|
xmppchat.connection.muc.kick(this.model.get('jid'), match[2]);
|
|
|
|
|
|
|
|
} else if (match[1] === "ban") {
|
|
|
|
xmppchat.connection.muc.ban(this.model.get('jid'), match[2]);
|
|
|
|
|
|
|
|
} else if (match[1] === "op") {
|
|
|
|
xmppchat.connection.muc.op(this.model.get('jid'), match[2]);
|
|
|
|
|
|
|
|
} else if (match[1] === "deop") {
|
|
|
|
xmppchat.connection.muc.deop(this.model.get('jid'), match[2]);
|
2012-07-28 23:28:32 +02:00
|
|
|
} else {
|
|
|
|
this.last_msgid = xmppchat.connection.muc.groupchat(this.model.get('jid'), body);
|
|
|
|
}
|
2012-07-22 22:08:19 +02:00
|
|
|
} else {
|
|
|
|
this.last_msgid = xmppchat.connection.muc.groupchat(this.model.get('jid'), body);
|
|
|
|
}
|
2012-07-21 18:39:32 +02:00
|
|
|
},
|
2012-07-19 22:37:00 +02:00
|
|
|
|
|
|
|
template: _.template(
|
|
|
|
'<div class="chat-head chat-head-chatroom">' +
|
2012-07-21 17:58:07 +02:00
|
|
|
'<div class="chat-title"> <%= name %> </div>' +
|
|
|
|
'<a href="javascript:void(0)" class="chatbox-button close-chatbox-button">X</a>' +
|
2012-07-22 22:08:19 +02:00
|
|
|
'<p class="chatroom-topic"><p/>' +
|
2012-07-19 22:37:00 +02:00
|
|
|
'</div>' +
|
|
|
|
'<div>' +
|
2012-07-21 17:58:07 +02:00
|
|
|
'<div class="chat-area">' +
|
|
|
|
'<div class="chat-content">' +
|
|
|
|
'<div class="room-name"></div>' +
|
|
|
|
'<div class="room-topic"></div>' +
|
|
|
|
'</div>' +
|
|
|
|
'<form class="sendXMPPMessage" action="" method="post">' +
|
2012-07-19 22:37:00 +02:00
|
|
|
'<textarea ' +
|
|
|
|
'type="text" ' +
|
|
|
|
'class="chat-textarea" ' +
|
|
|
|
'placeholder="Message"/>' +
|
2012-07-21 17:58:07 +02:00
|
|
|
'</form>' +
|
|
|
|
'</div>' +
|
|
|
|
'<div class="participants">' +
|
|
|
|
'<ul class="participant-list"></ul>' +
|
|
|
|
'</div>' +
|
|
|
|
'</div>'),
|
2012-07-19 22:37:00 +02:00
|
|
|
|
2012-07-21 19:09:30 +02:00
|
|
|
initialize: function () {
|
|
|
|
xmppchat.connection.muc.join(
|
|
|
|
this.model.get('jid'),
|
|
|
|
this.model.get('nick'),
|
|
|
|
$.proxy(this.onMessage, this),
|
|
|
|
$.proxy(this.onPresence, this),
|
2012-07-22 00:06:37 +02:00
|
|
|
$.proxy(this.onRoster, this));
|
2012-07-21 19:09:30 +02:00
|
|
|
},
|
|
|
|
|
2012-07-22 16:44:01 +02:00
|
|
|
onLeave: function () {
|
|
|
|
var controlboxview = xmppchat.chatboxesview.views['online-users-container'];
|
|
|
|
if (controlboxview) {
|
|
|
|
controlboxview.roomspanel.trigger('update-rooms-list');
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2012-07-21 19:09:30 +02:00
|
|
|
onPresence: function (presence, room) {
|
|
|
|
var nick = room.nick,
|
2012-07-22 12:25:19 +02:00
|
|
|
from = $(presence).attr('from');
|
2012-07-21 19:09:30 +02:00
|
|
|
if ($(presence).attr('type') !== 'error') {
|
|
|
|
// check for status 110 to see if it's our own presence
|
|
|
|
if ($(presence).find("status[code='110']").length > 0) {
|
|
|
|
// check if server changed our nick
|
|
|
|
if ($(presence).find("status[code='210']").length > 0) {
|
|
|
|
this.model.set({'nick': Strophe.getResourceFromJid(from)});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-07-22 00:06:37 +02:00
|
|
|
return true;
|
2012-07-21 19:09:30 +02:00
|
|
|
},
|
|
|
|
|
2012-07-22 00:06:37 +02:00
|
|
|
onMessage: function (message) {
|
|
|
|
var body = $(message).children('body').text(),
|
|
|
|
jid = $(message).attr('from'),
|
|
|
|
composing = $(message).find('composing'),
|
|
|
|
$chat_content = $(this.el).find('.chat-content'),
|
2012-07-22 22:08:19 +02:00
|
|
|
sender = Strophe.getResourceFromJid(jid),
|
|
|
|
subject = $(message).children('subject').text();
|
2012-07-21 19:09:30 +02:00
|
|
|
|
2012-07-22 22:08:19 +02:00
|
|
|
if (subject) {
|
|
|
|
this.$el.find('.chatroom-topic').text(subject);
|
|
|
|
}
|
2012-07-22 00:06:37 +02:00
|
|
|
if (!body) {
|
|
|
|
if (composing.length > 0) {
|
2012-07-26 00:31:58 +02:00
|
|
|
this.insertStatusNotification(sender, 'is typing');
|
2012-07-22 00:06:37 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (sender === this.model.get('nick')) {
|
|
|
|
this.appendMessage(body);
|
|
|
|
} else {
|
2012-07-26 00:31:58 +02:00
|
|
|
$chat_content.find('div.chat-event').remove();
|
2012-07-30 15:51:50 +02:00
|
|
|
|
|
|
|
match = body.match(/^\/(.*?)(?: (.*))?$/);
|
|
|
|
if ((match) && (match[1] === 'me')) {
|
|
|
|
body = body.replace(/^\/me/, '*'+sender);
|
|
|
|
$chat_content.append(
|
|
|
|
this.action_template({
|
|
|
|
'sender': 'room',
|
|
|
|
'time': (new Date()).toLocaleTimeString().substring(0,5),
|
|
|
|
'message': body,
|
|
|
|
'username': sender,
|
|
|
|
'extra_classes': ($(message).find('delay').length > 0) && 'delayed' || ''
|
|
|
|
}));
|
|
|
|
} else {
|
|
|
|
$chat_content.append(
|
|
|
|
this.message_template({
|
|
|
|
'sender': 'room',
|
|
|
|
'time': (new Date()).toLocaleTimeString().substring(0,5),
|
|
|
|
'message': body,
|
|
|
|
'username': sender,
|
|
|
|
'extra_classes': ($(message).find('delay').length > 0) && 'delayed' || ''
|
|
|
|
}));
|
|
|
|
}
|
2012-07-22 00:06:37 +02:00
|
|
|
$chat_content.scrollTop($chat_content[0].scrollHeight);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
2012-07-21 19:09:30 +02:00
|
|
|
},
|
|
|
|
|
2012-07-22 00:06:37 +02:00
|
|
|
onRoster: function (roster, room) {
|
2012-07-22 16:44:01 +02:00
|
|
|
var controlboxview = xmppchat.chatboxesview.views['online-users-container'];
|
|
|
|
if (controlboxview) {
|
|
|
|
controlboxview.roomspanel.trigger('update-rooms-list');
|
|
|
|
}
|
2012-07-22 00:06:37 +02:00
|
|
|
this.$el.find('.participant-list').empty();
|
|
|
|
for (var i=0; i<_.size(roster); i++) {
|
|
|
|
this.$el.find('.participant-list').append('<li>' + _.keys(roster)[i] + '</li>');
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
},
|
2012-07-21 19:09:30 +02:00
|
|
|
|
2012-07-26 00:31:58 +02:00
|
|
|
show: function () {
|
|
|
|
this.$el.css({'opacity': 0});
|
|
|
|
this.$el.css({'display': 'inline'});
|
|
|
|
this.$el.animate({
|
|
|
|
opacity: '1'
|
|
|
|
}, 200);
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
2012-07-21 17:58:07 +02:00
|
|
|
render: function () {
|
2012-07-21 18:39:32 +02:00
|
|
|
$(this.el).attr('id', this.model.get('box_id'));
|
2012-07-21 17:58:07 +02:00
|
|
|
$(this.el).html(this.template(this.model.toJSON()));
|
|
|
|
return this;
|
|
|
|
}
|
2012-07-08 22:18:49 +02:00
|
|
|
});
|
|
|
|
|
2012-07-19 22:37:00 +02:00
|
|
|
xmppchat.ChatBoxes = Backbone.Collection.extend();
|
|
|
|
|
2012-07-09 18:47:50 +02:00
|
|
|
xmppchat.ChatBoxesView = Backbone.View.extend({
|
2012-07-21 17:58:07 +02:00
|
|
|
el: '#collective-xmpp-chat-data',
|
2012-07-11 16:16:17 +02:00
|
|
|
|
|
|
|
restoreOpenChats: function () {
|
|
|
|
var cookie = jQuery.cookie('chats-open-'+xmppchat.username),
|
2012-09-13 14:19:19 +02:00
|
|
|
open_chats = [],
|
|
|
|
that = this;
|
2012-07-11 16:16:17 +02:00
|
|
|
|
|
|
|
jQuery.cookie('chats-open-'+xmppchat.username, null, {path: '/'});
|
|
|
|
if (cookie) {
|
|
|
|
open_chats = cookie.split('|');
|
|
|
|
if (_.indexOf(open_chats, 'online-users-container') != -1) {
|
2012-07-21 17:58:07 +02:00
|
|
|
this.renderChat('online-users-container');
|
2012-07-11 16:16:17 +02:00
|
|
|
}
|
2012-09-13 15:58:31 +02:00
|
|
|
_.each(open_chats, $.proxy(function (jid) {
|
2012-09-13 14:19:19 +02:00
|
|
|
if (jid != 'online-users-container') {
|
2012-09-13 15:58:31 +02:00
|
|
|
// XXX: Can this be optimised somehow? Would be nice to get
|
|
|
|
// fullnames from xmppchat.Roster but it's not yet
|
|
|
|
// populated at this stage...
|
2012-09-13 14:19:19 +02:00
|
|
|
$.getJSON(portal_url + "/xmpp-userinfo?user_id=" + Strophe.getNodeFromJid(jid), function (data) {
|
|
|
|
that.renderChat(jid, data.fullname);
|
|
|
|
});
|
2012-07-11 16:16:17 +02:00
|
|
|
}
|
2012-09-13 15:58:31 +02:00
|
|
|
}, this));
|
2012-07-11 16:16:17 +02:00
|
|
|
}
|
|
|
|
},
|
2012-07-21 17:58:07 +02:00
|
|
|
|
|
|
|
isChatRoom: function (jid) {
|
2012-07-24 21:04:42 +02:00
|
|
|
return Strophe.getDomainFromJid(jid) === xmppchat.connection.muc_domain;
|
2012-07-21 17:58:07 +02:00
|
|
|
},
|
|
|
|
|
2012-09-13 14:19:19 +02:00
|
|
|
renderChat: function (jid, name) {
|
2012-07-21 17:58:07 +02:00
|
|
|
var box, view;
|
2012-07-11 16:16:17 +02:00
|
|
|
if (jid === 'online-users-container') {
|
2012-07-21 17:58:07 +02:00
|
|
|
box = new xmppchat.ControlBox({'id': jid, 'jid': jid});
|
2012-07-11 16:16:17 +02:00
|
|
|
view = new xmppchat.ControlBoxView({
|
2012-07-21 17:58:07 +02:00
|
|
|
model: box
|
2012-07-11 16:16:17 +02:00
|
|
|
});
|
|
|
|
} else {
|
2012-07-21 17:58:07 +02:00
|
|
|
if (this.isChatRoom(jid)) {
|
|
|
|
box = new xmppchat.ChatRoom(jid);
|
|
|
|
view = new xmppchat.ChatRoomView({
|
|
|
|
'model': box
|
|
|
|
});
|
|
|
|
} else {
|
2012-09-13 14:19:19 +02:00
|
|
|
box = new xmppchat.ChatBox({'id': jid, 'jid': jid, 'fullname': name});
|
2012-07-21 17:58:07 +02:00
|
|
|
view = new xmppchat.ChatBoxView({
|
|
|
|
model: box
|
|
|
|
});
|
|
|
|
}
|
2012-07-09 22:22:08 +02:00
|
|
|
}
|
2012-07-11 16:16:17 +02:00
|
|
|
this.views[jid] = view.render();
|
2012-07-21 17:58:07 +02:00
|
|
|
view.$el.appendTo(this.$el);
|
|
|
|
this.options.model.add(box);
|
2012-07-11 23:47:49 +02:00
|
|
|
return view;
|
2012-07-11 16:16:17 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
closeChat: function (jid) {
|
|
|
|
var view = this.views[jid];
|
|
|
|
if (view) {
|
|
|
|
view.closeChat();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2012-09-13 14:19:19 +02:00
|
|
|
openChat: function (jid, name) {
|
2012-07-11 16:16:17 +02:00
|
|
|
if (!this.model.get(jid)) {
|
2012-09-13 14:19:19 +02:00
|
|
|
this.renderChat(jid, name);
|
2012-07-11 16:16:17 +02:00
|
|
|
} else {
|
2012-07-21 18:39:32 +02:00
|
|
|
this.showChat(jid);
|
2012-07-11 16:16:17 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2012-07-21 18:39:32 +02:00
|
|
|
showChat: function (jid) {
|
|
|
|
var view = this.views[jid];
|
2012-07-11 16:16:17 +02:00
|
|
|
if (view.isVisible()) {
|
|
|
|
view.focus();
|
|
|
|
} else {
|
2012-07-26 00:31:58 +02:00
|
|
|
view.show();
|
|
|
|
if (jid !== 'online-users-container') {
|
|
|
|
view.scrolldown();
|
|
|
|
view.focus();
|
2012-07-09 22:22:08 +02:00
|
|
|
}
|
2012-07-11 16:16:17 +02:00
|
|
|
view.addChatToCookie();
|
2012-07-09 22:22:08 +02:00
|
|
|
}
|
2012-07-11 16:16:17 +02:00
|
|
|
return view;
|
2012-07-09 22:22:08 +02:00
|
|
|
},
|
|
|
|
|
2012-07-11 23:47:49 +02:00
|
|
|
messageReceived: function (message) {
|
|
|
|
var jid = $(message).attr('from'),
|
|
|
|
bare_jid = Strophe.getBareJidFromJid(jid),
|
|
|
|
resource = Strophe.getResourceFromJid(jid),
|
|
|
|
view = this.views[bare_jid];
|
|
|
|
|
|
|
|
if (!view) {
|
2012-07-21 17:58:07 +02:00
|
|
|
view = this.renderChat(bare_jid);
|
2012-07-11 23:47:49 +02:00
|
|
|
}
|
|
|
|
view.messageReceived(message);
|
|
|
|
// XXX: Is this the right place for this? Perhaps an event?
|
2012-07-14 08:05:25 +02:00
|
|
|
xmppchat.roster.addResource(bare_jid, resource);
|
2012-07-11 23:47:49 +02:00
|
|
|
},
|
|
|
|
|
2012-07-09 22:22:08 +02:00
|
|
|
initialize: function () {
|
2012-07-11 16:16:17 +02:00
|
|
|
this.options.model.on("add", function (item) {
|
2012-07-21 18:39:32 +02:00
|
|
|
this.showChat(item.get('id'));
|
2012-07-11 16:16:17 +02:00
|
|
|
}, this);
|
|
|
|
|
2012-07-09 22:22:08 +02:00
|
|
|
this.views = {};
|
2012-07-11 16:16:17 +02:00
|
|
|
this.restoreOpenChats();
|
2012-07-09 18:47:50 +02:00
|
|
|
}
|
2012-07-08 22:18:49 +02:00
|
|
|
});
|
|
|
|
|
2012-07-09 18:47:50 +02:00
|
|
|
|
2012-07-08 12:27:13 +02:00
|
|
|
xmppchat.RosterItem = Backbone.Model.extend({
|
2012-07-09 22:22:08 +02:00
|
|
|
|
2012-09-13 14:19:19 +02:00
|
|
|
initialize: function (jid, subscription, ask, name) {
|
2012-07-09 22:22:08 +02:00
|
|
|
var user_id = Strophe.getNodeFromJid(jid);
|
2012-09-13 14:19:19 +02:00
|
|
|
if (!name) {
|
|
|
|
name = user_id;
|
|
|
|
}
|
2012-07-09 22:22:08 +02:00
|
|
|
this.set({
|
|
|
|
'id': jid,
|
|
|
|
'jid': jid,
|
2012-07-15 21:03:34 +02:00
|
|
|
'ask': ask,
|
2012-07-09 22:22:08 +02:00
|
|
|
'bare_jid': Strophe.getBareJidFromJid(jid),
|
|
|
|
'user_id': user_id,
|
|
|
|
'subscription': subscription,
|
2012-09-13 14:19:19 +02:00
|
|
|
'fullname': name,
|
2012-07-09 22:22:08 +02:00
|
|
|
'resources': [],
|
2012-07-28 16:29:54 +02:00
|
|
|
'presence_type': 'offline',
|
2012-07-09 22:22:08 +02:00
|
|
|
'status': 'offline'
|
|
|
|
}, {'silent': true});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
xmppchat.RosterItemView = Backbone.View.extend({
|
2012-07-15 21:03:34 +02:00
|
|
|
tagName: 'dd',
|
2012-07-09 22:22:08 +02:00
|
|
|
|
2012-07-15 22:01:08 +02:00
|
|
|
openChat: function () {
|
2012-09-13 14:19:19 +02:00
|
|
|
xmppchat.chatboxesview.openChat(this.model.get('jid'), this.model.get('fullname'));
|
2012-07-09 22:22:08 +02:00
|
|
|
},
|
|
|
|
|
2012-07-15 22:01:08 +02:00
|
|
|
removeContact: function () {
|
2012-07-15 13:10:11 +02:00
|
|
|
var that = this;
|
|
|
|
$("<span></span>").dialog({
|
|
|
|
title: 'Are you sure you want to remove this contact?',
|
|
|
|
dialogClass: 'remove-xmpp-contact-dialog',
|
|
|
|
resizable: false,
|
|
|
|
width: 200,
|
|
|
|
position: {
|
|
|
|
my: 'center',
|
|
|
|
at: 'center',
|
|
|
|
of: '#online-users-container'
|
|
|
|
},
|
|
|
|
modal: true,
|
|
|
|
buttons: {
|
|
|
|
"Remove": function() {
|
2012-07-26 00:31:58 +02:00
|
|
|
var bare_jid = that.model.get('bare_jid');
|
2012-07-15 13:10:11 +02:00
|
|
|
$(this).dialog( "close" );
|
2012-07-15 22:01:08 +02:00
|
|
|
xmppchat.connection.roster.unauthorize(that.model.get('jid'));
|
|
|
|
xmppchat.roster.remove(bare_jid);
|
|
|
|
xmppchat.connection.roster.remove(bare_jid);
|
2012-07-15 13:10:11 +02:00
|
|
|
},
|
|
|
|
"Cancel": function() {
|
|
|
|
$(this).dialog( "close" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2012-07-15 21:03:34 +02:00
|
|
|
acceptRequest: function () {
|
2012-09-13 14:19:19 +02:00
|
|
|
var jid = this.model.get('jid');
|
|
|
|
xmppchat.connection.roster.authorize(jid);
|
|
|
|
xmppchat.connection.roster.add(jid, this.model.get('fullname'), [], function (iq) {
|
|
|
|
xmppchat.connection.roster.subscribe(jid);
|
|
|
|
}, this);
|
2012-07-15 21:03:34 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
declineRequest: function () {
|
2012-07-09 22:22:08 +02:00
|
|
|
var that = this;
|
2012-07-15 21:03:34 +02:00
|
|
|
xmppchat.connection.roster.unauthorize(this.model.get('jid'));
|
|
|
|
that.trigger('decline-request', that.model);
|
2012-07-09 22:22:08 +02:00
|
|
|
},
|
2012-07-08 12:27:13 +02:00
|
|
|
|
2012-07-15 13:10:11 +02:00
|
|
|
template: _.template(
|
|
|
|
'<a class="open-chat" title="Click to chat with this contact" href="#"><%= fullname %></a>' +
|
|
|
|
'<a class="remove-xmpp-contact" title="Click to remove this contact" href="#"></a>'),
|
2012-07-09 22:22:08 +02:00
|
|
|
|
2012-09-11 21:18:34 +02:00
|
|
|
pending_template: _.template(
|
|
|
|
'<%= fullname %>' +
|
|
|
|
'<a class="remove-xmpp-contact" title="Click to remove this contact" href="#"></a>'),
|
|
|
|
|
2012-07-15 21:03:34 +02:00
|
|
|
request_template: _.template('<%= fullname %>' +
|
|
|
|
'<button type="button" class="accept-xmpp-request">' +
|
|
|
|
'Accept</button>' +
|
|
|
|
'<button type="button" class="decline-xmpp-request">' +
|
|
|
|
'Decline</button>' +
|
|
|
|
''),
|
|
|
|
|
2012-07-09 22:22:08 +02:00
|
|
|
render: function () {
|
2012-07-15 21:03:34 +02:00
|
|
|
var item = this.model,
|
|
|
|
ask = item.get('ask'),
|
2012-07-15 22:01:08 +02:00
|
|
|
that = this,
|
2012-07-15 21:03:34 +02:00
|
|
|
subscription = item.get('subscription');
|
|
|
|
|
2012-07-28 16:29:54 +02:00
|
|
|
$(this.el).addClass(item.get('presence_type')).attr('id', 'online-users-'+item.get('user_id'));
|
2012-07-15 21:03:34 +02:00
|
|
|
|
|
|
|
if (ask === 'subscribe') {
|
|
|
|
this.$el.addClass('pending-xmpp-contact');
|
2012-09-11 21:18:34 +02:00
|
|
|
$(this.el).html(this.pending_template(item.toJSON()));
|
2012-07-15 21:03:34 +02:00
|
|
|
} else if (ask === 'request') {
|
|
|
|
this.$el.addClass('requesting-xmpp-contact');
|
|
|
|
$(this.el).html(this.request_template(item.toJSON()));
|
2012-09-11 20:37:27 +02:00
|
|
|
this.$el.delegate('button.accept-xmpp-request', 'click', function (ev) {
|
2012-07-15 22:01:08 +02:00
|
|
|
ev.preventDefault();
|
|
|
|
that.acceptRequest();
|
|
|
|
});
|
2012-09-11 20:37:27 +02:00
|
|
|
this.$el.delegate('button.decline-xmpp-request', 'click', function (ev) {
|
2012-07-15 22:01:08 +02:00
|
|
|
ev.preventDefault();
|
|
|
|
that.declineRequest();
|
|
|
|
});
|
2012-09-11 19:45:30 +02:00
|
|
|
xmppchat.chatboxesview.openChat('online-users-container');
|
2012-07-15 21:03:34 +02:00
|
|
|
} else if (subscription === 'both') {
|
|
|
|
this.$el.addClass('current-xmpp-contact');
|
|
|
|
this.$el.html(this.template(item.toJSON()));
|
2012-09-11 20:37:27 +02:00
|
|
|
this.$el.delegate('a.open-chat', 'click', function (ev) {
|
2012-07-15 22:01:08 +02:00
|
|
|
ev.preventDefault();
|
|
|
|
that.openChat();
|
|
|
|
});
|
2012-07-15 21:03:34 +02:00
|
|
|
}
|
2012-07-26 00:31:58 +02:00
|
|
|
|
|
|
|
// Event handlers
|
2012-09-11 20:37:27 +02:00
|
|
|
this.$el.delegate('a.remove-xmpp-contact','click', function (ev) {
|
2012-07-26 00:31:58 +02:00
|
|
|
ev.preventDefault();
|
|
|
|
that.removeContact();
|
|
|
|
});
|
2012-07-09 22:22:08 +02:00
|
|
|
return this;
|
2012-07-15 21:03:34 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
initialize: function () {
|
|
|
|
this.options.model.on('change', function (item, changed) {
|
2012-07-28 16:29:54 +02:00
|
|
|
if (_.has(changed.changes, 'presence_type')) {
|
|
|
|
$(this.el).attr('class', item.changed.presence_type);
|
2012-07-15 21:03:34 +02:00
|
|
|
}
|
|
|
|
}, this);
|
2012-07-08 12:27:13 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2012-07-09 22:22:08 +02:00
|
|
|
|
2012-07-15 21:03:34 +02:00
|
|
|
xmppchat.Roster = (function (_, $, console) {
|
|
|
|
var ob = {},
|
2012-07-08 22:18:49 +02:00
|
|
|
Collection = Backbone.Collection.extend({
|
2012-07-09 18:47:50 +02:00
|
|
|
model: xmppchat.RosterItem,
|
2012-07-15 21:03:34 +02:00
|
|
|
stropheRoster: xmppchat.connection.roster,
|
2012-07-09 18:47:50 +02:00
|
|
|
|
|
|
|
initialize: function () {
|
2012-07-15 21:03:34 +02:00
|
|
|
this._connection = xmppchat.connection;
|
2012-07-09 18:47:50 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
comparator : function (rosteritem) {
|
2012-07-28 16:29:54 +02:00
|
|
|
var presence_type = rosteritem.get('presence_type'),
|
2012-07-09 18:47:50 +02:00
|
|
|
rank = 4;
|
2012-07-28 16:29:54 +02:00
|
|
|
switch(presence_type) {
|
2012-07-09 18:47:50 +02:00
|
|
|
case 'offline':
|
|
|
|
rank = 4;
|
|
|
|
break;
|
|
|
|
case 'unavailable':
|
|
|
|
rank = 3;
|
|
|
|
break;
|
|
|
|
case 'away':
|
|
|
|
rank = 2;
|
|
|
|
break;
|
|
|
|
case 'busy':
|
|
|
|
rank = 1;
|
|
|
|
break;
|
2012-07-28 16:29:54 +02:00
|
|
|
case 'dnd':
|
|
|
|
rank = 1;
|
|
|
|
break;
|
2012-07-09 18:47:50 +02:00
|
|
|
case 'online':
|
|
|
|
rank = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return rank;
|
|
|
|
},
|
|
|
|
|
|
|
|
isSelf: function (jid) {
|
|
|
|
return (Strophe.getBareJidFromJid(jid) === Strophe.getBareJidFromJid(xmppchat.connection.jid));
|
|
|
|
},
|
|
|
|
|
|
|
|
getRoster: function () {
|
2012-07-15 21:03:34 +02:00
|
|
|
return xmppchat.connection.roster.get();
|
2012-07-09 18:47:50 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
getItem: function (id) {
|
|
|
|
return Backbone.Collection.prototype.get.call(this, id);
|
|
|
|
},
|
|
|
|
|
2012-09-13 14:19:19 +02:00
|
|
|
addRosterItem: function (jid, subscription, ask, name) {
|
|
|
|
var model = new xmppchat.RosterItem(jid, subscription, ask, name);
|
2012-07-09 18:47:50 +02:00
|
|
|
this.add(model);
|
|
|
|
},
|
|
|
|
|
|
|
|
addResource: function (bare_jid, resource) {
|
2012-07-11 18:26:53 +02:00
|
|
|
var item = this.getItem(bare_jid),
|
2012-07-09 22:22:08 +02:00
|
|
|
resources;
|
2012-07-09 18:47:50 +02:00
|
|
|
if (item) {
|
2012-07-09 22:22:08 +02:00
|
|
|
resources = item.get('resources');
|
2012-07-28 16:29:54 +02:00
|
|
|
if (resources) {
|
|
|
|
if (_.indexOf(resources, resource) == -1) {
|
|
|
|
resources.push(resource);
|
|
|
|
item.set({'resources': resources});
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
item.set({'resources': [resource]});
|
2012-07-09 18:47:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
removeResource: function (bare_jid, resource) {
|
2012-07-09 22:22:08 +02:00
|
|
|
var item = this.getItem(bare_jid),
|
|
|
|
resources,
|
|
|
|
idx;
|
2012-07-09 18:47:50 +02:00
|
|
|
if (item) {
|
2012-07-09 22:22:08 +02:00
|
|
|
resources = item.get('resources');
|
|
|
|
idx = _.indexOf(resources, resource);
|
2012-07-09 18:47:50 +02:00
|
|
|
if (idx !== -1) {
|
2012-07-09 22:22:08 +02:00
|
|
|
resources.splice(idx, 1);
|
|
|
|
item.set({'resources': resources});
|
|
|
|
return resources.length;
|
2012-07-09 18:47:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
},
|
2012-07-04 11:28:43 +02:00
|
|
|
|
2012-07-09 18:47:50 +02:00
|
|
|
clearResources: function (bare_jid) {
|
|
|
|
var item = this.getItem(bare_jid);
|
|
|
|
if (item) {
|
2012-07-09 22:22:08 +02:00
|
|
|
item.set({'resources': []});
|
2012-07-09 18:47:50 +02:00
|
|
|
}
|
|
|
|
},
|
2012-07-08 22:18:49 +02:00
|
|
|
|
2012-07-09 18:47:50 +02:00
|
|
|
getTotalResources: function (bare_jid) {
|
|
|
|
var item = this.getItem(bare_jid);
|
|
|
|
if (item) {
|
2012-07-09 22:22:08 +02:00
|
|
|
return _.size(item.get('resources'));
|
2012-07-09 18:47:50 +02:00
|
|
|
}
|
2012-07-14 06:46:46 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
getNumOnlineContacts: function () {
|
|
|
|
var count = 0;
|
|
|
|
for (var i=0; i<this.models.length; i++) {
|
2012-07-28 16:29:54 +02:00
|
|
|
if (_.indexOf(['offline', 'unavailable'], this.models[i].get('presence_type')) === -1) {
|
2012-07-14 06:46:46 +02:00
|
|
|
count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return count;
|
2012-07-08 22:18:49 +02:00
|
|
|
}
|
2012-07-15 21:03:34 +02:00
|
|
|
|
2012-07-09 18:47:50 +02:00
|
|
|
});
|
2012-07-08 22:18:49 +02:00
|
|
|
|
2012-07-09 18:47:50 +02:00
|
|
|
var collection = new Collection();
|
|
|
|
_.extend(ob, collection);
|
|
|
|
_.extend(ob, Backbone.Events);
|
2012-07-08 12:27:13 +02:00
|
|
|
|
2012-07-15 21:03:34 +02:00
|
|
|
ob.rosterHandler = function (items) {
|
2012-07-15 13:10:11 +02:00
|
|
|
var model, item;
|
2012-07-04 11:28:43 +02:00
|
|
|
for (var i=0; i<items.length; i++) {
|
2012-07-15 13:10:11 +02:00
|
|
|
item = items[i];
|
|
|
|
model = ob.getItem(item.jid);
|
|
|
|
if (!model) {
|
2012-09-13 14:19:19 +02:00
|
|
|
ob.addRosterItem(item.jid, item.subscription, item.ask, item.name);
|
2012-07-04 11:28:43 +02:00
|
|
|
} else {
|
2012-07-15 21:03:34 +02:00
|
|
|
model.set({'subscription': item.subscription, 'ask': item.ask});
|
2012-07-15 13:10:11 +02:00
|
|
|
}
|
2012-07-04 11:28:43 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-07-08 22:18:49 +02:00
|
|
|
ob.presenceHandler = function (presence) {
|
|
|
|
var jid = $(presence).attr('from'),
|
|
|
|
bare_jid = Strophe.getBareJidFromJid(jid),
|
|
|
|
resource = Strophe.getResourceFromJid(jid),
|
2012-07-28 16:29:54 +02:00
|
|
|
presence_type = $(presence).attr('type'),
|
2012-07-28 22:46:14 +02:00
|
|
|
show = $(presence).find('show'),
|
|
|
|
status_message = $(presence).find('status'),
|
|
|
|
item;
|
2012-07-08 12:27:13 +02:00
|
|
|
|
2012-07-28 22:46:14 +02:00
|
|
|
if ((($(presence).find('x').attr('xmlns') || '').indexOf(Strophe.NS.MUC) === 0) || (ob.isSelf(bare_jid))) {
|
|
|
|
// Ignore MUC or self-addressed stanzas
|
2012-07-22 20:14:27 +02:00
|
|
|
return true;
|
2012-07-28 22:46:14 +02:00
|
|
|
}
|
2012-09-11 20:37:27 +02:00
|
|
|
if ((status_message.length > 0)&&(status_message.text())) {
|
2012-07-28 22:46:14 +02:00
|
|
|
model = ob.getItem(bare_jid);
|
|
|
|
model.set({'status': status_message.text()});
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((presence_type === 'error') ||
|
2012-07-28 16:29:54 +02:00
|
|
|
(presence_type === 'subscribed') ||
|
|
|
|
(presence_type === 'unsubscribe')) {
|
2012-07-22 20:14:27 +02:00
|
|
|
return true;
|
2012-07-28 22:46:14 +02:00
|
|
|
} else if (presence_type === 'subscribe') {
|
2012-09-11 21:26:59 +02:00
|
|
|
item = ob.getItem(bare_jid);
|
|
|
|
if ((item) && (item.get('subscription') != 'none')) {
|
2012-07-15 21:03:34 +02:00
|
|
|
xmppchat.connection.roster.authorize(bare_jid);
|
2012-07-15 13:10:11 +02:00
|
|
|
} else {
|
2012-09-13 14:19:19 +02:00
|
|
|
$.getJSON(portal_url + "/xmpp-userinfo?user_id=" + Strophe.getNodeFromJid(jid), function (data) {
|
|
|
|
ob.addRosterItem(bare_jid, 'none', 'request', data.fullname);
|
|
|
|
});
|
2012-07-08 22:18:49 +02:00
|
|
|
}
|
2012-07-28 16:29:54 +02:00
|
|
|
} else if (presence_type === 'unsubscribed') {
|
2012-07-15 21:03:34 +02:00
|
|
|
/* Upon receiving the presence stanza of type "unsubscribed",
|
|
|
|
* the user SHOULD acknowledge receipt of that subscription state
|
|
|
|
* notification by sending a presence stanza of type "unsubscribe"
|
|
|
|
* this step lets the user's server know that it MUST no longer
|
|
|
|
* send notification of the subscription state change to the user.
|
|
|
|
*/
|
|
|
|
xmppchat.xmppstatus.sendPresence('unsubscribe');
|
|
|
|
if (xmppchat.connection.roster.findItem(bare_jid)) {
|
|
|
|
xmppchat.roster.remove(bare_jid);
|
|
|
|
xmppchat.connection.roster.remove(bare_jid);
|
|
|
|
}
|
2012-07-22 20:14:27 +02:00
|
|
|
} else {
|
2012-07-28 22:46:14 +02:00
|
|
|
if ((presence_type === undefined) && (show)) {
|
|
|
|
if (show.text() === 'chat') {
|
2012-07-28 16:29:54 +02:00
|
|
|
presence_type = 'online';
|
2012-07-28 22:46:14 +02:00
|
|
|
} else if (show.text() === 'dnd') {
|
2012-07-28 16:29:54 +02:00
|
|
|
presence_type = 'busy';
|
2012-07-28 22:46:14 +02:00
|
|
|
} else if (show.text() === 'xa') {
|
2012-07-28 16:29:54 +02:00
|
|
|
presence_type = 'offline';
|
|
|
|
} else {
|
2012-07-28 22:46:14 +02:00
|
|
|
presence_type = show.text();
|
2012-07-28 16:29:54 +02:00
|
|
|
}
|
2012-07-08 22:18:49 +02:00
|
|
|
}
|
2012-07-28 22:46:14 +02:00
|
|
|
|
2012-07-28 16:29:54 +02:00
|
|
|
if ((presence_type !== 'offline')&&(presence_type !== 'unavailable')) {
|
2012-07-08 22:18:49 +02:00
|
|
|
ob.addResource(bare_jid, resource);
|
|
|
|
model = ob.getItem(bare_jid);
|
2012-07-28 16:29:54 +02:00
|
|
|
model.set({'presence_type': presence_type});
|
2012-07-08 22:18:49 +02:00
|
|
|
} else {
|
|
|
|
if (ob.removeResource(bare_jid, resource) === 0) {
|
|
|
|
model = ob.getItem(bare_jid);
|
2012-07-28 16:29:54 +02:00
|
|
|
model.set({'presence_type': presence_type});
|
2012-07-08 22:18:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
};
|
2012-07-08 12:27:13 +02:00
|
|
|
return ob;
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2012-07-09 22:22:08 +02:00
|
|
|
xmppchat.RosterView= (function (roster, _, $, console) {
|
2012-07-08 12:27:13 +02:00
|
|
|
var View = Backbone.View.extend({
|
2012-07-15 21:03:34 +02:00
|
|
|
el: $('#xmppchat-roster'),
|
2012-07-08 12:27:13 +02:00
|
|
|
model: roster,
|
2012-07-15 13:10:11 +02:00
|
|
|
rosteritemviews: {},
|
2012-07-08 12:27:13 +02:00
|
|
|
|
2012-07-08 22:18:49 +02:00
|
|
|
initialize: function () {
|
|
|
|
this.model.on("add", function (item) {
|
2012-07-15 13:10:11 +02:00
|
|
|
var view = new xmppchat.RosterItemView({model: item});
|
|
|
|
this.rosteritemviews[item.id] = view;
|
2012-07-15 21:03:34 +02:00
|
|
|
if (item.get('ask') === 'request') {
|
|
|
|
view.on('decline-request', function (item) {
|
|
|
|
this.model.remove(item.id);
|
|
|
|
}, this);
|
|
|
|
}
|
|
|
|
this.render();
|
2012-07-08 22:18:49 +02:00
|
|
|
}, this);
|
|
|
|
|
|
|
|
this.model.on('change', function (item) {
|
|
|
|
this.render();
|
|
|
|
}, this);
|
|
|
|
|
2012-07-15 13:10:11 +02:00
|
|
|
this.model.on("remove", function (item) {
|
2012-07-15 21:03:34 +02:00
|
|
|
delete this.rosteritemviews[item.id];
|
2012-07-15 13:10:11 +02:00
|
|
|
this.render();
|
|
|
|
}, this);
|
2012-07-08 22:18:49 +02:00
|
|
|
},
|
2012-07-08 12:27:13 +02:00
|
|
|
|
2012-07-15 21:03:34 +02:00
|
|
|
template: _.template('<dt id="xmpp-contact-requests">Contact requests</dt>' +
|
|
|
|
'<dt id="xmpp-contacts">My contacts</dt>' +
|
|
|
|
'<dt id="pending-xmpp-contacts">Pending contacts</dt>'),
|
|
|
|
|
2012-07-08 12:27:13 +02:00
|
|
|
render: function () {
|
2012-07-15 21:03:34 +02:00
|
|
|
this.$el.empty().html(this.template());
|
2012-07-08 22:18:49 +02:00
|
|
|
var models = this.model.sort().models,
|
|
|
|
children = $(this.el).children(),
|
2012-07-15 21:03:34 +02:00
|
|
|
my_contacts = this.$el.find('#xmpp-contacts').hide(),
|
|
|
|
contact_requests = this.$el.find('#xmpp-contact-requests').hide(),
|
|
|
|
pending_contacts = this.$el.find('#pending-xmpp-contacts').hide();
|
|
|
|
|
|
|
|
for (var i=0; i<models.length; i++) {
|
|
|
|
var model = models[i],
|
|
|
|
user_id = Strophe.getNodeFromJid(model.id),
|
|
|
|
view = this.rosteritemviews[model.id],
|
|
|
|
ask = model.get('ask'),
|
|
|
|
subscription = model.get('subscription');
|
|
|
|
|
|
|
|
if (ask === 'subscribe') {
|
|
|
|
pending_contacts.after(view.render().el);
|
|
|
|
} else if (ask === 'request') {
|
|
|
|
contact_requests.after(view.render().el);
|
|
|
|
} else if (subscription === 'both') {
|
|
|
|
my_contacts.after(view.render().el);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Hide the headings if there are no contacts under them
|
|
|
|
_.each([my_contacts, contact_requests, pending_contacts], function (h) {
|
|
|
|
if (h.nextUntil('dt').length > 0) {
|
|
|
|
h.show();
|
|
|
|
}
|
2012-07-08 22:18:49 +02:00
|
|
|
});
|
2012-07-14 06:46:46 +02:00
|
|
|
$('#online-count').text(this.model.getNumOnlineContacts());
|
2012-07-08 12:27:13 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
var view = new View();
|
2012-07-08 22:18:49 +02:00
|
|
|
return view;
|
2012-07-04 11:28:43 +02:00
|
|
|
});
|
|
|
|
|
2012-07-11 18:26:53 +02:00
|
|
|
xmppchat.XMPPStatus = Backbone.Model.extend({
|
|
|
|
|
|
|
|
sendPresence: function (type) {
|
|
|
|
if (type === undefined) {
|
|
|
|
type = this.getOwnStatus() || 'online';
|
|
|
|
}
|
|
|
|
xmppchat.connection.send($pres({'type':type}));
|
|
|
|
},
|
|
|
|
|
|
|
|
getOwnStatus: function () {
|
|
|
|
return store.get(xmppchat.connection.bare_jid+'-xmpp-status');
|
|
|
|
},
|
|
|
|
|
|
|
|
setOwnStatus: function (value) {
|
|
|
|
this.sendPresence(value);
|
|
|
|
store.set(xmppchat.connection.bare_jid+'-xmpp-status', value);
|
2012-07-28 23:56:42 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
setCustomStatus: function (presence_type, custom_status) {
|
|
|
|
xmppchat.connection.send($pres({'type':presence_type}).c('status').t(custom_status));
|
2012-07-11 18:26:53 +02:00
|
|
|
}
|
2012-07-28 23:56:42 +02:00
|
|
|
|
2012-07-11 18:26:53 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
xmppchat.XMPPStatusView = Backbone.View.extend({
|
|
|
|
el: "span#xmpp-status-holder",
|
|
|
|
|
|
|
|
events: {
|
2012-07-28 22:46:14 +02:00
|
|
|
"click a.choose-xmpp-status": "toggleOptions",
|
|
|
|
"click #fancy-xmpp-status-select a.change-xmpp-status-message": "renderStatusChangeForm",
|
|
|
|
"submit #set-custom-xmpp-status": "changeStatusMessage",
|
2012-07-11 18:26:53 +02:00
|
|
|
"click .dropdown dd ul li a": "setOwnStatus"
|
|
|
|
},
|
|
|
|
|
|
|
|
toggleOptions: function (ev) {
|
|
|
|
ev.preventDefault();
|
2012-07-28 22:46:14 +02:00
|
|
|
$(ev.target).parent().parent().siblings('dd').find('ul').toggle('fast');
|
|
|
|
},
|
|
|
|
|
|
|
|
change_status_message_template: _.template(
|
|
|
|
'<form id="set-custom-xmpp-status">' +
|
|
|
|
'<input type="text" class="custom-xmpp-status" <%= chat_status %>" placeholder="Custom status"/>' +
|
|
|
|
'<button type="submit">Save</button>' +
|
|
|
|
'</form>'),
|
|
|
|
|
|
|
|
status_template: _.template(
|
|
|
|
'<div class="xmpp-status">' +
|
|
|
|
'<a class="choose-xmpp-status <%= presence_type%>" href="#" title="Click to change your chat status">' +
|
|
|
|
'<%= chat_status %> <span class="value"><%= chat_status %></span>' +
|
|
|
|
'</a>' +
|
|
|
|
'<a class="change-xmpp-status-message" href="#" Title="Click here to write a custom status message"></a>' +
|
|
|
|
'</div>'),
|
|
|
|
|
|
|
|
|
|
|
|
changeStatusMessage: function (ev) {
|
|
|
|
ev.preventDefault();
|
|
|
|
var chat_status = $(ev.target).find('input').attr('value');
|
|
|
|
var presence_type = this.model.getOwnStatus() || 'I am offline';
|
|
|
|
$(this.el).find('#fancy-xmpp-status-select').html(
|
|
|
|
this.status_template({
|
|
|
|
'chat_status': chat_status,
|
|
|
|
'presence_type': presence_type
|
|
|
|
}));
|
2012-07-28 23:56:42 +02:00
|
|
|
this.model.setCustomStatus(presence_type, chat_status);
|
2012-07-28 22:46:14 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
renderStatusChangeForm: function (ev) {
|
|
|
|
ev.preventDefault();
|
|
|
|
var chat_status = this.model.getOwnStatus() || 'offline';
|
|
|
|
var input = this.change_status_message_template({'chat_status': chat_status});
|
|
|
|
this.$el.find('.xmpp-status').replaceWith(input);
|
|
|
|
this.$el.find('.custom-xmpp-status').focus().focus();
|
2012-07-11 18:26:53 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
setOwnStatus: function (ev) {
|
|
|
|
ev.preventDefault();
|
|
|
|
var $el = $(ev.target).find('span'),
|
|
|
|
value = $el.text();
|
2012-07-28 23:56:42 +02:00
|
|
|
|
|
|
|
$(this.el).find('#fancy-xmpp-status-select').html(
|
|
|
|
this.status_template({
|
|
|
|
'chat_status': 'I am ' + value,
|
|
|
|
'presence_type': value
|
|
|
|
}));
|
2012-07-11 18:26:53 +02:00
|
|
|
$(this.el).find(".dropdown dd ul").hide();
|
|
|
|
$(this.el).find("#source").val($($el).find("span.value").html());
|
|
|
|
this.model.setOwnStatus(value);
|
|
|
|
},
|
|
|
|
|
2012-07-28 22:46:14 +02:00
|
|
|
choose_template: _.template(
|
|
|
|
'<dl id="target" class="dropdown">' +
|
|
|
|
'<dt id="fancy-xmpp-status-select"></dt>' +
|
|
|
|
'<dd><ul></ul></dd>' +
|
|
|
|
'</dl>'),
|
2012-07-11 18:26:53 +02:00
|
|
|
|
|
|
|
option_template: _.template(
|
2012-07-28 22:46:14 +02:00
|
|
|
'<li>' +
|
|
|
|
'<a href="#" class="<%= value %>">' +
|
|
|
|
'<%= text %>' +
|
|
|
|
'<span class="value"><%= value %></span>' +
|
|
|
|
'</a>' +
|
|
|
|
'</li>'),
|
2012-07-11 18:26:53 +02:00
|
|
|
|
|
|
|
initialize: function () {
|
|
|
|
var $select = $(this.el).find('select#select-xmpp-status'),
|
2012-07-28 22:46:14 +02:00
|
|
|
presence_type = this.model.getOwnStatus() || 'offline',
|
2012-07-11 18:26:53 +02:00
|
|
|
options = $('option', $select),
|
|
|
|
that = this;
|
|
|
|
|
2012-07-28 22:46:14 +02:00
|
|
|
$(this.el).html(this.choose_template());
|
|
|
|
$(this.el).find('#fancy-xmpp-status-select')
|
|
|
|
.html(this.status_template({
|
|
|
|
'chat_status': "I am " + presence_type,
|
|
|
|
'presence_type': presence_type
|
|
|
|
}));
|
2012-07-11 18:26:53 +02:00
|
|
|
|
|
|
|
// iterate through all the <option> elements and create UL
|
|
|
|
options.each(function(){
|
|
|
|
$(that.el).find("#target dd ul").append(that.option_template({
|
|
|
|
'value': $(this).val(),
|
|
|
|
'text': $(this).text()
|
|
|
|
})).hide();
|
|
|
|
});
|
|
|
|
$select.remove();
|
|
|
|
}
|
|
|
|
});
|
2012-06-23 14:26:04 +02:00
|
|
|
|
2012-07-03 13:15:45 +02:00
|
|
|
// Event handlers
|
|
|
|
// --------------
|
2012-07-22 20:43:18 +02:00
|
|
|
$(document).ready($.proxy(function () {
|
2012-07-21 17:58:07 +02:00
|
|
|
var chatdata = jQuery('div#collective-xmpp-chat-data'),
|
2012-07-11 16:16:17 +02:00
|
|
|
$toggle = $('a#toggle-online-users');
|
|
|
|
$toggle.unbind('click');
|
|
|
|
|
2012-07-22 20:43:18 +02:00
|
|
|
this.username = chatdata.attr('username');
|
|
|
|
this.base_url = chatdata.attr('base_url');
|
2012-07-11 16:16:17 +02:00
|
|
|
|
2012-07-03 13:15:45 +02:00
|
|
|
$(document).unbind('jarnxmpp.connected');
|
2012-07-22 20:43:18 +02:00
|
|
|
$(document).bind('jarnxmpp.connected', $.proxy(function () {
|
|
|
|
this.connection.xmlInput = function (body) { console.log(body); };
|
|
|
|
this.connection.xmlOutput = function (body) { console.log(body); };
|
2012-07-15 13:10:11 +02:00
|
|
|
|
2012-07-22 20:43:18 +02:00
|
|
|
this.connection.bare_jid = Strophe.getBareJidFromJid(this.connection.jid);
|
|
|
|
this.connection.domain = Strophe.getDomainFromJid(this.connection.jid);
|
|
|
|
// XXX: Better if configurable?
|
|
|
|
this.connection.muc_domain = 'conference.' + this.connection.domain;
|
2012-07-11 16:16:17 +02:00
|
|
|
|
2012-07-22 20:43:18 +02:00
|
|
|
this.roster = this.Roster(_, $, console);
|
|
|
|
this.rosterview = Backbone.View.extend(this.RosterView(this.roster, _, $, console));
|
2012-07-08 22:18:49 +02:00
|
|
|
|
2012-07-22 20:43:18 +02:00
|
|
|
this.connection.addHandler(
|
|
|
|
$.proxy(function (presence) {
|
|
|
|
this.roster.presenceHandler(presence);
|
|
|
|
return true;
|
|
|
|
}, this), null, 'presence', null);
|
2012-07-08 12:27:13 +02:00
|
|
|
|
2012-07-22 20:43:18 +02:00
|
|
|
this.connection.roster.registerCallback(this.roster.rosterHandler);
|
|
|
|
this.roster.getRoster();
|
2012-07-09 18:47:50 +02:00
|
|
|
|
2012-07-22 20:43:18 +02:00
|
|
|
this.chatboxes = new this.ChatBoxes();
|
|
|
|
this.chatboxesview = new this.ChatBoxesView({
|
|
|
|
'model': this.chatboxes
|
2012-07-09 18:47:50 +02:00
|
|
|
});
|
2012-07-11 16:16:17 +02:00
|
|
|
|
2012-07-22 20:43:18 +02:00
|
|
|
this.connection.addHandler(
|
|
|
|
$.proxy(function (message) {
|
|
|
|
this.chatboxesview.messageReceived(message);
|
2012-07-11 23:47:49 +02:00
|
|
|
return true;
|
2012-07-22 20:43:18 +02:00
|
|
|
}, this), null, 'message', 'chat');
|
2012-07-11 23:47:49 +02:00
|
|
|
|
2012-07-11 18:26:53 +02:00
|
|
|
// XMPP Status
|
2012-07-22 20:43:18 +02:00
|
|
|
this.xmppstatus = new this.XMPPStatus();
|
|
|
|
this.xmppstatusview = new this.XMPPStatusView({
|
|
|
|
'model': this.xmppstatus
|
2012-07-11 18:26:53 +02:00
|
|
|
});
|
|
|
|
|
2012-07-22 20:43:18 +02:00
|
|
|
this.xmppstatus.sendPresence();
|
2012-07-11 18:26:53 +02:00
|
|
|
|
|
|
|
// Controlbox toggler
|
2012-07-22 22:08:19 +02:00
|
|
|
$toggle.bind('click', $.proxy(function (e) {
|
2012-07-11 16:16:17 +02:00
|
|
|
e.preventDefault();
|
|
|
|
if ($("div#online-users-container").is(':visible')) {
|
2012-07-22 20:43:18 +02:00
|
|
|
this.chatboxesview.closeChat('online-users-container');
|
2012-07-11 16:16:17 +02:00
|
|
|
} else {
|
2012-07-22 20:43:18 +02:00
|
|
|
this.chatboxesview.openChat('online-users-container');
|
2012-07-11 16:16:17 +02:00
|
|
|
}
|
2012-07-22 22:08:19 +02:00
|
|
|
}, this));
|
2012-07-22 20:43:18 +02:00
|
|
|
}, this));
|
|
|
|
}, xmppchat));
|