summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2015-01-12 22:50:06 +0100
committerFlorent Le Coz <louiz@louiz.org>2015-01-12 22:50:06 +0100
commitb79dbefbe71824d8d42c5034a6900644a0850c4c (patch)
tree6439f7b2ad1b8625b2b741fb2981bd457a7aa151 /src
parent0ee47f628d7b34f285264cde06ff01a5b27e0ace (diff)
downloadbiboumi-b79dbefbe71824d8d42c5034a6900644a0850c4c.tar.gz
biboumi-b79dbefbe71824d8d42c5034a6900644a0850c4c.tar.bz2
biboumi-b79dbefbe71824d8d42c5034a6900644a0850c4c.tar.xz
biboumi-b79dbefbe71824d8d42c5034a6900644a0850c4c.zip
If we sent a message to a user, their notices are considered private messages
fix #2882
Diffstat (limited to 'src')
-rw-r--r--src/irc/irc_client.cpp27
-rw-r--r--src/irc/irc_client.hpp4
2 files changed, 29 insertions, 2 deletions
diff --git a/src/irc/irc_client.cpp b/src/irc/irc_client.cpp
index 707593f..228fc6e 100644
--- a/src/irc/irc_client.cpp
+++ b/src/irc/irc_client.cpp
@@ -243,7 +243,9 @@ void IrcClient::send_private_message(const std::string& username, const std::str
this->send_message(IrcMessage(std::string(type), {username, body.substr(pos, 400)}));
pos += 400;
}
-
+ // We always try to insert and we don't care if the username was already
+ // in the set.
+ this->nicks_to_treat_as_private.insert(username);
}
void IrcClient::send_part_command(const std::string& chan_name, const std::string& status_message)
@@ -292,9 +294,30 @@ void IrcClient::on_notice(const IrcMessage& message)
const std::string body = message.arguments[1];
if (!to.empty() && this->chantypes.find(to[0]) == this->chantypes.end())
- this->bridge->send_xmpp_message(this->hostname, from, body);
+ {
+ // The notice is for the us precisely.
+
+ // Find out if we already sent a private message to this user. If yes
+ // we treat that message as a private message coming from
+ // it. Otherwise we treat it as a notice coming from the server.
+ IrcUser user(from);
+ std::string nick = utils::tolower(user.nick);
+ log_debug("received notice from nick: " << nick);
+ if (this->nicks_to_treat_as_private.find(nick) !=
+ this->nicks_to_treat_as_private.end())
+ { // We previously sent a message to that nick)
+ // this->bridge->send_message(iid, nick, body, muc);
+ this->bridge->send_message({nick + "!" + this->hostname}, nick, body,
+ false);
+ }
+ else
+ this->bridge->send_xmpp_message(this->hostname, from, body);
+ }
else
{
+ // The notice was directed at a channel we are in. Modify the message
+ // to indicate that it is a notice, and make it a MUC message coming
+ // from the MUC JID
IrcMessage modified_message(std::move(from), "PRIVMSG", {to, "\u000303[notice]\u0003 "s + body});
this->on_channel_message(modified_message);
}
diff --git a/src/irc/irc_client.hpp b/src/irc/irc_client.hpp
index 9bef04a..70d7955 100644
--- a/src/irc/irc_client.hpp
+++ b/src/irc/irc_client.hpp
@@ -289,6 +289,10 @@ private:
* connection succeeds on that port.
*/
std::stack<std::pair<std::string, bool>> ports_to_try;
+ /**
+ * A set of (lowercase) nicknames to which we sent a private message.
+ */
+ std::set<std::string> nicks_to_treat_as_private;
IrcClient(const IrcClient&) = delete;
IrcClient(IrcClient&&) = delete;