mirror of
git://git.acid.vegas/anope.git
synced 2024-11-15 04:06:42 +00:00
83 lines
2.0 KiB
C++
83 lines
2.0 KiB
C++
/* BotServ core functions
|
|
*
|
|
* (C) 2003-2022 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 CommandBSBotList : public Command
|
|
{
|
|
public:
|
|
CommandBSBotList(Module *creator) : Command(creator, "botserv/botlist", 0, 0)
|
|
{
|
|
this->SetDesc(_("Lists available bots"));
|
|
}
|
|
|
|
void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) anope_override
|
|
{
|
|
unsigned count = 0;
|
|
ListFormatter list(source.GetAccount());
|
|
|
|
list.AddColumn(_("Nick")).AddColumn(_("Mask"));
|
|
|
|
for (botinfo_map::const_iterator it = BotListByNick->begin(), it_end = BotListByNick->end(); it != it_end; ++it)
|
|
{
|
|
BotInfo *bi = it->second;
|
|
|
|
if (source.HasPriv("botserv/administration") || !bi->oper_only)
|
|
{
|
|
++count;
|
|
ListFormatter::ListEntry entry;
|
|
entry["Nick"] = (bi->oper_only ? "* " : "") + bi->nick;
|
|
entry["Mask"] = bi->GetIdent() + "@" + bi->host;
|
|
list.AddEntry(entry);
|
|
}
|
|
}
|
|
|
|
std::vector<Anope::string> replies;
|
|
list.Process(replies);
|
|
|
|
if (!count)
|
|
source.Reply(_("There are no bots available at this time.\n"
|
|
"Ask a Services Operator to create one!"));
|
|
else
|
|
{
|
|
source.Reply(_("Bot list:"));
|
|
|
|
for (unsigned i = 0; i < replies.size(); ++i)
|
|
source.Reply(replies[i]);
|
|
|
|
source.Reply(_("%d bots available."), count);
|
|
}
|
|
}
|
|
|
|
bool OnHelp(CommandSource &source, const Anope::string &subcommand) anope_override
|
|
{
|
|
this->SendSyntax(source);
|
|
source.Reply(" ");
|
|
source.Reply(_("Lists all available bots on this network.\n"
|
|
"Bots prefixed by a * are reserved for IRC Operators."));
|
|
return true;
|
|
}
|
|
};
|
|
|
|
class BSBotList : public Module
|
|
{
|
|
CommandBSBotList commandbsbotlist;
|
|
|
|
public:
|
|
BSBotList(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, VENDOR),
|
|
commandbsbotlist(this)
|
|
{
|
|
|
|
}
|
|
};
|
|
|
|
MODULE_INIT(BSBotList)
|