X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_opermotd.cpp;h=e0120c4dd04c29df04099fc0ff2154ae73fb15b3;hb=8df3d792bc99d9dd73db7a601ebe8d4a397c3522;hp=2c4a4492554410966a039648ab62da4026138ee3;hpb=0739e7c099618eb1848f5a72ec4d896095033a76;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_opermotd.cpp b/src/modules/m_opermotd.cpp index 2c4a44925..e0120c4dd 100644 --- a/src/modules/m_opermotd.cpp +++ b/src/modules/m_opermotd.cpp @@ -1,109 +1,127 @@ -// opermotd module by typobox43 - -using namespace std; - -#include -#include "users.h" -#include "channels.h" -#include "modules.h" -#include "helperfuncs.h" - -/* $ModDesc: Shows a message to opers after oper-up, adds /opermotd */ - -FileReader* opermotd; -Server* Srv; - -void do_opermotd(char** parameters, int pcnt, userrec* user); - -void LoadOperMOTD() +/* + * InspIRCd -- Internet Relay Chat Daemon + * + * Copyright (C) 2013, 2018-2019 Sadie Powell + * Copyright (C) 2012-2013, 2016 Attila Molnar + * Copyright (C) 2012, 2019 Robby + * Copyright (C) 2009 Uli Schlachter + * Copyright (C) 2009 Daniel De Graaf + * Copyright (C) 2007, 2009 Dennis Friis + * Copyright (C) 2006 Craig Edwards + * + * 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 "inspircd.h" + +enum { + // From UnrealIRCd. + ERR_NOOPERMOTD = 425, - ConfigReader* conf = new ConfigReader; - std::string filename; - - filename = conf->ReadValue("opermotd","file",0); - - opermotd->LoadFile(filename); - -} + // From ircd-ratbox. + RPL_OMOTDSTART = 720, + RPL_OMOTD = 721, + RPL_ENDOFOMOTD = 722 +}; -void ShowOperMOTD(userrec* user) +/** Handle /OPERMOTD + */ +class CommandOpermotd : public Command { - if(!opermotd->FileSize()) + public: + file_cache opermotd; + + CommandOpermotd(Module* Creator) : Command(Creator,"OPERMOTD", 0, 1) { - Srv->SendServ(user->fd,std::string("425 ") + user->nick + std::string(" :OPERMOTD file is missing")); - return; + flags_needed = 'o'; syntax = "[]"; } - Srv->SendServ(user->fd,std::string("375 ") + user->nick + std::string(" :- IRC Operators Message of the Day")); - - for(int i=0; i != opermotd->FileSize(); i++) + CmdResult Handle(User* user, const Params& parameters) CXX11_OVERRIDE { - Srv->SendServ(user->fd,std::string("372 ") + user->nick + std::string(" :- ") + opermotd->GetLine(i)); + if ((parameters.empty()) || (irc::equals(parameters[0], ServerInstance->Config->ServerName))) + ShowOperMOTD(user, true); + return CMD_SUCCESS; } - Srv->SendServ(user->fd,std::string("376 ") + user->nick + std::string(" :- End of OPERMOTD")); - -} - -void do_opermotd(char** parameters, int pcnt, userrec* user) -{ - ShowOperMOTD(user); -} - -class ModuleOpermotd : public Module -{ - public: - ModuleOpermotd() - { - Srv = new Server; - - Srv->AddCommand("OPERMOTD",do_opermotd,'o',0,"m_opermotd.so"); - opermotd = new FileReader(); - LoadOperMOTD(); - } - - virtual ~ModuleOpermotd() - { - delete Srv; - } + RouteDescriptor GetRouting(User* user, const Params& parameters) CXX11_OVERRIDE + { + if ((!parameters.empty()) && (parameters[0].find('.') != std::string::npos)) + return ROUTE_OPT_UCAST(parameters[0]); + return ROUTE_LOCALONLY; + } - virtual Version GetVersion() + void ShowOperMOTD(User* user, bool show_missing) + { + if (opermotd.empty()) { - return Version(1,0,0,1,VF_VENDOR); + if (show_missing) + user->WriteRemoteNumeric(ERR_NOOPERMOTD, "OPERMOTD file is missing."); + return; } - virtual void OnOper(userrec* user, std::string opertype) - { - ShowOperMOTD(user); - } + user->WriteRemoteNumeric(RPL_OMOTDSTART, "Server operators message of the day"); - virtual void OnRehash(std::string parameter) + for (file_cache::const_iterator i = opermotd.begin(); i != opermotd.end(); ++i) { - LoadOperMOTD(); + user->WriteRemoteNumeric(RPL_OMOTD, InspIRCd::Format("- %s", i->c_str())); } + user->WriteRemoteNumeric(RPL_ENDOFOMOTD, "End of OPERMOTD"); + } }; -class ModuleOpermotdFactory : public ModuleFactory + +class ModuleOpermotd : public Module { - public: - ModuleOpermotdFactory() - { - } + CommandOpermotd cmd; + bool onoper; + public: + + ModuleOpermotd() + : cmd(this) + { + } - ~ModuleOpermotdFactory() + Version GetVersion() CXX11_OVERRIDE + { + return Version("Shows a message to opers after oper-up and adds the OPERMOTD command", VF_VENDOR | VF_OPTCOMMON); + } + + void OnOper(User* user, const std::string &opertype) CXX11_OVERRIDE + { + if (onoper && IS_LOCAL(user)) + cmd.ShowOperMOTD(user, false); + } + + void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE + { + cmd.opermotd.clear(); + ConfigTag* conf = ServerInstance->Config->ConfValue("opermotd"); + onoper = conf->getBool("onoper", true); + + try { + FileReader reader(conf->getString("file", "opermotd")); + cmd.opermotd = reader.GetVector(); + InspIRCd::ProcessColors(cmd.opermotd); } - - virtual Module* CreateModule() + catch (CoreException&) { - return new ModuleOpermotd; + // Nothing happens here as we do the error handling in ShowOperMOTD. } - + } }; -extern "C" void* init_module(void) -{ - return new ModuleOpermotdFactory; -} +MODULE_INIT(ModuleOpermotd)