在线和离线用户实时使用 strophe.js
Online and Offline users using strophe.js in real time
我正在使用 strophe.js javascript 客户端库连接到 xmpp 服务器(openfire) 使用下面的代码。
var BOSH_SERVICE = 'http://127.0.0.1:7070/http-bind/';
connection = new Strophe.Connection(BOSH_SERVICE);
connection.connect("jid",
"password",
onConnect);
回调函数(onConnect)如下:
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.');
log('ECHOBOT: Send a message to ' + connection.jid +
' to talk to me.');
connection.addHandler(onMessage, null, 'message', null, null, null);
connection.send($pres().tree());
console.log($pres().tree());
}
}
我已使用此代码成功连接到服务器,在此之前没有问题。
问题:实时更新用户列表状态。
让我解释一下我的问题:
我想显示实时更新的在线和离线用户列表。(类似于显示聊天应用程序。)
例如。假设有 3 个用户 A、B、C 并且都在线(已登录)
现在假设用户 A 断开连接或离线,那么用户 B、C 如何收到用户 A 状态的通知?。并在用户B和C列表中将用户A的状态更改为离线而不刷新。
strophe.js 中是否有任何方法会在有人连接或断开连接时自动调用。还是我需要自己写?
我不确定,但名单上有一些东西。
您可以使用此 Strophe 为您的好友订阅状态 API:
connection.send($pres({
to: jid, // buddy jid
type: "subscribe"
}));
实现了 XMPP 规范(详见 https://xmpp.org/rfcs/rfc3921.html#int)。
好友可以接受订阅回复:
connection.send($pres({
to: from, // jid of subscriber
type: "subscribed"
}));
您可以在 Plunker 上查看我基于 XMPP(使用 Strophe.js)的 Web 客户端示例:
我正在使用 strophe.js javascript 客户端库连接到 xmpp 服务器(openfire) 使用下面的代码。
var BOSH_SERVICE = 'http://127.0.0.1:7070/http-bind/';
connection = new Strophe.Connection(BOSH_SERVICE);
connection.connect("jid",
"password",
onConnect);
回调函数(onConnect)如下:
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.');
log('ECHOBOT: Send a message to ' + connection.jid +
' to talk to me.');
connection.addHandler(onMessage, null, 'message', null, null, null);
connection.send($pres().tree());
console.log($pres().tree());
}
}
我已使用此代码成功连接到服务器,在此之前没有问题。
问题:实时更新用户列表状态。
让我解释一下我的问题:
我想显示实时更新的在线和离线用户列表。(类似于显示聊天应用程序。)
例如。假设有 3 个用户 A、B、C 并且都在线(已登录)
现在假设用户 A 断开连接或离线,那么用户 B、C 如何收到用户 A 状态的通知?。并在用户B和C列表中将用户A的状态更改为离线而不刷新。
strophe.js 中是否有任何方法会在有人连接或断开连接时自动调用。还是我需要自己写?
我不确定,但名单上有一些东西。
您可以使用此 Strophe 为您的好友订阅状态 API:
connection.send($pres({
to: jid, // buddy jid
type: "subscribe"
}));
实现了 XMPP 规范(详见 https://xmpp.org/rfcs/rfc3921.html#int)。 好友可以接受订阅回复:
connection.send($pres({
to: from, // jid of subscriber
type: "subscribed"
}));
您可以在 Plunker 上查看我基于 XMPP(使用 Strophe.js)的 Web 客户端示例: