X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_stripcolor.cpp;h=0fea8bc5fed4aab76f5df2f3104f47d0b782ab12;hb=HEAD;hp=3699fc3aa8622bd2b9083f77a4616fb9b006224c;hpb=b2ac8cc0a6405946a388b80df3be21bc276a61f3;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_stripcolor.cpp b/src/modules/m_stripcolor.cpp index 3699fc3aa..0fea8bc5f 100644 --- a/src/modules/m_stripcolor.cpp +++ b/src/modules/m_stripcolor.cpp @@ -1,9 +1,16 @@ /* * InspIRCd -- Internet Relay Chat Daemon * - * Copyright (C) 2004, 2008 Craig Edwards + * Copyright (C) 2019 linuxdaemon + * Copyright (C) 2016 0x277F <0x277F@gmail.com> + * Copyright (C) 2013, 2017 Sadie Powell + * Copyright (C) 2013 Attila Molnar + * Copyright (C) 2012, 2019 Robby + * Copyright (C) 2009-2010 Daniel De Graaf + * Copyright (C) 2008 Thomas Stagner + * Copyright (C) 2008 Robin Burchell * Copyright (C) 2007 Dennis Friis - * Copyright (C) 2007 Robin Burchell + * Copyright (C) 2004, 2006, 2010 Craig Edwards * * 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 @@ -47,20 +54,27 @@ class ModuleStripColor : public Module return MOD_RES_PASSTHRU; bool active = false; - if (target.type == MessageTarget::TYPE_USER) + switch (target.type) { - User* t = target.Get(); - active = t->IsModeSet(usc); - } - else if (target.type == MessageTarget::TYPE_CHANNEL) - { - Channel* t = target.Get(); - ModResult res = CheckExemption::Call(exemptionprov, user, t, "stripcolor"); - - if (res == MOD_RES_ALLOW) - return MOD_RES_PASSTHRU; - - active = !t->GetExtBanStatus(user, 'S').check(!t->IsModeSet(csc)); + case MessageTarget::TYPE_USER: + { + User* t = target.Get(); + active = t->IsModeSet(usc); + break; + } + case MessageTarget::TYPE_CHANNEL: + { + Channel* t = target.Get(); + ModResult res = CheckExemption::Call(exemptionprov, user, t, "stripcolor"); + + if (res == MOD_RES_ALLOW) + return MOD_RES_PASSTHRU; + + active = !t->GetExtBanStatus(user, 'S').check(!t->IsModeSet(csc)); + break; + } + case MessageTarget::TYPE_SERVER: + break; } if (active) @@ -90,7 +104,7 @@ class ModuleStripColor : public Module Version GetVersion() CXX11_OVERRIDE { - return Version("Provides channel +S mode (strip ansi color)", VF_VENDOR); + return Version("Adds channel mode S (stripcolor) which allows channels to strip IRC formatting codes from messages.", VF_VENDOR); } };