]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_blockcolor.cpp
Use Utils->ServerUser instead of ServerInstance->FakeClient in m_spanningtree
[user/henk/code/inspircd.git] / src / modules / m_blockcolor.cpp
index 0646caa0b65c7d193eaa11bcaa1e8c67fbebdd46..6ed27d8109ec75d2269c7e121d7a61fed2c73131 100644 (file)
@@ -1 +1,96 @@
-/*       +------------------------------------+\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-2009 InspIRCd Development Team
+ * See: http://wiki.inspircd.org/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 SimpleChannelModeHandler
+{
+ public:
+       BlockColor(InspIRCd* Instance) : SimpleChannelModeHandler(Instance, 'c') { }
+};
+
+class ModuleBlockColour : public Module
+{
+       bool AllowChanOps;
+       BlockColor *bc;
+ public:
+
+       ModuleBlockColour(InspIRCd* Me) : Module(Me)
+       {
+               bc = new BlockColor(ServerInstance);
+               if (!ServerInstance->Modes->AddMode(bc))
+                       throw ModuleException("Could not add new modes!");
+               Implementation eventlist[] = { I_OnUserPreMessage, I_OnUserPreNotice, I_On005Numeric };
+               ServerInstance->Modules->Attach(eventlist, this, 3);
+       }
+
+       virtual void On005Numeric(std::string &output)
+       {
+               ServerInstance->AddExtBanChar('c');
+       }
+
+       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 (CHANOPS_EXEMPT(ServerInstance, 'c') && c->GetStatus(user) == STATUS_OP)
+                       {
+                               return 0;
+                       }
+
+                       if(c->IsModeSet('c') || c->GetExtBanStatus(user, 'c') < 0)
+                       {
+                               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->WriteNumeric(404, "%s %s :Can't send colours to channel (+c set)",user->nick.c_str(), c->name.c_str());
+                                                       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("$Id$",VF_COMMON|VF_VENDOR,API_VERSION);
+       }
+};
+
+MODULE_INIT(ModuleBlockColour)