]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_samode.cpp
Updated the version lines on several modules.
[user/henk/code/inspircd.git] / src / modules / m_samode.cpp
index 624f0483b1bde1d75679bbb8a12e3c39cb85ef4a..d9c75adf79d394520f8501acff5582ce400a723c 100644 (file)
-/*       +------------------------------------+
- *       | Inspire Internet Relay Chat Daemon |
- *       +------------------------------------+
+/*
+ * InspIRCd -- 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.
- * This program is free but copyrighted software; see
- *            the file COPYING for details.
+ *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
+ *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
+ *   Copyright (C) 2006-2007 Robin Burchell <robin+git@viroteck.net>
+ *   Copyright (C) 2004-2005 Craig Edwards <craigedwards@brainbox.cc>
  *
- * ---------------------------------------------------
- */
-
-/*
- * SAMODE module for InspIRCd
- *  Co authored by Brain and w00t
+ * This file is part of InspIRCd.  InspIRCd is free software: you can
+ * redistribute it and/or modify it under the terms of the GNU General Public
+ * License as published by the Free Software Foundation, version 2.
  *
- *  Syntax: /SAMODE <#chan/nick> +/-<modes> [parameters for modes]
- * 
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
+ * details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-/* $ModDesc: Povides more advanced UnrealIRCd SAMODE command */
-
-/*
- * ToDo:
- *   Err... not a lot really.
- */ 
 
-#include <stdio.h>
-#include "users.h"
-#include "channels.h"
-#include "modules.h"
+/* $ModDesc: Provides command SAMODE to allow opers to change modes on channels and users */
 
-Server *Srv;
-        
+#include "inspircd.h"
 
-void handle_samode(char **parameters, int pcnt, userrec *user)
+/** Handle /SAMODE
+ */
+class CommandSamode : public Command
 {
-       /*
-        * 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)
+ public:
+       bool active;
+       CommandSamode(Module* Creator) : Command(Creator,"SAMODE", 2)
        {
-               result=result + std::string(" ") + std::string(parameters[n]);
-               n++;
+               flags_needed = 'o'; Penalty = 0; syntax = "<target> <modes> {<mode-parameters>}";
+               active = false;
        }
-       Srv->SendOpers(result);
-}
+
+       CmdResult Handle (const std::vector<std::string>& parameters, User *user)
+       {
+               this->active = true;
+               ServerInstance->Parser->CallHandler("MODE", parameters, user);
+               if (ServerInstance->Modes->GetLastParse().length())
+                       ServerInstance->SNO->WriteGlobalSno('a', std::string(user->nick) + " used SAMODE: " +ServerInstance->Modes->GetLastParse());
+               this->active = false;
+               return CMD_SUCCESS;
+       }
+};
 
 class ModuleSaMode : public Module
 {
+       CommandSamode cmd;
  public:
        ModuleSaMode()
+               : cmd(this)
        {
-               Srv = new Server;
-               Srv->AddCommand("SAMODE",handle_samode,'o',2,"m_samode.so");
+               ServerInstance->AddCommand(&cmd);
+               ServerInstance->Modules->Attach(I_OnPreMode, this);
        }
-       
-       virtual ~ModuleSaMode()
-       {
-               delete Srv;
-       }
-       
-       virtual Version GetVersion()
-       {
-               return Version(1,0,2,1);
-       }
-       
-       virtual void OnUserConnect(userrec* user)
+
+       ~ModuleSaMode()
        {
        }
 
-};
-
-
-class ModuleSaModeFactory : public ModuleFactory
-{
- public:
-       ModuleSaModeFactory()
+       Version GetVersion()
        {
+               return Version("Provides command SAMODE to allow opers to change modes on channels and users", VF_VENDOR);
        }
-       
-       ~ModuleSaModeFactory()
+
+       ModResult OnPreMode(User* source,User* dest,Channel* channel, const std::vector<std::string>& parameters)
        {
+               if (cmd.active)
+                       return MOD_RES_ALLOW;
+               return MOD_RES_PASSTHRU;
        }
-       
-       virtual Module * CreateModule()
+
+       void Prioritize()
        {
-               return new ModuleSaMode;
+               Module *override = ServerInstance->Modules->Find("m_override.so");
+               ServerInstance->Modules->SetPriority(this, I_OnPreMode, PRIORITY_BEFORE, &override);
        }
-       
 };
 
-
-extern "C" void * init_module( void )
-{
-       return new ModuleSaModeFactory;
-}
+MODULE_INIT(ModuleSaMode)