]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_randquote.cpp
Fix IPv6 cloaking in compatability mode (was using the wrong xtab confusor)
[user/henk/code/inspircd.git] / src / modules / m_randquote.cpp
index 21cb2257dc8358ba0bfbe2b11dfeb383bd3e6703..7d4ad042f502dc5d47498c06887b6ebc12063f39 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
+ *  InspIRCd: (C) 2002-2010 InspIRCd Development Team
  * See: http://wiki.inspircd.org/Credits
  *
  * This program is free but copyrighted software; see
@@ -15,7 +15,6 @@
 
 static FileReader *quotes = NULL;
 
-std::string q_file;
 std::string prefix;
 std::string suffix;
 
@@ -26,9 +25,8 @@ std::string suffix;
 class CommandRandquote : public Command
 {
  public:
-       CommandRandquote (InspIRCd* Instance) : Command(Instance,"RANDQUOTE", 0, 0)
+       CommandRandquote(Module* Creator) : Command(Creator,"RANDQUOTE", 0)
        {
-               this->source = "m_randquote.so";
        }
 
        CmdResult Handle (const std::vector<std::string>& parameters, User *user)
@@ -36,19 +34,11 @@ class CommandRandquote : public Command
                std::string str;
                int fsize;
 
-               if (q_file.empty() || quotes->Exists())
-               {
-                       fsize = quotes->FileSize();
-                       str = quotes->GetLine(rand() % fsize);
-                       user->WriteServ("NOTICE %s :%s%s%s",user->nick.c_str(),prefix.c_str(),str.c_str(),suffix.c_str());
-               }
-               else
-               {
-                       user->WriteServ("NOTICE %s :Your administrator specified an invalid quotes file, please bug them about this.", user->nick.c_str());
-                       return CMD_FAILURE;
-               }
+               fsize = quotes->FileSize();
+               str = quotes->GetLine(ServerInstance->GenRandomInt(fsize));
+               user->WriteServ("NOTICE %s :%s%s%s",user->nick.c_str(),prefix.c_str(),str.c_str(),suffix.c_str());
 
-               return CMD_LOCALONLY;
+               return CMD_SUCCESS;
        }
 };
 
@@ -56,35 +46,26 @@ class ModuleRandQuote : public Module
 {
  private:
        CommandRandquote cmd;
-       ConfigReader *conf;
  public:
-       ModuleRandQuote(InspIRCd* Me)
-               : Module(Me), cmd(Me)
+       ModuleRandQuote()
+               : cmd(this)
        {
+       }
 
-               conf = new ConfigReader(ServerInstance);
-               // Sort the Randomizer thingie..
-               srand(ServerInstance->Time());
-
-               q_file = conf->ReadValue("randquote","file",0);
-               prefix = conf->ReadValue("randquote","prefix",0);
-               suffix = conf->ReadValue("randquote","suffix",0);
+       void init()
+       {
+               ConfigTag* conf = ServerInstance->Config->ConfValue("randquote");
 
-               if (q_file.empty())
-               {
-                       throw ModuleException("m_randquote: Quotefile not specified - Please check your config.");
-               }
+               std::string q_file = conf->getString("file","quotes");
+               prefix = conf->getString("prefix");
+               suffix = conf->getString("suffix");
 
-               quotes = new FileReader(ServerInstance, q_file);
-               if(!quotes->Exists())
+               quotes = new FileReader(q_file);
+               if (!quotes->Exists())
                {
                        throw ModuleException("m_randquote: QuoteFile not Found!! Please check your config - module will not function.");
                }
-               else
-               {
-                       /* Hidden Command -- Mode clients assume /quote sends raw data to an IRCd >:D */
-                       ServerInstance->AddCommand(&cmd);
-               }
+               ServerInstance->AddCommand(&cmd);
                Implementation eventlist[] = { I_OnUserConnect };
                ServerInstance->Modules->Attach(eventlist, this, 1);
        }
@@ -92,16 +73,15 @@ class ModuleRandQuote : public Module
 
        virtual ~ModuleRandQuote()
        {
-               delete conf;
                delete quotes;
        }
 
        virtual Version GetVersion()
        {
-               return Version("$Id$",VF_VENDOR,API_VERSION);
+               return Version("Provides random Quotes on Connect.",VF_VENDOR);
        }
 
-       virtual void OnUserConnect(User* user)
+       virtual void OnUserConnect(LocalUser* user)
        {
                cmd.Handle(std::vector<std::string>(), user);
        }