豫ICP备17040950号-2

XMPP学习笔记——调试控制台

文章目录
  1. 1. 前言
  2. 2. 操作步骤
    1. 2.1. peek.html
    2. 2.2. peek.css
    3. 2.3. peek.js
  3. 3. 输入测试及运行结果
    1. 3.1. 控制出席
    2. 3.2. 设置状态为已离开
    3. 3.3. 探测版本
    4. 3.4. iq节错误
    5. 3.5. message节错误
    6. 3.6. presence节错误
  4. 4. 结束语
  5. 5. 参考文档

前言

开发人员总是喜欢不断地加工并完善自己的工具,在开发XMPP应用程序的过程中,我们将需要一款工具来辅助研究和查看协议流量。要是不使用查看源代码命令,或者不能轻易加工URL来测试远程站点的功能,那么很少有Web开发人员能够轻松工作。

对于XMPP节,这样的工具可用来查看协议流量并轻易地创建要发送的节。现在,我们就来做一个这样的工具。

Peek可用来帮助我们研究XMPP扩展如何运转以及为何有些扩展并不能按照预期执行操作。我们可以从应用程序中剪切并粘贴XMPP节构建代码,看看服务器响应究竟是什么。如果不熟悉特定的协议扩展,那么可以输入实例,看看服务器如何响应不同的输入。

操作步骤

其实这个程序和之前的Hello很像,步骤类似。

peek.html

新建peek.html,内容如下:

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
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
<title>Peek</title>

<link rel="stylesheet" type="text/css" href="./style/jquery-ui.css" >
<link rel="stylesheet" type="text/css" href="./style/jquery-ui.theme.css" >

<script type="text/javascript" src="./js/jquery.js"></script>
<script type="text/javascript" src="./js/jquery-ui.js"></script>
<script type="text/javascript" src="./js/strophe.js"></script>
<script type="text/javascript" src='./js/strophe.flxhr.js'></script>
<script type="text/javascript" src='./js/flXHR.js'></script>

<link rel='stylesheet' type='text/css' href='./style/peek.css'>
<script src='./js/peek.js'></script>
</head>
<body>
<h1>Peek</h1>

<div id='console'></div>
<textarea id='input' class='disabled'
disabled='disabled'>
</textarea>

<div id='buttonbar'>
<input id='send_button' type='button' value='Send Data'
disabled='disabled' class='button'>
<input id='disconnect_button' type='button' value='Disconnect'
disabled='disabled' class='button'>
</div>

<!-- login dialog -->
<div id='login_dialog' class='hidden'>
<label>JID:</label><input type='text' id='jid'>
<label>Password:</label><input type='password' id='password'>
</div>
</body>
</html>

peek.css

新建peek.css,内容如下:

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
body {
font-family: Helvetica;
}

h1 {
text-align: center;
}

#console {
padding: 10px;
height: 300px;
border: solid 1px #aaa;

background-color: #000;
color: #eee;
font-family: monospace;

overflow: auto;
}

#input {
width: 100%;
height: 100px;
font-family: monospace;
}

.incoming {
background-color: #111;
}

textarea.disabled {
background-color: #bbb;
}

#buttonbar {
margin: 10px;
}

#disconnect_button {
float: left;
width: 100px;
}

#send_button {
float: right;
width: 100px;
}

