summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
authorattilamolnar <attilamolnar@hush.com>2012-10-22 18:14:37 +0200
committerattilamolnar <attilamolnar@hush.com>2012-10-23 22:13:38 +0200
commitd9d0d1b6a96cf52182b46b78393ba8b2a7c50f46 (patch)
treec7573695b09ff0825b735ea04d6d61bb43590880 /src/modules
parent91bf556dbdb5cf2210d8a701219e3ad01b2706fa (diff)
m_ircv3 Fix away-notify not sending AWAY messages when somebody joins who is away
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/m_ircv3.cpp31
1 files changed, 29 insertions, 2 deletions
diff --git a/src/modules/m_ircv3.cpp b/src/modules/m_ircv3.cpp
index fe400fa80..798734d55 100644
--- a/src/modules/m_ircv3.cpp
+++ b/src/modules/m_ircv3.cpp
@@ -31,6 +31,8 @@ class ModuleIRCv3 : public Module
bool awaynotify;
bool extendedjoin;
+ CUList last_excepts;
+
void WriteNeighboursWithExt(User* user, const std::string& line, const LocalIntExt& ext)
{
UserChanList chans(user->chans);
@@ -75,8 +77,8 @@ class ModuleIRCv3 : public Module
cap_extendedjoin(this, "extended-join")
{
OnRehash(NULL);
- Implementation eventlist[] = { I_OnUserJoin, I_OnSetAway, I_OnEvent };
- ServerInstance->Modules->Attach(eventlist, this, 3);
+ Implementation eventlist[] = { I_OnUserJoin, I_OnPostJoin, I_OnSetAway, I_OnEvent };
+ ServerInstance->Modules->Attach(eventlist, this, 4);
}
void OnRehash(User* user)
@@ -118,6 +120,10 @@ class ModuleIRCv3 : public Module
void OnUserJoin(Membership* memb, bool sync, bool created, CUList& excepts)
{
+ // Remember who is not going to see the JOIN because of other modules
+ if ((awaynotify) && (IS_AWAY(memb->user)))
+ last_excepts = excepts;
+
if (!extendedjoin)
return;
@@ -200,6 +206,27 @@ class ModuleIRCv3 : public Module
return MOD_RES_PASSTHRU;
}
+ void OnPostJoin(Membership *memb)
+ {
+ if ((!awaynotify) || (!IS_AWAY(memb->user)))
+ return;
+
+ std::string line = ":" + memb->user->GetFullHost() + " AWAY :" + memb->user->awaymsg;
+
+ const UserMembList* userlist = memb->chan->GetUsers();
+ for (UserMembCIter it = userlist->begin(); it != userlist->end(); ++it)
+ {
+ // Send the away notify line if the current member is local, has the away-notify cap and isn't excepted
+ User* member = IS_LOCAL(it->first);
+ if ((member) && (cap_awaynotify.ext.get(member)) && (last_excepts.find(member) == last_excepts.end()))
+ {
+ member->Write(line);
+ }
+ }
+
+ last_excepts.clear();
+ }
+
void Prioritize()
{
ServerInstance->Modules->SetPriority(this, I_OnUserJoin, PRIORITY_LAST);