X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_randquote.cpp;h=d8a2b843145e1a94d267a6522d0845a7ae553963;hb=551d687ec6d7ce44be35fae0dd7345fe73c4f63a;hp=d14445d513b815079a3e4b808111a94de3e8bdff;hpb=740b09e2aee345c6fde199986d8eab6e0db224e3;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_randquote.cpp b/src/modules/m_randquote.cpp index d14445d51..d8a2b8431 100644 --- a/src/modules/m_randquote.cpp +++ b/src/modules/m_randquote.cpp @@ -1,116 +1,98 @@ -/* +------------------------------------+ - * | Inspire Internet Relay Chat Daemon | - * +------------------------------------+ +/* + * InspIRCd -- Internet Relay Chat Daemon * - * Inspire is copyright (C) 2002-2004 ChatSpike-Dev. - * E-mail: - * - * - * - * Written by Craig Edwards, Craig McLure, and others. - * This program is free but copyrighted software; see - * the file COPYING for details. + * Copyright (C) 2010 Daniel De Graaf + * Copyright (C) 2007-2008 Robin Burchell + * Copyright (C) 2007 Dennis Friis + * Copyright (C) 2003, 2006 Craig Edwards + * Copyright (C) 2005 Craig McLure * - * --------------------------------------------------- + * 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 . */ -#include -#include -#include -#include "users.h" -#include "channels.h" -#include "modules.h" +/* $ModDesc: Provides random quotes on connect. */ -/* $ModDesc: Provides random Quotes on Connect. */ +#include "inspircd.h" -class ModuleRandQuote : public Module -{ - private: +static FileReader *quotes = NULL; - Server *Srv; - ConfigReader *conf; - FileReader *quotes; +std::string prefix; +std::string suffix; - std::string q_file; - std::string prefix; - std::string suffix; - +/** Handle /RANDQUOTE + */ +class CommandRandquote : public Command +{ public: - ModuleRandQuote() + CommandRandquote(Module* Creator) : Command(Creator,"RANDQUOTE", 0) { - Srv = new Server; - conf = new ConfigReader; + } + CmdResult Handle (const std::vector& parameters, User *user) + { + std::string str; + int fsize; - q_file = conf->ReadValue("randquote","file",0); - prefix = conf->ReadValue("randquote","prefix",0); - suffix = conf->ReadValue("randquote","suffix",0); + 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_SUCCESS; + } +}; + +class ModuleRandQuote : public Module +{ + CommandRandquote cmd; + public: + ModuleRandQuote() + : cmd(this) + { + } - if (q_file == "") { - printf("m_randquote: Quotefile not specified.. Please check your config.\n\n"); - exit(0); - } + void init() + { + ConfigTag* conf = ServerInstance->Config->ConfValue("randquote"); + std::string q_file = conf->getString("file","quotes"); + prefix = conf->getString("prefix"); + suffix = conf->getString("suffix"); quotes = new FileReader(q_file); - if(!quotes->Exists()) + if (!quotes->Exists()) { - printf("m_randquote: QuoteFile not Found!! Please check your config.\n\n"); - exit(0); + throw ModuleException("m_randquote: QuoteFile not Found!! Please check your config - module will not function."); } + ServerInstance->Modules->AddService(cmd); + Implementation eventlist[] = { I_OnUserConnect }; + ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation)); } - + virtual ~ModuleRandQuote() { - delete Srv; - delete conf; delete quotes; } - + virtual Version GetVersion() { - return Version(1,0,0,0); + return Version("Provides random quotes on connect.",VF_VENDOR); } - - virtual void OnUserConnect(userrec* user) - { - std::string str; - int fsize; - char buf[MAXBUF]; - - fsize = quotes->FileSize(); - srand(time(NULL)); - str = quotes->GetLine(rand() % fsize); - - sprintf(buf,"NOTICE %s :%s%s%s",user->nick,prefix.c_str(),str.c_str(),suffix.c_str()); - Srv->SendServ(user->fd, buf); - return; - } -}; - -class ModuleRandQuoteFactory : public ModuleFactory -{ - public: - ModuleRandQuoteFactory() - { - } - - ~ModuleRandQuoteFactory() + virtual void OnUserConnect(LocalUser* user) { + cmd.Handle(std::vector(), user); } - - virtual Module * CreateModule() - { - return new ModuleRandQuote; - } - }; - -extern "C" void * init_module( void ) -{ - return new ModuleRandQuoteFactory; -} - +MODULE_INIT(ModuleRandQuote)