forked from strophe/strophejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbasic.js
73 lines (63 loc) · 1.9 KB
/
basic.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
var BOSH_SERVICE = 'http://bosh.metajack.im:5280/xmpp-httpbind';
var connection = null;
function log(msg, data) {
var tr = document.createElement('tr');
var th = document.createElement('th');
th.setAttribute( "style", "text-align: left; vertical-align: top;" );
var td;
th.appendChild( document.createTextNode(msg) );
tr.appendChild( th );
if (data) {
td = document.createElement('td');
pre = document.createElement('code');
pre.setAttribute("style", "white-space: pre-wrap;");
td.appendChild(pre);
pre.appendChild( document.createTextNode( vkbeautify.xml(data) ) );
tr.appendChild(td);
} else {
th.setAttribute('colspan', '2');
}
$('#log').append(tr);
}
function rawInput(data)
{
log('RECV', data);
}
function rawOutput(data)
{
log('SENT', data);
}
function onConnect(status)
{
if (status == Strophe.Status.CONNECTING) {
log('Strophe is connecting.');
} else if (status == Strophe.Status.CONNFAIL) {
log('Strophe failed to connect.');
$('#connect').get(0).value = 'connect';
} else if (status == Strophe.Status.DISCONNECTING) {
log('Strophe is disconnecting.');
} else if (status == Strophe.Status.DISCONNECTED) {
log('Strophe is disconnected.');
$('#connect').get(0).value = 'connect';
} else if (status == Strophe.Status.CONNECTED) {
log('Strophe is connected.');
connection.disconnect();
}
}
$(document).ready(function () {
connection = new Strophe.Connection(BOSH_SERVICE);
connection.rawInput = rawInput;
connection.rawOutput = rawOutput;
$('#connect').bind('click', function () {
var button = $('#connect').get(0);
if (button.value == 'connect') {
button.value = 'disconnect';
connection.connect($('#jid').get(0).value,
$('#pass').get(0).value,
onConnect);
} else {
button.value = 'connect';
connection.disconnect();
}
});
});