]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_setname.cpp
Add a metric assload of TRANSLATE macros to modules.
[user/henk/code/inspircd.git] / src / modules / m_setname.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 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 support for the SETNAME command */
17
18
19
20 class cmd_setname : public command_t
21 {
22  public:
23         cmd_setname (InspIRCd* Instance) : command_t(Instance,"SETNAME", 0, 1)
24         {
25                 this->source = "m_setname.so";
26                 syntax = "<new-gecos>";
27                 TRANSLATE2(TR_TEXT, TR_END);
28         }
29
30         CmdResult Handle (const char** parameters, int pcnt, userrec *user)
31         {
32                 if (!*parameters[0])
33                 {
34                         user->WriteServ("NOTICE %s :*** SETNAME: GECOS must be specified", user->nick);
35                         return CMD_FAILURE;
36                 }
37                 
38                 if (strlen(parameters[0]) > MAXGECOS)
39                 {
40                         user->WriteServ("NOTICE %s :*** SETNAME: GECOS too long", user->nick);
41                         return CMD_FAILURE;
42                 }
43                 
44                 if (user->ChangeName(parameters[0]))
45                 {
46                         ServerInstance->WriteOpers("%s used SETNAME to change their GECOS to %s", user->nick, parameters[0]);
47                         return CMD_SUCCESS;
48                 }
49
50                 return CMD_SUCCESS;
51         }
52 };
53
54
55 class ModuleSetName : public Module
56 {
57         cmd_setname*    mycommand;
58  public:
59         ModuleSetName(InspIRCd* Me)
60                 : Module(Me)
61         {
62                 
63                 mycommand = new cmd_setname(ServerInstance);
64                 ServerInstance->AddCommand(mycommand);
65         }
66         
67         virtual ~ModuleSetName()
68         {
69         }
70         
71         virtual Version GetVersion()
72         {
73                 return Version(1, 1, 0, 1, VF_COMMON | VF_VENDOR, API_VERSION);
74         }
75         
76 };
77
78 MODULE_INIT(ModuleSetName)