summaryrefslogtreecommitdiff
path: root/src/modules/m_opermotd.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-11 01:35:01 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-11 01:35:01 +0000
commit12737ab4ad61a0d8a908c8a21594c7012e21eb3c (patch)
treebf819b3a528227d3ddf929e25e8b74d1db8ef1c7 /src/modules/m_opermotd.cpp
parentb8383dcc9524ca832de7daf56f44fe54b19e5bdc (diff)
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
Diffstat (limited to 'src/modules/m_opermotd.cpp')
-rw-r--r--src/modules/m_opermotd.cpp112
1 files changed, 55 insertions, 57 deletions
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 = "[<servername>]";
@@ -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 &parameter)
- {
- LoadOperMOTD();
- }
+ virtual void OnOper(userrec* user, const std::string &opertype)
+ {
+ ShowOperMOTD(user);
+ }
+ virtual void OnRehash(const std::string &parameter)
+ {
+ 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)