]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_saquit.cpp
Added <oper:swhois> to m_swhois, which will override <type:swhois> if specified
[user/henk/code/inspircd.git] / src / modules / m_saquit.cpp
index d7151e5ec9cec77718793e4fb1a47f431404b1ef..388846803dcc414b910e1f354eff405d2a40d95a 100644 (file)
@@ -1,3 +1,21 @@
+/*       +------------------------------------+
+ *       | Inspire Internet Relay Chat Daemon |
+ *       +------------------------------------+
+ *
+ *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
+ *                    E-mail:
+ *             <brain@chatspike.net>
+ *               <Craig@chatspike.net>
+ *     
+ * Written by Craig Edwards, Craig McLure, and others.
+ * This program is free but copyrighted software; see
+ *         the file COPYING for details.
+ *
+ * ---------------------------------------------------
+ */
+
+using namespace std;
+
 /*
  * SAQUIT module for InspIRCd
  *  Author: w00t
 #include "users.h"
 #include "channels.h"
 #include "modules.h"
+#include "inspircd.h"
 
 /* $ModDesc: Provides support for an SAQUIT command, exits user with a reason */
 
-Server *Srv;
-        
-void handle_saquit(char **parameters, int pcnt, userrec *user)
+/** Handle /SAQUIT
+ */
+class cmd_saquit : public command_t
 {
-       userrec* dest = Srv->FindNick(std::string(parameters[0]));
      if (dest)
+ public:
cmd_saquit (InspIRCd* Instance) : command_t(Instance,"SAQUIT",'o',2)
        {
+               this->source = "m_saquit.so";
+               syntax = "<nick> <reason>";
+       }
 
-       std::string line = "";
-       for (int i = 1; i < pcnt - 1; i++)
+       CmdResult Handle (const char** parameters, int pcnt, userrec *user)
        {
-               line = line + std::string(parameters[i]) + " ";
-       }
-       line = line + std::string(parameters[pcnt-1])
+               userrec* dest = ServerInstance->FindNick(parameters[0]);
+               if (dest)
+               {
+                       if (ServerInstance->ULine(dest->server))
+                       {
+                               user->WriteServ("990 %s :Cannot use an SA command on a u-lined client",user->nick);
+                               return CMD_FAILURE;
+                       }
+                       irc::stringjoiner reason_join(" ", parameters, 1, pcnt - 1);
+                       std::string line = reason_join.GetJoined();
 
-               Srv->SendOpers(std::string(user->nick)+" used SAQUIT to make "+std::string(dest->nick)+" quit with a reason of "+line);
-               Srv->QuitUser(dest, line);
-       }
-}
+                       ServerInstance->WriteOpers(std::string(user->nick)+" used SAQUIT to make "+std::string(dest->nick)+" quit with a reason of "+line);
+                       userrec::QuitUser(ServerInstance, dest, line);
 
+                       return CMD_SUCCESS;
+               }
+
+               return CMD_FAILURE;
+       }
+};
 
 class ModuleSaquit : public Module
 {
+       cmd_saquit*     mycommand;
  public:
-       ModuleSaquit()
+       ModuleSaquit(InspIRCd* Me)
+               : Module::Module(Me)
        {
-               Srv = new Server;
-               Srv->AddCommand("SAQUIT",handle_saquit,'o',2);
+               
+               mycommand = new cmd_saquit(ServerInstance);
+               ServerInstance->AddCommand(mycommand);
        }
        
        virtual ~ModuleSaquit()
        {
-               delete Srv;
        }
        
        virtual Version GetVersion()
        {
-               return Version(1,0,0,0);
+               return Version(1,1,0,1,VF_VENDOR,API_VERSION);
        }
        
 };
@@ -71,9 +105,9 @@ class ModuleSaquitFactory : public ModuleFactory
        {
        }
        
-       virtual Module * CreateModule()
+       virtual Module * CreateModule(InspIRCd* Me)
        {
-               return new ModuleSaquit;
+               return new ModuleSaquit(Me);
        }
        
 };