]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_maphide.cpp
Fix the cloaking module on C++98 compilers.
[user/henk/code/inspircd.git] / src / modules / m_maphide.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2013, 2018 Sadie Powell <sadie@witchery.services>
5  *   Copyright (C) 2012-2013 Attila Molnar <attilamolnar@hush.com>
6  *   Copyright (C) 2012, 2019 Robby <robby@chatbelgie.be>
7  *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
8  *   Copyright (C) 2009 Uli Schlachter <psychon@inspircd.org>
9  *   Copyright (C) 2008 Craig Edwards <brain@inspircd.org>
10  *
11  * This file is part of InspIRCd.  InspIRCd is free software: you can
12  * redistribute it and/or modify it under the terms of the GNU General Public
13  * License as published by the Free Software Foundation, version 2.
14  *
15  * This program is distributed in the hope that it will be useful, but WITHOUT
16  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
18  * details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22  */
23
24
25 #include "inspircd.h"
26
27 class ModuleMapHide : public Module
28 {
29         std::string url;
30  public:
31         void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
32         {
33                 url = ServerInstance->Config->ConfValue("security")->getString("maphide");
34         }
35
36         ModResult OnPreCommand(std::string& command, CommandBase::Params& parameters, LocalUser* user, bool validated) CXX11_OVERRIDE
37         {
38                 if (validated && !user->IsOper() && !url.empty() && (command == "MAP" || command == "LINKS"))
39                 {
40                         user->WriteNotice("/" + command + " has been disabled; visit " + url);
41                         return MOD_RES_DENY;
42                 }
43                 else
44                         return MOD_RES_PASSTHRU;
45         }
46
47         Version GetVersion() CXX11_OVERRIDE
48         {
49                 return Version("Allows the server administrator to replace the output of a /MAP and /LINKS with an URL.", VF_VENDOR);
50         }
51 };
52
53 MODULE_INIT(ModuleMapHide)