]> git.babelmonkeys.de Git - xmppchat.git/blob - js/main.js
Separate config
[xmppchat.git] / js / main.js
1 var connection = null;
2 var nickname;
3
4 function doLogin(aForm) {
5         if (!aForm.nickname.value)
6                 return false;
7         try {
8                 connection = new Strophe.Connection(BOSH_LOCATION);
9                 connection.connect(jid, password, onConnect);
10
11                 nickname = aForm.nickname.value;
12         } catch (e) {
13                 alert(e);
14         } finally {
15                 return false;   
16         }
17 }
18
19 function onConnect(status) {
20         if (status == Strophe.Status.CONNFAIL) {
21                 handleError('Failed to connect');
22         } else if (status == Strophe.Status.DISCONNECTED) {
23                 handleDisconnected();
24         } else if (status == Strophe.Status.CONNECTED) {
25                 // Add handlers connection.addHandler(callback, namespace, stanza_name, type, id, from)
26                 connection.addHandler(handleMessage, null, 'message', null, null, null);
27                 connection.addHandler(handlePresence, null, 'presence', null, null, null);
28                 connection.addHandler(handleIQ, null, 'iq', null, null, null);
29
30                 connection.addHandler(handleIqVersion, Strophe.NS.VERSION, 'iq', null, null, null);
31                 connection.addHandler(handleIqVersion, 'urn:xmpp:time', 'iq', null, null, null);
32
33                 connection.send($pres().tree());
34                 connection.send($pres({to: room + '/' + nickname}).tree());
35
36                 // Make things (in)visible
37                 $('#login').hide();
38                 $('#chat').show();
39                 $('#roster').show();
40                 $('#entry').show();
41         }
42 }
43
44 function handleError(error) {
45         alert("An error occured:" + error);
46         handleDisconnected();
47 }
48
49 function handleDisconnected() {
50         // Make things (in)visible
51         $('#login').show();
52         $('#chat').hide();
53         $('#roster').hide();
54         $('#entry').hide();
55 }
56
57 function addBubble(nick) {
58         id = nick + 'Bubble';
59         if (!document.getElementById(id)) {
60                 var div = '';
61                 div += '<div id="' + id + '" class="bubble" onmousedown="startDrag(this)" style="display: none">';
62                 div += '<a href="#" onclick="' +"$('#" + id + "').hide('slow')" + '">Close</a>';
63                 div += '<div id="' + id + 'Chat" class="bubbleChat"></div>';
64                 div += '<form id="' + id + 'Form" class="bubbleForm" onsubmit="return sendChatMessage(this,' + "'" + nick + "');" + '" action="#">';
65                 div += '<input type="text" name="text" id="' + id + 'Text" class="bubbleForm"/>';
66                 div += '</form>';
67                 div += '</div>';
68                 $('body').append(div);
69         }
70         $('#'+id).show('slow');
71 }
72
73 function handleMessage(msg) {
74         var html = '';
75         var sender = Strophe.getResourceFromJid(msg.getAttribute('from'));
76         var type = msg.getAttribute('type');
77         var body = Strophe.getText(msg.getElementsByTagName('body')[0]);
78
79         html += '<div class="msg">';
80         if (sender) {
81                 html += '<span class="sender">';
82                 html += sender;
83                 html += ':</span> ';
84                 html += body + '</div>';
85         } else {
86                 html += '<span class="server">';
87                 html += body + '</span></div>';
88         }
89
90         if (type == 'chat') {
91                 addBubble(sender);
92                 $('#' + id + 'Chat').append(html);
93                 document.getElementById(id + 'Chat').lastChild.scrollIntoView();
94         } else {
95                 $('#chat').append(html);
96                 document.getElementById('chat').lastChild.scrollIntoView();
97         }
98
99         return true;
100 }
101
102 function handlePresence(presence) {
103         if (Strophe.getBareJidFromJid(presence.getAttribute('from')) != room)
104                 return true
105         roster_list = document.getElementById('roster_list');
106         nick = Strophe.getResourceFromJid(presence.getAttribute('from'));
107         type = presence.getAttribute('type');
108         if (type == 'unavailable') {
109                 element = document.getElementById(nick);
110                 roster_list.removeChild(element);
111                 $('#chat').append('<div class="msg"><span class="server">' + nick + ' left the groupchat</span></div>');
112         } else {
113                 roster_list.innerHTML += '<li id="' + nick + '" onclick="addBubble(' + "'" + nick + "')" + '" >' + nick + '</li>';
114                 $('#chat').append('<div class="msg"><span class="server">' + nick + ' joined the groupchat</span></div>');
115         }
116
117         return true;
118 }
119
120 function handleIQ(iq) {
121         var to = iq.getAttribute('to');
122         var from = iq.getAttribute('from');
123         var type = iq.getAttribute('type');
124
125         //FIXME: Clients SHOULD send the content of the original stanza back for analysis
126
127         var reply = $iq({to: from, from: to, type: 'error'}).c('error', {type: 'cancel'}).c('feature-not-implemented', {xmlns: 'urn:ietf:params:xml:ns:xmpp-stanzas'});
128
129         connection.send(reply.tree());
130
131         return true;
132 }
133
134 function handleIqVersion(iq) {
135         var to = iq.getAttribute('to');
136         var from = iq.getAttribute('from');
137
138         var reply = $iq({type: 'result', to: from, from: to}).c('query', {xmlns: Strophe.NS.VERSION}).c('name').t('XMPPChat').up().c('version').t('preAny').up().c('os').t(navigator.userAgent);
139
140         connection.send(reply.tree());
141
142         return true;
143 }
144
145 function handleIqTime(iq) {
146         var now = new Date();
147         var to = iq.getAttribute('to');
148         var from = iq.getAttribute('from');
149
150         var reply = $iq({type: 'result', from: to, to: from}).c('time', {xmlns: 'urn:xmpp:time'}).c('utc').t(now.getUTCFullYear() + '-' + now.getUTCMonth() + '-' + now.getUTCDate() + 'T' + now.getUTCHours() + ':' + now.getUTCMinutes() + ':' + now.getUTCSeconds + '.' + now.getUTCMilliseconds() + 'Z').up().c('tzo').t(now.getTimezoneOffset()/60 + ':' + now.getTimezoneOffset()%60);
151
152         connection.send(reply.tree());
153
154         return true;
155 }
156
157 function sendMessage(aForm) {
158         if (aForm.text.value) {
159                 message = $msg({type: 'groupchat', to: room}).c('body').t(aForm.text.value);
160                 connection.send(message.tree());
161                 aForm.text.value = '';
162         }
163         return false;
164 }
165
166 function sendChatMessage(aForm, to) {
167         if (aForm.text.value) {
168                 body = aForm.text.value
169                 message = $msg({type: 'chat', to: room + '/' + to}).c('body').t(body);
170                 connection.send(message.tree());
171                 aForm.text.value = '';
172                 var html = '';
173                 html += '<div class="msg">';
174                 html += '<span class="sender">';
175                 html += nickname;
176                 html += ':</span> ';
177                 html += body + '</div>';
178                 document.getElementById(to + 'BubbleChat').innerHTML += html;
179                 document.getElementById(to + 'BubbleChat').lastChild.scrollIntoView();
180
181         }
182         return false;
183 }
184
185 var dragElement = null;
186 var mouseX = 0;
187 var mouseY = 0;
188 var offX = 0;
189 var offY = 0;
190
191 function startDrag(element) {
192         dragElement = element;
193         offX = mouseX - dragElement.offsetLeft;
194         offY = mouseY - dragElement.offsetTop;
195 }
196
197 function doDrag(eve) {
198         mouseX = eve.pageX;
199         mouseY = eve.pageY;
200
201         if (dragElement) {
202                 dragElement.style.left = (mouseX - offX) + 'px';
203                 dragElement.style.top = (mouseY - offY) + 'px';
204         }
205 }
206
207 function stopDrag(eve) {
208         dragElement = null;
209 }
210
211 onunload = function() {
212         if (connection) {
213                 connection.disconnect();
214         }
215 }
216
217 onmousemove = doDrag;
218
219 onmouseup = stopDrag;