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