]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_shun.cpp
4e7d979d1fa6d7caf95f09f71e38581e24831694
[user/henk/code/inspircd.git] / src / modules / m_shun.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) 2017-2018 B00mX0r <b00mx0r@aureus.pw>
7  *   Copyright (C) 2013, 2017-2018, 2020 Sadie Powell <sadie@witchery.services>
8  *   Copyright (C) 2012-2016 Attila Molnar <attilamolnar@hush.com>
9  *   Copyright (C) 2012, 2018-2019 Robby <robby@chatbelgie.be>
10  *   Copyright (C) 2012 Jens Voss <DukePyrolator@anope.org>
11  *   Copyright (C) 2009 Uli Schlachter <psychon@inspircd.org>
12  *   Copyright (C) 2009 Matt Smith <dz@inspircd.org>
13  *   Copyright (C) 2009 John Brooks <special@inspircd.org>
14  *   Copyright (C) 2009 Dennis Friis <peavey@inspircd.org>
15  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
16  *   Copyright (C) 2008-2010 Craig Edwards <brain@inspircd.org>
17  *   Copyright (C) 2008-2009 Robin Burchell <robin+git@viroteck.net>
18  *   Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
19  *
20  * This file is part of InspIRCd.  InspIRCd is free software: you can
21  * redistribute it and/or modify it under the terms of the GNU General Public
22  * License as published by the Free Software Foundation, version 2.
23  *
24  * This program is distributed in the hope that it will be useful, but WITHOUT
25  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
26  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
27  * details.
28  *
29  * You should have received a copy of the GNU General Public License
30  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
31  */
32
33
34 #include "inspircd.h"
35 #include "xline.h"
36 #include "modules/shun.h"
37 #include "modules/stats.h"
38
39
40 /** An XLineFactory specialized to generate shun pointers
41  */
42 class ShunFactory : public XLineFactory
43 {
44  public:
45         ShunFactory() : XLineFactory("SHUN") { }
46
47         /** Generate a shun
48         */
49         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
50         {
51                 return new Shun(set_time, duration, source, reason, xline_specific_mask);
52         }
53
54         bool AutoApplyToUserList(XLine* x) CXX11_OVERRIDE
55         {
56                 return false;
57         }
58 };
59
60 class CommandShun : public Command
61 {
62  public:
63         CommandShun(Module* Creator) : Command(Creator, "SHUN", 1, 3)
64         {
65                 flags_needed = 'o';
66                 syntax = "<nick!user@host> [<duration> :<reason>]";
67         }
68
69         CmdResult Handle(User* user, const Params& parameters) CXX11_OVERRIDE
70         {
71                 /* syntax: SHUN nick!user@host time :reason goes here */
72                 /* 'time' is a human-readable timestring, like 2d3h2s. */
73
74                 std::string target = parameters[0];
75
76                 User *find = ServerInstance->FindNick(target);
77                 if ((find) && (find->registered == REG_ALL))
78                         target = std::string("*!*@") + find->GetIPString();
79
80                 if (parameters.size() == 1)
81                 {
82                         std::string reason;
83
84                         if (ServerInstance->XLines->DelLine(parameters[0].c_str(), "SHUN", reason, user))
85                         {
86                                 ServerInstance->SNO->WriteToSnoMask('x', "%s removed SHUN on %s: %s", user->nick.c_str(), parameters[0].c_str(), reason.c_str());
87                         }
88                         else if (ServerInstance->XLines->DelLine(target.c_str(), "SHUN", reason, user))
89                         {
90                                 ServerInstance->SNO->WriteToSnoMask('x', "%s removed SHUN on %s: %s", user->nick.c_str(), target.c_str(), reason.c_str());
91                         }
92                         else
93                         {
94                                 user->WriteNotice("*** Shun " + parameters[0] + " not found on the list.");
95                                 return CMD_FAILURE;
96                         }
97                 }
98                 else
99                 {
100                         // Adding - XXX todo make this respect <insane> tag perhaps..
101                         unsigned long duration;
102                         std::string expr;
103                         if (parameters.size() > 2)
104                         {
105                                 if (!InspIRCd::Duration(parameters[1], duration))
106                                 {
107                                         user->WriteNotice("*** Invalid duration for SHUN.");
108                                         return CMD_FAILURE;
109                                 }
110                                 expr = parameters[2];
111                         }
112                         else
113                         {
114                                 duration = 0;
115                                 expr = parameters[1];
116                         }
117
118                         Shun* r = new Shun(ServerInstance->Time(), duration, user->nick.c_str(), expr.c_str(), target.c_str());
119                         if (ServerInstance->XLines->AddLine(r, user))
120                         {
121                                 if (!duration)
122                                 {
123                                         ServerInstance->SNO->WriteToSnoMask('x', "%s added permanent SHUN for %s: %s",
124                                                 user->nick.c_str(), target.c_str(), expr.c_str());
125                                 }
126                                 else
127                                 {
128                                         ServerInstance->SNO->WriteToSnoMask('x', "%s added timed SHUN for %s, expires in %s (on %s): %s",
129                                                 user->nick.c_str(), target.c_str(), InspIRCd::DurationString(duration).c_str(),
130                                                 InspIRCd::TimeString(ServerInstance->Time() + duration).c_str(), expr.c_str());
131                                 }
132                         }
133                         else
134                         {
135                                 delete r;
136                                 user->WriteNotice("*** Shun for " + target + " already exists.");
137                                 return CMD_FAILURE;
138                         }
139                 }
140                 return CMD_SUCCESS;
141         }
142
143         RouteDescriptor GetRouting(User* user, const Params& parameters) CXX11_OVERRIDE
144         {
145                 if (IS_LOCAL(user))
146                         return ROUTE_LOCALONLY; // spanningtree will send ADDLINE
147
148                 return ROUTE_BROADCAST;
149         }
150 };
151
152 class ModuleShun : public Module, public Stats::EventListener
153 {
154  private:
155         CommandShun cmd;
156         ShunFactory shun;
157         insp::flat_set<std::string, irc::insensitive_swo> enabledcommands;
158         bool affectopers;
159         bool notifyuser;
160
161         bool IsShunned(LocalUser* user)
162         {
163                 // Exempt the user from shuns if they are an oper and affectopers is disabled.
164                 if (!affectopers && user->IsOper())
165                         return false;
166
167                 // Exempt the user from shuns if they are an oper with the servers/ignore-shun privilege.
168                 if (user->HasPrivPermission("servers/ignore-shun"))
169                         return false;
170
171                 // Check whether the user is actually shunned.
172                 return ServerInstance->XLines->MatchesLine("SHUN", user);
173         }
174
175  public:
176         ModuleShun()
177                 : Stats::EventListener(this)
178                 , cmd(this)
179         {
180         }
181
182         void init() CXX11_OVERRIDE
183         {
184                 ServerInstance->XLines->RegisterFactory(&shun);
185         }
186
187         ~ModuleShun()
188         {
189                 ServerInstance->XLines->DelAll("SHUN");
190                 ServerInstance->XLines->UnregisterFactory(&shun);
191         }
192
193         void Prioritize() CXX11_OVERRIDE
194         {
195                 Module* alias = ServerInstance->Modules->Find("m_alias.so");
196                 ServerInstance->Modules->SetPriority(this, I_OnPreCommand, PRIORITY_BEFORE, alias);
197         }
198
199         ModResult OnStats(Stats::Context& stats) CXX11_OVERRIDE
200         {
201                 if (stats.GetSymbol() != 'H')
202                         return MOD_RES_PASSTHRU;
203
204                 ServerInstance->XLines->InvokeStats("SHUN", stats);
205                 return MOD_RES_DENY;
206         }
207
208         void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
209         {
210                 ConfigTag* tag = ServerInstance->Config->ConfValue("shun");
211
212                 enabledcommands.clear();
213                 irc::spacesepstream enabledcmds(tag->getString("enabledcommands", "ADMIN OPER PING PONG QUIT", 1));
214                 for (std::string enabledcmd; enabledcmds.GetToken(enabledcmd); )
215                         enabledcommands.insert(enabledcmd);
216
217                 affectopers = tag->getBool("affectopers", false);
218                 notifyuser = tag->getBool("notifyuser", true);
219         }
220
221         ModResult OnPreCommand(std::string& command, CommandBase::Params& parameters, LocalUser* user, bool validated) CXX11_OVERRIDE
222         {
223                 if (validated || !IsShunned(user))
224                         return MOD_RES_PASSTHRU;
225
226                 if (!enabledcommands.count(command))
227                 {
228                         if (notifyuser)
229                                 user->WriteNotice("*** " + command + " command not processed as you have been blocked from issuing commands.");
230                         return MOD_RES_DENY;
231                 }
232
233                 if (command == "QUIT")
234                 {
235                         /* Allow QUIT but dont show any quit message */
236                         parameters.clear();
237                 }
238                 else if ((command == "PART") && (parameters.size() > 1))
239                 {
240                         /* same for PART */
241                         parameters.pop_back();
242                 }
243
244                 /* if we're here, allow the command. */
245                 return MOD_RES_PASSTHRU;
246         }
247
248         Version GetVersion() CXX11_OVERRIDE
249         {
250                 return Version("Adds the /SHUN command which allows server operators to prevent users from executing commands.", VF_VENDOR|VF_COMMON);
251         }
252 };
253
254 MODULE_INIT(ModuleShun)