]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_deaf.cpp
m_spanningtree Remove SpanningTreeUtilities* fields and parameters
[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 init() CXX11_OVERRIDE
57         {
58                 ServerInstance->Modules->AddService(m1);
59
60                 OnRehash(NULL);
61         }
62
63         void OnRehash(User* user) CXX11_OVERRIDE
64         {
65                 ConfigTag* tag = ServerInstance->Config->ConfValue("deaf");
66                 deaf_bypasschars = tag->getString("bypasschars");
67                 deaf_bypasschars_uline = tag->getString("bypasscharsuline");
68         }
69
70         ModResult OnUserPreMessage(User* user, void* dest, int target_type, std::string& text, char status, CUList& exempt_list, MessageType msgtype) CXX11_OVERRIDE
71         {
72                 if (target_type == TYPE_CHANNEL)
73                 {
74                         Channel* chan = (Channel*)dest;
75                         if (chan)
76                                 this->BuildDeafList(msgtype, chan, user, status, text, exempt_list);
77                 }
78
79                 return MOD_RES_PASSTHRU;
80         }
81
82         void BuildDeafList(MessageType message_type, Channel* chan, User* sender, char status, const std::string &text, CUList &exempt_list)
83         {
84                 const UserMembList *ulist = chan->GetUsers();
85                 bool is_a_uline;
86                 bool is_bypasschar, is_bypasschar_avail;
87                 bool is_bypasschar_uline, is_bypasschar_uline_avail;
88
89                 is_bypasschar = is_bypasschar_avail = is_bypasschar_uline = is_bypasschar_uline_avail = 0;
90                 if (!deaf_bypasschars.empty())
91                 {
92                         is_bypasschar_avail = 1;
93                         if (deaf_bypasschars.find(text[0], 0) != std::string::npos)
94                                 is_bypasschar = 1;
95                 }
96                 if (!deaf_bypasschars_uline.empty())
97                 {
98                         is_bypasschar_uline_avail = 1;
99                         if (deaf_bypasschars_uline.find(text[0], 0) != std::string::npos)
100                                 is_bypasschar_uline = 1;
101                 }
102
103                 /*
104                  * If we have no bypasschars_uline in config, and this is a bypasschar (regular)
105                  * Than it is obviously going to get through +d, no build required
106                  */
107                 if (!is_bypasschar_uline_avail && is_bypasschar)
108                         return;
109
110                 for (UserMembCIter i = ulist->begin(); i != ulist->end(); i++)
111                 {
112                         /* not +d ? */
113                         if (!i->first->IsModeSet(m1))
114                                 continue; /* deliver message */
115                         /* matched both U-line only and regular bypasses */
116                         if (is_bypasschar && is_bypasschar_uline)
117                                 continue; /* deliver message */
118
119                         is_a_uline = ServerInstance->ULine(i->first->server);
120                         /* matched a U-line only bypass */
121                         if (is_bypasschar_uline && is_a_uline)
122                                 continue; /* deliver message */
123                         /* matched a regular bypass */
124                         if (is_bypasschar && !is_a_uline)
125                                 continue; /* deliver message */
126
127                         if (status && !strchr(chan->GetAllPrefixChars(i->first), status))
128                                 continue;
129
130                         /* don't deliver message! */
131                         exempt_list.insert(i->first);
132                 }
133         }
134
135         Version GetVersion() CXX11_OVERRIDE
136         {
137                 return Version("Provides usermode +d to block channel messages and channel notices", VF_VENDOR);
138         }
139 };
140
141 MODULE_INIT(ModuleDeaf)