]> 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 f48e078b1159ab7c04631afc13bed0d6ff2bb18a..0f5813edc04e44882dd8c68600e4feed28f1fcca 100644 (file)
@@ -1 +1,91 @@
-/*       +------------------------------------+\r *       | Inspire Internet Relay Chat Daemon |\r *       +------------------------------------+\r *\r *  InspIRCd: (C) 2002-2007 InspIRCd Development Team\r * See: http://www.inspircd.org/wiki/index.php/Credits\r *\r * This program is free but copyrighted software; see\r *            the file COPYING for details.\r *\r * ---------------------------------------------------\r */\r\r/* $ModDesc: Provides more advanced UnrealIRCd SAMODE command */\r\r#include "inspircd.h"\r#include "users.h"\r#include "channels.h"\r#include "modules.h"\r\r/** Handle /SAMODE\r */\rclass cmd_samode : public command_t\r{\r public:\r      cmd_samode (InspIRCd* Instance) : command_t(Instance,"SAMODE", 'o', 2)\r {\r              this->source = "m_samode.so";\r          syntax = "<target> <modes> {<mode-parameters>}";\r       }\r\r     CmdResult Handle (const char** parameters, int pcnt, userrec *user)\r    {\r              /*\r              * Handles an SAMODE request. Notifies all +s users.\r            */\r\r           userrec* n = new userrec(ServerInstance);\r              n->SetFd(FD_MAGIC_NUMBER);\r             ServerInstance->SendMode(parameters,pcnt,n);\r           delete n;\r\r             if (ServerInstance->Modes->GetLastParse().length())\r            {\r                      ServerInstance->WriteOpers("*** " + std::string(user->nick) + " used SAMODE: " + ServerInstance->Modes->GetLastParse());\r\r                      std::deque<std::string> n;\r                     irc::spacesepstream spaced(ServerInstance->Modes->GetLastParse());\r                     std::string one = "*";\r                 while ((one = spaced.GetToken()) != "")\r                                n.push_back(one);\r\r                     Event rmode((char *)&n, NULL, "send_mode");\r                    rmode.Send(ServerInstance);\r\r                   n.clear();\r                     n.push_back(std::string(user->nick) + " used SAMODE: " + ServerInstance->Modes->GetLastParse());\r                       Event rmode2((char *)&n, NULL, "send_opers");\r                  rmode2.Send(ServerInstance);\r\r                  /* XXX: Yes, this is right. We dont want to propogate the\r                       * actual SAMODE command, just the MODE command generated\r                       * by the send_mode\r                     */\r                    return CMD_LOCALONLY;\r          }\r              else\r           {\r                      user->WriteServ("NOTICE %s :*** Invalid SAMODE sequence.", user->nick);\r                }\r\r             return CMD_FAILURE;\r    }\r};\r\rclass ModuleSaMode : public Module\r{\r     cmd_samode*     mycommand;\r public:\r    ModuleSaMode(InspIRCd* Me)\r             : Module(Me)\r   {\r              \r               mycommand = new cmd_samode(ServerInstance);\r            ServerInstance->AddCommand(mycommand);\r }\r      \r       virtual ~ModuleSaMode()\r        {\r      }\r      \r       virtual Version GetVersion()\r   {\r              return Version(1,1,2,2,VF_VENDOR,API_VERSION);\r }\r};\r\rMODULE_INIT(ModuleSaMode)\r
\ No newline at end of file
+/*       +------------------------------------+
+ *       | Inspire Internet Relay Chat Daemon |
+ *       +------------------------------------+
+ *
+ *  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.
+ *
+ * ---------------------------------------------------
+ */
+
+/* $ModDesc: Provides more advanced UnrealIRCd SAMODE command */
+
+#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>}";
+       }
+
+       CmdResult Handle (const char** parameters, int pcnt, userrec *user)
+       {
+               /*
+                * Handles an SAMODE request. Notifies all +s users.
+                */
+               ServerInstance->SendMode(parameters, pcnt, ServerInstance->FakeClient);
+
+               if (ServerInstance->Modes->GetLastParse().length())
+               {
+                       ServerInstance->WriteOpers("*** " + std::string(user->nick) + " used SAMODE: " + ServerInstance->Modes->GetLastParse());
+
+                       std::deque<std::string> n;
+                       irc::spacesepstream spaced(ServerInstance->Modes->GetLastParse());
+                       std::string one = "*";
+                       while (spaced.GetToken(one))
+                               n.push_back(one);
+
+                       Event rmode((char *)&n, NULL, "send_mode");
+                       rmode.Send(ServerInstance);
+
+                       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;
+       }
+};
+
+class ModuleSaMode : public Module
+{
+       cmd_samode*     mycommand;
+ public:
+       ModuleSaMode(InspIRCd* Me)
+               : Module(Me)
+       {
+               
+               mycommand = new cmd_samode(ServerInstance);
+               ServerInstance->AddCommand(mycommand);
+       }
+       
+       virtual ~ModuleSaMode()
+       {
+       }
+       
+       virtual Version GetVersion()
+       {
+               return Version(1, 1, 0, 0, VF_COMMON | VF_VENDOR, API_VERSION);
+       }
+};
+
+MODULE_INIT(ModuleSaMode)