]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_vhost.cpp
OOPS! We try again, since I'm smoking craq. LF is 0x0a NOT CR.
[user/henk/code/inspircd.git] / src / modules / m_vhost.cpp
index 10fc76f050ed263dd1497222164faf14e57e8f2e..c77a3f85f56068937945ddd9adefbc43ac1feee5 100644 (file)
@@ -1 +1,95 @@
-/*       +------------------------------------+\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
+/*       +------------------------------------+
+ *       | Inspire Internet Relay Chat Daemon |
+ *       +------------------------------------+
+ *
+ *  InspIRCd: (C) 2002-2007 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"
+#include "users.h"
+#include "channels.h"
+#include "modules.h"
+
+/* $ModDesc: Provides masking of user hostnames via traditional /VHOST command */
+
+static ConfigReader* Conf;
+
+/** Handle /VHOST
+ */
+class cmd_vhost : public command_t
+{
+ public:
+       cmd_vhost (InspIRCd* Instance) : command_t(Instance,"VHOST", 0, 2)
+       {
+               this->source = "m_vhost.so";
+               syntax = "<username> <password>";
+       }
+
+       CmdResult Handle (const char** parameters, int pcnt, userrec *user)
+       {
+               for (int index = 0; index < Conf->Enumerate("vhost"); index++)
+               {
+                       std::string mask = Conf->ReadValue("vhost","host",index);
+                       std::string username = Conf->ReadValue("vhost","user",index);
+                       std::string pass = Conf->ReadValue("vhost","pass",index);
+                       if ((!strcmp(parameters[0],username.c_str())) && (!strcmp(parameters[1],pass.c_str())))
+                       {
+                               if (!mask.empty())
+                               {
+                                       user->WriteServ("NOTICE "+std::string(user->nick)+" :Setting your VHost: " + mask);
+                                       user->ChangeDisplayedHost(mask.c_str());
+                                       return CMD_FAILURE;
+                               }
+                       }
+               }
+               user->WriteServ("NOTICE "+std::string(user->nick)+" :Invalid username or password.");
+               return CMD_FAILURE;
+       }
+};
+
+class ModuleVHost : public Module
+{
+ private:
+
+       cmd_vhost* mycommand;
+        
+ public:
+       ModuleVHost(InspIRCd* Me) : Module(Me)
+       {
+               
+               Conf = new ConfigReader(ServerInstance);
+               mycommand = new cmd_vhost(ServerInstance);
+               ServerInstance->AddCommand(mycommand);
+       }
+       
+       virtual ~ModuleVHost()
+       {
+               DELETE(Conf);
+       }
+
+       void Implements(char* List)
+       {
+               List[I_OnRehash] = 1;
+       }
+
+       virtual void OnRehash(userrec* user, const std::string &parameter)
+       {
+               DELETE(Conf);
+               Conf = new ConfigReader(ServerInstance);
+       }
+       
+       virtual Version GetVersion()
+       {
+               return Version(1,1,0,1,VF_VENDOR,API_VERSION);
+       }
+       
+};
+
+MODULE_INIT(ModuleVHost)
+