From 12737ab4ad61a0d8a908c8a21594c7012e21eb3c Mon Sep 17 00:00:00 2001 From: brain Date: Fri, 11 Aug 2006 01:35:01 +0000 Subject: ConfigReader and FileReader now take InspIRCd* to their constructors git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4865 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_opermotd.cpp | 112 ++++++++++++++++++++++----------------------- 1 file changed, 55 insertions(+), 57 deletions(-) (limited to 'src/modules/m_opermotd.cpp') diff --git a/src/modules/m_opermotd.cpp b/src/modules/m_opermotd.cpp index b988dd00e..f0457904a 100644 --- a/src/modules/m_opermotd.cpp +++ b/src/modules/m_opermotd.cpp @@ -13,18 +13,6 @@ using namespace std; static FileReader* opermotd; - -void LoadOperMOTD() -{ - ConfigReader* conf = new ConfigReader; - std::string filename; - - filename = conf->ReadValue("opermotd","file",0); - - opermotd->LoadFile(filename); - DELETE(conf); -} - void ShowOperMOTD(userrec* user) { if(!opermotd->FileSize()) @@ -32,22 +20,18 @@ void ShowOperMOTD(userrec* user) user->WriteServ(std::string("425 ") + user->nick + std::string(" :OPERMOTD file is missing")); return; } - user->WriteServ(std::string("375 ") + user->nick + std::string(" :- IRC Operators Message of the Day")); - for(int i=0; i != opermotd->FileSize(); i++) { user->WriteServ(std::string("372 ") + user->nick + std::string(" :- ") + opermotd->GetLine(i)); } - user->WriteServ(std::string("376 ") + user->nick + std::string(" :- End of OPERMOTD")); - } class cmd_opermotd : public command_t { public: - cmd_opermotd (InspIRCd* Instance) : command_t(Instance,"OPERMOTD", 'o', 0) + cmd_opermotd (InspIRCd* Instance) : command_t(Instance,"OPERMOTD", 'o', 0) { this->source = "m_opermotd.so"; syntax = "[]"; @@ -59,62 +43,76 @@ class cmd_opermotd : public command_t } }; + class ModuleOpermotd : public Module { - cmd_opermotd* mycommand; - public: - ModuleOpermotd(InspIRCd* Me) - : Module::Module(Me) - { - - mycommand = new cmd_opermotd(ServerInstance); - ServerInstance->AddCommand(mycommand); - opermotd = new FileReader(); - LoadOperMOTD(); - } + cmd_opermotd* mycommand; + public: - virtual ~ModuleOpermotd() + void LoadOperMOTD() + { + ConfigReader* conf = new ConfigReader(ServerInstance); + std::string filename; + filename = conf->ReadValue("opermotd","file",0); + if (opermotd) { + delete opermotd; + opermotd = NULL; } + opermotd = new FileReader(ServerInstance, filename); + DELETE(conf); + } + + ModuleOpermotd(InspIRCd* Me) + : Module::Module(Me) + { + opermotd = NULL; + mycommand = new cmd_opermotd(ServerInstance); + ServerInstance->AddCommand(mycommand); + opermotd = new FileReader(ServerInstance); + LoadOperMOTD(); + } - virtual Version GetVersion() - { - return Version(1,0,0,1,VF_VENDOR); - } + virtual ~ModuleOpermotd() + { + } - void Implements(char* List) - { - List[I_OnRehash] = List[I_OnOper] = 1; - } + virtual Version GetVersion() + { + return Version(1,0,0,1,VF_VENDOR); + } - virtual void OnOper(userrec* user, const std::string &opertype) - { - ShowOperMOTD(user); - } + void Implements(char* List) + { + List[I_OnRehash] = List[I_OnOper] = 1; + } - virtual void OnRehash(const std::string ¶meter) - { - LoadOperMOTD(); - } + virtual void OnOper(userrec* user, const std::string &opertype) + { + ShowOperMOTD(user); + } + virtual void OnRehash(const std::string ¶meter) + { + LoadOperMOTD(); + } }; class ModuleOpermotdFactory : public ModuleFactory { - public: - ModuleOpermotdFactory() - { - } - - ~ModuleOpermotdFactory() - { - } + public: + ModuleOpermotdFactory() + { + } - virtual Module* CreateModule(InspIRCd* Me) - { - return new ModuleOpermotd(Me); - } + ~ModuleOpermotdFactory() + { + } + virtual Module* CreateModule(InspIRCd* Me) + { + return new ModuleOpermotd(Me); + } }; extern "C" void* init_module(void) -- cgit v1.2.3