summaryrefslogtreecommitdiff
path: root/modules/core/cs_set_persist.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/core/cs_set_persist.cpp')
-rw-r--r--modules/core/cs_set_persist.cpp180
1 files changed, 0 insertions, 180 deletions
diff --git a/modules/core/cs_set_persist.cpp b/modules/core/cs_set_persist.cpp
deleted file mode 100644
index 3cc9564c4..000000000
--- a/modules/core/cs_set_persist.cpp
+++ /dev/null
@@ -1,180 +0,0 @@
-/* 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(Module *creator, const Anope::string &cname = "chanserv/set/persist") : Command(creator, cname, 2, 2)
- {
- this->SetDesc(_("Set the channel as permanent"));
- this->SetSyntax(_("\037channel\037 {ON | OFF}"));
- }
-
- void Execute(CommandSource &source, const std::vector<Anope::string> &params)
- {
- User *u = source.u;
- ChannelInfo *ci = cs_findchan(params[0]);
- if (ci == NULL)
- {
- source.Reply(CHAN_X_NOT_REGISTERED, params[0].c_str());
- return;
- }
-
- if (source.permission.empty() && !ci->HasPriv(u, CA_SET))
- {
- source.Reply(ACCESS_DENIED);
- return;
- }
-
- 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)
- {
- BotInfo *bi = findbot(Config->ChanServ);
- if (!bi)
- {
- source.Reply(_("ChanServ is required to enable persist on this network."));
- return;
- }
- bi->Assign(NULL, ci);
- if (!ci->c->FindUser(bi))
- bi->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->BotServ.empty() && ci->bi)
- {
- BotInfo *bi = findbot(Config->ChanServ);
- if (!bi)
- {
- source.Reply(_("ChanServ is required to enable persist on this network."));
- return;
- }
- /* Unassign bot */
- bi->UnAssign(NULL, ci);
- }
- }
-
- source.Reply(_("Channel \002%s\002 is no longer persistant."), ci->name.c_str());
- }
- else
- this->OnSyntaxError(source, "PERSIST");
-
- return;
- }
-
- bool OnHelp(CommandSource &source, const Anope::string &)
- {
- this->SendSyntax(source);
- source.Reply(" ");
- source.Reply(_("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."));
- return true;
- }
-};
-
-class CommandCSSASetPersist : public CommandCSSetPersist
-{
- public:
- CommandCSSASetPersist(Module *creator) : CommandCSSetPersist(creator, "chanserv/saset/persist")
- {
- }
-};
-
-class CSSetPersist : public Module
-{
- CommandCSSetPersist commandcssetpeace;
- CommandCSSASetPersist commandcssasetpeace;
-
- public:
- CSSetPersist(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, CORE),
- commandcssetpeace(this), commandcssasetpeace(this)
- {
- this->SetAuthor("Anope");
-
- ModuleManager::RegisterService(&commandcssetpeace);
- ModuleManager::RegisterService(&commandcssasetpeace);
- }
-};
-
-MODULE_INIT(CSSetPersist)