]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_deaf.cpp
Merge insp20
[user/henk/code/inspircd.git] / src / modules / m_deaf.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2006, 2008 Craig Edwards <craigedwards@brainbox.cc>
5  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
6  *   Copyright (C) 2006-2007 Dennis Friis <peavey@inspircd.org>
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 /** User mode +d - filter out channel messages and channel notices
25  */
26 class User_d : public ModeHandler
27 {
28  public:
29         User_d(Module* Creator) : ModeHandler(Creator, "deaf", 'd', PARAM_NONE, MODETYPE_USER) { }
30
31         ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding)
32         {
33                 if (adding == dest->IsModeSet(this))
34                         return MODEACTION_DENY;
35
36                 if (adding)
37                         dest->WriteNotice("*** You have enabled usermode +d, deaf mode. This mode means you WILL NOT receive any messages from any channels you are in. If you did NOT mean to do this, use /mode " + dest->nick + " -d.");
38
39                 dest->SetMode(this, adding);
40                 return MODEACTION_ALLOW;
41         }
42 };
43
44 class ModuleDeaf : public Module
45 {
46         User_d m1;
47         std::string deaf_bypasschars;
48         std::string deaf_bypasschars_uline;
49
50  public:
51         ModuleDeaf()
52                 : m1(this)
53         {
54         }
55
56         void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
57         {
58                 ConfigTag* tag = ServerInstance->Config->ConfValue("deaf");
59                 deaf_bypasschars = tag->getString("bypasschars");
60                 deaf_bypasschars_uline = tag->getString("bypasscharsuline");
61         }
62
63         ModResult OnUserPreMessage(User* user, void* dest, int target_type, std::string& text, char status, CUList& exempt_list, MessageType msgtype) CXX11_OVERRIDE
64         {
65                 if (target_type != TYPE_CHANNEL)
66                         return MOD_RES_PASSTHRU;
67
68                 Channel* chan = static_cast<Channel*>(dest);
69                 bool is_bypasschar = (deaf_bypasschars.find(text[0]) != std::string::npos);
70                 bool is_bypasschar_uline = (deaf_bypasschars_uline.find(text[0]) != std::string::npos);
71
72                 /*
73                  * If we have no bypasschars_uline in config, and this is a bypasschar (regular)
74                  * Than it is obviously going to get through +d, no build required
75                  */
76                 if (!deaf_bypasschars_uline.empty() && is_bypasschar)
77                         return MOD_RES_PASSTHRU;
78
79                 const Channel::MemberMap& ulist = chan->GetUsers();
80                 for (Channel::MemberMap::const_iterator i = ulist.begin(); i != ulist.end(); ++i)
81                 {
82                         /* not +d ? */
83                         if (!i->first->IsModeSet(m1))
84                                 continue; /* deliver message */
85                         /* matched both U-line only and regular bypasses */
86                         if (is_bypasschar && is_bypasschar_uline)
87                                 continue; /* deliver message */
88
89                         bool is_a_uline = i->first->server->IsULine();
90                         /* matched a U-line only bypass */
91                         if (is_bypasschar_uline && is_a_uline)
92                                 continue; /* deliver message */
93                         /* matched a regular bypass */
94                         if (is_bypasschar && !is_a_uline)
95                                 continue; /* deliver message */
96
97                         if (status && !strchr(i->second->GetAllPrefixChars(), status))
98                                 continue;
99
100                         /* don't deliver message! */
101                         exempt_list.insert(i->first);
102                 }
103
104                 return MOD_RES_PASSTHRU;
105         }
106
107         Version GetVersion() CXX11_OVERRIDE
108         {
109                 return Version("Provides usermode +d to block channel messages and channel notices", VF_VENDOR);
110         }
111 };
112
113 MODULE_INIT(ModuleDeaf)