]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_conn_waitpong.cpp
m_timedbans Notice user when trying to set a ban that's already set
[user/henk/code/inspircd.git] / src / modules / m_conn_waitpong.cpp
index b77116410ffcd8bc6198a8d302532ff67c586ddb..1d48220a6b096330cbafecd9e077216149042f35 100644 (file)
@@ -1,16 +1,27 @@
-/*       +------------------------------------+
- *       | Inspire Internet Relay Chat Daemon |
- *       +------------------------------------+
+/*
+ * InspIRCd -- Internet Relay Chat Daemon
  *
- *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
- * See: http://wiki.inspircd.org/Credits
+ *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
+ *   Copyright (C) 2008 Pippijn van Steenhoven <pip88nl@gmail.com>
+ *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
+ *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
+ *   Copyright (C) 2006-2007 Oliver Lupton <oliverlupton@gmail.com>
+ *   Copyright (C) 2006 Craig Edwards <craigedwards@brainbox.cc>
  *
- * This program is free but copyrighted software; see
- *            the file COPYING for details.
+ * 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: Forces connecting clients to send a PONG message back to the server before they can complete their connection */
@@ -22,42 +33,29 @@ class ModuleWaitPong : public Module
        LocalStringExt ext;
 
  public:
-       ModuleWaitPong(InspIRCd* Me)
-        : Module(Me), ext("waitpong_pingstr", this)
+       ModuleWaitPong()
+        : ext("waitpong_pingstr", this)
        {
-               OnRehash(NULL);
-               Implementation eventlist[] = { I_OnUserRegister, I_OnCheckReady, I_OnPreCommand, I_OnRehash };
-               ServerInstance->Modules->Attach(eventlist, this, 4);
        }
 
-       void OnRehash(User* user)
+       void init()
        {
-               ConfigReader Conf(ServerInstance);
-
-               sendsnotice = Conf.ReadFlag("waitpong", "sendsnotice", 0);
-
-               if(Conf.GetError() == CONF_VALUE_NOT_FOUND)
-                       sendsnotice = true;
-
-               killonbadreply = Conf.ReadFlag("waitpong", "killonbadreply", 0);
-
-               if(Conf.GetError() == CONF_VALUE_NOT_FOUND)
-                       killonbadreply = true;
+               ServerInstance->Modules->AddService(ext);
+               OnRehash(NULL);
+               Implementation eventlist[] = { I_OnUserRegister, I_OnCheckReady, I_OnPreCommand, I_OnRehash };
+               ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
        }
 
-       std::string RandString()
+       void OnRehash(User* user)
        {
-               char out[11];
-               for(unsigned int i = 0; i < 10; i++)
-                       out[i] = ((rand() % 26) + 65);
-               out[10] = '\0';
-
-               return out;
+               ConfigTag* tag = ServerInstance->Config->ConfValue("waitpong");
+               sendsnotice = tag->getBool("sendsnotice", true);
+               killonbadreply = tag->getBool("killonbadreply", true);
        }
 
-       ModResult OnUserRegister(User* user)
+       ModResult OnUserRegister(LocalUser* user)
        {
-               std::string pingrpl = RandString();
+               std::string pingrpl = ServerInstance->GenRandomStr(10);
 
                user->Write("PING :%s", pingrpl.c_str());
 
@@ -68,7 +66,7 @@ class ModuleWaitPong : public Module
                return MOD_RES_PASSTHRU;
        }
 
-       ModResult OnPreCommand(std::string &command, std::vector<std::string> &parameters, User* user, bool validated, const std::string &original_line)
+       ModResult OnPreCommand(std::string &command, std::vector<std::string> &parameters, LocalUser* user, bool validated, const std::string &original_line)
        {
                if (command == "PONG")
                {
@@ -92,7 +90,7 @@ class ModuleWaitPong : public Module
                return MOD_RES_PASSTHRU;
        }
 
-       ModResult OnCheckReady(User* user)
+       ModResult OnCheckReady(LocalUser* user)
        {
                return ext.get(user) ? MOD_RES_DENY : MOD_RES_PASSTHRU;
        }