]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/coremods/core_privmsg.cpp
d691464c0660eff89ab8883239908044cc41892d
[user/henk/code/inspircd.git] / src / coremods / core_privmsg.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2007-2008 Craig Edwards <craigedwards@brainbox.cc>
6  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
7  *
8  * This file is part of InspIRCd.  InspIRCd is free software: you can
9  * redistribute it and/or modify it under the terms of the GNU General Public
10  * License as published by the Free Software Foundation, version 2.
11  *
12  * This program is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
15  * details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21
22 #include "inspircd.h"
23
24 namespace
25 {
26         const char* MessageTypeString[] = { "PRIVMSG", "NOTICE" };
27 }
28
29 class MessageCommandBase : public Command
30 {
31         ChanModeReference moderatedmode;
32         ChanModeReference noextmsgmode;
33
34         /** Send a PRIVMSG or NOTICE message to all local users from the given user
35          * @param user User sending the message
36          * @param msg The message to send
37          * @param mt Type of the message (MSG_PRIVMSG or MSG_NOTICE)
38          */
39         static void SendAll(User* user, const std::string& msg, MessageType mt);
40
41  public:
42         MessageCommandBase(Module* parent, MessageType mt)
43                 : Command(parent, MessageTypeString[mt], 2, 2)
44                 , moderatedmode(parent, "moderated")
45                 , noextmsgmode(parent, "noextmsg")
46         {
47                 syntax = "<target>{,<target>} <message>";
48         }
49
50         /** Handle command.
51          * @param parameters The parameters to the command
52          * @param user The user issuing the command
53          * @return A value from CmdResult to indicate command success or failure.
54          */
55         CmdResult HandleMessage(const std::vector<std::string>& parameters, User* user, MessageType mt);
56
57         RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters)
58         {
59                 if (IS_LOCAL(user))
60                         // This is handled by the OnUserMessage hook to split the LoopCall pieces
61                         return ROUTE_LOCALONLY;
62                 else
63                         return ROUTE_MESSAGE(parameters[0]);
64         }
65 };
66
67 void MessageCommandBase::SendAll(User* user, const std::string& msg, MessageType mt)
68 {
69         const std::string message = ":" + user->GetFullHost() + " " + MessageTypeString[mt] + " $* :" + msg;
70         const UserManager::LocalList& list = ServerInstance->Users.GetLocalUsers();
71         for (UserManager::LocalList::const_iterator i = list.begin(); i != list.end(); ++i)
72         {
73                 if ((*i)->registered == REG_ALL)
74                         (*i)->Write(message);
75         }
76 }
77
78 CmdResult MessageCommandBase::HandleMessage(const std::vector<std::string>& parameters, User* user, MessageType mt)
79 {
80         User *dest;
81         Channel *chan;
82         CUList except_list;
83
84         LocalUser* localuser = IS_LOCAL(user);
85         if (localuser)
86                 localuser->idle_lastmsg = ServerInstance->Time();
87
88         if (CommandParser::LoopCall(user, this, parameters, 0))
89                 return CMD_SUCCESS;
90
91         if (parameters[0][0] == '$')
92         {
93                 if (!user->HasPrivPermission("users/mass-message"))
94                         return CMD_SUCCESS;
95
96                 ModResult MOD_RESULT;
97                 std::string temp = parameters[1];
98                 FIRST_MOD_RESULT(OnUserPreMessage, MOD_RESULT, (user, (void*)parameters[0].c_str(), TYPE_SERVER, temp, 0, except_list, mt));
99                 if (MOD_RESULT == MOD_RES_DENY)
100                         return CMD_FAILURE;
101
102                 const char* text = temp.c_str();
103                 const char* servermask = (parameters[0].c_str()) + 1;
104
105                 FOREACH_MOD(OnText, (user, (void*)parameters[0].c_str(), TYPE_SERVER, text, 0, except_list));
106                 if (InspIRCd::Match(ServerInstance->Config->ServerName, servermask, NULL))
107                 {
108                         SendAll(user, text, mt);
109                 }
110                 FOREACH_MOD(OnUserMessage, (user, (void*)parameters[0].c_str(), TYPE_SERVER, text, 0, except_list, mt));
111                 return CMD_SUCCESS;
112         }
113         char status = 0;
114         const char* target = parameters[0].c_str();
115
116         if (ServerInstance->Modes->FindPrefix(*target))
117         {
118                 status = *target;
119                 target++;
120         }
121         if (*target == '#')
122         {
123                 chan = ServerInstance->FindChan(target);
124
125                 except_list.insert(user);
126
127                 if (chan)
128                 {
129                         if (localuser && chan->GetPrefixValue(user) < VOICE_VALUE)
130                         {
131                                 if (chan->IsModeSet(noextmsgmode) && !chan->HasUser(user))
132                                 {
133                                         user->WriteNumeric(ERR_CANNOTSENDTOCHAN, "%s :Cannot send to channel (no external messages)", chan->name.c_str());
134                                         return CMD_FAILURE;
135                                 }
136
137                                 if (chan->IsModeSet(moderatedmode))
138                                 {
139                                         user->WriteNumeric(ERR_CANNOTSENDTOCHAN, "%s :Cannot send to channel (+m)", chan->name.c_str());
140                                         return CMD_FAILURE;
141                                 }
142
143                                 if (ServerInstance->Config->RestrictBannedUsers)
144                                 {
145                                         if (chan->IsBanned(user))
146                                         {
147                                                 user->WriteNumeric(ERR_CANNOTSENDTOCHAN, "%s :Cannot send to channel (you're banned)", chan->name.c_str());
148                                                 return CMD_FAILURE;
149                                         }
150                                 }
151                         }
152                         ModResult MOD_RESULT;
153
154                         std::string temp = parameters[1];
155                         FIRST_MOD_RESULT(OnUserPreMessage, MOD_RESULT, (user, chan, TYPE_CHANNEL, temp, status, except_list, mt));
156                         if (MOD_RESULT == MOD_RES_DENY)
157                                 return CMD_FAILURE;
158
159                         const char* text = temp.c_str();
160
161                         /* Check again, a module may have zapped the input string */
162                         if (temp.empty())
163                         {
164                                 user->WriteNumeric(ERR_NOTEXTTOSEND, ":No text to send");
165                                 return CMD_FAILURE;
166                         }
167
168                         FOREACH_MOD(OnText, (user,chan,TYPE_CHANNEL,text,status,except_list));
169
170                         if (status)
171                         {
172                                 chan->WriteAllExcept(user, false, status, except_list, "%s %c%s :%s", MessageTypeString[mt], status, chan->name.c_str(), text);
173                         }
174                         else
175                         {
176                                 chan->WriteAllExcept(user, false, status, except_list, "%s %s :%s", MessageTypeString[mt], chan->name.c_str(), text);
177                         }
178
179                         FOREACH_MOD(OnUserMessage, (user,chan, TYPE_CHANNEL, text, status, except_list, mt));
180                 }
181                 else
182                 {
183                         /* no such nick/channel */
184                         user->WriteNumeric(ERR_NOSUCHNICK, "%s :No such nick/channel", target);
185                         return CMD_FAILURE;
186                 }
187                 return CMD_SUCCESS;
188         }
189
190         const char* destnick = parameters[0].c_str();
191
192         if (localuser)
193         {
194                 const char* targetserver = strchr(destnick, '@');
195
196                 if (targetserver)
197                 {
198                         std::string nickonly;
199
200                         nickonly.assign(destnick, 0, targetserver - destnick);
201                         dest = ServerInstance->FindNickOnly(nickonly);
202                         if (dest && strcasecmp(dest->server->GetName().c_str(), targetserver + 1))
203                         {
204                                 /* Incorrect server for user */
205                                 user->WriteNumeric(ERR_NOSUCHNICK, "%s :No such nick/channel", parameters[0].c_str());
206                                 return CMD_FAILURE;
207                         }
208                 }
209                 else
210                         dest = ServerInstance->FindNickOnly(destnick);
211         }
212         else
213                 dest = ServerInstance->FindNick(destnick);
214
215         if ((dest) && (dest->registered == REG_ALL))
216         {
217                 if (parameters[1].empty())
218                 {
219                         user->WriteNumeric(ERR_NOTEXTTOSEND, ":No text to send");
220                         return CMD_FAILURE;
221                 }
222
223                 if ((dest->IsAway()) && (mt == MSG_PRIVMSG))
224                 {
225                         /* auto respond with aweh msg */
226                         user->WriteNumeric(RPL_AWAY, "%s :%s", dest->nick.c_str(), dest->awaymsg.c_str());
227                 }
228
229                 ModResult MOD_RESULT;
230
231                 std::string temp = parameters[1];
232                 FIRST_MOD_RESULT(OnUserPreMessage, MOD_RESULT, (user, dest, TYPE_USER, temp, 0, except_list, mt));
233                 if (MOD_RESULT == MOD_RES_DENY)
234                         return CMD_FAILURE;
235
236                 const char* text = temp.c_str();
237
238                 FOREACH_MOD(OnText, (user, dest, TYPE_USER, text, 0, except_list));
239
240                 if (IS_LOCAL(dest))
241                 {
242                         // direct write, same server
243                         dest->WriteFrom(user, "%s %s :%s", MessageTypeString[mt], dest->nick.c_str(), text);
244                 }
245
246                 FOREACH_MOD(OnUserMessage, (user, dest, TYPE_USER, text, 0, except_list, mt));
247         }
248         else
249         {
250                 /* no such nick/channel */
251                 user->WriteNumeric(ERR_NOSUCHNICK, "%s :No such nick/channel", parameters[0].c_str());
252                 return CMD_FAILURE;
253         }
254         return CMD_SUCCESS;
255 }
256
257 template<MessageType MT>
258 class CommandMessage : public MessageCommandBase
259 {
260  public:
261         CommandMessage(Module* parent)
262                 : MessageCommandBase(parent, MT)
263         {
264         }
265
266         CmdResult Handle(const std::vector<std::string>& parameters, User* user)
267         {
268                 return HandleMessage(parameters, user, MT);
269         }
270 };
271
272 class ModuleCoreMessage : public Module
273 {
274         CommandMessage<MSG_PRIVMSG> CommandPrivmsg;
275         CommandMessage<MSG_NOTICE> CommandNotice;
276
277  public:
278         ModuleCoreMessage()
279                 : CommandPrivmsg(this), CommandNotice(this)
280         {
281         }
282
283         Version GetVersion()
284         {
285                 return Version("PRIVMSG, NOTICE", VF_CORE|VF_VENDOR);
286         }
287 };
288
289 MODULE_INIT(ModuleCoreMessage)