]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_vhost.cpp
Add the override keyword in places that it is missing.
[user/henk/code/inspircd.git] / src / modules / m_vhost.cpp
index 10fc76f050ed263dd1497222164faf14e57e8f2e..bc10fb819b6de97113e01d8c1b51e583d21c1f42 100644 (file)
@@ -1 +1,77 @@
-/*       +------------------------------------+\r *       | Inspire Internet Relay Chat Daemon |\r *       +------------------------------------+\r *\r *  InspIRCd: (C) 2002-2007 InspIRCd Development Team\r * See: http://www.inspircd.org/wiki/index.php/Credits\r *\r * This program is free but copyrighted software; see\r *            the file COPYING for details.\r *\r * ---------------------------------------------------\r */\r\r#include "inspircd.h"\r#include "users.h"\r#include "channels.h"\r#include "modules.h"\r\r/* $ModDesc: Provides masking of user hostnames via traditional /VHOST command */\r\rstatic ConfigReader* Conf;\r\r/** Handle /VHOST\r */\rclass cmd_vhost : public command_t\r{\r public:\r   cmd_vhost (InspIRCd* Instance) : command_t(Instance,"VHOST", 0, 2)\r     {\r              this->source = "m_vhost.so";\r           syntax = "<username> <password>";\r      }\r\r     CmdResult Handle (const char** parameters, int pcnt, userrec *user)\r    {\r              for (int index = 0; index < Conf->Enumerate("vhost"); index++)\r         {\r                      std::string mask = Conf->ReadValue("vhost","host",index);\r                      std::string username = Conf->ReadValue("vhost","user",index);\r                  std::string pass = Conf->ReadValue("vhost","pass",index);\r                      if ((!strcmp(parameters[0],username.c_str())) && (!strcmp(parameters[1],pass.c_str())))\r                        {\r                              if (!mask.empty())\r                             {\r                                      user->WriteServ("NOTICE "+std::string(user->nick)+" :Setting your VHost: " + mask);\r                                    user->ChangeDisplayedHost(mask.c_str());\r                                       return CMD_FAILURE;\r                            }\r                      }\r              }\r              user->WriteServ("NOTICE "+std::string(user->nick)+" :Invalid username or password.");\r          return CMD_FAILURE;\r    }\r};\r\rclass ModuleVHost : public Module\r{\r private:\r\r   cmd_vhost* mycommand;\r   \r public:\r     ModuleVHost(InspIRCd* Me) : Module(Me)\r {\r              \r               Conf = new ConfigReader(ServerInstance);\r               mycommand = new cmd_vhost(ServerInstance);\r             ServerInstance->AddCommand(mycommand);\r }\r      \r       virtual ~ModuleVHost()\r {\r              DELETE(Conf);\r  }\r\r     void Implements(char* List)\r    {\r              List[I_OnRehash] = 1;\r  }\r\r     virtual void OnRehash(userrec* user, const std::string &parameter)\r     {\r              DELETE(Conf);\r          Conf = new ConfigReader(ServerInstance);\r       }\r      \r       virtual Version GetVersion()\r   {\r              return Version(1,1,0,1,VF_VENDOR,API_VERSION);\r }\r      \r};\r\rMODULE_INIT(ModuleVHost)\r\r
\ No newline at end of file
+/*
+ * InspIRCd -- Internet Relay Chat Daemon
+ *
+ *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
+ *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
+ *   Copyright (C) 2006-2007 Craig Edwards <craigedwards@brainbox.cc>
+ *   Copyright (C) 2006 Robin Burchell <robin+git@viroteck.net>
+ *
+ * This file is part of InspIRCd.  InspIRCd is free software: you can
+ * redistribute it and/or modify it under the terms of the GNU General Public
+ * License as published by the Free Software Foundation, version 2.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
+ * details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+
+#include "inspircd.h"
+
+/** Handle /VHOST
+ */
+class CommandVhost : public Command
+{
+ public:
+       CommandVhost(Module* Creator) : Command(Creator,"VHOST", 2)
+       {
+               syntax = "<username> <password>";
+       }
+
+       CmdResult Handle(const std::vector<std::string>& parameters, User* user) CXX11_OVERRIDE
+       {
+               ConfigTagList tags = ServerInstance->Config->ConfTags("vhost");
+               for(ConfigIter i = tags.first; i != tags.second; ++i)
+               {
+                       ConfigTag* tag = i->second;
+                       std::string mask = tag->getString("host");
+                       std::string username = tag->getString("user");
+                       std::string pass = tag->getString("pass");
+                       std::string hash = tag->getString("hash");
+
+                       if (parameters[0] == username && ServerInstance->PassCompare(user, pass, parameters[1], hash))
+                       {
+                               if (!mask.empty())
+                               {
+                                       user->WriteNotice("Setting your VHost: " + mask);
+                                       user->ChangeDisplayedHost(mask);
+                                       return CMD_SUCCESS;
+                               }
+                       }
+               }
+
+               user->WriteNotice("Invalid username or password.");
+               return CMD_FAILURE;
+       }
+};
+
+class ModuleVHost : public Module
+{
+       CommandVhost cmd;
+
+ public:
+       ModuleVHost() : cmd(this)
+       {
+       }
+
+       Version GetVersion() CXX11_OVERRIDE
+       {
+               return Version("Provides masking of user hostnames via traditional /VHOST command",VF_VENDOR);
+       }
+};
+
+MODULE_INIT(ModuleVHost)