summaryrefslogtreecommitdiff
path: root/src/inspircd.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2004-04-06 19:22:11 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2004-04-06 19:22:11 +0000
commit05e460e96cdd03f94587c0e0c5792c75d3dfa440 (patch)
treef62fee5c6107de87d3062eeff778ac28b27af345 /src/inspircd.cpp
parent32aa3afffaee0aabfd2aa295ae029af8cddba472 (diff)
Added OnUserPreMessage and OnUserPreNotice events (not tested yet)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@407 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r--src/inspircd.cpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index 214cb969c..e3fe29ab4 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -3639,6 +3639,14 @@ void handle_privmsg(char **parameters, int pcnt, userrec *user)
WriteServ(user->fd,"404 %s %s :Cannot send to channel (+m)", user->nick, chan->name);
return;
}
+
+ int MOD_RESULT = 0;
+
+ FOREACH_RESULT(OnUserPreMessage(user,chan,TYPE_USER,std::string(parameters[1]));
+ if (MOD_RESULT) {
+ return;
+ }
+
ChanExceptSender(chan, user, "PRIVMSG %s :%s", chan->name, parameters[1]);
}
else
@@ -3657,6 +3665,14 @@ void handle_privmsg(char **parameters, int pcnt, userrec *user)
/* auto respond with aweh msg */
WriteServ(user->fd,"301 %s %s :%s",user->nick,dest->nick,dest->awaymsg);
}
+
+ int MOD_RESULT = 0;
+
+ FOREACH_RESULT(OnUserPreMessage(user,dest,TYPE_USER,std::string(parameters[1]));
+ if (MOD_RESULT) {
+ return;
+ }
+
WriteTo(user, dest, "PRIVMSG %s :%s", dest->nick, parameters[1]);
}
else
@@ -3690,6 +3706,14 @@ void handle_notice(char **parameters, int pcnt, userrec *user)
WriteServ(user->fd,"404 %s %s :Cannot send to channel (+m)", user->nick, chan->name);
return;
}
+
+ int MOD_RESULT = 0;
+
+ FOREACH_RESULT(OnUserPreNotice(user,chan,TYPE_CHANNEL,std::string(parameters[1]));
+ if (MOD_RESULT) {
+ return;
+ }
+
WriteChannel(chan, user, "NOTICE %s :%s", chan->name, parameters[1]);
}
else
@@ -3703,6 +3727,13 @@ void handle_notice(char **parameters, int pcnt, userrec *user)
dest = Find(parameters[0]);
if (dest)
{
+ int MOD_RESULT = 0;
+
+ FOREACH_RESULT(OnUserPreNotice(user,dest,TYPE_USER,std::string(parameters[1]));
+ if (MOD_RESULT) {
+ return;
+ }
+
WriteTo(user, dest, "NOTICE %s :%s", dest->nick, parameters[1]);
}
else