]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_securelist.cpp
b8ed384f3f72f2abaa2bbf1a95230399950fcb49
[user/henk/code/inspircd.git] / src / modules / m_securelist.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2018 linuxdaemon <linuxdaemon.irc@gmail.com>
5  *   Copyright (C) 2013, 2018 Sadie Powell <sadie@witchery.services>
6  *   Copyright (C) 2012-2013, 2016 Attila Molnar <attilamolnar@hush.com>
7  *   Copyright (C) 2012, 2019 Robby <robby@chatbelgie.be>
8  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
9  *   Copyright (C) 2007-2008, 2010 Craig Edwards <brain@inspircd.org>
10  *   Copyright (C) 2007-2008 Robin Burchell <robin+git@viroteck.net>
11  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
12  *
13  * This file is part of InspIRCd.  InspIRCd is free software: you can
14  * redistribute it and/or modify it under the terms of the GNU General Public
15  * License as published by the Free Software Foundation, version 2.
16  *
17  * This program is distributed in the hope that it will be useful, but WITHOUT
18  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
19  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
20  * details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
24  */
25
26
27 #include "inspircd.h"
28 #include "modules/account.h"
29
30 typedef std::vector<std::string> AllowList;
31
32 class ModuleSecureList : public Module
33 {
34  private:
35         AllowList allowlist;
36         bool exemptregistered;
37         unsigned int WaitTime;
38
39  public:
40         Version GetVersion() CXX11_OVERRIDE
41         {
42                 return Version("Prevents users from using the /LIST command until a predefined period has passed.", VF_VENDOR);
43         }
44
45         void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
46         {
47                 AllowList newallows;
48
49                 ConfigTagList tags = ServerInstance->Config->ConfTags("securehost");
50                 for (ConfigIter i = tags.first; i != tags.second; ++i)
51                 {
52                         std::string host = i->second->getString("exception");
53                         if (host.empty())
54                                 throw ModuleException("<securehost:exception> is a required field at " + i->second->getTagLocation());
55                         newallows.push_back(host);
56                 }
57
58                 ConfigTag* tag = ServerInstance->Config->ConfValue("securelist");
59                 exemptregistered = tag->getBool("exemptregistered");
60                 WaitTime = tag->getDuration("waittime", 60, 1);
61                 allowlist.swap(newallows);
62         }
63
64         ModResult OnPreCommand(std::string& command, CommandBase::Params& parameters, LocalUser* user, bool validated) CXX11_OVERRIDE
65         {
66                 /* If the command doesnt appear to be valid, we dont want to mess with it. */
67                 if (!validated)
68                         return MOD_RES_PASSTHRU;
69
70                 time_t waitallowed = user->signon + WaitTime;
71                 if ((command == "LIST") && (ServerInstance->Time() < waitallowed) && (!user->IsOper()))
72                 {
73                         /* Normally wouldnt be allowed here, are they exempt? */
74                         for (std::vector<std::string>::iterator x = allowlist.begin(); x != allowlist.end(); x++)
75                                 if (InspIRCd::Match(user->MakeHost(), *x, ascii_case_insensitive_map))
76                                         return MOD_RES_PASSTHRU;
77
78                         const AccountExtItem* ext = GetAccountExtItem();
79                         if (exemptregistered && ext && ext->get(user))
80                                 return MOD_RES_PASSTHRU;
81
82                         user->WriteNotice(InspIRCd::Format("*** You cannot view the channel list right now. Please %stry again in %s.",
83                                 (exemptregistered ? "login to an account or " : ""),
84                                 InspIRCd::DurationString(waitallowed - ServerInstance->Time()).c_str()));
85
86                         // The client might be waiting on a response to do something so send them an
87                         // empty list response to satisfy that.
88                         user->WriteNumeric(RPL_LISTSTART, "Channel", "Users Name");
89                         user->WriteNumeric(RPL_LISTEND, "End of channel list.");
90                         return MOD_RES_DENY;
91                 }
92                 return MOD_RES_PASSTHRU;
93         }
94
95         void On005Numeric(std::map<std::string, std::string>& tokens) CXX11_OVERRIDE
96         {
97                 tokens["SECURELIST"];
98         }
99 };
100
101 MODULE_INIT(ModuleSecureList)