我有 XMPP 服务器(openfire)和一堆客户端(spark)分成几个组(部门)。我正在寻找将它们保留在会议室中的能力。我的意思是Skype具有的类似功能;当用户通过群组对话关闭窗口时,他的客户会继续跟踪该房间的活动,并且当出现新消息时,用户会再次自动加入该会议。我已经发现 spark+openfire 中没有这样的功能,虽然有很好的自动加入群聊书签功能,但是它并不能阻止用户简单地离开房间并且无法注意到进一步的事件。我想问一下是否有任何 XMPP 客户端实现了这个功能。我发现我可以设置我自己的具有管理权限的机器人来坐在每个房间上,并可能让它在用户离开会议并且他没有结束会话时强制踢/重新连接(例如通过 Openfire 的 HTTP 功能管理) ,所以连接时的自动加入会让他回来。但是,如果有替代方案,我认为简单地更改客户端应用程序会更容易和更好。
更新:我刚刚在 spark 中找到了“自动接受群聊邀请”选项,因此,如果我在他们不知情的情况下重新配置所有客户端并将此机器人设置为在此人离开频道时简单地发送邀请,它应该可以解决问题。还有其他想法吗?
更新2:
好的,伙计们,我已经成功测试了“Spark->首选项->群聊->自动接受群聊邀请”选项,它正在工作;我的 spark 会自动加入我被邀请参加的每个会议。所以我在基于 JAXL 3.0 的机器人中实现了会议观看 -> 自动重新邀请功能。唯一的问题是 jaxl-sent 邀请对我不起作用。这是源代码:
<?php
### JAXL message bot composed by ewilded
require 'JAXL-3.x/jaxl.php';
$jabber_conf=array('jid' => 'messagebot@localhost','host'=>'openfire','user'=>'messagebot','domain'=>'localhost','logLevel'=>4, 'strict'=>true, 'port'=>5222, 'pass'=>'somepass','log_level' => JAXL_INFO);
error_reporting(E_ALL);
$conference_rooms=array('tech@conference.localhost');
$client=null;
## Creating the object
$client = new JAXL($jabber_conf);
$client->require_xep(array(
'0045', // MUC
'0203', // Delayed Delivery
'0199', // XMPP Ping
'0249' // direct invite
));
## connect up callbacks
$client->add_cb('on_auth_success', function() use($client,$conference_rooms,$cron_interval) {
echo "Auth success.\n";
echo "My full jid: ".$client->full_jid->to_string()."\n";
$client->set_status("Mesasge bot - available!"); // set your status
$client->get_vcard(); // fetch your vcard
$client->get_roster(); // fetch your roster list
foreach($conference_rooms as $conference)
{
echo "Joining conference $conference.\n";
$room_full_jid=new XMPPJid("$conference/messagebot");
$client->xeps['0045']->join_room($room_full_jid);
}
});
$client->add_cb('on_chat_message', function($msg) use($client) {
$to=$msg->from;
echo "Sending answer to: ".$to."\n";
$client->send_chat_msg($to,"I am just simple bot written in PHP with JAXL XMPP library.");
});
$client->add_cb('on_connect_error',function(){echo "Connection error :(\n";});
$client->add_cb('on_disconnect', function() {
echo "Got disconnected.\n";
_debug("got on_disconnect cb");
});
$client->add_cb('on_error_stanza',function($msg)
{
echo "Error stanza.";
#print_r($msg);
});
$client->add_cb('on_presence_stanza',function($msg) use($client)
{
echo "Presence stanza.\n";
### joins and lefts are shown here, so here we simply send reinvite if we see that someone's left
if(isset($msg->attrs['type'])&&$msg->attrs['type']=='unavailable')
{
if(isset($msg->childrens[0])&&isset($msg->childrens[0]->childrens[0])&&isset($msg->childrens[0]->childrens[0]->attrs['jid']))
{
echo "Sending invite.\n";
$jid=$msg->childrens[0]->childrens[0]->attrs['jid'];
$bare_jid=explode("/",$jid);
$from_room=$msg->attrs['from'];
$bare_from_room=explode("/",$from_room);
echo $bare_jid[0]."\n";
echo $bare_from_room[0]."\n";
$client->xeps['0249']->invite($jid,$from_room); ### for some reason it does not work :(
echo "Invite ($jid to $from_room) sent.\n";
}
else
{
echo "Ignoring.\n";
}
}
echo "After presence stanza.\n";
});
$client->add_cb('on_normal_stanza',function()
{
echo "Normal stanza.\n";
});
$client->add_cb('on_groupchat_message',function($msg) use ($client) {
echo "Groupchat event received.\n";
});
echo "Start called.\n";
$client->start();
?>
会议室有“允许占用者邀请其他人”选项,两个帐户(我的朋友过去工作时向我发送邀请的帐户和消息机器人使用的帐户)都是技术组的成员,他们都没有管理权限,所以我确定这不是设置/权限相关的问题。
现在,当我离开会议室时,bot 检测到它并向我发送邀请,这是它在输出中的样子:... Presence 节。发送邀请。ewilded@localhost tech@conference.localhost 邀请(ewilded@localhost/Spark 2.6.3 to tech@conference.localhost/Ewil Ded)已发送。在存在节之后。...不幸的是,这个邀请没有生效。我想我在那个 xep 调用上做错了,或者更确切地说是它的参数: $client->xeps['0249']->invite($jid,$from_room);
如果有人在 Jaxl 中有工作邀请,请帮助,这是唯一要做的事情。