]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_chgident.cpp
(Bigger than it looks, i did this with perl inplace edit) -- commands now take an...
[user/henk/code/inspircd.git] / src / modules / m_chgident.cpp
index 1f7c28ddaa82fb6b261cf1c9bbdd69fcc3850964..cca24372a618d9f6e2f26af86b52a4d07952423e 100644 (file)
@@ -1,39 +1,40 @@
 #include <string>
 #include "users.h"
 #include "modules.h"
-#include "message.h"
 #include "helperfuncs.h"
+#include "inspircd.h"
 
 /* $ModDesc: Provides support for the CHGIDENT command */
 
+extern InspIRCd* ServerInstance;
+
 class cmd_chgident : public command_t
 {
-       Server* Srv;
  public:
      cmd_chgident(Server* serv) : command_t("CHGIDENT", 'o', 2)
cmd_chgident (InspIRCd* Instance) : command_t(Instance,"CHGIDENT", 'o', 2)
        {
                this->source = "m_chgident.so";
-               Srv = serv;
+               syntax = "<nick> <newident>";
        }
        
-       void Handle(char **parameters, int pcnt, userrec *user)
+       void Handle(const char** parameters, int pcnt, userrec *user)
        {
-               userrec* dest = Srv->FindNick(std::string(parameters[0]));
-               
+               userrec* dest = ServerInstance->FindNick(parameters[0]);
+
                if(dest)
                {
-                       if(!isident(parameters[1]))
+                       if(!ServerInstance->IsIdent(parameters[1]))
                        {
-                               WriteServ(user->fd, "NOTICE %s :*** Invalid characters in ident", user->nick);
+                               user->WriteServ("NOTICE %s :*** Invalid characters in ident", user->nick);
                                return;
                        }
                
-                       WriteOpers("%s used CHGIDENT to change %s's ident from '%s' to '%s'", user->nick, dest->nick, dest->ident, parameters[1]);
+                       ServerInstance->WriteOpers("%s used CHGIDENT to change %s's ident from '%s' to '%s'", user->nick, dest->nick, dest->ident, parameters[1]);
                        strlcpy(dest->ident, parameters[1], IDENTMAX+2);
                }
                else
                {
-                       WriteServ(user->fd, "401 %s %s :No such nick/channel", user->nick, parameters[0]);
+                       user->WriteServ("401 %s %s :No such nick/channel", user->nick, parameters[0]);
                }
        }
 };
@@ -43,11 +44,12 @@ class ModuleChgIdent : public Module
 {
        cmd_chgident* mycommand;
        
+       
 public:
-       ModuleChgIdent(Server* Me) : Module::Module(Me)
+       ModuleChgIdent(InspIRCd* Me) : Module::Module(Me)
        {
-               mycommand = new cmd_chgident(Me);
-               Me->AddCommand(mycommand);
+               mycommand = new cmd_chgident(ServerInstance);
+               ServerInstance->AddCommand(mycommand);
        }
        
        virtual ~ModuleChgIdent()
@@ -74,7 +76,7 @@ class ModuleChgIdentFactory : public ModuleFactory
        {
        }
        
-       virtual Module * CreateModule(Server* Me)
+       virtual Module * CreateModule(InspIRCd* Me)
        {
                return new ModuleChgIdent(Me);
        }