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