]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/coremods/core_channel/cmd_invite.cpp
Create the core_oper module
[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
26 CommandInvite::CommandInvite(Module* parent)
27         : Command(parent, "INVITE", 0, 0)
28 {
29         Penalty = 4;
30         syntax = "[<nick> <channel>]";
31 }
32
33 /** Handle /INVITE
34  */
35 CmdResult CommandInvite::Handle (const std::vector<std::string>& parameters, User *user)
36 {
37         ModResult MOD_RESULT;
38
39         if (parameters.size() == 2 || parameters.size() == 3)
40         {
41                 User* u;
42                 if (IS_LOCAL(user))
43                         u = ServerInstance->FindNickOnly(parameters[0]);
44                 else
45                         u = ServerInstance->FindNick(parameters[0]);
46
47                 Channel* c = ServerInstance->FindChan(parameters[1]);
48                 time_t timeout = 0;
49                 if (parameters.size() == 3)
50                 {
51                         if (IS_LOCAL(user))
52                                 timeout = ServerInstance->Time() + InspIRCd::Duration(parameters[2]);
53                         else
54                                 timeout = ConvToInt(parameters[2]);
55                 }
56
57                 if ((!c) || (!u) || (u->registered != REG_ALL))
58                 {
59                         user->WriteNumeric(ERR_NOSUCHNICK, "%s :No such nick/channel", c ? parameters[0].c_str() : parameters[1].c_str());
60                         return CMD_FAILURE;
61                 }
62
63                 if ((IS_LOCAL(user)) && (!c->HasUser(user)))
64                 {
65                         user->WriteNumeric(ERR_NOTONCHANNEL, "%s :You're not on that channel!", c->name.c_str());
66                         return CMD_FAILURE;
67                 }
68
69                 if (c->HasUser(u))
70                 {
71                         user->WriteNumeric(ERR_USERONCHANNEL, "%s %s :is already on channel", u->nick.c_str(), c->name.c_str());
72                         return CMD_FAILURE;
73                 }
74
75                 FIRST_MOD_RESULT(OnUserPreInvite, MOD_RESULT, (user,u,c,timeout));
76
77                 if (MOD_RESULT == MOD_RES_DENY)
78                 {
79                         return CMD_FAILURE;
80                 }
81                 else if (MOD_RESULT == MOD_RES_PASSTHRU)
82                 {
83                         if (IS_LOCAL(user))
84                         {
85                                 unsigned int rank = c->GetPrefixValue(user);
86                                 if (rank < HALFOP_VALUE)
87                                 {
88                                         // Check whether halfop mode is available and phrase error message accordingly
89                                         ModeHandler* mh = ServerInstance->Modes->FindMode('h', MODETYPE_CHANNEL);
90                                         user->WriteNumeric(ERR_CHANOPRIVSNEEDED, "%s :You must be a channel %soperator",
91                                                 c->name.c_str(), (mh && mh->name == "halfop" ? "half-" : ""));
92                                         return CMD_FAILURE;
93                                 }
94                         }
95                 }
96
97                 if (IS_LOCAL(u))
98                 {
99                         Invitation::Create(c, IS_LOCAL(u), timeout);
100                         u->WriteFrom(user,"INVITE %s :%s",u->nick.c_str(),c->name.c_str());
101                 }
102
103                 if (IS_LOCAL(user))
104                         user->WriteNumeric(RPL_INVITING, "%s %s", u->nick.c_str(),c->name.c_str());
105
106                 if (ServerInstance->Config->AnnounceInvites != ServerConfig::INVITE_ANNOUNCE_NONE)
107                 {
108                         char prefix;
109                         switch (ServerInstance->Config->AnnounceInvites)
110                         {
111                                 case ServerConfig::INVITE_ANNOUNCE_OPS:
112                                 {
113                                         prefix = '@';
114                                         break;
115                                 }
116                                 case ServerConfig::INVITE_ANNOUNCE_DYNAMIC:
117                                 {
118                                         PrefixMode* mh = ServerInstance->Modes->FindPrefixMode('h');
119                                         prefix = (mh && mh->name == "halfop" ? mh->GetPrefix() : '@');
120                                         break;
121                                 }
122                                 default:
123                                 {
124                                         prefix = 0;
125                                         break;
126                                 }
127                         }
128                         c->WriteAllExceptSender(user, true, prefix, "NOTICE %s :*** %s invited %s into the channel", c->name.c_str(), user->nick.c_str(), u->nick.c_str());
129                 }
130                 FOREACH_MOD(OnUserInvite, (user,u,c,timeout));
131         }
132         else if (IS_LOCAL(user))
133         {
134                 // pinched from ircu - invite with not enough parameters shows channels
135                 // youve been invited to but haven't joined yet.
136                 InviteList& il = IS_LOCAL(user)->GetInviteList();
137                 for (InviteList::const_iterator i = il.begin(); i != il.end(); ++i)
138                 {
139                         user->WriteNumeric(RPL_INVITELIST, ":%s", (*i)->chan->name.c_str());
140                 }
141                 user->WriteNumeric(RPL_ENDOFINVITELIST, ":End of INVITE list");
142         }
143         return CMD_SUCCESS;
144 }
145
146 RouteDescriptor CommandInvite::GetRouting(User* user, const std::vector<std::string>& parameters)
147 {
148         return (IS_LOCAL(user) ? ROUTE_LOCALONLY : ROUTE_BROADCAST);
149 }