summaryrefslogtreecommitdiff
path: root/src/bridge
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2014-11-12 04:05:56 +0100
committerFlorent Le Coz <louiz@louiz.org>2014-11-12 06:17:25 +0100
commite1d69806ed7c92bdfe1bf632064bf68b3d1d266b (patch)
treea2aa251c02c074e7f0babd970bff4388f22310b4 /src/bridge
parentdccd8039ad44669452fa47d9b620114fd97af604 (diff)
downloadbiboumi-e1d69806ed7c92bdfe1bf632064bf68b3d1d266b.tar.gz
biboumi-e1d69806ed7c92bdfe1bf632064bf68b3d1d266b.tar.bz2
biboumi-e1d69806ed7c92bdfe1bf632064bf68b3d1d266b.tar.xz
biboumi-e1d69806ed7c92bdfe1bf632064bf68b3d1d266b.zip
Rename iq_responder_callback_t to irc_… and add the equivalent to wait for iqs
Diffstat (limited to 'src/bridge')
-rw-r--r--src/bridge/bridge.cpp98
-rw-r--r--src/bridge/bridge.hpp14
2 files changed, 59 insertions, 53 deletions
diff --git a/src/bridge/bridge.cpp b/src/bridge/bridge.cpp
index ba4911a..bc89073 100644
--- a/src/bridge/bridge.cpp
+++ b/src/bridge/bridge.cpp
@@ -1,6 +1,7 @@
#include <bridge/bridge.hpp>
#include <bridge/colors.hpp>
#include <xmpp/xmpp_component.hpp>
+#include <xmpp/xmpp_stanza.hpp>
#include <irc/irc_message.hpp>
#include <network/poller.hpp>
#include <utils/encoding.hpp>
@@ -220,45 +221,49 @@ void Bridge::send_irc_kick(const Iid& iid, const std::string& target, const std:
const std::string& iq_id, const std::string& to_jid)
{
IrcClient* irc = this->get_irc_client(iid.get_server());
- if (irc)
+
+ if (!irc)
+ return;
+
+ irc->send_kick_command(iid.get_local(), target, reason);
+ irc_responder_callback_t cb = [this, target, iq_id, to_jid, iid](const std::string& irc_hostname,
+ const IrcMessage& message) -> bool
{
- irc->send_kick_command(iid.get_local(), target, reason);
- this->add_waiting_iq([this, target, iq_id, to_jid, iid](const std::string& irc_hostname, const IrcMessage& message){
- if (irc_hostname != iid.get_server())
+ if (irc_hostname != iid.get_server())
+ return false;
+ if (message.command == "KICK" && message.arguments.size() >= 2)
+ {
+ const std::string target_later = message.arguments[1];
+ const std::string chan_name_later = utils::tolower(message.arguments[0]);
+ if (target_later != target || chan_name_later != iid.get_local())
return false;
- if (message.command == "KICK" && message.arguments.size() >= 2)
- {
- const std::string target_later = message.arguments[1];
- const std::string chan_name_later = utils::tolower(message.arguments[0]);
- if (target_later != target || chan_name_later != iid.get_local())
- return false;
- this->xmpp->send_iq_result(iq_id, to_jid, std::to_string(iid));
- }
- else if (message.command == "401" && message.arguments.size() >= 2)
- {
- const std::string target_later = message.arguments[1];
- if (target_later != target)
- return false;
- std::string error_message = "No such nick";
- if (message.arguments.size() >= 3)
- error_message = message.arguments[2];
- this->xmpp->send_stanza_error("iq", to_jid, std::to_string(iid), iq_id, "cancel", "item-not-found",
- error_message, false);
- }
- else if (message.command == "482" && message.arguments.size() >= 2)
- {
- const std::string chan_name_later = utils::tolower(message.arguments[1]);
- if (chan_name_later != iid.get_local())
- return false;
- std::string error_message = "You're not channel operator";
- if (message.arguments.size() >= 3)
- error_message = message.arguments[2];
- this->xmpp->send_stanza_error("iq", to_jid, std::to_string(iid), iq_id, "cancel", "not-allowed",
- error_message, false);
- }
- return true;
- });
- }
+ this->xmpp->send_iq_result(iq_id, to_jid, std::to_string(iid));
+ }
+ else if (message.command == "401" && message.arguments.size() >= 2)
+ {
+ const std::string target_later = message.arguments[1];
+ if (target_later != target)
+ return false;
+ std::string error_message = "No such nick";
+ if (message.arguments.size() >= 3)
+ error_message = message.arguments[2];
+ this->xmpp->send_stanza_error("iq", to_jid, std::to_string(iid), iq_id, "cancel", "item-not-found",
+ error_message, false);
+ }
+ else if (message.command == "482" && message.arguments.size() >= 2)
+ {
+ const std::string chan_name_later = utils::tolower(message.arguments[1]);
+ if (chan_name_later != iid.get_local())
+ return false;
+ std::string error_message = "You're not channel operator";
+ if (message.arguments.size() >= 3)
+ error_message = message.arguments[2];
+ this->xmpp->send_stanza_error("iq", to_jid, std::to_string(iid), iq_id, "cancel", "not-allowed",
+ error_message, false);
+ }
+ return true;
+ };
+ this->add_waiting_irc(std::move(cb));
}
void Bridge::set_channel_topic(const Iid& iid, const std::string& subject)
@@ -284,7 +289,8 @@ void Bridge::send_irc_version_request(const std::string& irc_hostname, const std
// TODO, add a timer to remove that waiting iq if the server does not
// respond with a matching command before n seconds
- this->add_waiting_iq([this, target, iq_id, to_jid, irc_hostname, from_jid](const std::string& hostname, const IrcMessage& message){
+ irc_responder_callback_t cb = [this, target, iq_id, to_jid, irc_hostname, from_jid](const std::string& hostname, const IrcMessage& message) -> bool
+ {
if (irc_hostname != hostname)
return false;
IrcUser user(message.prefix);
@@ -307,10 +313,10 @@ void Bridge::send_irc_version_request(const std::string& irc_hostname, const std
return true;
}
return false;
- });
+ };
+ this->add_waiting_irc(std::move(cb));
}
-
void Bridge::send_message(const Iid& iid, const std::string& nick, const std::string& body, const bool muc)
{
if (muc)
@@ -447,18 +453,18 @@ void Bridge::remove_preferred_from_jid(const std::string& nick)
this->preferred_user_from.erase(it);
}
-void Bridge::add_waiting_iq(iq_responder_callback_t&& callback)
+void Bridge::add_waiting_irc(irc_responder_callback_t&& callback)
{
- this->waiting_iq.emplace_back(std::move(callback));
+ this->waiting_irc.emplace_back(std::move(callback));
}
-void Bridge::trigger_response_iq(const std::string& irc_hostname, const IrcMessage& message)
+void Bridge::trigger_on_irc_message(const std::string& irc_hostname, const IrcMessage& message)
{
- auto it = this->waiting_iq.begin();
- while (it != this->waiting_iq.end())
+ auto it = this->waiting_irc.begin();
+ while (it != this->waiting_irc.end())
{
if ((*it)(irc_hostname, message) == true)
- it = this->waiting_iq.erase(it);
+ it = this->waiting_irc.erase(it);
else
++it;
}
diff --git a/src/bridge/bridge.hpp b/src/bridge/bridge.hpp
index b0e6a27..1f45b27 100644
--- a/src/bridge/bridge.hpp
+++ b/src/bridge/bridge.hpp
@@ -17,11 +17,11 @@ class Poller;
/**
* A callback called for each IrcMessage we receive. If the message triggers
- * a response, it must send an iq and return true (in that case it is
- * removed from the list), otherwise it must do nothing and just return
+ * a response, it must send ore or more iq and return true (in that case it
+ * is removed from the list), otherwise it must do nothing and just return
* false.
*/
-typedef std::function<bool(const std::string& irc_hostname, const IrcMessage& message)> iq_responder_callback_t;
+using irc_responder_callback_t = std::function<bool(const std::string& irc_hostname, const IrcMessage& message)>;
/**
* One bridge is spawned for each XMPP user that uses the component. The
@@ -146,15 +146,15 @@ public:
*/
void remove_preferred_from_jid(const std::string& nick);
/**
- * Add a callback to the waiting iq list.
+ * Add a callback to the waiting list of irc callbacks.
*/
- void add_waiting_iq(iq_responder_callback_t&& callback);
+ void add_waiting_irc(irc_responder_callback_t&& callback);
/**
* Iter over all the waiting_iq, call the iq_responder_filter_t for each,
* whenever one of them returns true: call the corresponding
* iq_responder_callback_t and remove the callback from the list.
*/
- void trigger_response_iq(const std::string& irc_hostname, const IrcMessage& message);
+ void trigger_on_irc_message(const std::string& irc_hostname, const IrcMessage& message);
private:
/**
@@ -203,7 +203,7 @@ private:
* request and we need a response from IRC to be able to provide the
* response iq.
*/
- std::list<iq_responder_callback_t> waiting_iq;
+ std::list<irc_responder_callback_t> waiting_irc;
Bridge(const Bridge&) = delete;
Bridge(Bridge&& other) = delete;