summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorlouiz’ <louiz@louiz.org>2016-10-04 19:32:45 +0200
committerlouiz’ <louiz@louiz.org>2016-10-04 19:32:45 +0200
commit1d197ff26ce5a88ba851969edb3ea915759c3477 (patch)
tree3706ab8ccc247525675ddde1456b3e73bba99abc /src
parent28f1dd76548fc9a7de3920d938903f68cdfffe0d (diff)
downloadbiboumi-1d197ff26ce5a88ba851969edb3ea915759c3477.tar.gz
biboumi-1d197ff26ce5a88ba851969edb3ea915759c3477.tar.bz2
biboumi-1d197ff26ce5a88ba851969edb3ea915759c3477.tar.xz
biboumi-1d197ff26ce5a88ba851969edb3ea915759c3477.zip
Respond to muc#traffic requests
fix #3069
Diffstat (limited to 'src')
-rw-r--r--src/xmpp/biboumi_component.cpp26
-rw-r--r--src/xmpp/biboumi_component.hpp5
2 files changed, 31 insertions, 0 deletions
diff --git a/src/xmpp/biboumi_component.cpp b/src/xmpp/biboumi_component.cpp
index 1e66b62..b9a8779 100644
--- a/src/xmpp/biboumi_component.cpp
+++ b/src/xmpp/biboumi_component.cpp
@@ -408,6 +408,13 @@ void BiboumiComponent::handle_iq(const Stanza& stanza)
stanza_error.disable();
}
}
+ else if (iid.type == Iid::Type::Channel)
+ {
+ if (node == MUC_TRAFFIC_NS)
+ {
+ this->send_irc_channel_muc_traffic_info(id, from, to_str);
+ }
+ }
}
else if ((query = stanza.get_child("query", VERSION_NS)))
{
@@ -724,6 +731,25 @@ void BiboumiComponent::send_irc_server_disco_info(const std::string& id, const s
this->send_stanza(iq);
}
+void BiboumiComponent::send_irc_channel_muc_traffic_info(const std::string id, const std::string& jid_from, const std::string& jid_to)
+{
+ Stanza iq("iq");
+ iq["type"] = "result";
+ iq["id"] = id;
+ iq["from"] = jid_from;
+ iq["to"] = jid_to;
+
+ XmlNode query("query");
+ query["xmlns"] = DISCO_INFO_NS;
+ query["node"] = MUC_TRAFFIC_NS;
+ // We drop all “special” traffic (like xhtml-im, chatstates, etc), so
+ // don’t include any <feature/>
+ iq.add_child(std::move(iq));
+
+ this->send_stanza(iq);
+
+}
+
void BiboumiComponent::send_iq_version_request(const std::string& from,
const std::string& jid_to)
{
diff --git a/src/xmpp/biboumi_component.hpp b/src/xmpp/biboumi_component.hpp
index 77104ed..d5b87e9 100644
--- a/src/xmpp/biboumi_component.hpp
+++ b/src/xmpp/biboumi_component.hpp
@@ -66,6 +66,11 @@ public:
*/
void send_irc_server_disco_info(const std::string& id, const std::string& jid_to, const std::string& jid_from);
/**
+ * Sends the allowed namespaces in MUC message, according to
+ * http://xmpp.org/extensions/xep-0045.html#impl-service-traffic
+ */
+ void send_irc_channel_muc_traffic_info(const std::string id, const std::string& jid_from, const std::string& jid_to);
+ /**
* Send an iq version request
*/
void send_iq_version_request(const std::string& from,