mirror of
https://github.com/anope/anope.git
synced 2026-06-12 17:04:47 +02:00
120 lines
3.0 KiB
C++
120 lines
3.0 KiB
C++
// Anope IRC Services <https://www.anope.org/>
|
|
//
|
|
// Copyright (C) 2003-2026 Anope Contributors
|
|
//
|
|
// Anope is free software. You can use, modify, and/or distribute it under the
|
|
// terms of version 2 of the GNU General Public License. See docs/LICENSE.txt
|
|
// for the complete terms of this license and docs/AUTHORS.txt for a list of
|
|
// contributors.
|
|
//
|
|
// Based on the original code of Epona by Lara
|
|
// Based on the original code of Services by Andy Church
|
|
//
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
#include "module.h"
|
|
|
|
class CommandBSBotList final
|
|
: public Command
|
|
{
|
|
public:
|
|
CommandBSBotList(Module *creator) : Command(creator, "botserv/botlist", 0, 1)
|
|
{
|
|
this->SetDesc(_("Lists available bots"));
|
|
this->SetSyntax("[OPERONLY] [UNUSED] [VANITY]");
|
|
}
|
|
|
|
void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) override
|
|
{
|
|
const bool is_admin = source.HasCommand("botserv/administration");
|
|
auto operonly = false;
|
|
auto unused = false;
|
|
auto vanity = false;
|
|
if (is_admin && !params.empty())
|
|
{
|
|
spacesepstream keywords(params[0]);
|
|
for (Anope::string keyword; keywords.GetToken(keyword); )
|
|
{
|
|
if (keyword.equals_ci("OPERONLY"))
|
|
operonly = true;
|
|
if (keyword.equals_ci("UNUSED"))
|
|
unused = true;
|
|
if (keyword.equals_ci("VANITY"))
|
|
vanity = true;
|
|
}
|
|
}
|
|
|
|
ListFormatter list(source.GetAccount());
|
|
list.AddColumn(_("Nick")).AddColumn(_("Mask")).AddColumn(_("Real name"));
|
|
list.SetFlexible(_("\002{nick}\002 ({mask}) [{real_name}]"));
|
|
|
|
unsigned count = 0;
|
|
for (const auto &[_, bi] : *BotListByNick)
|
|
{
|
|
if (is_admin || !bi->oper_only)
|
|
{
|
|
if (operonly && !bi->oper_only)
|
|
continue;
|
|
if (unused && bi->GetChannelCount())
|
|
continue;
|
|
if (vanity && bi->conf)
|
|
continue;
|
|
|
|
++count;
|
|
ListFormatter::ListEntry entry;
|
|
entry["Nick"] = bi->nick;
|
|
entry["Mask"] = bi->GetIdent() + "@" + bi->host;
|
|
entry["Real name"] = bi->realname;
|
|
list.AddEntry(entry);
|
|
}
|
|
}
|
|
|
|
if (!count)
|
|
{
|
|
source.Reply(_(
|
|
"There are no bots available at this time. "
|
|
"Ask a Services Operator to create one!"
|
|
));
|
|
}
|
|
else
|
|
{
|
|
source.Reply(_("Bot list:"));
|
|
list.SendTo(source);
|
|
source.Reply(_("%d bots available."), count);
|
|
}
|
|
}
|
|
|
|
bool OnHelp(CommandSource &source, const Anope::string &subcommand) override
|
|
{
|
|
this->SendSyntax(source);
|
|
source.Reply(" ");
|
|
source.Reply(_(
|
|
"Lists all available bots on this network."
|
|
"\n\n"
|
|
"If the OPERONLY, UNUSED or VANITY options are given only "
|
|
"bots which, respectively, are oper-only, unused or were "
|
|
"added at runtime will be displayed. If multiple options are "
|
|
"given, all nicks matching at least one option will be "
|
|
"displayed."
|
|
"\n\n"
|
|
"Note that these options are limited to \037Services Operators\037."
|
|
));
|
|
return true;
|
|
}
|
|
};
|
|
|
|
class BSBotList final
|
|
: public Module
|
|
{
|
|
CommandBSBotList commandbsbotlist;
|
|
|
|
public:
|
|
BSBotList(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, VENDOR),
|
|
commandbsbotlist(this)
|
|
{
|
|
|
|
}
|
|
};
|
|
|
|
MODULE_INIT(BSBotList)
|