]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_stripcolor.cpp
Some more text fixes and improvements (#1618).
[user/henk/code/inspircd.git] / src / modules / m_stripcolor.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2004, 2008 Craig Edwards <craigedwards@brainbox.cc>
5  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
6  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
7  *
8  * This file is part of InspIRCd.  InspIRCd is free software: you can
9  * redistribute it and/or modify it under the terms of the GNU General Public
10  * License as published by the Free Software Foundation, version 2.
11  *
12  * This program is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
15  * details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21
22 #include "inspircd.h"
23 #include "modules/exemption.h"
24
25 class ModuleStripColor : public Module
26 {
27         CheckExemption::EventProvider exemptionprov;
28         SimpleChannelModeHandler csc;
29         SimpleUserModeHandler usc;
30
31  public:
32         ModuleStripColor()
33                 : exemptionprov(this)
34                 , csc(this, "stripcolor", 'S')
35                 , usc(this, "u_stripcolor", 'S')
36         {
37         }
38
39         void On005Numeric(std::map<std::string, std::string>& tokens) CXX11_OVERRIDE
40         {
41                 tokens["EXTBAN"].push_back('S');
42         }
43
44         ModResult OnUserPreMessage(User* user, const MessageTarget& target, MessageDetails& details) CXX11_OVERRIDE
45         {
46                 if (!IS_LOCAL(user))
47                         return MOD_RES_PASSTHRU;
48
49                 bool active = false;
50                 if (target.type == MessageTarget::TYPE_USER)
51                 {
52                         User* t = target.Get<User>();
53                         active = t->IsModeSet(usc);
54                 }
55                 else if (target.type == MessageTarget::TYPE_CHANNEL)
56                 {
57                         Channel* t = target.Get<Channel>();
58                         ModResult res = CheckExemption::Call(exemptionprov, user, t, "stripcolor");
59
60                         if (res == MOD_RES_ALLOW)
61                                 return MOD_RES_PASSTHRU;
62
63                         active = !t->GetExtBanStatus(user, 'S').check(!t->IsModeSet(csc));
64                 }
65
66                 if (active)
67                 {
68                         InspIRCd::StripColor(details.text);
69                 }
70
71                 return MOD_RES_PASSTHRU;
72         }
73
74         void OnUserPart(Membership* memb, std::string& partmessage, CUList& except_list) CXX11_OVERRIDE
75         {
76                 User* user = memb->user;
77                 Channel* channel = memb->chan;
78
79                 if (!IS_LOCAL(user))
80                         return;
81
82                 if (channel->GetExtBanStatus(user, 'S').check(!user->IsModeSet(csc)))
83                 {
84                         ModResult res = CheckExemption::Call(exemptionprov, user, channel, "stripcolor");
85
86                         if (res != MOD_RES_ALLOW)
87                                 InspIRCd::StripColor(partmessage);
88                 }
89         }
90
91         Version GetVersion() CXX11_OVERRIDE
92         {
93                 return Version("Provides channel mode +S, strip ansi color", VF_VENDOR);
94         }
95
96 };
97
98 MODULE_INIT(ModuleStripColor)