/* * InspIRCd -- Internet Relay Chat Daemon * * Copyright (C) 2019 linuxdaemon * Copyright (C) 2017, 2019-2021, 2023-2024 Sadie Powell * Copyright (C) 2016 0x277F <0x277F@gmail.com> * Copyright (C) 2013 Attila Molnar * Copyright (C) 2012 Robby * Copyright (C) 2009-2010 Daniel De Graaf * Copyright (C) 2006 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 * 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 . */ #include "inspircd.h" #include "modules/exemption.h" #include "modules/extban.h" class ModuleStripColor final : public Module { private: CheckExemption::EventProvider exemptionprov; ExtBan::Acting extban; SimpleChannelMode csc; SimpleUserMode usc; public: ModuleStripColor() : Module(VF_VENDOR, "Adds channel mode S (stripcolor) which allows channels to strip IRC formatting codes from messages.") , exemptionprov(this) , extban(this, "stripcolor", 'S') , csc(this, "stripcolor", 'S') , usc(this, "u_stripcolor", 'S') { } ModResult OnUserPreMessage(User* user, MessageTarget& target, MessageDetails& details) override { if (!IS_LOCAL(user)) return MOD_RES_PASSTHRU; bool active = false; switch (target.type) { case MessageTarget::TYPE_USER: { const auto* t = target.Get(); active = t->IsModeSet(usc); break; } case MessageTarget::TYPE_CHANNEL: { auto* t = target.Get(); ModResult res = exemptionprov.Check(user, t, "stripcolor"); if (res == MOD_RES_ALLOW) return MOD_RES_PASSTHRU; active = !extban.GetStatus(user, t).check(!t->IsModeSet(csc)); break; } case MessageTarget::TYPE_SERVER: break; } if (active) { InspIRCd::StripColor(details.text); } return MOD_RES_PASSTHRU; } void OnUserPart(Membership* memb, std::string& partmessage, CUList& except_list) override { User* user = memb->user; Channel* channel = memb->chan; if (!IS_LOCAL(user)) return; if (extban.GetStatus(user, channel).check(!user->IsModeSet(csc))) { ModResult res = exemptionprov.Check(user, channel, "stripcolor"); if (res != MOD_RES_ALLOW) InspIRCd::StripColor(partmessage); } } }; MODULE_INIT(ModuleStripColor)