]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_blockcolor.cpp
Remove InspIRCd::WriteOpers in favour of snomask O
[user/henk/code/inspircd.git] / src / modules / m_blockcolor.cpp
index 38da18cbe48aa16bf73c686653e22c1938bdca03..53297483ed9e1c93733612a2bad1e89faa352d81 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
  * See: http://www.inspircd.org/wiki/index.php/Credits
  *
  * This program is free but copyrighted software; see
  * ---------------------------------------------------
  */
 
-#include <stdio.h>
-#include <sstream>
-#include "users.h"
-#include "channels.h"
-#include "modules.h"
 #include "inspircd.h"
 
 /* $ModDesc: Provides support for unreal-style channel mode +c */
@@ -27,7 +22,7 @@ class BlockColor : public ModeHandler
  public:
        BlockColor(InspIRCd* Instance) : ModeHandler(Instance, 'c', 0, 0, false, MODETYPE_CHANNEL, false) { }
 
-       ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string &parameter, bool adding)
+       ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding)
        {
                if (adding)
                {
@@ -52,44 +47,45 @@ class BlockColor : public ModeHandler
 
 class ModuleBlockColour : public Module
 {
-       
+       bool AllowChanOps;      
        BlockColor *bc;
  public:
  
-       ModuleBlockColour(InspIRCd* Me) : Module::Module(Me)
+       ModuleBlockColour(InspIRCd* Me) : Module(Me)
        {
-               
                bc = new BlockColor(ServerInstance);
-               ServerInstance->AddMode(bc, 'c');
+               if (!ServerInstance->AddMode(bc))
+                       throw ModuleException("Could not add new modes!");
+               Implementation eventlist[] = { I_OnUserPreMessage, I_OnUserPreNotice };
+               ServerInstance->Modules->Attach(eventlist, this, 2);
        }
 
-       void Implements(char* List)
-       {
-               List[I_OnUserPreMessage] = List[I_OnUserPreNotice] = 1;
-       }
 
-       virtual int OnUserPreMessage(userrec* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
+
+       virtual int OnUserPreMessage(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
        {
-               if (target_type == TYPE_CHANNEL)
+               if ((target_type == TYPE_CHANNEL) && (IS_LOCAL(user)))
                {
-                       chanrec* c = (chanrec*)dest;
+                       Channel* c = (Channel*)dest;
                        
                        if(c->IsModeSet('c'))
                        {
-                               /* Replace a strlcpy(), which ran even when +c wasn't set, with this (no copies at all) -- Om */
-                               for (std::string::iterator i = text.begin(); i != text.end(); i++)
+                               if (!CHANOPS_EXEMPT(ServerInstance, 'c') || CHANOPS_EXEMPT(ServerInstance, 'c') && c->GetStatus(user) != STATUS_OP)
                                {
-                                       switch (*i)
+                                       for (std::string::iterator i = text.begin(); i != text.end(); i++)
                                        {
-                                               case 2:
-                                               case 3:
-                                               case 15:
-                                               case 21:
-                                               case 22:
-                                               case 31:
-                                                       user->WriteServ("404 %s %s :Can't send colours to channel (+c set)",user->nick, c->name);
-                                                       return 1;
-                                               break;
+                                               switch (*i)
+                                               {
+                                                       case 2:
+                                                       case 3:
+                                                       case 15:
+                                                       case 21:
+                                                       case 22:
+                                                       case 31:
+                                                               user->WriteServ("404 %s %s :Can't send colours to channel (+c set)",user->nick, c->name);
+                                                               return 1;
+                                                       break;
+                                               }
                                        }
                                }
                        }
@@ -97,7 +93,7 @@ class ModuleBlockColour : public Module
                return 0;
        }
        
-       virtual int OnUserPreNotice(userrec* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
+       virtual int OnUserPreNotice(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
        {
                return OnUserPreMessage(user,dest,target_type,text,status,exempt_list);
        }
@@ -105,7 +101,7 @@ class ModuleBlockColour : public Module
        virtual ~ModuleBlockColour()
        {
                ServerInstance->Modes->DelMode(bc);
-               DELETE(bc);
+               delete bc;
        }
        
        virtual Version GetVersion()
@@ -114,27 +110,4 @@ class ModuleBlockColour : public Module
        }
 };
 
-
-class ModuleBlockColourFactory : public ModuleFactory
-{
- public:
-       ModuleBlockColourFactory()
-       {
-       }
-       
-       ~ModuleBlockColourFactory()
-       {
-       }
-       
-       virtual Module * CreateModule(InspIRCd* Me)
-       {
-               return new ModuleBlockColour(Me);
-       }
-       
-};
-
-
-extern "C" void * init_module( void )
-{
-       return new ModuleBlockColourFactory;
-}
+MODULE_INIT(ModuleBlockColour)