]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_uninvite.cpp
Convert WriteNumeric() calls to pass the parameters of the numeric as method parameters
[user/henk/code/inspircd.git] / src / modules / m_uninvite.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
6  *   Copyright (C) 2006-2007 Craig Edwards <craigedwards@brainbox.cc>
7  *   Copyright (C) 2006 Robin Burchell <robin+git@viroteck.net>
8  *
9  * This file is part of InspIRCd.  InspIRCd is free software: you can
10  * redistribute it and/or modify it under the terms of the GNU General Public
11  * License as published by the Free Software Foundation, version 2.
12  *
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20  */
21
22
23 #include "inspircd.h"
24 #include "modules/invite.h"
25
26 /** Handle /UNINVITE
27  */
28 class CommandUninvite : public Command
29 {
30         Invite::API invapi;
31  public:
32         CommandUninvite(Module* Creator)
33                 : Command(Creator, "UNINVITE", 2)
34                 , invapi(Creator)
35         {
36                 syntax = "<nick> <channel>";
37                 TRANSLATE2(TR_NICK, TR_TEXT);
38         }
39
40         CmdResult Handle (const std::vector<std::string> &parameters, User *user)
41         {
42                 User* u;
43                 if (IS_LOCAL(user))
44                         u = ServerInstance->FindNickOnly(parameters[0]);
45                 else
46                         u = ServerInstance->FindNick(parameters[0]);
47
48                 Channel* c = ServerInstance->FindChan(parameters[1]);
49
50                 if ((!c) || (!u) || (u->registered != REG_ALL))
51                 {
52                         if (!c)
53                         {
54                                 user->WriteNumeric(Numerics::NoSuchNick(parameters[1]));
55                         }
56                         else
57                         {
58                                 user->WriteNumeric(Numerics::NoSuchNick(parameters[0]));
59                         }
60
61                         return CMD_FAILURE;
62                 }
63
64                 if (IS_LOCAL(user))
65                 {
66                         if (c->GetPrefixValue(user) < HALFOP_VALUE)
67                         {
68                                 user->WriteNumeric(ERR_CHANOPRIVSNEEDED, c->name, InspIRCd::Format("You must be a channel %soperator", c->GetPrefixValue(u) == HALFOP_VALUE ? "" : "half-"));
69                                 return CMD_FAILURE;
70                         }
71                 }
72
73                 /* Servers remember invites only for their local users, so act
74                  * only if the target is local. Otherwise the command will be
75                  * passed to the target users server.
76                  */
77                 LocalUser* lu = IS_LOCAL(u);
78                 if (lu)
79                 {
80                         if (!invapi->Remove(lu, c))
81                         {
82                                 user->SendText(":%s 505 %s %s %s :Is not invited to channel %s", user->server->GetName().c_str(), user->nick.c_str(), u->nick.c_str(), c->name.c_str(), c->name.c_str());
83                                 return CMD_FAILURE;
84                         }
85
86                         user->SendText(":%s 494 %s %s %s :Uninvited", user->server->GetName().c_str(), user->nick.c_str(), c->name.c_str(), u->nick.c_str());
87                         lu->WriteNumeric(493, InspIRCd::Format("You were uninvited from %s by %s", c->name.c_str(), user->nick.c_str()));
88
89                         std::string msg = "*** " + user->nick + " uninvited " + u->nick + ".";
90                         c->WriteChannelWithServ(ServerInstance->Config->ServerName, "NOTICE " + c->name + " :" + msg);
91                         ServerInstance->PI->SendChannelNotice(c, 0, msg);
92                 }
93
94                 return CMD_SUCCESS;
95         }
96
97         RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters)
98         {
99                 User* u = ServerInstance->FindNick(parameters[0]);
100                 return u ? ROUTE_OPT_UCAST(u->server) : ROUTE_LOCALONLY;
101         }
102 };
103
104 class ModuleUninvite : public Module
105 {
106         CommandUninvite cmd;
107
108  public:
109
110         ModuleUninvite() : cmd(this)
111         {
112         }
113
114         Version GetVersion() CXX11_OVERRIDE
115         {
116                 return Version("Provides the UNINVITE command which lets users un-invite other users from channels", VF_VENDOR | VF_OPTCOMMON);
117         }
118 };
119
120 MODULE_INIT(ModuleUninvite)