]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_restrictmsg.cpp
Replace copyright headers with headers granting specific authors copyright
[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
27 class ModuleRestrictMsg : public Module
28 {
29
30  public:
31
32         ModuleRestrictMsg()
33                         {
34
35                 Implementation eventlist[] = { I_OnUserPreMessage, I_OnUserPreNotice };
36                 ServerInstance->Modules->Attach(eventlist, this, 2);
37         }
38
39
40         virtual ModResult OnUserPreMessage(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
41         {
42                 if ((target_type == TYPE_USER) && (IS_LOCAL(user)))
43                 {
44                         User* u = (User*)dest;
45
46                         // message allowed if:
47                         // (1) the sender is opered
48                         // (2) the recipient is opered
49                         // anything else, blocked.
50                         if (IS_OPER(u) || IS_OPER(user))
51                         {
52                                 return MOD_RES_PASSTHRU;
53                         }
54                         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());
55                         return MOD_RES_DENY;
56                 }
57
58                 // however, we must allow channel messages...
59                 return MOD_RES_PASSTHRU;
60         }
61
62         virtual ModResult OnUserPreNotice(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
63         {
64                 return this->OnUserPreMessage(user,dest,target_type,text,status,exempt_list);
65         }
66
67         virtual ~ModuleRestrictMsg()
68         {
69         }
70
71         virtual Version GetVersion()
72         {
73                 return Version("Forbids users from messaging each other. Users may still message opers and opers may message other opers.",VF_VENDOR);
74         }
75 };
76
77 MODULE_INIT(ModuleRestrictMsg)