]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_abbreviation.cpp
dbda047b5a557b24c42a7de33409680866de530f
[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                 std::string foundcommand, matchlist;
48                 bool foundmatch = false;
49                 for (Commandtable::iterator n = ServerInstance->Parser->cmdlist.begin(); n != ServerInstance->Parser->cmdlist.end(); ++n)
50                 {
51                         if (n->first.length() < clen)
52                                 continue;
53
54                         if (command == n->first.substr(0, clen))
55                         {
56                                 if (!foundmatch)
57                                 {
58                                         /* Found the command */
59                                         foundcommand = n->first;
60                                         foundmatch = true;
61                                 }
62                                 else
63                                         matchlist.append(" ").append(n->first);
64                         }
65                 }
66
67                 /* Ambiguous command, list the matches */
68                 if (!matchlist.empty())
69                 {
70                         user->WriteNumeric(420, "%s :Ambiguous abbreviation, posssible matches: %s%s", user->nick.c_str(), foundcommand.c_str(), matchlist.c_str());
71                         return true;
72                 }
73
74                 if (foundcommand.empty())
75                 {
76                         /* No match, we have to put the . back again so that the invalid command numeric looks correct. */
77                         command += '.';
78                 }
79                 else
80                 {
81                         command = foundcommand;
82                 }
83
84                 return false;
85         }
86 };
87
88 MODULE_INIT(ModuleAbbreviation)