]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_stripcolor.cpp
Fix various cases of broken indentation.
[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                 switch (target.type)
51                 {
52                         case MessageTarget::TYPE_USER:
53                         {
54                                 User* t = target.Get<User>();
55                                 active = t->IsModeSet(usc);
56                                 break;
57                         }
58                         case MessageTarget::TYPE_CHANNEL:
59                         {
60                                 Channel* t = target.Get<Channel>();
61                                 ModResult res = CheckExemption::Call(exemptionprov, user, t, "stripcolor");
62
63                                 if (res == MOD_RES_ALLOW)
64                                         return MOD_RES_PASSTHRU;
65
66                                 active = !t->GetExtBanStatus(user, 'S').check(!t->IsModeSet(csc));
67                                 break;
68                         }
69                         case MessageTarget::TYPE_SERVER:
70                                 break;
71                 }
72
73                 if (active)
74                 {
75                         InspIRCd::StripColor(details.text);
76                 }
77
78                 return MOD_RES_PASSTHRU;
79         }
80
81         void OnUserPart(Membership* memb, std::string& partmessage, CUList& except_list) CXX11_OVERRIDE
82         {
83                 User* user = memb->user;
84                 Channel* channel = memb->chan;
85
86                 if (!IS_LOCAL(user))
87                         return;
88
89                 if (channel->GetExtBanStatus(user, 'S').check(!user->IsModeSet(csc)))
90                 {
91                         ModResult res = CheckExemption::Call(exemptionprov, user, channel, "stripcolor");
92
93                         if (res != MOD_RES_ALLOW)
94                                 InspIRCd::StripColor(partmessage);
95                 }
96         }
97
98         Version GetVersion() CXX11_OVERRIDE
99         {
100                 return Version("Provides channel mode +S, strip ansi color", VF_VENDOR);
101         }
102
103 };
104
105 MODULE_INIT(ModuleStripColor)