/* +------------------------------------+ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * * Inspire is copyright (C) 2002-2004 ChatSpike-Dev. * E-mail: * * * * Written by Craig Edwards, Craig McLure, and others. * This program is free but copyrighted software; see * the file COPYING for details. * * --------------------------------------------------- */ using namespace std; #include #include #include #include "users.h" #include "channels.h" #include "modules.h" #include "helperfuncs.h" /* $ModDesc: Forbids users from messaging each other. Users may still message opers and opers may message other opers. */ class ModuleRestrictMsg : public Module { Server *Srv; public: ModuleRestrictMsg(Server* Me) : Module::Module(Me) { Srv = Me; } virtual int OnUserPreMessage(userrec* user,void* dest,int target_type, std::string &text) { if (target_type == TYPE_USER) { userrec* u = (userrec*)dest; if ((strchr(u->modes,'o')) || (strchr(user->modes,'o'))) { // message allowed if: // (1) the sender is opered // (2) the recipient is opered // (3) both are opered // 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); return 1; } // however, we must allow channel messages... return 0; } virtual int OnUserPreNotice(userrec* user,void* dest,int target_type, std::string &text) { return this->OnUserPreMessage(user,dest,target_type,text); } virtual ~ModuleRestrictMsg() { } virtual Version GetVersion() { return Version(1,0,0,1,VF_VENDOR); } }; class ModuleRestrictMsgFactory : public ModuleFactory { public: ModuleRestrictMsgFactory() { } ~ModuleRestrictMsgFactory() { } virtual Module * CreateModule(Server* Me) { return new ModuleRestrictMsg(Me); } }; extern "C" void * init_module( void ) { return new ModuleRestrictMsgFactory; }