]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_commonchans.cpp
Merge insp20
[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()
41         {
42                 ServerInstance->Modules->AddService(pm);
43                 Implementation eventlist[] = { I_OnUserPreMessage, I_OnUserPreNotice };
44                 ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
45         }
46
47         virtual Version GetVersion()
48         {
49                 return Version("Adds user mode +c, which if set, users must be on a common channel with you to private message you", VF_VENDOR);
50         }
51
52         virtual ModResult OnUserPreMessage(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
53         {
54                 if (target_type == TYPE_USER)
55                 {
56                         User* t = (User*)dest;
57                         if (!user->IsOper() && (t->IsModeSet('c')) && (!ServerInstance->ULine(user->server)) && !user->SharesChannelWith(t))
58                         {
59                                 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());
60                                 return MOD_RES_DENY;
61                         }
62                 }
63                 return MOD_RES_PASSTHRU;
64         }
65
66         virtual ModResult OnUserPreNotice(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
67         {
68                 return OnUserPreMessage(user, dest, target_type, text, status, exempt_list);
69         }
70 };
71
72 MODULE_INIT(ModulePrivacyMode)