]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_samode.cpp
Remove the last uses of localised fake clients. This removes a lot of allocations...
[user/henk/code/inspircd.git] / src / modules / m_samode.cpp
index e60f8bf032f5ef951e24a78e33ae9cb056fa8cd7..0f5813edc04e44882dd8c68600e4feed28f1fcca 100644 (file)
@@ -2,70 +2,80 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
- *                       E-mail:
- *                <brain@chatspike.net>
- *               <Craig@chatspike.net>
- *     
- * Written by Craig Edwards, Craig McLure, and others.
+ *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
  *
  * ---------------------------------------------------
  */
 
-using namespace std;
+/* $ModDesc: Provides more advanced UnrealIRCd SAMODE command */
 
-/*
- * SAMODE module for InspIRCd
- *  Co authored by Brain and w00t
- *
- *  Syntax: /SAMODE <#chan/nick> +/-<modes> [parameters for modes]
- * 
+#include "inspircd.h"
+
+/** Handle /SAMODE
  */
+class cmd_samode : public command_t
+{
+ public:
+       cmd_samode (InspIRCd* Instance) : command_t(Instance,"SAMODE", 'o', 2)
+       {
+               this->source = "m_samode.so";
+               syntax = "<target> <modes> {<mode-parameters>}";
+       }
 
-/* $ModDesc: Povides more advanced UnrealIRCd SAMODE command */
+       CmdResult Handle (const char** parameters, int pcnt, userrec *user)
+       {
+               /*
+                * Handles an SAMODE request. Notifies all +s users.
+                */
+               ServerInstance->SendMode(parameters, pcnt, ServerInstance->FakeClient);
 
-/*
- * ToDo:
- *   Err... not a lot really.
- */ 
+               if (ServerInstance->Modes->GetLastParse().length())
+               {
+                       ServerInstance->WriteOpers("*** " + std::string(user->nick) + " used SAMODE: " + ServerInstance->Modes->GetLastParse());
 
-#include <stdio.h>
-#include "users.h"
-#include "channels.h"
-#include "modules.h"
+                       std::deque<std::string> n;
+                       irc::spacesepstream spaced(ServerInstance->Modes->GetLastParse());
+                       std::string one = "*";
+                       while (spaced.GetToken(one))
+                               n.push_back(one);
 
-Server *Srv;
-        
+                       Event rmode((char *)&n, NULL, "send_mode");
+                       rmode.Send(ServerInstance);
 
-void handle_samode(char **parameters, int pcnt, userrec *user)
-{
-       /*
-        * Handles an SAMODE request. Notifies all +s users.
-        */
-       int n=0;
-       std::string result;
-       Srv->Log(DEBUG,"SAMODE: Being handled");
-       Srv->SendMode(parameters,pcnt,user);
-       Srv->Log(DEBUG,"SAMODE: Modechange handled");
-       result = std::string(user->nick) + std::string(" used SAMODE ");
-       while (n<pcnt)
-       {
-               result=result + std::string(" ") + std::string(parameters[n]);
-               n++;
+                       n.clear();
+                       n.push_back(std::string(user->nick) + " used SAMODE: " + ServerInstance->Modes->GetLastParse());
+                       Event rmode2((char *)&n, NULL, "send_opers");
+                       rmode2.Send(ServerInstance);
+
+                       /* XXX: Yes, this is right. We dont want to propogate the
+                        * actual SAMODE command, just the MODE command generated
+                        * by the send_mode
+                        */
+                       return CMD_LOCALONLY;
+               }
+               else
+               {
+                       user->WriteServ("NOTICE %s :*** Invalid SAMODE sequence.", user->nick);
+               }
+
+               return CMD_FAILURE;
        }
-       Srv->SendOpers(result);
-}
+};
 
 class ModuleSaMode : public Module
 {
+       cmd_samode*     mycommand;
  public:
-       ModuleSaMode(Server* Me)
-               : Module::Module(Me)
+       ModuleSaMode(InspIRCd* Me)
+               : Module(Me)
        {
-               Srv = Me;
-               Srv->AddCommand("SAMODE",handle_samode,'o',2,"m_samode.so");
+               
+               mycommand = new cmd_samode(ServerInstance);
+               ServerInstance->AddCommand(mycommand);
        }
        
        virtual ~ModuleSaMode()
@@ -74,36 +84,8 @@ class ModuleSaMode : public Module
        
        virtual Version GetVersion()
        {
-               return Version(1,0,2,2,VF_VENDOR);
+               return Version(1, 1, 0, 0, VF_COMMON | VF_VENDOR, API_VERSION);
        }
-       
-       virtual void OnUserConnect(userrec* user)
-       {
-       }
-
 };
 
-
-class ModuleSaModeFactory : public ModuleFactory
-{
- public:
-       ModuleSaModeFactory()
-       {
-       }
-       
-       ~ModuleSaModeFactory()
-       {
-       }
-       
-       virtual Module * CreateModule(Server* Me)
-       {
-               return new ModuleSaMode(Me);
-       }
-       
-};
-
-
-extern "C" void * init_module( void )
-{
-       return new ModuleSaModeFactory;
-}
+MODULE_INIT(ModuleSaMode)