]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_abbreviation.cpp
f94f8a5cc7133e02d9c97390437e3de61b09dbb3
[user/henk/code/inspircd.git] / src / modules / m_abbreviation.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/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 the ability to abbreviate commands a-la BBC BASIC keywords. */
17
18 class ModuleAbbreviation : public Module
19 {
20
21  public:
22         
23         ModuleAbbreviation(InspIRCd* Me)
24                 : Module(Me)
25         {
26                 Me->Modules->Attach(I_OnPreCommand, this);
27                 /* Must do this first */
28                 Me->Modules->SetPriority(this, I_OnPreCommand, PRIO_FIRST);
29         }
30
31         virtual Version GetVersion()
32         {
33                 return Version(1,2,0,0,VF_VENDOR,API_VERSION);
34         }
35
36         virtual int OnPreCommand(std::string &command, std::vector<std::string> &parameters, User *user, bool validated, const std::string &original_line)
37         {
38                 /* Command is already validated, has a length of 0, or last character is not a . */
39                 if (validated || command.empty() || *command.rbegin() != '.')
40                         return 0;
41
42                 /* Whack the . off the end */
43                 command.erase(command.end() - 1);
44
45                 /* Look for any command that starts with the same characters, if it does, replace the command string with it */
46                 size_t clen = command.length();
47                 for (Commandtable::iterator n = ServerInstance->Parser->cmdlist.begin(); n != ServerInstance->Parser->cmdlist.end(); ++n)
48                 {
49                         if (n->first.length() < clen)
50                                 continue;
51
52                         if (command == n->first.substr(0, clen))
53                         {
54                                 /* Found the command */
55                                 command = n->first;
56                                 return false;
57                         }
58                 }
59
60                 /* No match, we have to put the . back again so that the invalid command numeric looks correct. */
61                 command += '.';
62                 return false;
63         }
64 };
65
66 MODULE_INIT(ModuleAbbreviation)