]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_commonchans.cpp
Get rid of the OnRemoteKill hook, make use of GetRouting() and TR_CUSTOM to route...
[user/henk/code/inspircd.git] / src / modules / m_commonchans.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2007 Craig Edwards <craigedwards@brainbox.cc>
5  *
6  * This file is part of InspIRCd.  InspIRCd is free software: you can
7  * redistribute it and/or modify it under the terms of the GNU General Public
8  * License as published by the Free Software Foundation, version 2.
9  *
10  * This program is distributed in the hope that it will be useful, but WITHOUT
11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
13  * details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19
20 #include "inspircd.h"
21
22 /* $ModDesc: Adds user mode +c, which if set, users must be on a common channel with you to private message you */
23
24 /** Handles user mode +c
25  */
26 class PrivacyMode : public SimpleUserModeHandler
27 {
28  public:
29         PrivacyMode(Module* Creator) : SimpleUserModeHandler(Creator, "deaf_commonchan", 'c') { }
30 };
31
32 class ModulePrivacyMode : public Module
33 {
34         PrivacyMode pm;
35  public:
36         ModulePrivacyMode() : pm(this)
37         {
38         }
39
40         void init() CXX11_OVERRIDE
41         {
42                 ServerInstance->Modules->AddService(pm);
43                 ServerInstance->Modules->Attach(I_OnUserPreMessage, this);
44         }
45
46         Version GetVersion() CXX11_OVERRIDE
47         {
48                 return Version("Adds user mode +c, which if set, users must be on a common channel with you to private message you", VF_VENDOR);
49         }
50
51         ModResult OnUserPreMessage(User* user, void* dest, int target_type, std::string& text, char status, CUList& exempt_list, MessageType msgtype) CXX11_OVERRIDE
52         {
53                 if (target_type == TYPE_USER)
54                 {
55                         User* t = (User*)dest;
56                         if (!user->IsOper() && (t->IsModeSet('c')) && (!ServerInstance->ULine(user->server)) && !user->SharesChannelWith(t))
57                         {
58                                 user->WriteNumeric(ERR_CANTSENDTOUSER, "%s %s :You are not permitted to send private messages to this user (+c set)", user->nick.c_str(), t->nick.c_str());
59                                 return MOD_RES_DENY;
60                         }
61                 }
62                 return MOD_RES_PASSTHRU;
63         }
64 };
65
66 MODULE_INIT(ModulePrivacyMode)