]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_silence_ext.cpp
Header update: 2007 -> 2008
[user/henk/code/inspircd.git] / src / modules / m_silence_ext.cpp
index 370452fd6b8a047f8d01fc6ed3c054bb95be7e84..f37d67b13cf9488fc3ba239f4ff16accdac208bb 100644 (file)
@@ -2,35 +2,22 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- *                       E-mail:
- *                <brain@chatspike.net>
- *               <Craig@chatspike.net>
- *     
- * Written by Craig Edwards, Craig McLure, and others.
+ *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
  *
  * ---------------------------------------------------
  */
 
-using namespace std;
-
-#include <stdio.h>
-#include <string>
-#include <vector>
-#include <stdarg.h>
-#include "users.h"
-#include "channels.h"
-#include "modules.h"
-#include "hashcomp.h"
 #include "inspircd.h"
 #include "wildcard.h"
 
 /* $ModDesc: Provides support for the /SILENCE command */
 
 /* Improved drop-in replacement for the /SILENCE command
- * syntax: /SILENCE [+|-]<mask> <p|c|i|n|a|x> as in <private|channel|invites|notices|all|exclude>
+ * syntax: /SILENCE [+|-]<mask> <p|c|i|n|t|a|x> as in <privatemessage|channelmessage|invites|privatenotice|channelnotice|all|exclude>
  *
  * example that blocks all except private messages
  *  /SILENCE +*!*@* a
@@ -59,20 +46,23 @@ static int SILENCE_PRIVATE  = 0x0001; /* p  private messages      */
 static int SILENCE_CHANNEL     = 0x0002; /* c  channel messages      */
 static int SILENCE_INVITE      = 0x0004; /* i  invites               */
 static int SILENCE_NOTICE      = 0x0008; /* n  notices               */
