summaryrefslogtreecommitdiff
path: root/src/xmpp/xmpp_component.cpp
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2014-06-17 21:41:09 +0200
committerFlorent Le Coz <louiz@louiz.org>2014-06-20 10:45:42 +0200
commitb747f2825c43e31ade20267cecefe2c2a9c76241 (patch)
tree62f97b797b4c44b78de0cd3e8b3996cc946d0d87 /src/xmpp/xmpp_component.cpp
parentaaf71774131198de2095c07e560fb420833c544d (diff)
downloadbiboumi-b747f2825c43e31ade20267cecefe2c2a9c76241.tar.gz
biboumi-b747f2825c43e31ade20267cecefe2c2a9c76241.tar.bz2
biboumi-b747f2825c43e31ade20267cecefe2c2a9c76241.tar.xz
biboumi-b747f2825c43e31ade20267cecefe2c2a9c76241.zip
Respond to IQ version on the gateway, a server or a chan with biboumi version
ref #2455
Diffstat (limited to 'src/xmpp/xmpp_component.cpp')
-rw-r--r--src/xmpp/xmpp_component.cpp37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/xmpp/xmpp_component.cpp b/src/xmpp/xmpp_component.cpp
index 5ecb283..c06b46b 100644
--- a/src/xmpp/xmpp_component.cpp
+++ b/src/xmpp/xmpp_component.cpp
@@ -506,6 +506,16 @@ void XmppComponent::handle_iq(const Stanza& stanza)
}
}
}
+ else if ((query = stanza.get_child("query", VERSION_NS)))
+ {
+ Iid iid(to.local);
+ if (!iid.is_user)
+ {
+ // On the gateway itself or on a channel
+ this->send_self_version(id, from, to_str);
+ }
+ stanza_error.disable();
+ }
else if ((query = stanza.get_child("query", DISCO_ITEMS_NS)))
{
const std::string node = query->get_tag("node");
@@ -973,6 +983,33 @@ void XmppComponent::send_self_disco_info(const std::string& id, const std::strin
this->send_stanza(iq);
}
+void XmppComponent::send_self_version(const std::string& id, const std::string& jid_to, const std::string& jid_from)
+{
+ Stanza iq("iq");
+ iq["type"] = "result";
+ iq["id"] = id;
+ iq["to"] = jid_to;
+ iq["from"] = jid_from;
+ XmlNode query("query");
+ query["xmlns"] = VERSION_NS;
+ XmlNode name("name");
+ name.set_inner("biboumi");
+ name.close();
+ query.add_child(std::move(name));
+ XmlNode version("version");
+ version.set_inner(BIBOUMI_VERSION);
+ version.close();
+ query.add_child(std::move(version));
+ XmlNode os("os");
+ os.set_inner(SYSTEM_NAME);
+ os.close();
+ query.add_child(std::move(os));
+ query.close();
+ iq.add_child(std::move(query));
+ iq.close();
+ this->send_stanza(iq);
+}
+
void XmppComponent::send_adhoc_commands_list(const std::string& id, const std::string& requester_jid)
{
Stanza iq("iq");