mirror of
https://github.com/anope/anope.git
synced 2026-06-24 11:36:40 +02:00
433 lines
13 KiB
C++
433 lines
13 KiB
C++
/* BotServ core functions
|
|
*
|
|
* (C) 2003-2012 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 CommandBSSet : 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) anope_override
|
|
{
|
|
this->OnSyntaxError(source, "");
|
|
}
|
|
|
|
bool OnHelp(CommandSource &source, const Anope::string &subcommand) anope_override
|
|
{
|
|
this->SendSyntax(source);
|
|
source.Reply(" ");
|
|
source.Reply(_("Configures bot options.\n"
|
|
" \n"
|
|
"Available options:"));
|
|
Anope::string this_name = source.command;
|
|
for (CommandInfo::map::const_iterator it = source.service->commands.begin(), it_end = source.service->commands.end(); it != it_end; ++it)
|
|
{
|
|
const Anope::string &c_name = it->first;
|
|
const CommandInfo &info = it->second;
|
|
if (c_name.find_ci(this_name + " ") == 0)
|
|
{
|
|
ServiceReference<Command> command("Command", info.name);
|
|
if (command)
|
|
{
|
|
source.command = it->first;
|
|
command->OnServHelp(source);
|
|
}
|
|
}
|
|
}
|
|
source.Reply(_("Type \002%s%s HELP SET \037option\037\002 for more information on a\n"
|
|
"particular option."), Config->UseStrictPrivMsgString.c_str(), source.service->nick.c_str());
|
|
|
|
return true;
|
|
}
|
|
};
|
|
|
|
class CommandBSSetDontKickOps : public Command
|
|
{
|
|
public:
|
|
CommandBSSetDontKickOps(Module *creator, const Anope::string &sname = "botserv/set/dontkickops") : Command(creator, sname, 2, 2)
|
|
{
|
|
this->SetDesc(_("To protect ops against bot kicks"));
|
|
this->SetSyntax(_("\037channel\037 {ON | OFF}"));
|
|
}
|
|
|
|
void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) anope_override
|
|
{
|
|
ChannelInfo *ci = ChannelInfo::Find(params[0]);
|
|
if (ci == NULL)
|
|
{
|
|
source.Reply(CHAN_X_NOT_REGISTERED, params[0].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(_("Sorry, bot option setting is temporarily disabled."));
|
|
return;
|
|
}
|
|
|
|
if (params[1].equals_ci("ON"))
|
|
{
|
|
bool override = !access.HasPriv("SET");
|
|
Log(override ? LOG_OVERRIDE : LOG_COMMAND, source, this, ci) << "to enable dontkickops";
|
|
|
|
ci->botflags.SetFlag(BS_DONTKICKOPS);
|
|
source.Reply(_("Bot \002won't kick ops\002 on channel %s."), ci->name.c_str());
|
|
}
|
|
else if (params[1].equals_ci("OFF"))
|
|
{
|
|
bool override = !access.HasPriv("SET");
|
|
Log(override ? LOG_OVERRIDE : LOG_COMMAND, source, this, ci) << "to disable dontkickops";
|
|
|
|
ci->botflags.UnsetFlag(BS_DONTKICKOPS);
|
|
source.Reply(_("Bot \002will kick ops\002 on channel %s."), ci->name.c_str());
|
|
}
|
|
else
|
|
this->OnSyntaxError(source, source.command);
|
|
}
|
|
|
|
bool OnHelp(CommandSource &source, const Anope::string &) anope_override
|
|
{
|
|
this->SendSyntax(source);
|
|
source.Reply(_(" \n"
|
|
"Enables or disables \002ops protection\002 mode on a channel.\n"
|
|
"When it is enabled, ops won't be kicked by the bot\n"
|
|
"even if they don't match the NOKICK level."));
|
|
return true;
|
|
}
|
|
};
|
|
|
|
class CommandBSSetDontKickVoices : public Command
|
|
{
|
|
public:
|
|
CommandBSSetDontKickVoices(Module *creator, const Anope::string &sname = "botserv/set/dontkickvoices") : Command(creator, sname, 2, 2)
|
|
{
|
|
this->SetDesc(_("To protect voices against bot kicks"));
|
|
this->SetSyntax(_("\037channel\037 {ON | OFF}"));
|
|
}
|
|
|
|
void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) anope_override
|
|
{
|
|
ChannelInfo *ci = ChannelInfo::Find(params[0]);
|
|
if (ci == NULL)
|
|
{
|
|
source.Reply(CHAN_X_NOT_REGISTERED, params[0].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(_("Sorry, bot option setting is temporarily disabled."));
|
|
return;
|
|
}
|
|
|
|
if (params[1].equals_ci("ON"))
|
|
{
|
|
bool override = !access.HasPriv("SET");
|
|
Log(override ? LOG_OVERRIDE : LOG_COMMAND, source, this, ci) << "to enable dontkickvoices";
|
|
|
|
ci->botflags.SetFlag(BS_DONTKICKVOICES);
|
|
source.Reply(_("Bot \002won't kick voices\002 on channel %s."), ci->name.c_str());
|
|
}
|
|
else if (params[1].equals_ci("OFF"))
|
|
{
|
|
bool override = !access.HasPriv("SET");
|
|
Log(override ? LOG_OVERRIDE : LOG_COMMAND, source, this, ci) << "to disable dontkickvoices";
|
|
|
|
ci->botflags.UnsetFlag(BS_DONTKICKVOICES);
|
|
source.Reply(_("Bot \002will kick voices\002 on channel %s."), ci->name.c_str());
|
|
}
|
|
else
|
|
this->OnSyntaxError(source, source.command);
|
|
}
|
|
|
|
bool OnHelp(CommandSource &source, const Anope::string &) anope_override
|
|
{
|
|
this->SendSyntax(source);
|
|
source.Reply(_(" \n"
|
|
"Enables or disables \002voices protection\002 mode on a channel.\n"
|
|
"When it is enabled, voices won't be kicked by the bot\n"
|
|
"even if they don't match the NOKICK level."));
|
|
return true;
|
|
}
|
|
};
|
|
|
|
class CommandBSSetFantasy : public Command
|
|
{
|
|
public:
|
|
CommandBSSetFantasy(Module *creator, const Anope::string &sname = "botserv/set/fantasy") : Command(creator, sname, 2, 2)
|
|
{
|
|
this->SetDesc(_("Enable fantaisist commands"));
|
|
this->SetSyntax(_("\037channel\037 {\037ON|OFF\037}"));
|
|
}
|
|
|
|
void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) anope_override
|
|
{
|
|
ChannelInfo *ci = ChannelInfo::Find(params[0]);
|
|
const Anope::string &value = params[1];
|
|
|
|
if (ci == NULL)
|
|
{
|
|
source.Reply(CHAN_X_NOT_REGISTERED, params[0].c_str());
|
|
return;
|
|
}
|
|
|
|
if (!source.HasPriv("botserv/administration") && !source.AccessFor(ci).HasPriv("SET"))
|
|
{
|
|
source.Reply(ACCESS_DENIED);
|
|
return;
|
|
}
|
|
|
|
if (Anope::ReadOnly)
|
|
{
|
|
source.Reply(_("Sorry, bot option setting is temporarily disabled."));
|
|
return;
|
|
}
|
|
|
|
if (value.equals_ci("ON"))
|
|
{
|
|
bool override = !source.AccessFor(ci).HasPriv("SET");
|
|
Log(override ? LOG_OVERRIDE : LOG_COMMAND, source, this, ci) << "to enable fantasy";
|
|
|
|
ci->botflags.SetFlag(BS_FANTASY);
|
|
source.Reply(_("Fantasy mode is now \002on\002 on channel %s."), ci->name.c_str());
|
|
}
|
|
else if (value.equals_ci("OFF"))
|
|
{
|
|
bool override = !source.AccessFor(ci).HasPriv("SET");
|
|
Log(override ? LOG_OVERRIDE : LOG_COMMAND, source, this, ci) << "to disable fantasy";
|
|
|
|
ci->botflags.UnsetFlag(BS_FANTASY);
|
|
source.Reply(_("Fantasy mode is now \002off\002 on channel %s."), ci->name.c_str());
|
|
}
|
|
else
|
|
this->OnSyntaxError(source, source.command);
|
|
}
|
|
|
|
bool OnHelp(CommandSource &source, const Anope::string &) anope_override
|
|
{
|
|
this->SendSyntax(source);
|
|
source.Reply(_(" \n"
|
|
"Enables or disables \002fantasy\002 mode on a channel.\n"
|
|
"When it is enabled, users will be able to use\n"
|
|
"%s commands on a channel when prefixed\n"
|
|
"with one of the following fantasy characters: \002%s\002\n"
|
|
" \n"
|
|
"Note that users wanting to use fantaisist\n"
|
|
"commands MUST have enough level for both\n"
|
|
"the FANTASIA and another level depending\n"
|
|
"of the command if required (for example, to use \n"
|
|
"!op, user must have enough access for the OPDEOP\n"
|
|
"level)."), Config->ChanServ.c_str(), Config->BSFantasyCharacter.c_str());
|
|
return true;
|
|
}
|
|
};
|
|
|
|
class CommandBSSetGreet : public Command
|
|
{
|
|
public:
|
|
CommandBSSetGreet(Module *creator, const Anope::string &sname = "botserv/set/greet") : Command(creator, sname, 2, 2)
|
|
{
|
|
this->SetDesc(_("Enable greet messages"));
|
|
this->SetSyntax(_("\037channel\037 {\037ON|OFF\037}"));
|
|
}
|
|
|
|
void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) anope_override
|
|
{
|
|
ChannelInfo *ci = ChannelInfo::Find(params[0]);
|
|
const Anope::string &value = params[1];
|
|
|
|
if (ci == NULL)
|
|
{
|
|
source.Reply(CHAN_X_NOT_REGISTERED, params[0].c_str());
|
|
return;
|
|
}
|
|
|
|
if (!source.HasPriv("botserv/administration") && !source.AccessFor(ci).HasPriv("SET"))
|
|
{
|
|
source.Reply(ACCESS_DENIED);
|
|
return;
|
|
}
|
|
|
|
if (Anope::ReadOnly)
|
|
{
|
|
source.Reply(_("Sorry, bot option setting is temporarily disabled."));
|
|
return;
|
|
}
|
|
|
|
if (value.equals_ci("ON"))
|
|
{
|
|
bool override = !source.AccessFor(ci).HasPriv("SET");
|
|
Log(override ? LOG_OVERRIDE : LOG_COMMAND, source, this, ci) << "to enable greets";
|
|
|
|
ci->botflags.SetFlag(BS_GREET);
|
|
source.Reply(_("Greet mode is now \002on\002 on channel %s."), ci->name.c_str());
|
|
}
|
|
else if (value.equals_ci("OFF"))
|
|
{
|
|
bool override = !source.AccessFor(ci).HasPriv("SET");
|
|
Log(override ? LOG_OVERRIDE : LOG_COMMAND, source, this, ci) << "to disable greets";
|
|
|
|
ci->botflags.UnsetFlag(BS_GREET);
|
|
source.Reply(_("Greet mode is now \002off\002 on channel %s."), ci->name.c_str());
|
|
}
|
|
else
|
|
this->OnSyntaxError(source, source.command);
|
|
}
|
|
|
|
bool OnHelp(CommandSource &source, const Anope::string &) anope_override
|
|
{
|
|
this->SendSyntax(source);
|
|
source.Reply(_(" \n"
|
|
"Enables or disables \002greet\002 mode on a channel.\n"
|
|
"When it is enabled, the bot will display greet\n"
|
|
"messages of users joining the channel, provided\n"
|
|
"they have enough access to the channel."));
|
|
return true;
|
|
}
|
|
};
|
|
|
|
class CommandBSSetNoBot : public Command
|
|
{
|
|
public:
|
|
CommandBSSetNoBot(Module *creator, const Anope::string &sname = "botserv/set/nobot") : Command(creator, sname, 2, 2)
|
|
{
|
|
this->SetDesc(_("Prevent a bot from being assigned to a channel"));
|
|
this->SetSyntax(_("\037channel\037 {\037ON|OFF\037}"));
|
|
}
|
|
|
|
void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) anope_override
|
|
{
|
|
ChannelInfo *ci = ChannelInfo::Find(params[0]);
|
|
const Anope::string &value = params[1];
|
|
|
|
if (ci == NULL)
|
|
{
|
|
source.Reply(CHAN_X_NOT_REGISTERED, params[0].c_str());
|
|
return;
|
|
}
|
|
|
|
if (value.equals_ci("ON"))
|
|
{
|
|
bool override = !source.AccessFor(ci).HasPriv("SET");
|
|
Log(override ? LOG_ADMIN : LOG_COMMAND, source, this, ci) << "to enable nobot";
|
|
|
|
ci->botflags.SetFlag(BS_NOBOT);
|
|
if (ci->bi)
|
|
ci->bi->UnAssign(source.GetUser(), ci);
|
|
source.Reply(_("No Bot mode is now \002on\002 on channel %s."), ci->name.c_str());
|
|
}
|
|
else if (value.equals_ci("OFF"))
|
|
{
|
|
bool override = !source.AccessFor(ci).HasPriv("SET");
|
|
Log(override ? LOG_ADMIN : LOG_COMMAND, source, this, ci) << "to disable nobot";
|
|
|
|
ci->botflags.UnsetFlag(BS_NOBOT);
|
|
source.Reply(_("No Bot mode is now \002off\002 on channel %s."), ci->name.c_str());
|
|
}
|
|
else
|
|
this->OnSyntaxError(source, source.command);
|
|
}
|
|
|
|
bool OnHelp(CommandSource &source, const Anope::string &) anope_override
|
|
{
|
|
this->SendSyntax(source);
|
|
source.Reply(_(" \n"
|
|
"This option makes a channel be unassignable. If a bot \n"
|
|
"is already assigned to the channel, it is unassigned\n"
|
|
"automatically when you enable the option."));
|
|
return true;
|
|
}
|
|
};
|
|
|
|
class CommandBSSetPrivate : 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 IRC operators"));
|
|
this->SetSyntax(_("\037botname\037 {\037ON|OFF\037}"));
|
|
}
|
|
|
|
void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) anope_override
|
|
{
|
|
BotInfo *bi = BotInfo::Find(params[0], true);
|
|
const Anope::string &value = params[1];
|
|
|
|
if (bi == NULL)
|
|
{
|
|
source.Reply(BOT_DOES_NOT_EXIST, params[0].c_str());
|
|
return;
|
|
}
|
|
|
|
if (value.equals_ci("ON"))
|
|
{
|
|
bi->SetFlag(BI_PRIVATE);
|
|
source.Reply(_("Private mode of bot %s is now \002on\002."), bi->nick.c_str());
|
|
}
|
|
else if (value.equals_ci("OFF"))
|
|
{
|
|
bi->UnsetFlag(BI_PRIVATE);
|
|
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 &) anope_override
|
|
{
|
|
this->SendSyntax(source);
|
|
source.Reply(_(" \n"
|
|
"This option prevents a bot from being assigned to a\n"
|
|
"channel by users that aren't IRC operators."));
|
|
return true;
|
|
}
|
|
};
|
|
|
|
class BSSet : public Module
|
|
{
|
|
CommandBSSet commandbsset;
|
|
CommandBSSetDontKickOps commandbssetdontkickops;
|
|
CommandBSSetDontKickVoices commandbssetdontkickvoices;
|
|
CommandBSSetFantasy commandbssetfantasy;
|
|
CommandBSSetNoBot commandbssetnobot;
|
|
CommandBSSetPrivate commandbssetprivate;
|
|
|
|
public:
|
|
BSSet(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, CORE),
|
|
commandbsset(this), commandbssetdontkickops(this), commandbssetdontkickvoices(this),
|
|
commandbssetfantasy(this), commandbssetnobot(this), commandbssetprivate(this)
|
|
{
|
|
this->SetAuthor("Anope");
|
|
|
|
}
|
|
};
|
|
|
|
MODULE_INIT(BSSet)
|