diff options
Diffstat (limited to 'modules/global/main/global.cpp')
-rw-r--r-- | modules/global/main/global.cpp | 119 |
1 files changed, 119 insertions, 0 deletions
diff --git a/modules/global/main/global.cpp b/modules/global/main/global.cpp new file mode 100644 index 000000000..cbc0e0757 --- /dev/null +++ b/modules/global/main/global.cpp @@ -0,0 +1,119 @@ +/* + * Anope IRC Services + * + * Copyright (C) 2011-2016 Anope Team <team@anope.org> + * + * This file is part of Anope. Anope 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 see <http://www.gnu.org/licenses/>. + */ + +#include "module.h" +#include "modules/help.h" +#include "modules/global.h" + +class GlobalCore : public Module + , public Global::GlobalService + , public EventHook<Event::Restart> + , public EventHook<Event::Shutdown> + , public EventHook<Event::NewServer> + , public EventHook<Event::Help> +{ + Reference<ServiceBot> Global; + + void ServerGlobal(ServiceBot *sender, Server *s, const Anope::string &message) + { + if (s != Me && !s->IsJuped()) + s->Notice(sender, message); + for (unsigned i = 0, j = s->GetLinks().size(); i < j; ++i) + this->ServerGlobal(sender, s->GetLinks()[i], message); + } + + public: + GlobalCore(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, PSEUDOCLIENT | VENDOR) + , EventHook<Event::Restart>(this) + , EventHook<Event::Shutdown>(this) + , EventHook<Event::NewServer>(this) + , EventHook<Event::Help>(this) + , GlobalService(this) + { + } + + void SendGlobal(ServiceBot *sender, const Anope::string &source, const Anope::string &message) override + { + if (Me->GetLinks().empty()) + return; + if (!sender) + sender = Global; + if (!sender) + return; + + Anope::string rmessage; + + if (!source.empty() && !Config->GetModule("global")->Get<bool>("anonymousglobal")) + rmessage = "[" + source + "] " + message; + else + rmessage = message; + + this->ServerGlobal(sender, Servers::GetUplink(), rmessage); + } + + void OnReload(Configuration::Conf *conf) override + { + const Anope::string &glnick = conf->GetModule(this)->Get<Anope::string>("client"); + + if (glnick.empty()) + throw ConfigException(Module::name + ": <client> must be defined"); + + ServiceBot *bi = ServiceBot::Find(glnick, true); + if (!bi) + throw ConfigException(Module::name + ": no bot named " + glnick); + + Global = bi; + } + + void OnRestart() override + { + const Anope::string &gl = Config->GetModule(this)->Get<Anope::string>("globaloncycledown"); + if (!gl.empty()) + this->SendGlobal(Global, "", gl); + } + + void OnShutdown() override + { + const Anope::string &gl = Config->GetModule(this)->Get<Anope::string>("globaloncycledown"); + if (!gl.empty()) + this->SendGlobal(Global, "", gl); + } + + void OnNewServer(Server *s) override + { + const Anope::string &gl = Config->GetModule(this)->Get<Anope::string>("globaloncycleup"); + if (!gl.empty() && !Me->IsSynced()) + s->Notice(Global, gl); + } + + EventReturn OnPreHelp(CommandSource &source, const std::vector<Anope::string> ¶ms) override + { + if (!params.empty() || source.c || source.service != *Global) + return EVENT_CONTINUE; + source.Reply(_("%s commands:"), Global->nick.c_str()); + return EVENT_CONTINUE; + } + + void OnPostHelp(CommandSource &source, const std::vector<Anope::string> ¶ms) override + { + } +}; + +MODULE_INIT(GlobalCore) + |