]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_alias.cpp
...because every now and again, i have to do a massive commit.
[user/henk/code/inspircd.git] / src / modules / m_alias.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2010 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15
16 /* $ModDesc: Provides aliases of commands. */
17
18 /** An alias definition
19  */
20 class Alias
21 {
22  public:
23         /** The text of the alias command */
24         irc::string AliasedCommand;
25
26         /** Text to replace with */
27         std::string ReplaceFormat;
28
29         /** Nickname required to perform alias */
30         std::string RequiredNick;
31
32         /** Alias requires ulined server */
33         bool ULineOnly;
34
35         /** Requires oper? */
36         bool OperOnly;
37
38         /* is case sensitive params */
39         bool CaseSensitive;
40
41         /* whether or not it may be executed via fantasy (default OFF) */
42         bool ChannelCommand;
43
44         /* whether or not it may be executed via /command (default ON) */
45         bool UserCommand;
46
47         /** Format that must be matched for use */
48         std::string format;
49 };
50
51 class ModuleAlias : public Module
52 {
53  private:
54
55         char fprefix;
56
57         /* We cant use a map, there may be multiple aliases with the same name.
58          * We can, however, use a fancy invention: the multimap. Maps a key to one or more values.
59          *              -- w00t
60    */
61         std::multimap<irc::string, Alias> Aliases;
62
63         /* whether or not +B users are allowed to use fantasy commands */
64         bool AllowBots;
65
66         virtual void ReadAliases()
67         {
68                 ConfigReader MyConf;
69
70                 AllowBots = MyConf.ReadFlag("fantasy", "allowbots", "no", 0);
71
72                 std::string fpre = MyConf.ReadValue("fantasy","prefix",0);
73                 fprefix = fpre.empty() ? '!' : fpre[0];
74
75                 Aliases.clear();
76                 ConfigTagList tags = ServerInstance->Config->ConfTags("alias");
77                 for(ConfigIter i = tags.first; i != tags.second; ++i)
78                 {
79                         ConfigTag* tag = i->second;
80                         Alias a;
81                         a.AliasedCommand = tag->getString("text").c_str();
82                         tag->readString("replace", a.ReplaceFormat, true);
83                         a.RequiredNick = tag->getString("requires");
84                         a.ULineOnly = tag->getBool("uline");
85                         a.ChannelCommand = tag->getBool("channelcommand", "no");
86                         a.UserCommand = tag->getBool("usercommand", "yes");
87                         a.OperOnly = tag->getBool("operonly");
88                         a.format = tag->getString("format");
89                         a.CaseSensitive = tag->getBool("matchcase");
90                         Aliases.insert(std::make_pair(a.AliasedCommand, a));
91                 }
92         }
93
94  public:
95
96         ModuleAlias()
97         {
98                 ReadAliases();
99                 ServerInstance->Modules->Attach(I_OnPreCommand, this);
100                 ServerInstance->Modules->Attach(I_OnRehash, this);
101                 ServerInstance->Modules->Attach(I_OnUserMessage, this);
102         }
103
104         virtual ~ModuleAlias()
105         {
106         }
107
108         virtual Version GetVersion()
109         {
110                 return Version("Provides aliases of commands.", VF_VENDOR);
111         }
112
113         std::string GetVar(std::string varname, const std::string &original_line)
114         {
115                 irc::spacesepstream ss(original_line);
116                 varname.erase(varname.begin());
117                 int index = *(varname.begin()) - 48;
118                 varname.erase(varname.begin());
119                 bool everything_after = (varname == "-");
120                 std::string word;
121
122                 for (int j = 0; j < index; j++)
123                         ss.GetToken(word);
124
125                 if (everything_after)
126                 {
127                         std::string more;
128                         while (ss.GetToken(more))
129                         {
130                                 word.append(" ");
131                                 word.append(more);
132                         }
133                 }
134
135                 return word;
136         }
137
138         virtual ModResult OnPreCommand(std::string &command, std::vector<std::string> &parameters, User *user, bool validated, const std::string &original_line)
139         {
140                 std::multimap<irc::string, Alias>::iterator i, upperbound;
141
142                 /* If theyre not registered yet, we dont want
143                  * to know.
144                  */
145                 if (user->registered != REG_ALL)
146                         return MOD_RES_PASSTHRU;
147
148                 /* We dont have any commands looking like this? Stop processing. */
149                 i = Aliases.find(command.c_str());
150                 if (i == Aliases.end())
151                         return MOD_RES_PASSTHRU;
152                 /* Avoid iterating on to different aliases if no patterns match. */
153                 upperbound = Aliases.upper_bound(command.c_str());
154
155                 irc::string c = command.c_str();
156                 /* The parameters for the command in their original form, with the command stripped off */
157                 std::string compare = original_line.substr(command.length());
158                 while (*(compare.c_str()) == ' ')
159                         compare.erase(compare.begin());
160
161                 while (i != upperbound)
162                 {
163                         if (i->second.UserCommand)
164                         {
165                                 if (DoAlias(user, NULL, &(i->second), compare, original_line))
166                                 {
167                                         return MOD_RES_DENY;
168                                 }
169                         }
170
171                         i++;
172                 }
173
174                 // If we made it here, no aliases actually matched.
175                 return MOD_RES_PASSTHRU;
176         }
177
178         virtual void OnUserMessage(User *user, void *dest, int target_type, const std::string &text, char status, const CUList &exempt_list)
179         {
180                 if (target_type != TYPE_CHANNEL)
181                 {
182                         return;
183                 }
184
185                 // fcommands are only for local users. Spanningtree will send them back out as their original cmd.
186                 if (!user || !IS_LOCAL(user))
187                 {
188                         return;
189                 }
190
191                 /* Stop here if the user is +B and allowbot is set to no. */
192                 if (!AllowBots && user->IsModeSet('B'))
193                 {
194                         return;
195                 }
196
197                 Channel *c = (Channel *)dest;
198                 std::string scommand;
199
200                 // text is like "!moo cows bite me", we want "!moo" first
201                 irc::spacesepstream ss(text);
202                 ss.GetToken(scommand);
203                 irc::string fcommand = scommand.c_str();
204
205                 if (fcommand.empty())
206                 {
207                         return; // wtfbbq
208                 }
209
210                 // we don't want to touch non-fantasy stuff
211                 if (*fcommand.c_str() != fprefix)
212                 {
213                         return;
214                 }
215
216                 // nor do we give a shit about the prefix
217                 fcommand.erase(fcommand.begin());
218
219                 std::multimap<irc::string, Alias>::iterator i = Aliases.find(fcommand);
220
221                 if (i == Aliases.end())
222                         return;
223
224                 /* Avoid iterating on to other aliases if no patterns match */
225                 std::multimap<irc::string, Alias>::iterator upperbound = Aliases.upper_bound(fcommand);
226
227
228                 /* The parameters for the command in their original form, with the command stripped off */
229                 std::string compare = text.substr(fcommand.length() + 1);
230                 while (*(compare.c_str()) == ' ')
231                         compare.erase(compare.begin());
232
233                 while (i != upperbound)
234                 {
235                         if (i->second.ChannelCommand)
236                         {
237                                 // We use substr(1) here to remove the fantasy prefix
238                                 if (DoAlias(user, c, &(i->second), compare, text.substr(1)))
239                                         return;
240                         }
241
242                         i++;
243                 }
244         }
245
246
247         int DoAlias(User *user, Channel *c, Alias *a, const std::string compare, const std::string safe)
248         {
249                 User *u = NULL;
250
251                 /* Does it match the pattern? */
252                 if (!a->format.empty())
253                 {
254                         if (a->CaseSensitive)
255                         {
256                                 if (!InspIRCd::Match(compare, a->format, rfc_case_sensitive_map))
257                                         return 0;
258                         }
259                         else
260                         {
261                                 if (!InspIRCd::Match(compare, a->format))
262                                         return 0;
263                         }
264                 }
265
266                 if ((a->OperOnly) && (!IS_OPER(user)))
267                         return 0;
268
269                 if (!a->RequiredNick.empty())
270                 {
271                         u = ServerInstance->FindNick(a->RequiredNick);
272                         if (!u)
273                         {
274                                 user->WriteNumeric(401, ""+std::string(user->nick)+" "+a->RequiredNick+" :is currently unavailable. Please try again later.");
275                                 return 1;
276                         }
277                 }
278                 if ((u != NULL) && (!a->RequiredNick.empty()) && (a->ULineOnly))
279                 {
280                         if (!ServerInstance->ULine(u->server))
281                         {
282                                 ServerInstance->SNO->WriteToSnoMask('a', "NOTICE -- Service "+a->RequiredNick+" required by alias "+std::string(a->AliasedCommand.c_str())+" is not on a u-lined server, possibly underhanded antics detected!");
283                                 user->WriteNumeric(401, ""+std::string(user->nick)+" "+a->RequiredNick+" :is an imposter! Please inform an IRC operator as soon as possible.");
284                                 return 1;
285                         }
286                 }
287
288                 /* Now, search and replace in a copy of the original_line, replacing $1 through $9 and $1- etc */
289
290                 std::string::size_type crlf = a->ReplaceFormat.find('\n');
291
292                 if (crlf == std::string::npos)
293                 {
294                         DoCommand(a->ReplaceFormat, user, c, safe);
295                         return 1;
296                 }
297                 else
298                 {
299                         irc::sepstream commands(a->ReplaceFormat, '\n');
300                         std::string scommand;
301                         while (commands.GetToken(scommand))
302                         {
303                                 DoCommand(scommand, user, c, safe);
304                         }
305                         return 1;
306                 }
307         }
308
309         void DoCommand(const std::string& newline, User* user, Channel *chan, const std::string &original_line)
310         {
311                 std::string result;
312                 result.reserve(MAXBUF);
313                 for (unsigned int i = 0; i < newline.length(); i++)
314                 {
315                         char c = newline[i];
316                         if (c == '$')
317                         {
318                                 if (isdigit(newline[i+1]))
319                                 {
320                                         int len = (newline[i+2] == '-') ? 3 : 2;
321                                         std::string var = newline.substr(i, len);
322                                         result.append(GetVar(var, original_line));
323                                         i += len - 1;
324                                 }
325                                 else if (newline.substr(i, 5) == "$nick")
326                                 {
327                                         result.append(user->nick);
328                                         i += 4;
329                                 }
330                                 else if (newline.substr(i, 5) == "$host")
331                                 {
332                                         result.append(user->host);
333                                         i += 4;
334                                 }
335                                 else if (newline.substr(i, 5) == "$chan")
336                                 {
337                                         if (chan)
338                                                 result.append(chan->name);
339                                         i += 4;
340                                 }
341                                 else if (newline.substr(i, 6) == "$ident")
342                                 {
343                                         result.append(user->ident);
344                                         i += 5;
345                                 }
346                                 else if (newline.substr(i, 6) == "$vhost")
347                                 {
348                                         result.append(user->dhost);
349                                         i += 5;
350                                 }
351                                 else
352                                         result.push_back(c);
353                         }
354                         else
355                                 result.push_back(c);
356                 }
357
358                 irc::tokenstream ss(result);
359                 std::vector<std::string> pars;
360                 std::string command, token;
361
362                 ss.GetToken(command);
363                 while (ss.GetToken(token) && (pars.size() <= MAXPARAMETERS))
364                 {
365                         pars.push_back(token);
366                 }
367                 ServerInstance->Parser->CallHandler(command, pars, user);
368         }
369
370         virtual void OnRehash(User* user)
371         {
372                 ReadAliases();
373         }
374
375         virtual void Prioritize()
376         {
377                 // Prioritise after spanningtree so that channel aliases show the alias before the effects.
378                 Module* linkmod = ServerInstance->Modules->Find("m_spanningtree.so");
379                 ServerInstance->Modules->SetPriority(this, I_OnUserMessage, PRIORITY_AFTER, &linkmod);
380         }
381 };
382
383 MODULE_INIT(ModuleAlias)