X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_opermotd.cpp;h=2ae4c30b59d232572c5d6506ff321f442e96cb2c;hb=694e307c09334c21aaf1a6c3f0b7b6d95440dd3e;hp=5f9dafa655917a22101d62592dbd95b27e19b289;hpb=5d407fb44c759524881712a80febb86b4506ddbf;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_opermotd.cpp b/src/modules/m_opermotd.cpp index 5f9dafa65..2ae4c30b5 100644 --- a/src/modules/m_opermotd.cpp +++ b/src/modules/m_opermotd.cpp @@ -1,121 +1,113 @@ -// opermotd module by typobox43 - -using namespace std; - -#include -#include "users.h" -#include "channels.h" -#include "modules.h" -#include "helperfuncs.h" +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * InspIRCd: (C) 2002-2007 InspIRCd Development Team + * See: http://www.inspircd.org/wiki/index.php/Credits + * + * This program is free but copyrighted software; see + * the file COPYING for details. + * + * --------------------------------------------------- + */ + +#include "inspircd.h" /* $ModDesc: Shows a message to opers after oper-up, adds /opermotd */ static FileReader* opermotd; -static Server* Srv; - -void LoadOperMOTD() -{ - ConfigReader* conf = new ConfigReader; - std::string filename; - - filename = conf->ReadValue("opermotd","file",0); - - opermotd->LoadFile(filename); - DELETE(conf); -} -void ShowOperMOTD(userrec* user) +CmdResult ShowOperMOTD(userrec* user) { if(!opermotd->FileSize()) { - Srv->SendServ(user->fd,std::string("425 ") + user->nick + std::string(" :OPERMOTD file is missing")); - return; + user->WriteServ(std::string("425 ") + user->nick + std::string(" :OPERMOTD file is missing")); + return CMD_FAILURE; } - Srv->SendServ(user->fd,std::string("375 ") + user->nick + std::string(" :- IRC Operators Message of the Day")); + user->WriteServ(std::string("375 ") + user->nick + std::string(" :- IRC Operators Message of the Day")); for(int i=0; i != opermotd->FileSize(); i++) { - Srv->SendServ(user->fd,std::string("372 ") + user->nick + std::string(" :- ") + opermotd->GetLine(i)); + user->WriteServ(std::string("372 ") + user->nick + std::string(" :- ") + opermotd->GetLine(i)); } - Srv->SendServ(user->fd,std::string("376 ") + user->nick + std::string(" :- End of OPERMOTD")); + user->WriteServ(std::string("376 ") + user->nick + std::string(" :- End of OPERMOTD")); + /* don't route me */ + return CMD_LOCALONLY; } -class cmd_opermotd : public command_t +/** Handle /OPERMOTD + */ +class cmd_opermotd : public Command { public: - cmd_opermotd () : command_t("OPERMOTD", 'o', 0) + cmd_opermotd (InspIRCd* Instance) : Command(Instance,"OPERMOTD", 'o', 0) { this->source = "m_opermotd.so"; + syntax = "[]"; } - void Handle (char** parameters, int pcnt, userrec* user) + CmdResult Handle (const char** parameters, int pcnt, userrec* user) { - ShowOperMOTD(user); + return ShowOperMOTD(user); } }; + class ModuleOpermotd : public Module { - cmd_opermotd* mycommand; - public: - ModuleOpermotd(Server* Me) - : Module::Module(Me) - { - Srv = Me; - mycommand = new cmd_opermotd(); - Srv->AddCommand(mycommand); - opermotd = new FileReader(); - LoadOperMOTD(); - } - - virtual ~ModuleOpermotd() - { - } - - virtual Version GetVersion() - { - return Version(1,0,0,1,VF_VENDOR); - } - - void Implements(char* List) - { - List[I_OnRehash] = List[I_OnOper] = 1; - } - - virtual void OnOper(userrec* user, const std::string &opertype) - { - ShowOperMOTD(user); - } + cmd_opermotd* mycommand; + public: - virtual void OnRehash(const std::string ¶meter) + void LoadOperMOTD() + { + ConfigReader* conf = new ConfigReader(ServerInstance); + std::string filename; + filename = conf->ReadValue("opermotd","file",0); + if (opermotd) { - LoadOperMOTD(); + delete opermotd; + opermotd = NULL; } + opermotd = new FileReader(ServerInstance, filename); + DELETE(conf); + } + + ModuleOpermotd(InspIRCd* Me) + : Module(Me) + { + opermotd = NULL; + mycommand = new cmd_opermotd(ServerInstance); + ServerInstance->AddCommand(mycommand); + opermotd = new FileReader(ServerInstance); + LoadOperMOTD(); + } -}; + virtual ~ModuleOpermotd() + { + } -class ModuleOpermotdFactory : public ModuleFactory -{ - public: - ModuleOpermotdFactory() - { - } + virtual Version GetVersion() + { + return Version(1,1,0,1,VF_VENDOR,API_VERSION); + } - ~ModuleOpermotdFactory() - { - } + void Implements(char* List) + { + List[I_OnRehash] = List[I_OnOper] = 1; + } - virtual Module* CreateModule(Server* Me) - { - return new ModuleOpermotd(Me); - } + virtual void OnOper(userrec* user, const std::string &opertype) + { + ShowOperMOTD(user); + } + virtual void OnRehash(userrec* user, const std::string ¶meter) + { + LoadOperMOTD(); + } }; -extern "C" void* init_module(void) -{ - return new ModuleOpermotdFactory; -} +MODULE_INIT(ModuleOpermotd)