]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_samode.cpp
Convert more modules
[user/henk/code/inspircd.git] / src / modules / m_samode.cpp
index 1f68e48bf0a95aceb8ed699eb0d41d50861edd07..92800e701be72989aa6f3d9eb2a41a7d102c1c03 100644 (file)
@@ -2,40 +2,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.
+ *  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;
-
-/*
- * SAMODE module for InspIRCd
- *  Co authored by Brain and w00t
- *
- *  Syntax: /SAMODE <#chan/nick> +/-<modes> [parameters for modes]
- * 
- */
-
 /* $ModDesc: Provides more advanced UnrealIRCd SAMODE command */
 
-/*
- * ToDo:
- *   Err... not a lot really.
- */ 
-
-#include <stdio.h>
+#include "inspircd.h"
 #include "users.h"
 #include "channels.h"
 #include "modules.h"
-#include "inspircd.h"
 
 /** Handle /SAMODE
  */
@@ -69,14 +50,19 @@ class cmd_samode : public command_t
                        while ((one = spaced.GetToken()) != "")
                                n.push_back(one);
 
-                       Event rmode((char *)&n, NULL, "send_mode_explicit");
+                       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_explicit
+                        * by the send_mode
                         */
-                       return CMD_FAILURE;
+                       return CMD_LOCALONLY;
                }
                else
                {
@@ -92,7 +78,7 @@ class ModuleSaMode : public Module
        cmd_samode*     mycommand;
  public:
        ModuleSaMode(InspIRCd* Me)
-               : Module::Module(Me)
+               : Module(Me)
        {
                
                mycommand = new cmd_samode(ServerInstance);
@@ -129,7 +115,7 @@ class ModuleSaModeFactory : public ModuleFactory
 };
 
 
-extern "C" void * init_module( void )
+extern "C" DllExport void * init_module( void )
 {
        return new ModuleSaModeFactory;
 }