]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_cban.cpp
4aec8bcdff932dbe22af8def4c2162d7717e172c
[user/henk/code/inspircd.git] / src / modules / m_cban.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2019 Matt Schatz <genius3000@g3k.solutions>
5  *   Copyright (C) 2018 linuxdaemon <linuxdaemon.irc@gmail.com>
6  *   Copyright (C) 2013, 2017-2018 Sadie Powell <sadie@witchery.services>
7  *   Copyright (C) 2012-2013, 2016 Attila Molnar <attilamolnar@hush.com>
8  *   Copyright (C) 2012, 2019 Robby <robby@chatbelgie.be>
9  *   Copyright (C) 2009 John Brooks <special@inspircd.org>
10  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
11  *   Copyright (C) 2008 Robin Burchell <robin+git@viroteck.net>
12  *   Copyright (C) 2007-2008 Dennis Friis <peavey@inspircd.org>
13  *   Copyright (C) 2006, 2010 Craig Edwards <brain@inspircd.org>
14  *
15  * This file is part of InspIRCd.  InspIRCd is free software: you can
16  * redistribute it and/or modify it under the terms of the GNU General Public
17  * License as published by the Free Software Foundation, version 2.
18  *
19  * This program is distributed in the hope that it will be useful, but WITHOUT
20  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
21  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
22  * details.
23  *
24  * You should have received a copy of the GNU General Public License
25  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
26  */
27
28
29 #include "inspircd.h"
30 #include "xline.h"
31 #include "modules/stats.h"
32
33 enum
34 {
35         // InspIRCd-specific.
36         ERR_BADCHANNEL = 926
37 };
38
39 /** Holds a CBAN item
40  */
41 class CBan : public XLine
42 {
43 private:
44         std::string matchtext;
45
46 public:
47         CBan(time_t s_time, unsigned long d, const std::string& src, const std::string& re, const std::string& ch)
48                 : XLine(s_time, d, src, re, "CBAN")
49                 , matchtext(ch)
50         {
51         }
52
53         // XXX I shouldn't have to define this
54         bool Matches(User* u) CXX11_OVERRIDE
55         {
56                 return false;
57         }
58
59         bool Matches(const std::string& s) CXX11_OVERRIDE
60         {
61                 return irc::equals(matchtext, s);
62         }
63
64         const std::string& Displayable() CXX11_OVERRIDE
65         {
66                 return matchtext;
67         }
68 };
69
70 /** An XLineFactory specialized to generate cban pointers
71  */
72 class CBanFactory : public XLineFactory
73 {
74  public:
75         CBanFactory() : XLineFactory("CBAN") { }
76
77         /** Generate a CBAN
78         */
79         XLine* Generate(time_t set_time, unsigned long duration, const std::string& source, const std::string& reason, const std::string& xline_specific_mask) CXX11_OVERRIDE
80         {
81                 return new CBan(set_time, duration, source, reason, xline_specific_mask);
82         }
83
84         bool AutoApplyToUserList(XLine* x) CXX11_OVERRIDE
85         {
86                 return false; // No, we apply to channels.
87         }
88 };
89
90 /** Handle /CBAN
91  */
92 class CommandCBan : public Command
93 {
94  public:
95         CommandCBan(Module* Creator) : Command(Creator, "CBAN", 1, 3)
96         {
97                 flags_needed = 'o'; this->syntax = "<channel> [<duration> [:<reason>]]";
98         }
99
100         CmdResult Handle(User* user, const Params& parameters) CXX11_OVERRIDE
101         {
102                 /* syntax: CBAN #channel time :reason goes here */
103                 /* 'time' is a human-readable timestring, like 2d3h2s. */
104
105                 if (parameters.size() == 1)
106                 {
107                         std::string reason;
108
109                         if (ServerInstance->XLines->DelLine(parameters[0].c_str(), "CBAN", reason, user))
110                         {
111                                 ServerInstance->SNO->WriteGlobalSno('x', "%s removed CBan on %s: %s", user->nick.c_str(), parameters[0].c_str(), reason.c_str());
112                         }
113                         else
114                         {
115                                 user->WriteNotice("*** CBan " + parameters[0] + " not found on the list.");
116                                 return CMD_FAILURE;
117                         }
118                 }
119                 else
120                 {
121                         // Adding - XXX todo make this respect <insane> tag perhaps..
122                         unsigned long duration;
123                         if (!InspIRCd::Duration(parameters[1], duration))
124                         {
125                                 user->WriteNotice("*** Invalid duration for CBan.");
126                                 return CMD_FAILURE;
127                         }
128                         const char *reason = (parameters.size() > 2) ? parameters[2].c_str() : "No reason supplied";
129                         CBan* r = new CBan(ServerInstance->Time(), duration, user->nick.c_str(), reason, parameters[0].c_str());
130
131                         if (ServerInstance->XLines->AddLine(r, user))
132                         {
133                                 if (!duration)
134                                 {
135                                         ServerInstance->SNO->WriteGlobalSno('x', "%s added permanent CBan for %s: %s", user->nick.c_str(), parameters[0].c_str(), reason);
136                                 }
137                                 else
138                                 {
139                                         ServerInstance->SNO->WriteGlobalSno('x', "%s added timed CBan for %s, expires in %s (on %s): %s",
140                                                 user->nick.c_str(), parameters[0].c_str(), InspIRCd::DurationString(duration).c_str(),
141                                                 InspIRCd::TimeString(ServerInstance->Time() + duration).c_str(), reason);
142                                 }
143                         }
144                         else
145                         {
146                                 delete r;
147                                 user->WriteNotice("*** CBan for " + parameters[0] + " already exists");
148                                 return CMD_FAILURE;
149                         }
150                 }
151                 return CMD_SUCCESS;
152         }
153
154         RouteDescriptor GetRouting(User* user, const Params& parameters) CXX11_OVERRIDE
155         {
156                 if (IS_LOCAL(user))
157                         return ROUTE_LOCALONLY; // spanningtree will send ADDLINE
158
159                 return ROUTE_BROADCAST;
160         }
161 };
162
163 class ModuleCBan : public Module, public Stats::EventListener
164 {
165         CommandCBan mycommand;
166         CBanFactory f;
167
168  public:
169         ModuleCBan()
170                 : Stats::EventListener(this)
171                 , mycommand(this)
172         {
173         }
174
175         void init() CXX11_OVERRIDE
176         {
177                 ServerInstance->XLines->RegisterFactory(&f);
178         }
179
180         ~ModuleCBan()
181         {
182                 ServerInstance->XLines->DelAll("CBAN");
183                 ServerInstance->XLines->UnregisterFactory(&f);
184         }
185
186         ModResult OnStats(Stats::Context& stats) CXX11_OVERRIDE
187         {
188                 if (stats.GetSymbol() != 'C')
189                         return MOD_RES_PASSTHRU;
190
191                 ServerInstance->XLines->InvokeStats("CBAN", stats);
192                 return MOD_RES_DENY;
193         }
194
195         ModResult OnUserPreJoin(LocalUser* user, Channel* chan, const std::string& cname, std::string& privs, const std::string& keygiven) CXX11_OVERRIDE
196         {
197                 XLine *rl = ServerInstance->XLines->MatchesLine("CBAN", cname);
198
199                 if (rl)
200                 {
201                         // Channel is banned.
202                         user->WriteNumeric(ERR_BADCHANNEL, cname, InspIRCd::Format("Channel %s is CBANed: %s", cname.c_str(), rl->reason.c_str()));
203                         ServerInstance->SNO->WriteGlobalSno('a', "%s tried to join %s which is CBANed (%s)",
204                                  user->nick.c_str(), cname.c_str(), rl->reason.c_str());
205                         return MOD_RES_DENY;
206                 }
207
208                 return MOD_RES_PASSTHRU;
209         }
210
211         Version GetVersion() CXX11_OVERRIDE
212         {
213                 return Version("Adds the /CBAN command which allows server operators to prevent channels matching a glob from being created.", VF_COMMON | VF_VENDOR);
214         }
215 };
216
217 MODULE_INIT(ModuleCBan)