]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_saquit.cpp
m_dccallow Validate tokens before use
[user/henk/code/inspircd.git] / src / modules / m_saquit.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
5  *   Copyright (C) 2006-2007 Robin Burchell <robin+git@viroteck.net>
6  *   Copyright (C) 2004-2005 Craig Edwards <craigedwards@brainbox.cc>
7  *
8  * This file is part of InspIRCd.  InspIRCd is free software: you can
9  * redistribute it and/or modify it under the terms of the GNU General Public
10  * License as published by the Free Software Foundation, version 2.
11  *
12  * This program is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
15  * details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21
22 #include "inspircd.h"
23
24 /* $ModDesc: Provides support for an SAQUIT command, exits user with a reason */
25
26 /** Handle /SAQUIT
27  */
28 class CommandSaquit : public Command
29 {
30  public:
31         CommandSaquit(Module* Creator) : Command(Creator, "SAQUIT", 2, 2)
32         {
33                 flags_needed = 'o'; Penalty = 0; syntax = "<nick> <reason>";
34                 TRANSLATE3(TR_NICK, TR_TEXT, TR_END);
35         }
36
37         CmdResult Handle (const std::vector<std::string>& parameters, User *user)
38         {
39                 User* dest = ServerInstance->FindNick(parameters[0]);
40                 if ((dest) && (!IS_SERVER(dest)) && (dest->registered == REG_ALL))
41                 {
42                         if (ServerInstance->ULine(dest->server))
43                         {
44                                 user->WriteNumeric(ERR_NOPRIVILEGES, "%s :Cannot use an SA command on a u-lined client",user->nick.c_str());
45                                 return CMD_FAILURE;
46                         }
47
48                         // Pass the command on, so the client's server can quit it properly.
49                         if (!IS_LOCAL(dest))
50                                 return CMD_SUCCESS;
51                         
52                         ServerInstance->SNO->WriteGlobalSno('a', user->nick+" used SAQUIT to make "+dest->nick+" quit with a reason of "+parameters[1]);
53
54                         ServerInstance->Users->QuitUser(dest, parameters[1]);
55                         return CMD_SUCCESS;
56                 }
57                 else
58                 {
59                         user->WriteServ("NOTICE %s :*** Invalid nickname '%s'", user->nick.c_str(), parameters[0].c_str());
60                         return CMD_FAILURE;
61                 }
62         }
63
64         RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters)
65         {
66                 User* dest = ServerInstance->FindNick(parameters[0]);
67                 if (dest)
68                         return ROUTE_OPT_UCAST(dest->server);
69                 return ROUTE_LOCALONLY;
70         }
71 };
72
73 class ModuleSaquit : public Module
74 {
75         CommandSaquit cmd;
76  public:
77         ModuleSaquit()
78                 : cmd(this)
79         {
80         }
81
82         void init()
83         {
84                 ServerInstance->Modules->AddService(cmd);
85         }
86
87         virtual ~ModuleSaquit()
88         {
89         }
90
91         virtual Version GetVersion()
92         {
93                 return Version("Provides support for an SAQUIT command, exits user with a reason", VF_OPTCOMMON | VF_VENDOR);
94         }
95
96 };
97
98 MODULE_INIT(ModuleSaquit)