~singpolyma/biboumi

e20bf15b7a3a8366870578fe3bf442b6d1e1e176 — Stephen Paul Weber 1 year, 22 days ago f370ce3
Allow disco queries with a node (needed for CAPS)
2 files changed, 5 insertions(+), 4 deletions(-)

M src/xmpp/biboumi_component.cpp
M src/xmpp/biboumi_component.hpp
M src/xmpp/biboumi_component.cpp => src/xmpp/biboumi_component.cpp +4 -3
@@ 536,10 536,10 @@ void BiboumiComponent::handle_iq(const Stanza& stanza)
          const std::string node = query->get_tag("node");
          if (to_str == this->served_hostname)
            {
              if (node.empty())
              if (node.empty() || node.rfind("https://biboumi.louiz.org/#", 0) == 0)
                {
                  // On the gateway itself
                  this->send_self_disco_info(id, from);
                  this->send_self_disco_info(id, from, node);
                  stanza_error.disable();
                }
            }


@@ 943,12 943,13 @@ std::vector<Bridge*> BiboumiComponent::get_bridges() const
  return res;
}

void BiboumiComponent::send_self_disco_info(const std::string& id, const std::string& jid_to)
void BiboumiComponent::send_self_disco_info(const std::string& id, const std::string& jid_to, const std::string& node)
{
  Stanza iq("iq");
  {
    iq["type"] = "result";
    iq["id"] = id;
    if (!node.empty()) iq["node"] = node;
    iq["to"] = jid_to;
    iq["from"] = this->served_hostname;
    XmlSubNode query(iq, "query");

M src/xmpp/biboumi_component.hpp => src/xmpp/biboumi_component.hpp +1 -1
@@ 63,7 63,7 @@ public:
  /**
   * Send a result IQ with the gateway disco informations.
   */
  void send_self_disco_info(const std::string& id, const std::string& jid_to);
  void send_self_disco_info(const std::string& id, const std::string& jid_to, const std::string& node);
  /**
   * Send a result IQ with the disco informations regarding IRC server JIDs.
   */