mirror of
https://github.com/anope/anope.git
synced 2026-06-12 19:14:47 +02:00
258 lines
6.4 KiB
C++
258 lines
6.4 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 CommandBSSet final
|
|
: public Command
|
|
{
|
|
public:
|
|
CommandBSSet(Module *creator) : Command(creator, "botserv/set", 3, 3)
|
|
{
|
|
this->SetDesc(_("Configures bot options"));
|
|
this->SetSyntax(_("\037option\037 \037(channel | bot)\037 \037settings\037"));
|
|
}
|
|
|
|
void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) override
|
|
{
|
|
this->OnSyntaxError(source, "");
|
|
}
|
|
|
|
bool OnHelp(CommandSource &source, const Anope::string &subcommand) override
|
|
{
|
|
this->SendSyntax(source);
|
|
source.Reply(" ");
|
|
source.Reply(_(
|
|
"Configures bot options."
|
|
"\n\n"
|
|
"Available options:"
|
|
));
|
|
bool hide_privileged_commands = Config->GetBlock("options").Get<bool>("hideprivilegedcommands"),
|
|
hide_registered_commands = Config->GetBlock("options").Get<bool>("hideregisteredcommands");
|
|
|
|
HelpWrapper help;
|
|
Anope::string this_name = source.command;
|
|
for (const auto &[c_name, info] : source.service->commands)
|
|
{
|
|
if (c_name.find_ci(this_name + " ") == 0)
|
|
{
|
|
if (info.hide)
|
|
continue;
|
|
|
|
ServiceReference<Command> command("Command", info.name);
|
|
if (command)
|
|
{
|
|
// XXX dup
|
|
if (hide_registered_commands && !command->AllowUnregistered() && !source.GetAccount())
|
|
continue;
|
|
|
|
if (hide_privileged_commands && !info.permission.empty() && !source.HasCommand(info.permission))
|
|
continue;
|
|
|
|
source.command = c_name;
|
|
command->OnServHelp(source, help);
|
|
}
|
|
}
|
|
}
|
|
help.SendTo(source);
|
|
|
|
source.Reply(_("Type \002%s\033\037option\037\002 for more information on a particular option."),
|
|
source.service->GetQueryCommand("generic/help", this_name).c_str());
|
|
|
|
return true;
|
|
}
|
|
};
|
|
|
|
class CommandBSSetBanExpire final
|
|
: public Command
|
|
{
|
|
public:
|
|
class UnbanTimer final
|
|
: public Timer
|
|
{
|
|
Anope::string chname;
|
|
Anope::string mask;
|
|
|
|
public:
|
|
UnbanTimer(Module *creator, const Anope::string &ch, const Anope::string &bmask, time_t t)
|
|
: Timer(creator, t)
|
|
, chname(ch)
|
|
, mask(bmask)
|
|
{
|
|
}
|
|
|
|
bool Tick() override
|
|
{
|
|
Channel *c = Channel::Find(chname);
|
|
if (c)
|
|
c->RemoveMode(NULL, "BAN", mask);
|
|
return false;
|
|
}
|
|
};
|
|
|
|
CommandBSSetBanExpire(Module *creator, const Anope::string &sname = "botserv/set/banexpire") : Command(creator, sname, 2, 2)
|
|
{
|
|
this->SetDesc(_("Configures the time bot bans expire in"));
|
|
this->SetSyntax(_("\037channel\037 \037time\037"));
|
|
}
|
|
|
|
void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) override
|
|
{
|
|
const Anope::string &chan = params[0];
|
|
const Anope::string &arg = params[1];
|
|
|
|
ChannelInfo *ci = ChannelInfo::Find(chan);
|
|
if (ci == NULL)
|
|
{
|
|
source.Reply(CHAN_X_NOT_REGISTERED, chan.c_str());
|
|
return;
|
|
}
|
|
|
|
AccessGroup access = source.AccessFor(ci);
|
|
if (!source.HasPriv("botserv/administration") && !access.HasPriv("SET"))
|
|
{
|
|
source.Reply(ACCESS_DENIED);
|
|
return;
|
|
}
|
|
|
|
if (Anope::ReadOnly)
|
|
{
|
|
source.Reply(READ_ONLY_MODE);
|
|
return;
|
|
}
|
|
|
|
time_t t = Anope::DoTime(arg);
|
|
if (t < 0)
|
|
{
|
|
source.Reply(BAD_EXPIRY_TIME);
|
|
return;
|
|
}
|
|
|
|
/* cap at 1 day */
|
|
if (t > 86400)
|
|
{
|
|
source.Reply(_("Ban expiry may not be longer than 1 day."));
|
|
return;
|
|
}
|
|
|
|
ci->banexpire = t;
|
|
|
|
bool override = !access.HasPriv("SET");
|
|
Log(override ? LOG_OVERRIDE : LOG_COMMAND, source, this, ci) << "to change banexpire to " << ci->banexpire;
|
|
|
|
if (!ci->banexpire)
|
|
source.Reply(_("Bot bans will no longer automatically expire."));
|
|
else
|
|
source.Reply(_("Bot bans will automatically expire after %s."), Anope::Duration(ci->banexpire, source.GetAccount()).c_str());
|
|
}
|
|
|
|
bool OnHelp(CommandSource &source, const Anope::string &) override
|
|
{
|
|
this->SendSyntax(source);
|
|
source.Reply(" ");
|
|
source.Reply(_(
|
|
"Sets the time bot bans expire in. If enabled, any bans placed by "
|
|
"bots, such as flood kicker, badwords kicker, etc. will automatically "
|
|
"be removed after the given time. Set to 0 to disable bans from "
|
|
"automatically expiring."
|
|
));
|
|
|
|
ExampleWrapper()
|
|
.AddEntry("#wibble 15m", _(
|
|
"Sets bot bans on \035#wibble\035 to expire after \03515 minutes\035."
|
|
))
|
|
.SendTo(source);
|
|
|
|
return true;
|
|
}
|
|
};
|
|
|
|
class CommandBSSetPrivate final
|
|
: public Command
|
|
{
|
|
public:
|
|
CommandBSSetPrivate(Module *creator, const Anope::string &sname = "botserv/set/private") : Command(creator, sname, 2, 2)
|
|
{
|
|
this->SetDesc(_("Prevent a bot from being assigned by non Services Operators"));
|
|
this->SetSyntax(_("\037botname\037 {\037ON|OFF\037}"));
|
|
}
|
|
|
|
void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) override
|
|
{
|
|
BotInfo *bi = BotInfo::Find(params[0], true);
|
|
const Anope::string &value = params[1];
|
|
|
|
if (Anope::ReadOnly)
|
|
{
|
|
source.Reply(READ_ONLY_MODE);
|
|
return;
|
|
}
|
|
|
|
if (bi == NULL)
|
|
{
|
|
source.Reply(BOT_DOES_NOT_EXIST, params[0].c_str());
|
|
return;
|
|
}
|
|
|
|
if (value.equals_ci("ON"))
|
|
{
|
|
bi->oper_only = true;
|
|
source.Reply(_("Private mode of bot %s is now \002on\002."), bi->nick.c_str());
|
|
}
|
|
else if (value.equals_ci("OFF"))
|
|
{
|
|
bi->oper_only = false;
|
|
source.Reply(_("Private mode of bot %s is now \002off\002."), bi->nick.c_str());
|
|
}
|
|
else
|
|
this->OnSyntaxError(source, source.command);
|
|
}
|
|
|
|
bool OnHelp(CommandSource &source, const Anope::string &) override
|
|
{
|
|
this->SendSyntax(source);
|
|
source.Reply(" ");
|
|
source.Reply(_(
|
|
"This option prevents a bot from being assigned to a "
|
|
"channel by users that aren't Services Operators."
|
|
));
|
|
return true;
|
|
}
|
|
};
|
|
|
|
class BSSet final
|
|
: public Module
|
|
{
|
|
CommandBSSet commandbsset;
|
|
CommandBSSetBanExpire commandbssetbanexpire;
|
|
CommandBSSetPrivate commandbssetprivate;
|
|
|
|
public:
|
|
BSSet(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, VENDOR),
|
|
commandbsset(this), commandbssetbanexpire(this),
|
|
commandbssetprivate(this)
|
|
{
|
|
}
|
|
|
|
void OnBotBan(User *u, ChannelInfo *ci, const Anope::string &mask) override
|
|
{
|
|
if (!ci->banexpire)
|
|
return;
|
|
|
|
new CommandBSSetBanExpire::UnbanTimer(this, ci->name, mask, ci->banexpire);
|
|
}
|
|
};
|
|
|
|
MODULE_INIT(BSSet)
|