]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_blockamsg.cpp
Sync helpop chmodes s and p with docs
[user/henk/code/inspircd.git] / src / modules / m_blockamsg.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2013, 2018 Sadie Powell <sadie@witchery.services>
5  *   Copyright (C) 2012-2016 Attila Molnar <attilamolnar@hush.com>
6  *   Copyright (C) 2012, 2019 Robby <robby@chatbelgie.be>
7  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
8  *   Copyright (C) 2007-2008 Dennis Friis <peavey@inspircd.org>
9  *   Copyright (C) 2006, 2010 Craig Edwards <brain@inspircd.org>
10  *   Copyright (C) 2006 Oliver Lupton <om@inspircd.org>
11  *
12  * This file is part of InspIRCd.  InspIRCd is free software: you can
13  * redistribute it and/or modify it under the terms of the GNU General Public
14  * License as published by the Free Software Foundation, version 2.
15  *
16  * This program is distributed in the hope that it will be useful, but WITHOUT
17  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
18  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
19  * details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
23  */
24
25
26 #include "inspircd.h"
27
28 enum BlockAction { IBLOCK_KILL, IBLOCK_KILLOPERS, IBLOCK_NOTICE, IBLOCK_NOTICEOPERS, IBLOCK_SILENT };
29 /*      IBLOCK_NOTICE           - Send a notice to the user informing them of what happened.
30  *      IBLOCK_NOTICEOPERS      - Send a notice to the user informing them and send an oper notice.
31  *      IBLOCK_SILENT           - Generate no output, silently drop messages.
32  *      IBLOCK_KILL                     - Kill the user with the reason "Global message (/amsg or /ame) detected".
33  *      IBLOCK_KILLOPERS        - As above, but send an oper notice as well. This is the default.
34  */
35
36 /** Holds a blocked message's details
37  */
38 class BlockedMessage
39 {
40  public:
41         std::string message;
42         std::string target;
43         time_t sent;
44
45         BlockedMessage(const std::string& msg, const std::string& tgt, time_t when)
46                 : message(msg), target(tgt), sent(when)
47         {
48         }
49 };
50
51 class ModuleBlockAmsg : public Module
52 {
53         unsigned int ForgetDelay;
54         BlockAction action;
55         SimpleExtItem<BlockedMessage> blockamsg;
56
57  public:
58         ModuleBlockAmsg()
59                 : blockamsg("blockamsg", ExtensionItem::EXT_USER, this)
60         {
61         }
62
63         Version GetVersion() CXX11_OVERRIDE
64         {
65                 return Version("Blocks mass messages sent using the /AME and /AMSG commands that exist in clients such as mIRC and HexChat.", VF_VENDOR);
66         }
67
68         void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
69         {
70                 ConfigTag* tag = ServerInstance->Config->ConfValue("blockamsg");
71                 ForgetDelay = tag->getDuration("delay", 3);
72                 std::string act = tag->getString("action");
73
74                 if (stdalgo::string::equalsci(act, "notice"))
75                         action = IBLOCK_NOTICE;
76                 else if (stdalgo::string::equalsci(act, "noticeopers"))
77                         action = IBLOCK_NOTICEOPERS;
78                 else if (stdalgo::string::equalsci(act, "silent"))
79                         action = IBLOCK_SILENT;
80                 else if (stdalgo::string::equalsci(act, "kill"))
81                         action = IBLOCK_KILL;
82                 else
83                         action = IBLOCK_KILLOPERS;
84         }
85
86         ModResult OnPreCommand(std::string& command, CommandBase::Params& parameters, LocalUser* user, bool validated) CXX11_OVERRIDE
87         {
88                 // Don't do anything with unregistered users
89                 if (user->registered != REG_ALL)
90                         return MOD_RES_PASSTHRU;
91
92                 if ((validated) && (parameters.size() >= 2) && ((command == "PRIVMSG") || (command == "NOTICE")))
93                 {
94                         // parameters[0] is the target list, count how many channels are there
95                         unsigned int targets = 0;
96                         // Is the first target a channel?
97                         if (*parameters[0].c_str() == '#')
98                                 targets = 1;
99
100                         for (const char* c = parameters[0].c_str(); *c; c++)
101                         {
102                                 if ((*c == ',') && (*(c+1) == '#'))
103                                         targets++;
104                         }
105
106                         /* targets should now contain the number of channel targets the msg/notice was pointed at.
107                          * If the msg/notice was a PM there should be no channel targets and 'targets' should = 0.
108                          * We don't want to block PMs so...
109                          */
110                         if (targets == 0)
111                                 return MOD_RES_PASSTHRU;
112
113                         // Check that this message wasn't already sent within a few seconds.
114                         BlockedMessage* m = blockamsg.get(user);
115
116                         // If the message is identical and within the time.
117                         // We check the target is *not* identical, that'd straying into the realms of flood control. Which isn't what we're doing...
118                         // OR
119                         // The number of target channels is equal to the number of channels the sender is on..a little suspicious.
120                         // Check it's more than 1 too, or else users on one channel would have fun.
121                         if ((m && (m->message == parameters[1]) && (!irc::equals(m->target, parameters[0])) && ForgetDelay && (m->sent >= ServerInstance->Time()-ForgetDelay)) || ((targets > 1) && (targets == user->chans.size())))
122                         {
123                                 // Block it...
124                                 if (action == IBLOCK_KILLOPERS || action == IBLOCK_NOTICEOPERS)
125                                         ServerInstance->SNO->WriteToSnoMask('a', "%s had an /amsg or /ame blocked", user->nick.c_str());
126
127                                 if (action == IBLOCK_KILL || action == IBLOCK_KILLOPERS)
128                                         ServerInstance->Users->QuitUser(user, "Attempted to global message (/amsg or /ame)");
129                                 else if (action == IBLOCK_NOTICE || action == IBLOCK_NOTICEOPERS)
130                                         user->WriteNotice("Global message (/amsg or /ame) blocked");
131
132                                 return MOD_RES_DENY;
133                         }
134
135                         if (m)
136                         {
137                                 // If there's already a BlockedMessage allocated, use it.
138                                 m->message = parameters[1];
139                                 m->target = parameters[0];
140                                 m->sent = ServerInstance->Time();
141                         }
142                         else
143                         {
144                                 m = new BlockedMessage(parameters[1], parameters[0], ServerInstance->Time());
145                                 blockamsg.set(user, m);
146                         }
147                 }
148                 return MOD_RES_PASSTHRU;
149         }
150 };
151
152 MODULE_INIT(ModuleBlockAmsg)