]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_uninvite.cpp
m_spanningtree Move all server-to-server command handlers into handler classes
[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
25 /** Handle /UNINVITE
26  */
27 class CommandUninvite : public Command
28 {
29  public:
30         CommandUninvite(Module* Creator) : Command(Creator,"UNINVITE", 2)
31         {
32                 syntax = "<nick> <channel>";
33                 TRANSLATE2(TR_NICK, TR_TEXT);
34         }
35
36         CmdResult Handle (const std::vector<std::string> &parameters, User *user)
37         {
38                 User* u = ServerInstance->FindNick(parameters[0]);
39                 Channel* c = ServerInstance->FindChan(parameters[1]);
40
41                 if ((!c) || (!u) || (u->registered != REG_ALL))
42                 {
43                         if (!c)
44                         {
45                                 user->WriteNumeric(401, "%s %s :No such nick/channel",user->nick.c_str(), parameters[1].c_str());
46                         }
47                         else
48                         {
49                                 user->WriteNumeric(401, "%s %s :No such nick/channel",user->nick.c_str(), parameters[0].c_str());
50                         }
51
52                         return CMD_FAILURE;
53                 }
54
55                 if (IS_LOCAL(user))
56                 {
57                         if (c->GetPrefixValue(user) < HALFOP_VALUE)
58                         {
59                                 user->WriteNumeric(ERR_CHANOPRIVSNEEDED, "%s %s :You must be a channel %soperator", user->nick.c_str(), c->name.c_str(), c->GetPrefixValue(u) == HALFOP_VALUE ? "" : "half-");
60                                 return CMD_FAILURE;
61                         }
62                 }
63
64                 /* Servers remember invites only for their local users, so act
65                  * only if the target is local. Otherwise the command will be
66                  * passed to the target users server.
67                  */
68                 LocalUser* lu = IS_LOCAL(u);
69                 if (lu)
70                 {
71                         if (!lu->RemoveInvite(c))
72                         {
73                                 user->SendText(":%s 505 %s %s %s :Is not invited to channel %s", user->server.c_str(), user->nick.c_str(), u->nick.c_str(), c->name.c_str(), c->name.c_str());
74                                 return CMD_FAILURE;
75                         }
76
77                         user->SendText(":%s 494 %s %s %s :Uninvited", user->server.c_str(), user->nick.c_str(), c->name.c_str(), u->nick.c_str());
78                         lu->WriteNumeric(493, "%s :You were uninvited from %s by %s", u->nick.c_str(), c->name.c_str(), user->nick.c_str());
79
80                         std::string msg = "*** " + user->nick + " uninvited " + u->nick + ".";
81                         c->WriteChannelWithServ(ServerInstance->Config->ServerName, "NOTICE " + c->name + " :" + msg);
82                         ServerInstance->PI->SendChannelNotice(c, 0, msg);
83                 }
84
85                 return CMD_SUCCESS;
86         }
87
88         RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters)
89         {
90                 User* u = ServerInstance->FindNick(parameters[0]);
91                 return u ? ROUTE_OPT_UCAST(u->server) : ROUTE_LOCALONLY;
92         }
93 };
94
95 class ModuleUninvite : public Module
96 {
97         CommandUninvite cmd;
98
99  public:
100
101         ModuleUninvite() : cmd(this)
102         {
103         }
104
105         void init() CXX11_OVERRIDE
106         {
107                 ServerInstance->Modules->AddService(cmd);
108         }
109
110         Version GetVersion() CXX11_OVERRIDE
111         {
112                 return Version("Provides the UNINVITE command which lets users un-invite other users from channels", VF_VENDOR | VF_OPTCOMMON);
113         }
114 };
115
116 MODULE_INIT(ModuleUninvite)