]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/coremods/core_channel/cmd_invite.cpp
Convert WriteNumeric() calls to pass the parameters of the numeric as method parameters
[user/henk/code/inspircd.git] / src / coremods / core_channel / cmd_invite.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2007-2008 Robin Burchell <robin+git@viroteck.net>
6  *   Copyright (C) 2008 Craig Edwards <craigedwards@brainbox.cc>
7  *   Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
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 "core_channel.h"
25 #include "invite.h"
26
27 CommandInvite::CommandInvite(Module* parent, Invite::APIImpl& invapiimpl)
28         : Command(parent, "INVITE", 0, 0)
29         , invapi(invapiimpl)
30 {
31         Penalty = 4;
32         syntax = "[<nick> <channel>]";
33 }
34
35 /** Handle /INVITE
36  */
37 CmdResult CommandInvite::Handle (const std::vector<std::string>& parameters, User *user)
38 {
39         ModResult MOD_RESULT;
40
41         if (parameters.size() >= 2)
42         {
43                 User* u;
44                 if (IS_LOCAL(user))
45                         u = ServerInstance->FindNickOnly(parameters[0]);
46                 else
47                         u = ServerInstance->FindNick(parameters[0]);
48
49                 Channel* c = ServerInstance->FindChan(parameters[1]);
50                 time_t timeout = 0;
51                 if (parameters.size() >= 3)
52                 {
53                         if (IS_LOCAL(user))
54                                 timeout = ServerInstance->Time() + InspIRCd::Duration(parameters[2]);
55                         else if (parameters.size() > 3)
56                                 timeout = ConvToInt(parameters[3]);
57                 }
58
59                 if ((!c) || (!u) || (u->registered != REG_ALL))
60                 {
61                         user->WriteNumeric(Numerics::NoSuchNick(c ? parameters[0] : parameters[1]));
62                         return CMD_FAILURE;
63                 }
64
65                 // Verify channel timestamp if the INVITE is coming from a remote server
66                 if (!IS_LOCAL(user))
67                 {
68                         // Remote INVITE commands must carry a channel timestamp
69                         if (parameters.size() < 3)
70                                 return CMD_INVALID;
71
72                         // Drop the invite if our channel TS is lower
73                         time_t RemoteTS = ConvToInt(parameters[2]);
74                         if (c->age < RemoteTS)
75                                 return CMD_FAILURE;
76                 }
77
78                 if ((IS_LOCAL(user)) && (!c->HasUser(user)))
79                 {
80                         user->WriteNumeric(ERR_NOTONCHANNEL, c->name, "You're not on that channel!");
81                         return CMD_FAILURE;
82                 }
83
84                 if (c->HasUser(u))
85                 {
86                         user->WriteNumeric(ERR_USERONCHANNEL, u->nick, c->name, "is already on channel");
87                         return CMD_FAILURE;
88                 }
89
90                 FIRST_MOD_RESULT(OnUserPreInvite, MOD_RESULT, (user,u,c,timeout));
91
92                 if (MOD_RESULT == MOD_RES_DENY)
93                 {
94                         return CMD_FAILURE;
95                 }
96                 else if (MOD_RESULT == MOD_RES_PASSTHRU)
97                 {
98                         if (IS_LOCAL(user))
99                         {
100                                 unsigned int rank = c->GetPrefixValue(user);
101                                 if (rank < HALFOP_VALUE)
102                                 {
103                                         // Check whether halfop mode is available and phrase error message accordingly
104                                         ModeHandler* mh = ServerInstance->Modes->FindMode('h', MODETYPE_CHANNEL);
105                                         user->WriteNumeric(ERR_CHANOPRIVSNEEDED, c->name, InspIRCd::Format("You must be a channel %soperator",
106                                                 (mh && mh->name == "halfop" ? "half-" : "")));
107                                         return CMD_FAILURE;
108                                 }
109                         }
110                 }
111
112                 if (IS_LOCAL(u))
113                 {
114                         invapi.Create(IS_LOCAL(u), c, timeout);
115                         u->WriteFrom(user,"INVITE %s :%s",u->nick.c_str(),c->name.c_str());
116                 }
117
118                 if (IS_LOCAL(user))
119                 {
120                         user->WriteNumeric(RPL_INVITING, u->nick, c->name);
121                         if (u->IsAway())
122                                 user->WriteNumeric(RPL_AWAY, u->nick, u->awaymsg);
123                 }
124
125                 char prefix = 0;
126                 unsigned int minrank = 0;
127                 switch (ServerInstance->Config->AnnounceInvites)
128                 {
129                         case ServerConfig::INVITE_ANNOUNCE_OPS:
130                         {
131                                 prefix = '@';
132                                 minrank = OP_VALUE;
133                                 break;
134                         }
135                         case ServerConfig::INVITE_ANNOUNCE_DYNAMIC:
136                         {
137                                 PrefixMode* mh = ServerInstance->Modes->FindPrefixMode('h');
138                                 if ((mh) && (mh->name == "halfop"))
139                                 {
140                                         prefix = mh->GetPrefix();
141                                         minrank = mh->GetPrefixRank();
142                                 }
143                                 break;
144                         }
145                         default:
146                         {
147                         }
148                 }
149
150                 CUList excepts;
151                 FOREACH_MOD(OnUserInvite, (user, u, c, timeout, minrank, excepts));
152
153                 if (ServerInstance->Config->AnnounceInvites != ServerConfig::INVITE_ANNOUNCE_NONE)
154                         c->WriteAllExcept(user, true, prefix, excepts, "NOTICE %s :*** %s invited %s into the channel", c->name.c_str(), user->nick.c_str(), u->nick.c_str());
155         }
156         else if (IS_LOCAL(user))
157         {
158                 // pinched from ircu - invite with not enough parameters shows channels
159                 // youve been invited to but haven't joined yet.
160                 const Invite::List* list = invapi.GetList(IS_LOCAL(user));
161                 if (list)
162                 {
163                         for (Invite::List::const_iterator i = list->begin(); i != list->end(); ++i)
164                                 user->WriteNumeric(RPL_INVITELIST, (*i)->chan->name);
165                 }
166                 user->WriteNumeric(RPL_ENDOFINVITELIST, "End of INVITE list");
167         }
168         return CMD_SUCCESS;
169 }
170
171 RouteDescriptor CommandInvite::GetRouting(User* user, const std::vector<std::string>& parameters)
172 {
173         return (IS_LOCAL(user) ? ROUTE_LOCALONLY : ROUTE_BROADCAST);
174 }