]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_sethost.cpp
m_timedbans Notice user when trying to set a ban that's already set
[user/henk/code/inspircd.git] / src / modules / m_sethost.cpp
index 833f8e684d6ca523159ea6f1458d7c050836ca2b..2ef0c054865a6fcf9a19ee5b1631f6324e0c4938 100644 (file)
@@ -1 +1,107 @@
-/*       +------------------------------------+\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 support for the SETHOST command */\r\r/** Handle /SETHOST\r */\rclass cmd_sethost : public command_t\r{\r private:\r   char* hostmap;\r public:\r        cmd_sethost (InspIRCd* Instance, char* hmap) : command_t(Instance,"SETHOST",'o',1), hostmap(hmap)\r      {\r              this->source = "m_sethost.so";\r         syntax = "<new-hostname>";\r     }\r\r     CmdResult Handle (const char** parameters, int pcnt, userrec *user)\r    {\r              size_t len = 0;\r                for (const char* x = parameters[0]; *x; x++, len++)\r            {\r                      if (!hostmap[(unsigned char)*x])\r                       {\r                              user->WriteServ("NOTICE "+std::string(user->nick)+" :*** SETHOST: Invalid characters in hostname");\r                            return CMD_FAILURE;\r                    }\r              }\r              if (len == 0)\r          {\r                      user->WriteServ("NOTICE %s :*** SETHOST: Host must be specified", user->nick);\r                 return CMD_FAILURE;\r            }\r              if (len > 64)\r          {\r                      user->WriteServ("NOTICE %s :*** SETHOST: Host too long",user->nick);\r                   return CMD_FAILURE;\r            }\r              if (user->ChangeDisplayedHost(parameters[0]))\r          {\r                      ServerInstance->WriteOpers(std::string(user->nick)+" used SETHOST to change their displayed host to "+user->dhost);\r                    return CMD_SUCCESS;\r            }\r\r             return CMD_FAILURE;\r    }\r};\r\r\rclass ModuleSetHost : public Module\r{\r   cmd_sethost* mycommand;\r        char hostmap[256];\r public:\r    ModuleSetHost(InspIRCd* Me)\r            : Module(Me)\r   {       \r               OnRehash(NULL,"");\r             mycommand = new cmd_sethost(ServerInstance, hostmap);\r          ServerInstance->AddCommand(mycommand);\r }\r\r     void Implements(char* List)\r    {\r              List[I_OnRehash] = 1;\r  }\r\r     void OnRehash(userrec* user, const std::string &parameter)\r     {\r              ConfigReader Conf(ServerInstance);\r             std::string hmap = Conf.ReadValue("hostname", "charmap", 0);\r\r          if (hmap.empty())\r                      hmap = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz.-_/0123456789";\r\r          memset(&hostmap, 0, 255);\r              for (std::string::iterator n = hmap.begin(); n != hmap.end(); n++)\r                     hostmap[(unsigned char)*n] = 1;\r        }\r\r     virtual ~ModuleSetHost()\r       {\r      }\r      \r       virtual Version GetVersion()\r   {\r              return Version(1,1,0,1,VF_VENDOR,API_VERSION);\r }\r      \r};\r\rMODULE_INIT(ModuleSetHost)\r
\ No newline at end of file
+/*
+ * InspIRCd -- Internet Relay Chat Daemon
+ *
+ *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
+ *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
+ *   Copyright (C) 2004-2006 Craig Edwards <craigedwards@brainbox.cc>
+ *
+ * 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"
+
+/* $ModDesc: Provides support for the SETHOST command */
+
+/** Handle /SETHOST
+ */
+class CommandSethost : public Command
+{
+ private:
+       char* hostmap;
+ public:
+       CommandSethost(Module* Creator, char* hmap) : Command(Creator,"SETHOST", 1), hostmap(hmap)
+       {
+               allow_empty_last_param = false;
+               flags_needed = 'o'; syntax = "<new-hostname>";
+               TRANSLATE2(TR_TEXT, TR_END);
+       }
+
+       CmdResult Handle (const std::vector<std::string>& parameters, User *user)
+       {
+               size_t len = 0;
+               for (std::string::const_iterator x = parameters[0].begin(); x != parameters[0].end(); x++, len++)
+               {
+                       if (!hostmap[(const unsigned char)*x])
+                       {
+                               user->WriteServ("NOTICE "+user->nick+" :*** SETHOST: Invalid characters in hostname");
+                               return CMD_FAILURE;
+                       }
+               }
+
+               if (len > 64)
+               {
+                       user->WriteServ("NOTICE %s :*** SETHOST: Host too long",user->nick.c_str());
+                       return CMD_FAILURE;
+               }
+
+               if (user->ChangeDisplayedHost(parameters[0].c_str()))
+               {
+                       ServerInstance->SNO->WriteGlobalSno('a', user->nick+" used SETHOST to change their displayed host to "+user->dhost);
+                       return CMD_SUCCESS;
+               }
+
+               return CMD_FAILURE;
+       }
+};
+
+
+class ModuleSetHost : public Module
+{
+       CommandSethost cmd;
+       char hostmap[256];
+ public:
+       ModuleSetHost()
+               : cmd(this, hostmap)
+       {
+       }
+
+       void init()
+       {
+               OnRehash(NULL);
+               ServerInstance->Modules->AddService(cmd);
+               Implementation eventlist[] = { I_OnRehash };
+               ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
+       }
+
+       void OnRehash(User* user)
+       {
+               std::string hmap = ServerInstance->Config->ConfValue("hostname")->getString("charmap", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz.-_/0123456789");
+
+               memset(hostmap, 0, sizeof(hostmap));
+               for (std::string::iterator n = hmap.begin(); n != hmap.end(); n++)
+                       hostmap[(unsigned char)*n] = 1;
+       }
+
+       virtual ~ModuleSetHost()
+       {
+       }
+
+       virtual Version GetVersion()
+       {
+               return Version("Provides support for the SETHOST command", VF_VENDOR);
+       }
+
+};
+
+MODULE_INIT(ModuleSetHost)