]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_sapart.cpp
Merge insp20
[user/henk/code/inspircd.git] / src / modules / m_sapart.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
5  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
6  *   Copyright (C) 2004-2007 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 /** Handle /SAPART
25  */
26 class CommandSapart : public Command
27 {
28  public:
29         CommandSapart(Module* Creator) : Command(Creator,"SAPART", 2, 3)
30         {
31                 flags_needed = 'o'; Penalty = 0; syntax = "<nick> <channel> [reason]";
32                 TRANSLATE3(TR_NICK, TR_TEXT, TR_TEXT);
33         }
34
35         CmdResult Handle (const std::vector<std::string>& parameters, User *user)
36         {
37                 User* dest = ServerInstance->FindNick(parameters[0]);
38                 Channel* channel = ServerInstance->FindChan(parameters[1]);
39                 std::string reason;
40
41                 if ((dest) && (dest->registered == REG_ALL) && (channel))
42                 {
43                         if (parameters.size() > 2)
44                                 reason = parameters[2];
45
46                         if (dest->server->IsULine())
47                         {
48                                 user->WriteNumeric(ERR_NOPRIVILEGES, ":Cannot use an SA command on a u-lined client");
49                                 return CMD_FAILURE;
50                         }
51
52                         if (!channel->HasUser(dest))
53                         {
54                                 user->WriteNotice("*** " + dest->nick + " is not on " + channel->name);
55                                 return CMD_FAILURE;
56                         }
57
58                         /* For local clients, directly part them generating a PART message. For remote clients,
59                          * just return CMD_SUCCESS knowing the protocol module will route the SAPART to the users
60                          * local server and that will generate the PART instead
61                          */
62                         if (IS_LOCAL(dest))
63                         {
64                                 channel->PartUser(dest, reason);
65                                 ServerInstance->SNO->WriteGlobalSno('a', user->nick+" used SAPART to make "+dest->nick+" part "+channel->name);
66                         }
67
68                         return CMD_SUCCESS;
69                 }
70                 else
71                 {
72                         user->WriteNotice("*** Invalid nickname or channel");
73                 }
74
75                 return CMD_FAILURE;
76         }
77
78         RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters)
79         {
80                 User* dest = ServerInstance->FindNick(parameters[0]);
81                 if (dest)
82                         return ROUTE_OPT_UCAST(dest->server);
83                 return ROUTE_LOCALONLY;
84         }
85 };
86
87
88 class ModuleSapart : public Module
89 {
90         CommandSapart cmd;
91  public:
92         ModuleSapart()
93                 : cmd(this)
94         {
95         }
96
97         Version GetVersion() CXX11_OVERRIDE
98         {
99                 return Version("Provides command SAPART to force-part users from a channel.", VF_OPTCOMMON | VF_VENDOR);
100         }
101 };
102
103 MODULE_INIT(ModuleSapart)