X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmodules%2Fm_saquit.cpp;h=c1ff50dd55fe223d98cb9bb6ac0bfe8b92a196ee;hb=dd36852a52e8541306b76c5b88bce8ab9b36654c;hp=395776230a789ffd3c897f7ec8acf42a0c5b6f54;hpb=fd6ee21f2f55875984884a8413d61012e066029f;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_saquit.cpp b/src/modules/m_saquit.cpp index 395776230..c1ff50dd5 100644 --- a/src/modules/m_saquit.cpp +++ b/src/modules/m_saquit.cpp @@ -2,84 +2,73 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. - * E-mail: - * - * - * - * Written by Craig Edwards, Craig McLure, and others. + * InspIRCd: (C) 2002-2008 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. + * the file COPYING for details. * * --------------------------------------------------- */ -using namespace std; - -/* - * SAQUIT module for InspIRCd - * Author: w00t - * Version: 1.0.0.0 - * - * Syntax: /SAQUIT [reason] - * Makes it appear as though has /quit with [reason] - * - */ - -#include -#include -#include "users.h" -#include "channels.h" -#include "modules.h" #include "inspircd.h" /* $ModDesc: Provides support for an SAQUIT command, exits user with a reason */ - - - -class cmd_saquit : public command_t +/** Handle /SAQUIT + */ +class CommandSaquit : public Command { public: - cmd_saquit (InspIRCd* Instance) : command_t(Instance,"SAQUIT",'o',2) + CommandSaquit (InspIRCd* Instance) : Command(Instance, "SAQUIT", "o", 2, false, 0) { this->source = "m_saquit.so"; syntax = " "; + TRANSLATE3(TR_NICK, TR_TEXT, TR_END); } - void Handle (const char** parameters, int pcnt, userrec *user) + CmdResult Handle (const char* const* parameters, int pcnt, User *user) { - userrec* dest = ServerInstance->FindNick(parameters[0]); + User* dest = ServerInstance->FindNick(parameters[0]); if (dest) { - if (ServerInstance->IsUlined(dest->server)) + if (ServerInstance->ULine(dest->server)) { user->WriteServ("990 %s :Cannot use an SA command on a u-lined client",user->nick); - return; + return CMD_FAILURE; } - std::string line = ""; - for (int i = 1; i < pcnt - 1; i++) - { - line = line + std::string(parameters[i]) + " "; - } - line = line + std::string(parameters[pcnt-1]); - - 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); + + irc::stringjoiner reason_join(" ", parameters, 1, pcnt - 1); + std::string line = reason_join.GetJoined(); + ServerInstance->SNO->WriteToSnoMask('A', std::string(user->nick)+" used SAQUIT to make "+std::string(dest->nick)+" quit with a reason of "+line); + + // Pass the command on, so the client's server can quit it properly. + if (!IS_LOCAL(dest)) + return CMD_SUCCESS; + + User::QuitUser(ServerInstance, dest, line); + return CMD_SUCCESS; + } + else + { + user->WriteServ("NOTICE %s :*** Invalid nickname '%s'", user->nick, parameters[0]); } + + return CMD_FAILURE; } }; class ModuleSaquit : public Module { - cmd_saquit* mycommand; + CommandSaquit* mycommand; public: ModuleSaquit(InspIRCd* Me) - : Module::Module(Me) + : Module(Me) { - mycommand = new cmd_saquit(ServerInstance); + mycommand = new CommandSaquit(ServerInstance); ServerInstance->AddCommand(mycommand); + } virtual ~ModuleSaquit() @@ -88,34 +77,9 @@ class ModuleSaquit : public Module virtual Version GetVersion() { - return Version(1,0,0,1,VF_VENDOR); + return Version(1, 1, 0, 0, VF_COMMON | VF_VENDOR, API_VERSION); } }; -// stuff down here is the module-factory stuff. For basic modules you can ignore this. - -class ModuleSaquitFactory : public ModuleFactory -{ - public: - ModuleSaquitFactory() - { - } - - ~ModuleSaquitFactory() - { - } - - virtual Module * CreateModule(InspIRCd* Me) - { - return new ModuleSaquit(Me); - } - -}; - - -extern "C" void * init_module( void ) -{ - return new ModuleSaquitFactory; -} - +MODULE_INIT(ModuleSaquit)