-static int SILENCE_ALL         = 0x0010; /* a  all, (pcin)           */
-static int SILENCE_EXCLUDE     = 0x0020; /* x  exclude this pattern  */
+static int SILENCE_CNOTICE     = 0x0010; /* t  channel notices       */
+static int SILENCE_ALL         = 0x0020; /* a  all, (pcint)          */
+static int SILENCE_EXCLUDE     = 0x0040; /* x  exclude this pattern  */
 
 
-class cmd_silence : public command_t
+class CommandSilence : public Command
 {
+       unsigned int& maxsilence;
  public:
-       cmd_silence (InspIRCd* Instance) : command_t(Instance,"SILENCE", 0, 0)
+       CommandSilence (InspIRCd* Instance, unsigned int &max) : Command(Instance,"SILENCE", 0, 0), maxsilence(max)
        {
                this->source = "m_silence_ext.so";
-               syntax = "{[+|-]<mask> <p|c|i|n|a|x>}";
+               syntax = "{[+|-]<mask> <p|c|i|n|t|a|x>}";
+               TRANSLATE3(TR_TEXT, TR_TEXT, TR_END);
        }
 
-       CmdResult Handle (const char** parameters, int pcnt, userrec *user)
+       CmdResult Handle (const char** parameters, int pcnt, User *user)
        {
                if (!pcnt)
                {
@@ -90,7 +80,7 @@ class cmd_silence : public command_t
                        }
                        user->WriteServ("272 %s :End of Silence List",user->nick);
 
-                       return CMD_SUCCESS;
+                       return CMD_LOCALONLY;
                }
                else if (pcnt > 0)
                {
@@ -106,7 +96,7 @@ class cmd_silence : public command_t
                        }
                        
                        if (!mask.length())
-                       {
+                       {
                                // 'SILENCE +' or 'SILENCE -', assume *!*@*
                                mask = "*!*@*";
                        }
@@ -121,31 +111,24 @@ class cmd_silence : public command_t
                                // does it contain any entries and does it exist?
                                if (sl)
                                {
-                                       if (sl->size())
+                                       for (silencelist::iterator i = sl->begin(); i != sl->end(); i++)
                                        {
-                                               silencelist::iterator i,safei;
-                                               for (i = sl->begin(); i != sl->end(); i++)
-                                        {
-                                                       // search through for the item
-                                                       irc::string listitem = i->first.c_str();
-                                                       if (listitem == mask && i->second == pattern)
+                                               // search through for the item
+                                               irc::string listitem = i->first.c_str();
+                                               if (listitem == mask && i->second == pattern)
+                                               {
+                                                       sl->erase(i);
+                                                       user->WriteServ("950 %s %s :Removed %s %s from silence list",user->nick, user->nick, mask.c_str(), DecompPattern(pattern).c_str());
+                                                       if (!sl->size())
                                                        {
-                                                               safei = i;
-                                                               --i;
-                                                       sl->erase(safei);
-                                                               user->WriteServ("950 %s %s :Removed %s %s from silence list",user->nick, user->nick, mask.c_str(), DecompPattern(pattern).c_str());
-                                                               break;
+                                                               delete sl;
+                                                               user->Shrink("silence_list");
                                                        }
+                                                       return CMD_SUCCESS;
                                                }
                                        }
-                                       else
-                                       {
-                                               // tidy up -- if a user's list is empty, theres no use having it
-                                               // hanging around in the user record.
-                                               DELETE(sl);
-                                               user->Shrink("silence_list");
-                                       }
                                }
+                               user->WriteServ("952 %s %s :%s %s does not exist on your silence list",user->nick, user->nick, mask.c_str(), DecompPattern(pattern).c_str());
                        }
                        else if (action == '+')
                        {
@@ -158,13 +141,18 @@ class cmd_silence : public command_t
                                        sl = new silencelist;
                                        user->Extend("silence_list", sl);
                                }
+                               if (sl->size() > maxsilence)
+                               {
+                                       user->WriteServ("952 %s %s :Your silence list is full",user->nick, user->nick);
+                                       return CMD_FAILURE;
+                               }
                                for (silencelist::iterator n = sl->begin(); n != sl->end();  n++)
                                {
                                        irc::string listitem = n->first.c_str();
                                        if (listitem == mask && n->second == pattern)
                                        {
                                                user->WriteServ("952 %s %s :%s %s is already on your silence list",user->nick, user->nick, mask.c_str(), DecompPattern(pattern).c_str());
-                                               return CMD_SUCCESS;
+                                               return CMD_FAILURE;
                                        }
                                }
                                if (((pattern & SILENCE_EXCLUDE) > 0))
@@ -179,16 +167,16 @@ class cmd_silence : public command_t
                                return CMD_SUCCESS;
                        }
                }
