1
0
mirror of https://github.com/anope/anope.git synced 2026-06-25 11:56:37 +02:00
Files
anope/modules/core/os_modlist.cpp
T
2011-03-11 17:26:27 -05:00

233 lines
4.9 KiB
C++

/* OperServ core functions
*
* (C) 2003-2011 Anope Team
* Contact us at team@anope.org
*
* Please read COPYING and README for further details.
*
* Based on the original code of Epona by Lara.
* Based on the original code of Services by Andy Church.
*/
/*************************************************************************/
#include "module.h"
class CommandOSModList : public Command
{
public:
CommandOSModList() : Command("MODLIST", 0, 1, "operserv/modlist")
{
this->SetDesc(_("List loaded modules"));
}
CommandReturn Execute(CommandSource &source, const std::vector<Anope::string> &params)
{
const Anope::string &param = !params.empty() ? params[0] : "";
int count = 0;
int showCore = 0;
int showThird = 1;
int showProto = 1;
int showEnc = 1;
int showSupported = 1;
int showQA = 1;
int showDB = 1;
int showSocketEngine = 1;
char core[] = "Core";
char third[] = "3rd";
char proto[] = "Protocol";
char enc[] = "Encryption";
char supported[] = "Supported";
char qa[] = "QATested";
char db[] = "Database";
char socketengine[] = "SocketEngine";
if (!param.empty())
{
if (param.equals_ci(core))
{
showCore = 1;
showThird = 0;
showProto = 0;
showEnc = 0;
showSupported = 0;
showQA = 0;
showDB = 0;
showSocketEngine = 0;
}
else if (param.equals_ci(third))
{
showCore = 0;
showThird = 1;
showSupported = 0;
showQA = 0;
showProto = 0;
showEnc = 0;
showDB = 0;
showSocketEngine = 0;
}
else if (param.equals_ci(proto))
{
showCore = 0;
showThird = 0;
showProto = 1;
showEnc = 0;
showSupported = 0;
showQA = 0;
showDB = 0;
showSocketEngine = 0;
}
else if (param.equals_ci(supported))
{
showCore = 0;
showThird = 0;
showProto = 0;
showSupported = 1;
showEnc = 0;
showQA = 0;
showDB = 0;
showSocketEngine = 0;
}
else if (param.equals_ci(qa))
{
showCore = 0;
showThird = 0;
showProto = 0;
showSupported = 0;
showEnc = 0;
showQA = 1;
showDB = 0;
showSocketEngine = 0;
}
else if (param.equals_ci(enc))
{
showCore = 0;
showThird = 0;
showProto = 0;
showSupported = 0;
showEnc = 1;
showQA = 0;
showDB = 0;
showSocketEngine = 0;
}
else if (param.equals_ci(db))
{
showCore = 0;
showThird = 0;
showProto = 0;
showSupported = 0;
showEnc = 0;
showQA = 0;
showDB = 1;
showSocketEngine = 0;
}
else if (param == socketengine)
{
showCore = showThird = showProto = showSupported = showEnc = showQA = showDB = 0;
showSocketEngine = 1;
}
}
source.Reply(_("Current Module list:"));
for (std::list<Module *>::iterator it = Modules.begin(), it_end = Modules.end(); it != it_end; ++it)
{
Module *m = *it;
switch (m->type)
{
case CORE:
if (showCore)
{
source.Reply(_("Module: \002%s\002 [%s] [%s]"), m->name.c_str(), m->version.c_str(), core);
++count;
}
break;
case THIRD:
if (showThird)
{
source.Reply(_("Module: \002%s\002 [%s] [%s]"), m->name.c_str(), m->version.c_str(), third);
++count;
}
break;
case PROTOCOL:
if (showProto)
{
source.Reply(_("Module: \002%s\002 [%s] [%s]"), m->name.c_str(), m->version.c_str(), proto);
++count;
}
break;
case SUPPORTED:
if (showSupported)
{
source.Reply(_("Module: \002%s\002 [%s] [%s]"), m->name.c_str(), m->version.c_str(), supported);
++count;
}
break;
case QATESTED:
if (showQA)
{
source.Reply(_("Module: \002%s\002 [%s] [%s]"), m->name.c_str(), m->version.c_str(), qa);
++count;
}
break;
case ENCRYPTION:
if (showEnc)
{
source.Reply(_("Module: \002%s\002 [%s] [%s]"), m->name.c_str(), m->version.c_str(), enc);
++count;
}
break;
case DATABASE:
if (showDB)
{
source.Reply(_("Module: \002%s\002 [%s] [%s]"), m->name.c_str(), m->version.c_str(), db);
++count;
}
break;
case SOCKETENGINE:
if (showSocketEngine)
{
source.Reply(_("Module: \002%s\002 [%s] [%s]"), m->name.c_str(), m->version.c_str(), socketengine);
++count;
}
break;
default:
break;
}
}
if (!count)
source.Reply(_("No modules currently loaded"));
else
source.Reply(_("%d Modules loaded."), count);
return MOD_CONT;
}
bool OnHelp(CommandSource &source, const Anope::string &subcommand)
{
source.Reply(_("Syntax: \002MODLIST\002 [Core|3rd|protocol|encryption|supported|qatested]\n"
" \n"
"Lists all currently loaded modules."));
return true;
}
};
class OSModList : public Module
{
CommandOSModList commandosmodlist;
public:
OSModList(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator)
{
this->SetAuthor("Anope");
this->SetType(CORE);
this->AddCommand(OperServ, &commandosmodlist);
}
};
MODULE_INIT(OSModList)