]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_restrictmsg.cpp
ISupportManager: Tidy-up, expand comments
[user/henk/code/inspircd.git] / src / modules / m_restrictmsg.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
5  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
6  *   Copyright (C) 2005 Craig Edwards <craigedwards@brainbox.cc>
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 /* $ModDesc: Forbids users from messaging each other. Users may still message opers and opers may message other opers. */
25
26 class ModuleRestrictMsg : public Module
27 {
28  public:
29         void init() CXX11_OVERRIDE
30         {
31                 ServerInstance->Modules->Attach(I_OnUserPreMessage, this);
32         }
33
34         ModResult OnUserPreMessage(User* user, void* dest, int target_type, std::string& text, char status, CUList& exempt_list, MessageType msgtype) CXX11_OVERRIDE
35         {
36                 if ((target_type == TYPE_USER) && (IS_LOCAL(user)))
37                 {
38                         User* u = (User*)dest;
39
40                         // message allowed if:
41                         // (1) the sender is opered
42                         // (2) the recipient is opered
43                         // anything else, blocked.
44                         if (u->IsOper() || user->IsOper())
45                         {
46                                 return MOD_RES_PASSTHRU;
47                         }
48                         user->WriteNumeric(ERR_CANTSENDTOUSER, "%s %s :You are not permitted to send private messages to this user",user->nick.c_str(),u->nick.c_str());
49                         return MOD_RES_DENY;
50                 }
51
52                 // however, we must allow channel messages...
53                 return MOD_RES_PASSTHRU;
54         }
55
56         Version GetVersion() CXX11_OVERRIDE
57         {
58                 return Version("Forbids users from messaging each other. Users may still message opers and opers may message other opers.",VF_VENDOR);
59         }
60 };
61
62 MODULE_INIT(ModuleRestrictMsg)