]> 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 0646caa0b65c7d193eaa11bcaa1e8c67fbebdd46..53297483ed9e1c93733612a2bad1e89faa352d81 100644 (file)
@@ -1 +1,113 @@
-/*       +------------------------------------+\r *       | Inspire Internet Relay Chat Daemon |\r *       +------------------------------------+\r *\r *  InspIRCd: (C) 2002-2007 InspIRCd Development Team\r * See: http://www.inspircd.org/wiki/index.php/Credits\r *\r * This program is free but copyrighted software; see\r *            the file COPYING for details.\r *\r * ---------------------------------------------------\r */\r\r#include "inspircd.h"\r#include "users.h"\r#include "channels.h"\r#include "modules.h"\r\r/* $ModDesc: Provides support for unreal-style channel mode +c */\r\r/** Handles the +c channel mode\r */\rclass BlockColor : public ModeHandler\r{\r public:\r      BlockColor(InspIRCd* Instance) : ModeHandler(Instance, 'c', 0, 0, false, MODETYPE_CHANNEL, false) { }\r\r ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string &parameter, bool adding)\r {\r              if (adding)\r            {\r                      if (!channel->IsModeSet('c'))\r                  {\r                              channel->SetMode('c',true);\r                            return MODEACTION_ALLOW;\r                       }\r              }\r              else\r           {\r                      if (channel->IsModeSet('c'))\r                   {\r                              channel->SetMode('c',false);\r                           return MODEACTION_ALLOW;\r                       }\r              }\r\r             return MODEACTION_DENY;\r        }\r};\r\rclass ModuleBlockColour : public Module\r{\r        bool AllowChanOps;      \r       BlockColor *bc;\r public:\r \r     ModuleBlockColour(InspIRCd* Me) : Module(Me)\r   {\r              bc = new BlockColor(ServerInstance);\r           if (!ServerInstance->AddMode(bc, 'c'))\r                 throw ModuleException("Could not add new modes!");\r     }\r\r     void Implements(char* List)\r    {\r              List[I_OnUserPreMessage] = List[I_OnUserPreNotice] = 1;\r        }\r\r\r    virtual int OnUserPreMessage(userrec* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)\r    {\r              if ((target_type == TYPE_CHANNEL) && (IS_LOCAL(user)))\r         {\r                      chanrec* c = (chanrec*)dest;\r                   \r                       if(c->IsModeSet('c'))\r                  {\r                              if (!CHANOPS_EXEMPT(ServerInstance, 'c') || CHANOPS_EXEMPT(ServerInstance, 'c') && c->GetStatus(user) != STATUS_OP)\r                            {\r                                      for (std::string::iterator i = text.begin(); i != text.end(); i++)\r                                     {\r                                              switch (*i)\r                                            {\r                                                      case 2:\r                                                        case 3:\r                                                        case 15:\r                                                       case 21:\r                                                       case 22:\r                                                       case 31:\r                                                               user->WriteServ("404 %s %s :Can't send colours to channel (+c set)",user->nick, c->name);\r                                                              return 1;\r                                                      break;\r                                         }\r                                      }\r                              }\r                      }\r              }\r              return 0;\r      }\r      \r       virtual int OnUserPreNotice(userrec* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)\r     {\r              return OnUserPreMessage(user,dest,target_type,text,status,exempt_list);\r        }\r\r     virtual ~ModuleBlockColour()\r   {\r              ServerInstance->Modes->DelMode(bc);\r            DELETE(bc);\r    }\r      \r       virtual Version GetVersion()\r   {\r              return Version(1,1,0,0,VF_COMMON|VF_VENDOR,API_VERSION);\r       }\r};\r\rMODULE_INIT(ModuleBlockColour)\r
\ No newline at end of file
+/*       +------------------------------------+
+ *       | Inspire Internet Relay Chat Daemon |
+ *       +------------------------------------+
+ *
+ *  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.
+ *
+ * ---------------------------------------------------
+ */
+
+#include "inspircd.h"
+
+/* $ModDesc: Provides support for unreal-style channel mode +c */
+
+/** Handles the +c channel mode
+ */
+class BlockColor : public ModeHandler
+{
+ public:
+       BlockColor(InspIRCd* Instance) : ModeHandler(Instance, 'c', 0, 0, false, MODETYPE_CHANNEL, false) { }
+
+       ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding)
+       {
+               if (adding)
+               {
+                       if (!channel->IsModeSet('c'))
+                       {
+                               channel->SetMode('c',true);
+                               return MODEACTION_ALLOW;
+                       }
+               }
+               else
+               {
+                       if (channel->IsModeSet('c'))
+                       {
+                               channel->SetMode('c',false);
+                               return MODEACTION_ALLOW;
+                       }
+               }
+
+               return MODEACTION_DENY;
+       }
+};
+
+class ModuleBlockColour : public Module
+{
+       bool AllowChanOps;      
+       BlockColor *bc;
+ public:
+       ModuleBlockColour(InspIRCd* Me) : Module(Me)
+       {
+               bc = new BlockColor(ServerInstance);
+               if (!ServerInstance->AddMode(bc))
+                       throw ModuleException("Could not add new modes!");
+               Implementation eventlist[] = { I_OnUserPreMessage, I_OnUserPreNotice };
+               ServerInstance->Modules->Attach(eventlist, this, 2);
+       }
+
+
+
+       virtual int OnUserPreMessage(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
+       {
+               if ((target_type == TYPE_CHANNEL) && (IS_LOCAL(user)))
+               {
+                       Channel* c = (Channel*)dest;
+                       
+                       if(c->IsModeSet('c'))
+                       {
+                               if (!CHANOPS_EXEMPT(ServerInstance, 'c') || CHANOPS_EXEMPT(ServerInstance, 'c') && c->GetStatus(user) != STATUS_OP)
+                               {
+                                       for (std::string::iterator i = text.begin(); i != text.end(); i++)
+                                       {
+                                               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;
+                                               }
+                                       }
+                               }
+                       }
+               }
+               return 0;
+       }
+       
+       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);
+       }
+
+       virtual ~ModuleBlockColour()
+       {
+               ServerInstance->Modes->DelMode(bc);
+               delete bc;
+       }
+       
+       virtual Version GetVersion()
+       {
+               return Version(1,1,0,0,VF_COMMON|VF_VENDOR,API_VERSION);
+       }
+};
+
+MODULE_INIT(ModuleBlockColour)