X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_restrictmsg.cpp;h=50d87b3535c324d3bbbd9b936a7dc807c6702037;hb=fea1a27cb96a114f698eedcf90401b78406108fb;hp=5d64535554fb80d3e7d1102d646511b19b8b60a1;hpb=eb4229deed0281ae566ef7e55a144e5d3183a4b2;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_restrictmsg.cpp b/src/modules/m_restrictmsg.cpp index 5d6453555..50d87b353 100644 --- a/src/modules/m_restrictmsg.cpp +++ b/src/modules/m_restrictmsg.cpp @@ -2,7 +2,7 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * Inspire is copyright (C) 2002-2004 ChatSpike-Dev. + * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. * E-mail: * * @@ -14,6 +14,8 @@ * --------------------------------------------------- */ +using namespace std; + #include #include #include @@ -30,17 +32,23 @@ class ModuleRestrictMsg : public Module Server *Srv; public: - ModuleRestrictMsg() + ModuleRestrictMsg(Server* Me) + : Module::Module(Me) + { + Srv = Me; + } + + void Implements(char* List) { - Srv = new Server; + List[I_OnUserPreMessage] = List[I_OnUserPreNotice] = 1; } - virtual int OnUserPreMessage(userrec* user,void* dest,int target_type, std::string &text) + virtual int OnUserPreMessage(userrec* user,void* dest,int target_type, std::string &text, char status) { if (target_type == TYPE_USER) { userrec* u = (userrec*)dest; - if ((strchr(u->modes,'o')) || (strchr(user->modes,'o'))) + if (*u->oper || *user->oper) { // message allowed if: // (1) the sender is opered @@ -49,21 +57,20 @@ class ModuleRestrictMsg : public Module // anything else, blocked. return 0; } - WriteServ(user->fd,"531 %s %s :You are not permitted to send private messages to this user",user->nick,u->nick); + user->WriteServ("531 %s %s :You are not permitted to send private messages to this user",user->nick,u->nick); return 1; } // however, we must allow channel messages... return 0; } - virtual int OnUserPreNotice(userrec* user,void* dest,int target_type, std::string &text) + virtual int OnUserPreNotice(userrec* user,void* dest,int target_type, std::string &text, char status) { - return this->OnUserPreMessage(user,dest,target_type,text); + return this->OnUserPreMessage(user,dest,target_type,text,status); } virtual ~ModuleRestrictMsg() { - delete Srv; } virtual Version GetVersion() @@ -84,9 +91,9 @@ class ModuleRestrictMsgFactory : public ModuleFactory { } - virtual Module * CreateModule() + virtual Module * CreateModule(Server* Me) { - return new ModuleRestrictMsg; + return new ModuleRestrictMsg(Me); } };