]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_blockcolor.cpp
Merge pull request #984 from Renegade334/modules-exempt-uline
[user/henk/code/inspircd.git] / src / modules / m_blockcolor.cpp
index 0646caa0b65c7d193eaa11bcaa1e8c67fbebdd46..a08ad7c6f0dabca419445a767703489070824139 100644 (file)
@@ -1 +1,86 @@
-/*       +------------------------------------+\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
+/*
+ * InspIRCd -- Internet Relay Chat Daemon
+ *
+ *   Copyright (C) 2004-2006, 2008 Craig Edwards <craigedwards@brainbox.cc>
+ *   Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
+ *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
+ *   Copyright (C) 2005, 2007 Robin Burchell <robin+git@viroteck.net>
+ *   Copyright (C) 2006 Oliver Lupton <oliverlupton@gmail.com>
+ *
+ * This file is part of InspIRCd.  InspIRCd is free software: you can
+ * redistribute it and/or modify it under the terms of the GNU General Public
+ * License as published by the Free Software Foundation, version 2.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
+ * details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+
+#include "inspircd.h"
+
+/** Handles the +c channel mode
+ */
+class BlockColor : public SimpleChannelModeHandler
+{
+ public:
+       BlockColor(Module* Creator) : SimpleChannelModeHandler(Creator, "blockcolor", 'c') { }
+};
+
+class ModuleBlockColor : public Module
+{
+       BlockColor bc;
+ public:
+
+       ModuleBlockColor() : bc(this)
+       {
+       }
+
+       void On005Numeric(std::map<std::string, std::string>& tokens) CXX11_OVERRIDE
+       {
+               tokens["EXTBAN"].push_back('c');
+       }
+
+       ModResult OnUserPreMessage(User* user, void* dest, int target_type, std::string& text, char status, CUList& exempt_list, MessageType msgtype) CXX11_OVERRIDE
+       {
+               if ((target_type == TYPE_CHANNEL) && (IS_LOCAL(user)))
+               {
+                       Channel* c = (Channel*)dest;
+                       ModResult res = ServerInstance->OnCheckExemption(user,c,"blockcolor");
+
+                       if (res == MOD_RES_ALLOW)
+                               return MOD_RES_PASSTHRU;
+
+                       if (!c->GetExtBanStatus(user, 'c').check(!c->IsModeSet(bc)))
+                       {
+                               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(ERR_CANNOTSENDTOCHAN, "%s :Can't send colors to channel (+c set)", c->name.c_str());
+                                                       return MOD_RES_DENY;
+                                               break;
+                                       }
+                               }
+                       }
+               }
+               return MOD_RES_PASSTHRU;
+       }
+
+       Version GetVersion() CXX11_OVERRIDE
+       {
+               return Version("Provides channel mode +c to block color",VF_VENDOR);
+       }
+};
+
+MODULE_INIT(ModuleBlockColor)