]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_sethost.cpp
Merge insp20
[user/henk/code/inspircd.git] / src / modules / m_sethost.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
5  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
6  *   Copyright (C) 2004-2006 Craig Edwards <craigedwards@brainbox.cc>
7  *
8  * This file is part of InspIRCd.  InspIRCd is free software: you can
9  * redistribute it and/or modify it under the terms of the GNU General Public
10  * License as published by the Free Software Foundation, version 2.
11  *
12  * This program is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
15  * details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21
22 #include "inspircd.h"
23
24 /* $ModDesc: Provides support for the SETHOST command */
25
26 /** Handle /SETHOST
27  */
28 class CommandSethost : public Command
29 {
30         char* hostmap;
31
32  public:
33         CommandSethost(Module* Creator, char* hmap) : Command(Creator,"SETHOST", 1), hostmap(hmap)
34         {
35                 allow_empty_last_param = false;
36                 flags_needed = 'o'; syntax = "<new-hostname>";
37                 TRANSLATE2(TR_TEXT, TR_END);
38         }
39
40         CmdResult Handle (const std::vector<std::string>& parameters, User *user)
41         {
42                 size_t len = 0;
43                 for (std::string::const_iterator x = parameters[0].begin(); x != parameters[0].end(); x++, len++)
44                 {
45                         if (!hostmap[(const unsigned char)*x])
46                         {
47                                 user->WriteServ("NOTICE "+user->nick+" :*** SETHOST: Invalid characters in hostname");
48                                 return CMD_FAILURE;
49                         }
50                 }
51
52                 if (len > 64)
53                 {
54                         user->WriteServ("NOTICE %s :*** SETHOST: Host too long",user->nick.c_str());
55                         return CMD_FAILURE;
56                 }
57
58                 if (user->ChangeDisplayedHost(parameters[0].c_str()))
59                 {
60                         ServerInstance->SNO->WriteGlobalSno('a', user->nick+" used SETHOST to change their displayed host to "+user->dhost);
61                         return CMD_SUCCESS;
62                 }
63
64                 return CMD_FAILURE;
65         }
66 };
67
68
69 class ModuleSetHost : public Module
70 {
71         CommandSethost cmd;
72         char hostmap[256];
73
74  public:
75         ModuleSetHost()
76                 : cmd(this, hostmap)
77         {
78         }
79
80         void init()
81         {
82                 OnRehash(NULL);
83                 ServerInstance->Modules->AddService(cmd);
84                 Implementation eventlist[] = { I_OnRehash };
85                 ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
86         }
87
88         void OnRehash(User* user)
89         {
90                 std::string hmap = ServerInstance->Config->ConfValue("hostname")->getString("charmap", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz.-_/0123456789");
91
92                 memset(hostmap, 0, sizeof(hostmap));
93                 for (std::string::iterator n = hmap.begin(); n != hmap.end(); n++)
94                         hostmap[(unsigned char)*n] = 1;
95         }
96
97         virtual Version GetVersion()
98         {
99                 return Version("Provides support for the SETHOST command", VF_VENDOR);
100         }
101 };
102
103 MODULE_INIT(ModuleSetHost)