From 0c4ef6e9055e245eff2fad33f5e509d4113ee4e8 Mon Sep 17 00:00:00 2001 From: brain Date: Sun, 8 Jun 2008 16:44:14 +0000 Subject: Add module that allows hiding of MAP and LINKS as per ircu, e.g. ":server.name NOTICE nick :The /MAP command has been disabled, visit: url" URL is configurable in the config file, blocks LINKS and MAP for non-opers. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9870 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_maphide.cpp | 59 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 src/modules/m_maphide.cpp (limited to 'src') diff --git a/src/modules/m_maphide.cpp b/src/modules/m_maphide.cpp new file mode 100644 index 000000000..9022bd758 --- /dev/null +++ b/src/modules/m_maphide.cpp @@ -0,0 +1,59 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * InspIRCd: (C) 2002-2008 InspIRCd Development Team + * See: http://www.inspircd.org/wiki/index.php/Credits + * + * This program is free but copyrighted software; see + * the file COPYING for details. + * + * --------------------------------------------------- + */ + +#include "inspircd.h" + +/* $ModDesc: Hide /MAP and /LINKS in the same form as ircu (mostly useless) */ + +class ModuleMapHide : public Module +{ + std::string url; + public: + ModuleMapHide(InspIRCd* Me) + : Module(Me) + { + // Create a new command + ServerInstance->Modules->Attach(I_OnPreCommand, this); + ServerInstance->Modules->Attach(I_OnRehash, this); + OnRehash(NULL, ""); + } + + void OnRehash(User* user, const std::string ¶meter) + { + ConfigReader MyConf(ServerInstance); + url = MyConf.ReadValue("security", "maphide", 0); + } + + int OnPreCommand(std::string &command, std::vector ¶meters, User *user, bool validated, const std::string &original_line) + { + if (!IS_OPER(user) && !url.empty() && (command == "MAP" || command == "LINKS")) + { + user->WriteServ("NOTICE %s :/%s has been disabled; visit %s", user->nick.c_str(), command.c_str(), url.c_str()); + return 1; + } + else + return 0; + } + + virtual ~ModuleMapHide() + { + } + + virtual Version GetVersion() + { + return Version(1, 2, 0, 0, VF_VENDOR, API_VERSION); + } +}; + +MODULE_INIT(ModuleMapHide) + -- cgit v1.2.3