]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_securelist.cpp
'svn propset -R svn:eol-style CR *' Set to UNIX-style always. Binaries are auto skipp...
[user/henk/code/inspircd.git] / src / modules / m_securelist.cpp
1 /*       +------------------------------------+\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: A module overriding /list, and making it safe - stop those sendq problems. */\r\rclass ModuleSecureList : public Module\r{\r private:\r       std::vector<std::string> allowlist;\r    time_t WaitTime;\r public:\r      ModuleSecureList(InspIRCd* Me) : Module(Me)\r    {\r              OnRehash(NULL,"");\r     }\r \r    virtual ~ModuleSecureList()\r    {\r      }\r \r    virtual Version GetVersion()\r   {\r              return Version(1,1,0,0,VF_VENDOR,API_VERSION);\r }\r\r     void OnRehash(userrec* user, const std::string &parameter)\r     {\r              ConfigReader* MyConf = new ConfigReader(ServerInstance);\r               allowlist.clear();\r             for (int i = 0; i < MyConf->Enumerate("securehost"); i++)\r                      allowlist.push_back(MyConf->ReadValue("securehost", "exception", i));\r          WaitTime = MyConf->ReadInteger("securelist", "waittime", "60", 0, true);\r               DELETE(MyConf);\r        }\r \r    void Implements(char* List)\r    {\r              List[I_OnRehash] = List[I_OnPreCommand] = List[I_On005Numeric] = 1;\r    }\r\r     /*\r      * OnPreCommand()\r       *   Intercept the LIST command.\r        */ \r   virtual int OnPreCommand(const std::string &command, const char** parameters, int pcnt, userrec *user, bool validated, const std::string &original_line)\r       {\r              /* If the command doesnt appear to be valid, we dont want to mess with it. */\r          if (!validated)\r                        return 0;\r \r            if ((command == "LIST") && (ServerInstance->Time() < (user->signon+WaitTime)) && (!IS_OPER(user)))\r             {\r                      /* Normally wouldnt be allowed here, are they exempt? */\r                       for (std::vector<std::string>::iterator x = allowlist.begin(); x != allowlist.end(); x++)\r                              if (ServerInstance->MatchText(user->MakeHost(), *x))\r                                   return 0;\r\r                     /* Not exempt, BOOK EM DANNO! */\r                       user->WriteServ("NOTICE %s :*** You cannot list within the first %d seconds of connecting. Please try again later.",user->nick, WaitTime);\r                     /* Some crap clients (read: mIRC, various java chat applets) muck up if they don't\r                      * receive these numerics whenever they send LIST, so give them an empty LIST to mull over.\r                     */\r                    user->WriteServ("321 %s Channel :Users Name",user->nick);\r                      user->WriteServ("323 %s :End of channel list.",user->nick);\r                    return 1;\r              }\r              return 0;\r      }\r\r     virtual void On005Numeric(std::string &output)\r {\r              output.append(" SECURELIST");\r  }\r\r     virtual Priority Prioritize()\r  {\r              return (Priority)ServerInstance->PriorityBefore("m_safelist.so");\r      }\r\r};\r \rMODULE_INIT(ModuleSecureList)\r