]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_nonotice.cpp
Update copyright headers.
[user/henk/code/inspircd.git] / src / modules / m_nonotice.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2019 Matt Schatz <genius3000@g3k.solutions>
5  *   Copyright (C) 2013, 2017, 2020 Sadie Powell <sadie@witchery.services>
6  *   Copyright (C) 2012 Shawn Smith <ShawnSmith0828@gmail.com>
7  *   Copyright (C) 2012 Robby <robby@chatbelgie.be>
8  *   Copyright (C) 2012 Attila Molnar <attilamolnar@hush.com>
9  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
10  *   Copyright (C) 2008 Robin Burchell <robin+git@viroteck.net>
11  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
12  *   Copyright (C) 2004, 2006, 2010 Craig Edwards <brain@inspircd.org>
13  *
14  * This file is part of InspIRCd.  InspIRCd is free software: you can
15  * redistribute it and/or modify it under the terms of the GNU General Public
16  * License as published by the Free Software Foundation, version 2.
17  *
18  * This program is distributed in the hope that it will be useful, but WITHOUT
19  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
20  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
21  * details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
25  */
26
27
28 #include "inspircd.h"
29 #include "modules/exemption.h"
30
31 class ModuleNoNotice : public Module
32 {
33         CheckExemption::EventProvider exemptionprov;
34         SimpleChannelModeHandler nt;
35  public:
36
37         ModuleNoNotice()
38                 : exemptionprov(this)
39                 , nt(this, "nonotice", 'T')
40         {
41         }
42
43         void On005Numeric(std::map<std::string, std::string>& tokens) CXX11_OVERRIDE
44         {
45                 tokens["EXTBAN"].push_back('T');
46         }
47
48         ModResult OnUserPreMessage(User* user, const MessageTarget& target, MessageDetails& details) CXX11_OVERRIDE
49         {
50                 if ((details.type == MSG_NOTICE) && (target.type == MessageTarget::TYPE_CHANNEL) && (IS_LOCAL(user)))
51                 {
52                         Channel* c = target.Get<Channel>();
53
54                         ModResult res = CheckExemption::Call(exemptionprov, user, c, "nonotice");
55                         if (res == MOD_RES_ALLOW)
56                                 return MOD_RES_PASSTHRU;
57
58                         if (c->IsModeSet(nt))
59                         {
60                                 user->WriteNumeric(Numerics::CannotSendTo(c, "notices", &nt));
61                                 return MOD_RES_DENY;
62                         }
63
64                         if (c->GetExtBanStatus(user, 'T') == MOD_RES_DENY)
65                         {
66                                 user->WriteNumeric(Numerics::CannotSendTo(c, "notices", 'T', "nonotice"));
67                                 return MOD_RES_DENY;
68                         }
69                 }
70                 return MOD_RES_PASSTHRU;
71         }
72
73         Version GetVersion() CXX11_OVERRIDE
74         {
75                 return Version("Adds channel mode T (nonotice) which allows channels to block messages sent with the /NOTICE command.", VF_VENDOR);
76         }
77 };
78
79 MODULE_INIT(ModuleNoNotice)