summaryrefslogtreecommitdiff
path: root/modules/commands/cs_drop.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/commands/cs_drop.cpp')
-rw-r--r--modules/commands/cs_drop.cpp102
1 files changed, 102 insertions, 0 deletions
diff --git a/modules/commands/cs_drop.cpp b/modules/commands/cs_drop.cpp
new file mode 100644
index 000000000..eb01875db
--- /dev/null
+++ b/modules/commands/cs_drop.cpp
@@ -0,0 +1,102 @@
+/* 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 CommandCSDrop : public Command
+{
+ public:
+ CommandCSDrop(Module *creator) : Command(creator, "chanserv/drop", 1, 1)
+ {
+ this->SetDesc(_("Cancel the registration of a channel"));
+ this->SetSyntax(_("\037channel\037"));
+ }
+
+ void Execute(CommandSource &source, const std::vector<Anope::string> &params)
+ {
+ const Anope::string &chan = params[0];
+
+ User *u = source.u;
+
+ if (readonly)
+ {
+ source.Reply(_("Sorry, channel de-registration is temporarily disabled.")); // XXX: READ_ONLY_MODE?
+ return;
+ }
+
+ ChannelInfo *ci = cs_findchan(params[0]);
+ if (ci == NULL)
+ {
+ source.Reply(CHAN_X_NOT_REGISTERED, params[0].c_str());
+ return;
+ }
+
+ ci = cs_findchan(chan);
+
+ if (ci->HasFlag(CI_SUSPENDED) && !u->HasCommand("chanserv/chanserv/drop"))
+ {
+ source.Reply(CHAN_X_SUSPENDED, chan.c_str());
+ return;
+ }
+
+ if ((ci->HasFlag(CI_SECUREFOUNDER) ? !IsFounder(u, ci) : !ci->HasPriv(u, CA_FOUNDER)) && !u->HasCommand("chanserv/chanserv/drop"))
+ {
+ source.Reply(ACCESS_DENIED);
+ return;
+ }
+
+ if (ci->c && ModeManager::FindChannelModeByName(CMODE_REGISTERED))
+ ci->c->RemoveMode(NULL, CMODE_REGISTERED, "", false);
+
+ bool override = (ci->HasFlag(CI_SECUREFOUNDER) ? !IsFounder(u, ci) : !ci->HasPriv(u, CA_FOUNDER));
+ Log(override ? LOG_OVERRIDE : LOG_COMMAND, u, this, ci) << "founder: " << (ci->GetFounder() ? ci->GetFounder()->display : "none");
+
+ delete ci;
+
+ source.Reply(_("Channel \002%s\002 has been dropped."), chan.c_str());
+
+ FOREACH_MOD(I_OnChanDrop, OnChanDrop(chan));
+
+ return;
+ }
+
+ bool OnHelp(CommandSource &source, const Anope::string &subcommand)
+ {
+ User *u = source.u;
+ this->SendSyntax(source);
+ source.Reply(" ");
+ if (u->IsServicesOper())
+ source.Reply(_("Unregisters the named channel. Only \002Services Operators\002\n"
+ "can drop a channel for which they have not identified."));
+ else
+ source.Reply(_("Unregisters the named channel. Can only be used by\n"
+ "\002channel founder\002."));
+
+ return true;
+ }
+};
+
+class CSDrop : public Module
+{
+ CommandCSDrop commandcsdrop;
+
+ public:
+ CSDrop(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, CORE), commandcsdrop(this)
+ {
+ this->SetAuthor("Anope");
+
+ ModuleManager::RegisterService(&commandcsdrop);
+ }
+};
+
+MODULE_INIT(CSDrop)