]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_chgident.cpp
Wahhhhhhhhhhhh bwahahaha. Mass commit to tidy up tons of messy include lists
[user/henk/code/inspircd.git] / src / modules / m_chgident.cpp
1 #include <string>
2 #include "users.h"
3 #include "modules.h"
4
5 #include "inspircd.h"
6
7 /* $ModDesc: Provides support for the CHGIDENT command */
8
9
10
11 class cmd_chgident : public command_t
12 {
13  public:
14         cmd_chgident (InspIRCd* Instance) : command_t(Instance,"CHGIDENT", 'o', 2)
15         {
16                 this->source = "m_chgident.so";
17                 syntax = "<nick> <newident>";
18         }
19         
20         void Handle(const char** parameters, int pcnt, userrec *user)
21         {
22                 userrec* dest = ServerInstance->FindNick(parameters[0]);
23
24                 if(dest)
25                 {
26                         if(!ServerInstance->IsIdent(parameters[1]))
27                         {
28                                 user->WriteServ("NOTICE %s :*** Invalid characters in ident", user->nick);
29                                 return;
30                         }
31                 
32                         ServerInstance->WriteOpers("%s used CHGIDENT to change %s's ident from '%s' to '%s'", user->nick, dest->nick, dest->ident, parameters[1]);
33                         dest->ChangeIdent(parameters[1]);
34                         //strlcpy(dest->ident, parameters[1], IDENTMAX+2);
35                 }
36                 else
37                 {
38                         user->WriteServ("401 %s %s :No such nick/channel", user->nick, parameters[0]);
39                 }
40         }
41 };
42
43
44 class ModuleChgIdent : public Module
45 {
46         cmd_chgident* mycommand;
47         
48         
49 public:
50         ModuleChgIdent(InspIRCd* Me) : Module::Module(Me)
51         {
52                 mycommand = new cmd_chgident(ServerInstance);
53                 ServerInstance->AddCommand(mycommand);
54         }
55         
56         virtual ~ModuleChgIdent()
57         {
58         }
59         
60         virtual Version GetVersion()
61         {
62                 return Version(1,0,0,0,VF_VENDOR);
63         }
64         
65 };
66
67 // stuff down here is the module-factory stuff. For basic modules you can ignore this.
68
69 class ModuleChgIdentFactory : public ModuleFactory
70 {
71  public:
72         ModuleChgIdentFactory()
73         {
74         }
75         
76         ~ModuleChgIdentFactory()
77         {
78         }
79         
80         virtual Module * CreateModule(InspIRCd* Me)
81         {
82                 return new ModuleChgIdent(Me);
83         }
84         
85 };
86
87
88 extern "C" void * init_module( void )
89 {
90         return new ModuleChgIdentFactory;
91 }
92