/* xml styles */
.xml_punc { color: #888; }
.xml_tag { color: #e77; }
.xml_aname { color: #55d; }
.xml_avalue { color: #77f; }
.xml_text { color: #aaa }
.xml_level0 { padding-left: 0; }
.xml_level1 { padding-left: 1em; }
.xml_level2 { padding-left: 2em; }
.xml_level3 { padding-left: 3em; }
.xml_level4 { padding-left: 4em; }
.xml_level5 { padding-left: 5em; }
.xml_level6 { padding-left: 6em; }
.xml_level7 { padding-left: 7em; }
.xml_level8 { padding-left: 8em; }
.xml_level9 { padding-left: 9em; }

peek.js

新建peek.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
var Peek = {
connection: null,

show_traffic: function (body, type) {
if (body.childNodes.length > 0) {
var console = $('#console').get(0);
var at_bottom = console.scrollTop >= console.scrollHeight -
console.clientHeight;;

$.each(body.childNodes, function () {
$('#console').append("<div class='" + type + "'>" +
Peek.pretty_xml(this) +
"</div>");
});

if (at_bottom) {
console.scrollTop = console.scrollHeight;
}
}
},

pretty_xml: function (xml, level) {
var i, j;
var result = [];
if (!level) {
level = 0;
}

result.push("<div class='xml_level" + level + "'>");
result.push("<span class='xml_punc'>&lt;</span>");
result.push("<span class='xml_tag'>");
result.push(xml.tagName);
result.push("</span>");

// attributes
var attrs = xml.attributes;
var attr_lead = []
for (i = 0; i < xml.tagName.length + 1; i++) {
attr_lead.push("&nbsp;");
}
attr_lead = attr_lead.join("");

for (i = 0; i < attrs.length; i++) {
result.push(" <span class='xml_aname'>");
result.push(attrs[i].nodeName);
result.push("</span><span class='xml_punc'>='</span>");
result.push("<span class='xml_avalue'>");
result.push(attrs[i].nodeValue);
result.push("</span><span class='xml_punc'>'</span>");

if (i !== attrs.length - 1) {
result.push("</div><div class='xml_level" + level + "'>");
result.push(attr_lead);
}
}

if (xml.childNodes.length === 0) {
result.push("<span class='xml_punc'>/&gt;</span></div>");
} else {
result.push("<span class='xml_punc'>&gt;</span></div>");

// children
$.each(xml.childNodes, function () {
if (this.nodeType === 1) {
result.push(Peek.pretty_xml(this, level + 1));
} else if (this.nodeType === 3) {
result.push("<div class='xml_text xml_level" +
(level + 1) + "'>");
result.push(this.nodeValue);
result.push("</div>");
}
});

result.push("<div class='xml xml_level" + level + "'>");
result.push("<span class='xml_punc'>&lt;/</span>");
result.push("<span class='xml_tag'>");
result.push(xml.tagName);
result.push("</span>");
result.push("<span class='xml_punc'>&gt;</span></div>");
}

return result.join("");
},

text_to_xml: function (text) {
var doc = null;
if (window['DOMParser']) {
var parser = new DOMParser();
doc = parser.parseFromString(text, 'text/xml');
} else if (window['ActiveXObject']) {
var doc = new ActiveXObject("MSXML2.DOMDocument");
doc.async = false;
doc.loadXML(text);
} else {
throw {
type: 'PeekError',
message: 'No DOMParser object found.'
};
}

var elem = doc.documentElement;
if ($(elem).filter('parsererror').length > 0) {
return null;
}
return elem;
}
};

$(document).ready(function () {
$('#login_dialog').dialog({
autoOpen: true,
draggable: false,
modal: true,
title: 'Connect to XMPP',
buttons: {
"Connect": function () {
$(document).trigger('connect', {
jid: $('#jid').val(),
password: $('#password').val()
});

$('#password').val('');
$(this).dialog('close');
}
}
});

$('#disconnect_button').click(function () {
Peek.connection.disconnect();
});

$('#send_button').click(function () {
var input = $('#input').val();
var error = false;
if (input.length > 0) {
if (input[0] === '<') {
var xml = Peek.text_to_xml(input);
if (xml) {
Peek.connection.send(xml);
$('#input').val('');
} else {
error = true;
}
} else if (input[0] === '$') {
try {
var builder = eval(input);
Peek.connection.send(builder);
$('#input').val('');
} catch (e) {
console.log(e);
error = true;
}
} else {
error = true;
}
}

if (error) {
$('#input').animate({backgroundColor: "#faa"});
}
});

$('#input').keypress(function () {
$(this).css({backgroundColor: '#fff'});
});
});

$(document).bind('connect', function (ev, data) {
var conn = new Strophe.Connection(
"http://bosh.metajack.im:5280/xmpp-httpbind");

conn.xmlInput = function (body) {
Peek.show_traffic(body, 'incoming');
};

conn.xmlOutput = function (body) {
Peek.show_traffic(body, 'outgoing');
};

conn.connect(data.jid, data.password, function (status) {
if (status === Strophe.Status.CONNECTED) {
$(document).trigger('connected');
} else if (status === Strophe.Status.DISCONNECTED) {
$(document).trigger('disconnected');
}
});

Peek.connection = conn;
});

$(document).bind('connected', function () {
$('.button').removeAttr('disabled');
$('#input').removeClass('disabled').removeAttr('disabled');
});

$(document).bind('disconnected', function () {
$('.button').attr('disabled', 'disabled');
$('#input').addClass('disabled').attr('disabled', 'disabled');
});

输入测试及运行结果



控制出席

打开Peek应用程序,登陆到XMPP服务器,输入<presence/>,然后点击Send按钮。

设置状态为已离开

1
$pres().c('show').t("away").up().c('status').t("reading");

探测版本

1
$iq({type:"get",id:"version",to:"jabber.org"}).c("query",{xmlns:"jabber:iq:version"});

或者

1
<iq type='get' id='version1' to='jabber.org'><query xmlns='jabber:iq:version'/></iq>

没有反应,不知道为什么。

iq节错误

1
$iq({type:"get",id:"version2",to:"gmail.com"}).c("query",{xmlns:"jabber:iq:version"});

1
2
3
<iq type='get' id='info1' to='bad-room-123@conference.jabber.org'>
<query xmlns='http://jabber.org/protocol/disco#info' />
</iq>

message节错误

1
$msg({to:'voidking@voidking.lit',type:'chat'}).c('body').t('What think you of books ?');

presence节错误

不知道怎么发送presence节错误信息,省略先。

结束语

这篇文章也是摘自《XMPP高级编程》,void也不详细解释代码了,看不懂的地方,请小伙伴参考这本书。

参考文档

《XMPP高级编程(作者Jack Moffitt)》
《XMPP The Definitive Guide(作者Peter Saint-Andre, Kevin Smith, and Remko Tron?on)》
前辈们的技术博客……