]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_saquit.cpp
m_spanningtree Log nick collisions more verbosely and in all cases
[user/henk/code/inspircd.git] / src / modules / m_saquit.cpp
index 36d511af903f3748718f9cfc92d50072d72c60b9..aa6aa01809f238bef392d11659576ca6b99c70fa 100644 (file)
@@ -1 +1,86 @@
-/*       +------------------------------------+\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#include "inspircd.h"\r#include "users.h"\r#include "channels.h"\r#include "modules.h"\r\r/* $ModDesc: Provides support for an SAQUIT command, exits user with a reason */\r\r/** Handle /SAQUIT\r */\rclass cmd_saquit : public command_t\r{\r public:\r cmd_saquit (InspIRCd* Instance) : command_t(Instance,"SAQUIT",'o',2)\r        {\r              this->source = "m_saquit.so";\r          syntax = "<nick> <reason>";\r    }\r\r     CmdResult Handle (const char** parameters, int pcnt, userrec *user)\r    {\r              userrec* dest = ServerInstance->FindNick(parameters[0]);\r               if (dest)\r              {\r                      if (ServerInstance->ULine(dest->server))\r                       {\r                              user->WriteServ("990 %s :Cannot use an SA command on a u-lined client",user->nick);\r                            return CMD_FAILURE;\r                    }\r                      irc::stringjoiner reason_join(" ", parameters, 1, pcnt - 1);\r                   std::string line = reason_join.GetJoined();\r\r                   ServerInstance->WriteOpers("*** "+std::string(user->nick)+" used SAQUIT to make "+std::string(dest->nick)+" quit with a reason of "+line);\r                     userrec::QuitUser(ServerInstance, dest, line);\r\r                        return CMD_SUCCESS;\r            }\r              else\r           {\r                      user->WriteServ("NOTICE %s :*** Invalid nickname '%s'", user->nick, parameters[0]);\r            }\r\r             return CMD_FAILURE;\r    }\r};\r\rclass ModuleSaquit : public Module\r{\r     cmd_saquit*     mycommand;\r public:\r    ModuleSaquit(InspIRCd* Me)\r             : Module(Me)\r   {\r              \r               mycommand = new cmd_saquit(ServerInstance);\r            ServerInstance->AddCommand(mycommand);\r }\r      \r       virtual ~ModuleSaquit()\r        {\r      }\r      \r       virtual Version GetVersion()\r   {\r              return Version(1,1,0,1,VF_VENDOR,API_VERSION);\r }\r      \r};\r\rMODULE_INIT(ModuleSaquit)\r
\ No newline at end of file
+/*
+ * InspIRCd -- Internet Relay Chat Daemon
+ *
+ *   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>
+ *
+ * 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.
+ *
+ * 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/>.
+ */
+
+
+#include "inspircd.h"
+
+/** Handle /SAQUIT
+ */
+class CommandSaquit : public Command
+{
+ public:
+       CommandSaquit(Module* Creator) : Command(Creator, "SAQUIT", 2, 2)
+       {
+               flags_needed = 'o'; Penalty = 0; syntax = "<nick> <reason>";
+               TRANSLATE2(TR_NICK, TR_TEXT);
+       }
+
+       CmdResult Handle (const std::vector<std::string>& parameters, User *user)
+       {
+               User* dest = ServerInstance->FindNick(parameters[0]);
+               if ((dest) && (!IS_SERVER(dest)) && (dest->registered == REG_ALL))
+               {
+                       if (dest->server->IsULine())
+                       {
+                               user->WriteNumeric(ERR_NOPRIVILEGES, ":Cannot use an SA command on a u-lined client");
+                               return CMD_FAILURE;
+                       }
+
+                       // Pass the command on, so the client's server can quit it properly.
+                       if (!IS_LOCAL(dest))
+                               return CMD_SUCCESS;
+
+                       ServerInstance->SNO->WriteGlobalSno('a', user->nick+" used SAQUIT to make "+dest->nick+" quit with a reason of "+parameters[1]);
+
+                       ServerInstance->Users->QuitUser(dest, parameters[1]);
+                       return CMD_SUCCESS;
+               }
+               else
+               {
+                       user->WriteNotice("*** Invalid nickname '" + parameters[0] + "'");
+                       return CMD_FAILURE;
+               }
+       }
+
+       RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters)
+       {
+               User* dest = ServerInstance->FindNick(parameters[0]);
+               if (dest)
+                       return ROUTE_OPT_UCAST(dest->server);
+               return ROUTE_LOCALONLY;
+       }
+};
+
+class ModuleSaquit : public Module
+{
+       CommandSaquit cmd;
+ public:
+       ModuleSaquit()
+               : cmd(this)
+       {
+       }
+
+       Version GetVersion() CXX11_OVERRIDE
+       {
+               return Version("Provides support for an SAQUIT command, exits user with a reason", VF_OPTCOMMON | VF_VENDOR);
+       }
+};
+
+MODULE_INIT(ModuleSaquit)