]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_blockcolor.cpp
Only assign NewServices once the duplicate check is done.
[user/henk/code/inspircd.git] / src / modules / m_blockcolor.cpp
index 0646caa0b65c7d193eaa11bcaa1e8c67fbebdd46..c5dc35fe371b52fc1881a6686716b3fdc2c52772 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) 2019 Matt Schatz <genius3000@g3k.solutions>
+ *   Copyright (C) 2013, 2017, 2020 Sadie Powell <sadie@witchery.services>
+ *   Copyright (C) 2012, 2018 Robby <robby@chatbelgie.be>
+ *   Copyright (C) 2012 Shawn Smith <ShawnSmith0828@gmail.com>
+ *   Copyright (C) 2012 DjSlash <djslash@djslash.org>
+ *   Copyright (C) 2012 Attila Molnar <attilamolnar@hush.com>
+ *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
+ *   Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
+ *   Copyright (C) 2008 Robin Burchell <robin+git@viroteck.net>
+ *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
+ *   Copyright (C) 2006, 2010 Craig Edwards <brain@inspircd.org>
+ *
+ * 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"
+#include "modules/exemption.h"
+
+class ModuleBlockColor : public Module
+{
+       CheckExemption::EventProvider exemptionprov;
+       SimpleChannelModeHandler bc;
+ public:
+
+       ModuleBlockColor()
+               : exemptionprov(this)
+               , bc(this, "blockcolor", 'c')
+       {
+       }
+
+       void On005Numeric(std::map<std::string, std::string>& tokens) CXX11_OVERRIDE
+       {
+               tokens["EXTBAN"].push_back('c');
+       }
+
+       ModResult OnUserPreMessage(User* user, const MessageTarget& target, MessageDetails& details) CXX11_OVERRIDE
+       {
+               if ((target.type == MessageTarget::TYPE_CHANNEL) && (IS_LOCAL(user)))
+               {
+                       Channel* c = target.Get<Channel>();
+
+                       ModResult res = CheckExemption::Call(exemptionprov, user, c, "blockcolor");
+                       if (res == MOD_RES_ALLOW)
+                               return MOD_RES_PASSTHRU;
+
+                       bool modeset = c->IsModeSet(bc);
+                       if (!c->GetExtBanStatus(user, 'c').check(!modeset))
+                       {
+                               for (std::string::iterator i = details.text.begin(); i != details.text.end(); i++)
+                               {
+                                       // Block all control codes except \001 for CTCP
+                                       if ((*i >= 0) && (*i < 32) && (*i != 1))
+                                       {
+                                               if (modeset)
+                                                       user->WriteNumeric(Numerics::CannotSendTo(c, "messages containing formatting characters", &bc));
+                                               else
+                                                       user->WriteNumeric(Numerics::CannotSendTo(c, "messages containing formatting characters", 'c', "nocolor"));
+                                               return MOD_RES_DENY;
+                                       }
+                               }
+                       }
+               }
+               return MOD_RES_PASSTHRU;
+       }
+
+       Version GetVersion() CXX11_OVERRIDE
+       {
+               return Version("Adds channel mode c (blockcolor) which allows channels to block messages which contain IRC formatting codes.",VF_VENDOR);
+       }
+};
+
+MODULE_INIT(ModuleBlockColor)