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