]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_sanick.cpp
AddOper() and DeleteOper() -> userrec::Oper() and userrec::UnOper() (these do more...
[user/henk/code/inspircd.git] / src / modules / m_sanick.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
6  *                     E-mail:
7  *              <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *     
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *          the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 using namespace std;
18
19 #include <stdio.h>
20 #include <string>
21 #include "users.h"
22 #include "channels.h"
23 #include "modules.h"
24
25 /* $ModDesc: Provides support for SANICK command */
26
27 static Server *Srv;
28
29 class cmd_sanick : public command_t
30 {
31  public:
32         cmd_sanick () : command_t("SANICK", 'o', 2)
33         {
34                 this->source = "m_sanick.so";
35                 syntax = "<nick> <new-nick>";
36         }
37
38         void Handle (const char** parameters, int pcnt, userrec *user)
39         {
40                 userrec* source = Srv->FindNick(std::string(parameters[0]));
41                 if (source)
42                 {
43                         if (Srv->IsUlined(source->server))
44                         {
45                                 WriteServ(user->fd,"990 %s :Cannot use an SA command on a u-lined client",user->nick);
46                                 return;
47                         }
48                         if (Srv->IsNick(std::string(parameters[1])))
49                         {
50                                 // FIX by brain: Cant use source->nick here because if it traverses a server link then
51                                 // source->nick becomes invalid as the object data moves in memory.
52                                 Srv->SendOpers(std::string(user->nick)+" used SANICK to change "+std::string(parameters[0])+" to "+parameters[1]);
53                                 Srv->ChangeUserNick(source,std::string(parameters[1]));
54                         }
55                 }
56         }
57 };
58
59
60 class ModuleSanick : public Module
61 {
62         cmd_sanick*     mycommand;
63  public:
64         ModuleSanick(Server* Me)
65                 : Module::Module(Me)
66         {
67                 Srv = Me;
68                 mycommand = new cmd_sanick();
69                 Srv->AddCommand(mycommand);
70         }
71         
72         virtual ~ModuleSanick()
73         {
74         }
75         
76         virtual Version GetVersion()
77         {
78                 return Version(1,0,0,1,VF_VENDOR);
79         }
80         
81 };
82
83 // stuff down here is the module-factory stuff. For basic modules you can ignore this.
84
85 class ModuleSanickFactory : public ModuleFactory
86 {
87  public:
88         ModuleSanickFactory()
89         {
90         }
91         
92         ~ModuleSanickFactory()
93         {
94         }
95         
96         virtual Module * CreateModule(Server* Me)
97         {
98                 return new ModuleSanick(Me);
99         }
100         
101 };
102
103
104 extern "C" void * init_module( void )
105 {
106         return new ModuleSanickFactory;
107 }
108