-               return CMD_SUCCESS;
+               return CMD_LOCALONLY;
        }
 
        /* turn the nice human readable pattern into a mask */
        int CompilePattern(const char* pattern)
        {
                int p = 0;
-               for (uint n = 0; n < strlen(pattern); n++)
+               for (const char* n = pattern; *n; n++)
                {
-                       switch (pattern[n])
+                       switch (*n)
                        {
                                case 'p':
                                        p |= SILENCE_PRIVATE;
@@ -202,6 +190,9 @@ class cmd_silence : public command_t
                                case 'n':
                                        p |= SILENCE_NOTICE;
                                        break;
+                               case 't':
+                                       p |= SILENCE_CNOTICE;
+                                       break;
                                case 'a':
                                        p |= SILENCE_ALL;
                                        break;
@@ -218,15 +209,17 @@ class cmd_silence : public command_t
        /* turn the mask into a nice human readable format */
        std::string DecompPattern (const int pattern)
        {
-               std::string out = "";
+               std::string out;
                if ((pattern & SILENCE_PRIVATE) > 0)
-                       out += ",private";
+                       out += ",privatemessages";
                if ((pattern & SILENCE_CHANNEL) > 0)
-                       out += ",channel";
+                       out += ",channelmessages";
                if ((pattern & SILENCE_INVITE) > 0)
                        out += ",invites";
                if ((pattern & SILENCE_NOTICE) > 0)
-                       out += ",notices";
+                       out += ",privatenotices";
+               if ((pattern & SILENCE_CNOTICE) > 0)
+                       out += ",channelnotices";
                if ((pattern & SILENCE_ALL) > 0)
                        out = ",all";
                if ((pattern & SILENCE_EXCLUDE) > 0)
@@ -238,34 +231,37 @@ class cmd_silence : public command_t
 
 class ModuleSilence : public Module
 {
-       
-       cmd_silence* mycommand;
+       CommandSilence* mycommand;
+       unsigned int maxsilence;
  public:
  
        ModuleSilence(InspIRCd* Me)
-               : Module::Module(Me)
+               : Module(Me), maxsilence(32)
        {
-               
-               mycommand = new cmd_silence(ServerInstance);
+               OnRehash(NULL, "");
+               mycommand = new CommandSilence(ServerInstance,maxsilence);
                ServerInstance->AddCommand(mycommand);
+               Implementation eventlist[] = { I_OnRehash, I_OnBuildExemptList, I_OnUserQuit, I_On005Numeric, I_OnUserPreNotice, I_OnUserPreMessage, I_OnUserPreInvite };
+               ServerInstance->Modules->Attach(eventlist, this, 7);
        }
 
-       void Implements(char* List)
+       virtual void OnRehash(User* user, const std::string &parameter)
        {
-               List[I_OnUserQuit] = List[I_On005Numeric] = List[I_OnUserPreNotice] = List[I_OnUserPreMessage] = 1;
-               List[I_OnUserPreInvite] = 1;
-               List[I_OnPreCommand] = 1;
+               ConfigReader Conf(ServerInstance);
+               maxsilence = Conf.ReadInteger("silence", "maxentries", 0, true);
+               if (!maxsilence)
+                       maxsilence = 32;
        }
 
-       virtual void OnUserQuit(userrec* user, const std::string &reason)
+
+       virtual void OnUserQuit(User* user, const std::string &reason, const std::string &oper_message)
        {
                // when the user quits tidy up any silence list they might have just to keep things tidy
-               // and to prevent a HONKING BIG MEMORY LEAK!
                silencelist* sl;
                user->GetExt("silence_list", sl);
                if (sl)
                {
-                       DELETE(sl);
+                       delete sl;
                        user->Shrink("silence_list");
                }
        }
@@ -273,155 +269,13 @@ class ModuleSilence : public Module
        virtual void On005Numeric(std::string &output)
        {
                // we don't really have a limit...
-               output = output + " SILENCE=999";
-       }
-
-       virtual int OnUserPreMessage(userrec* user,void* dest,int target_type, std::string &text, char status)
-       {
-               if (target_type == TYPE_USER)
-               {
-                       return MatchPattern((userrec*)dest, user, SILENCE_PRIVATE);
-               }
-               return 0;
-       }
-
-       virtual int OnUserPreNotice(userrec* user,void* dest,int target_type, std::string &text, char status)
-       {
-               return MatchPattern((userrec*)dest, user, SILENCE_NOTICE);
-       }
-
-       virtual int OnUserPreInvite(userrec* source,userrec* dest,chanrec* channel)
-       {
-               return MatchPattern(dest, source, SILENCE_INVITE);
-       }
-
-       int MatchPattern(userrec* dest, userrec* source, int pattern)
-       {
-               silencelist* sl;
-               dest->GetExt("silence_list", sl);
-               if (sl)
-               {
-                       for (silencelist::const_iterator c = sl->begin(); c != sl->end(); c++)
-                       {
-                               if ((match(source->GetFullHost(), c->first.c_str())) && ( ((c->second & pattern) > 0)) || ((c->second & SILENCE_ALL) > 0))
-                               {
-                                       if (((c->second & SILENCE_EXCLUDE) > 0))
-                                       {
-                                               return 0;
-                                       }
-                                       else {
-                                               return 1;
-                                       }
-                               }
-                       }
-               }
-               return 0;
-       }
-
-       virtual int OnPreCommand(const std::string &command, const char** parameters, int pcnt, userrec *user, bool validated, const std::string &original_line)
-       {
-               /* Implement the part of cmd_privmsg.cpp that handles *channel* messages, if cmd_privmsg.cpp
-                * is changed this probably needs updating too. Also implement the actual write to the users
-                * on the channel. This code is from channels.cpp, and should also be changed if channels.cpp
-                * updates it's corresponding code
-                */
-               if ((validated) && (command == "PRIVMSG"))
-               {
-                       char status = 0;
-                       if ((*parameters[0] == '@') || (*parameters[0] == '%') || (*parameters[0] == '+'))
-                       {
-                               status = *parameters[0];
-                               parameters[0]++;
-                       }
-                       if (parameters[0][0] == '#')
-                       {
-                               chanrec *chan;
-                               user->idle_lastmsg = ServerInstance->Time();
-                               chan = ServerInstance->FindChan(parameters[0]);
-                               if (chan)
-                               {
-                                       if (IS_LOCAL(user))
-                                       {
-                                               if ((chan->modes[CM_NOEXTERNAL]) && (!chan->HasUser(user)))
-                                               {
-                                                       user->WriteServ("404 %s %s :Cannot send to channel (no external messages)", user->nick, chan->name);
-                                                       return 1;
-                                               }
-                                               if ((chan->modes[CM_MODERATED]) && (chan->GetStatus(user) < STATUS_VOICE))
-                                               {
-                                                       user->WriteServ("404 %s %s :Cannot send to channel (+m)", user->nick, chan->name);
-                                                       return 1;
-                                               }
-                                       }
-                                       int MOD_RESULT = 0;
-
-                                       std::string temp = parameters[1];
-                                       FOREACH_RESULT(I_OnUserPreMessage,OnUserPreMessage(user,chan,TYPE_CHANNEL,temp,status));
-                                       if (MOD_RESULT) {
-                                               return 1;
-                                       }
-                                       parameters[1] = temp.c_str();
-
-                                       if (temp == "")
-                                       {
-                                               user->WriteServ("412 %s No text to send", user->nick);
-                                               return 1;
-                                       }
-
-                                       /* This next call into channel.cpp is the one that gets replaced by our modified method
-                                        * chan->WriteAllExceptSender(user, false, status, "PRIVMSG %s :%s", chan->name, parameters[1]);
-                                        */
-                                       WriteAllExceptSenderAndSilenced(chan, user, false, status, "PRIVMSG %s :%s", chan->name, parameters[1]);
-
-                                       FOREACH_MOD(I_OnUserMessage,OnUserMessage(user,chan,TYPE_CHANNEL,parameters[1],status));
-                                       return 1;
-                               }
-                               else
-                               {
-                                       /* no such nick/channel */
-                                       user->WriteServ("401 %s %s :No such nick/channel",user->nick, parameters[0]);
-                                       return 1;
-                               }
-                               return 1;
-                       }
-                       else
-                       {
-                               command_t* privmsg_command = ServerInstance->Parser->GetHandler("PRIVMSG");
-                               if (privmsg_command)
-                               {
-                                       privmsg_command->Handle(parameters, pcnt, user);
-                                       return 1;
-                               }
-                               else
-                               {
-                                       ServerInstance->Log(DEBUG, "Could not find PRIVMSG Command!");
-                               }
-                       }
-               }
-               return 0;
+               output = output + " ESILENCE SILENCE=" + ConvToStr(maxsilence);
        }
 
-       /* Taken from channels.cpp and slightly modified, see OnPreCommand above*/
-       void WriteAllExceptSenderAndSilenced(chanrec* chan, userrec* user, bool serversource, char status, char* text, ...)
-       {
-               char textbuffer[MAXBUF];
-               va_list argsPtr;
-
-               if (!text)
-                       return;
-
-               va_start(argsPtr, text);
-               vsnprintf(textbuffer, MAXBUF, text, argsPtr);
-               va_end(argsPtr);
-
-               this->WriteAllExceptSenderAndSilenced(chan, user, serversource, status, std::string(textbuffer));
-       }
-
-       /* Taken from channels.cpp and slightly modified, see OnPreCommand above*/
-       void WriteAllExceptSenderAndSilenced(chanrec* chan, userrec* user, bool serversource, char status, const std::string& text)
+       virtual void OnBuildExemptList(MessageType message_type, Channel* chan, User* sender, char status, CUList &exempt_list, const std::string &text)
        {
+               int public_silence = (message_type == MSG_PRIVMSG ? SILENCE_CHANNEL : SILENCE_CNOTICE);
                CUList *ulist;
-
                switch (status)
                {
                        case '@':
@@ -437,58 +291,77 @@ class ModuleSilence : public Module
                                ulist = chan->GetUsers();
                                break;
                }
-       
+
                for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
                {
-                       if ((IS_LOCAL(i->second)) && (user != i->second))
+                       if (IS_LOCAL(i->first))
                        {
-                               if (serversource)
+                               if (MatchPattern(i->first, sender, public_silence) == 1)
                                {
-                                       i->second->WriteServ(text);
-                               }
-                               else
-                               {
-                                       if (MatchPattern(i->second, user, SILENCE_CHANNEL) == 0)
-                                       {
-                                               i->second->WriteFrom(user,text);
-                                       }
+                                       exempt_list[i->first] = i->first->nick;
                                }
                        }
                }
        }
 
-       virtual ~ModuleSilence()
+       virtual int PreText(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list, int silence_type)
        {
+               if (!IS_LOCAL(user))
+                       return 0;
+
+               if (target_type == TYPE_USER)
+               {
+                       return MatchPattern((User*)dest, user, silence_type);
+               }
+               else if (target_type == TYPE_CHANNEL)
+               {
+                       Channel* chan = (Channel*)dest;
+                       if (chan)
+                       {
+                               this->OnBuildExemptList((silence_type == SILENCE_PRIVATE ? MSG_PRIVMSG : MSG_NOTICE), chan, user, status, exempt_list, "");
+                       }
+               }
+               return 0;
        }
-       
-       virtual Version GetVersion()
+
+       virtual int OnUserPreMessage(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
        {
-               return Version(1,1,0,1,VF_VENDOR,API_VERSION);
+               return PreText(user, dest, target_type, text, status, exempt_list, SILENCE_PRIVATE);
        }
-};
 
+       virtual int OnUserPreNotice(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
+       {
+               return PreText(user, dest, target_type, text, status, exempt_list, SILENCE_NOTICE);
+       }
 
-class ModuleSilenceFactory : public ModuleFactory
-{
- public:
-       ModuleSilenceFactory()
+       virtual int OnUserPreInvite(User* source,User* dest,Channel* channel)
        {
+               return MatchPattern(dest, source, SILENCE_INVITE);
        }
-       
-       ~ModuleSilenceFactory()
+
+       int MatchPattern(User* dest, User* source, int pattern)
+       {
+               silencelist* sl;
+               dest->GetExt("silence_list", sl);
+               if (sl)
+               {
+                       for (silencelist::const_iterator c = sl->begin(); c != sl->end(); c++)
+                       {
+                               if (((((c->second & pattern) > 0)) || ((c->second & SILENCE_ALL) > 0)) && (ServerInstance->MatchText(source->GetFullHost(), c->first)))
+                                       return !(((c->second & SILENCE_EXCLUDE) > 0));
+                       }
+               }
+               return 0;
+       }
+
+       virtual ~ModuleSilence()
        {
        }
        
-       virtual Module * CreateModule(InspIRCd* Me)
+       virtual Version GetVersion()
        {
-               return new ModuleSilence(Me);
+               return Version(1, 1, 0, 1, VF_COMMON | VF_VENDOR, API_VERSION);
        }
-       
 };
 
-
-extern "C" void * init_module( void )
-{
-       return new ModuleSilenceFactory;
-}
-
+MODULE_INIT(ModuleSilence)