mirror of
https://github.com/anope/anope.git
synced 2026-06-25 16:26:37 +02:00
08583dc107
out of the core and into the modules that use them.
185 lines
4.7 KiB
C++
185 lines
4.7 KiB
C++
/* ChanServ 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 CommandCSSetPersist : public Command
|
|
{
|
|
public:
|
|
CommandCSSetPersist(const Anope::string &cpermission = "") : Command("PERSIST", 2, 2, cpermission)
|
|
{
|
|
}
|
|
|
|
CommandReturn Execute(CommandSource &source, const std::vector<Anope::string> ¶ms)
|
|
{
|
|
ChannelInfo *ci = source.ci;
|
|
if (!ci)
|
|
throw CoreException("NULL ci in CommandCSSetPersist");
|
|
|
|
ChannelMode *cm = ModeManager::FindChannelModeByName(CMODE_PERM);
|
|
|
|
if (params[1].equals_ci("ON"))
|
|
{
|
|
if (!ci->HasFlag(CI_PERSIST))
|
|
{
|
|
ci->SetFlag(CI_PERSIST);
|
|
if (ci->c)
|
|
ci->c->SetFlag(CH_PERSIST);
|
|
|
|
/* Channel doesn't exist, create it */
|
|
if (!ci->c)
|
|
{
|
|
Channel *c = new Channel(ci->name);
|
|
if (ci->bi)
|
|
ci->bi->Join(c);
|
|
}
|
|
|
|
/* No botserv bot, no channel mode */
|
|
/* Give them ChanServ
|
|
* Yes, this works fine with no Config->s_BotServ
|
|
*/
|
|
if (!ci->bi && !cm)
|
|
{
|
|
ChanServ->Assign(NULL, ci);
|
|
if (!ci->c->FindUser(ChanServ))
|
|
ChanServ->Join(ci->c);
|
|
}
|
|
|
|
/* Set the perm mode */
|
|
if (cm)
|
|
{
|
|
if (ci->c && !ci->c->HasMode(CMODE_PERM))
|
|
ci->c->SetMode(NULL, cm);
|
|
/* Add it to the channels mlock */
|
|
ci->SetMLock(cm, true);
|
|
}
|
|
}
|
|
|
|
source.Reply(_("Channel \002%s\002 is now persistant."), ci->name.c_str());
|
|
}
|
|
else if (params[1].equals_ci("OFF"))
|
|
{
|
|
if (ci->HasFlag(CI_PERSIST))
|
|
{
|
|
ci->UnsetFlag(CI_PERSIST);
|
|
if (ci->c)
|
|
ci->c->UnsetFlag(CH_PERSIST);
|
|
|
|
/* Unset perm mode */
|
|
if (cm)
|
|
{
|
|
if (ci->c && ci->c->HasMode(CMODE_PERM))
|
|
ci->c->RemoveMode(NULL, cm);
|
|
/* Remove from mlock */
|
|
ci->RemoveMLock(cm);
|
|
}
|
|
|
|
/* No channel mode, no BotServ, but using ChanServ as the botserv bot
|
|
* which was assigned when persist was set on
|
|
*/
|
|
if (!cm && Config->s_BotServ.empty() && ci->bi)
|
|
/* Unassign bot */
|
|
ChanServ->UnAssign(NULL, ci);
|
|
}
|
|
|
|
source.Reply(_("Channel \002%s\002 is no longer persistant."), ci->name.c_str());
|
|
}
|
|
else
|
|
this->OnSyntaxError(source, "PERSIST");
|
|
|
|
return MOD_CONT;
|
|
}
|
|
|
|
bool OnHelp(CommandSource &source, const Anope::string &)
|
|
{
|
|
source.Reply(_("Syntax: \002%s \037channel\037 PERSIST {ON | OFF}\002\n"
|
|
"Enables or disables the persistant channel setting.\n"
|
|
"When persistant is set, the service bot will remain\n"
|
|
"in the channel when it has emptied of users.\n"
|
|
" \n"
|
|
"If your IRCd does not a permanent (persistant) channel\n"
|
|
"mode you must have a service bot in your channel to\n"
|
|
"set persist on, and it can not be unassigned while persist\n"
|
|
"is on.\n"
|
|
" \n"
|
|
"If this network does not have BotServ enabled and does\n"
|
|
"not have a permanent channel mode, ChanServ will\n"
|
|
"join your channel when you set persist on (and leave when\n"
|
|
"it has been set off).\n"
|
|
" \n"
|
|
"If your IRCd has a permanent (persistant) channel mode\n"
|
|
"and is is set or unset (for any reason, including MLOCK),\n"
|
|
"persist is automatically set and unset for the channel aswell.\n"
|
|
"Additionally, services will set or unset this mode when you\n"
|
|
"set persist on or off."), this->name.c_str());
|
|
return true;
|
|
}
|
|
|
|
void OnSyntaxError(CommandSource &source, const Anope::string &)
|
|
{
|
|
SyntaxError(source, "SET PERSIST", _("SET \037channel\037 PERSIST {ON | OFF}"));
|
|
}
|
|
|
|
void OnServHelp(CommandSource &source)
|
|
{
|
|
source.Reply(_(" PERSIST Set the channel as permanent"));
|
|
}
|
|
};
|
|
|
|
class CommandCSSASetPersist : public CommandCSSetPersist
|
|
{
|
|
public:
|
|
CommandCSSASetPersist() : CommandCSSetPersist("chanserv/saset/persist")
|
|
{
|
|
}
|
|
|
|
void OnSyntaxError(CommandSource &source, const Anope::string &)
|
|
{
|
|
SyntaxError(source, "SASET PERSIST", _("SASET \002channel\002 PERSIST {ON | OFF}"));
|
|
}
|
|
};
|
|
|
|
class CSSetPersist : public Module
|
|
{
|
|
CommandCSSetPersist commandcssetpeace;
|
|
CommandCSSASetPersist commandcssasetpeace;
|
|
|
|
public:
|
|
CSSetPersist(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator)
|
|
{
|
|
this->SetAuthor("Anope");
|
|
this->SetType(CORE);
|
|
|
|
Command *c = FindCommand(ChanServ, "SET");
|
|
if (c)
|
|
c->AddSubcommand(this, &commandcssetpeace);
|
|
|
|
c = FindCommand(ChanServ, "SASET");
|
|
if (c)
|
|
c->AddSubcommand(this, &commandcssasetpeace);
|
|
}
|
|
|
|
~CSSetPersist()
|
|
{
|
|
Command *c = FindCommand(ChanServ, "SET");
|
|
if (c)
|
|
c->DelSubcommand(&commandcssetpeace);
|
|
|
|
c = FindCommand(ChanServ, "SASET");
|
|
if (c)
|
|
c->DelSubcommand(&commandcssasetpeace);
|
|
}
|
|
};
|
|
|
|
MODULE_INIT(CSSetPersist)
|