Skip to content

Instantly share code, notes, and snippets.

@H7-25
Created January 23, 2024 12:07
Show Gist options
  • Save H7-25/62f99b431991e3d099b43f396f9e8ce0 to your computer and use it in GitHub Desktop.
Save H7-25/62f99b431991e3d099b43f396f9e8ce0 to your computer and use it in GitHub Desktop.
/* NickServ core functions
*
* (C) 2003-2021 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 CommandNSDrop : public Command
{
public:
CommandNSDrop(Module *creator) : Command(creator, "nickserv/drop", 1, 1)
{
this->SetSyntax(_("\037nickname\037"));
this->SetDesc(_("Cancel the registration of a nickname"));
}
void Execute(CommandSource &source, const std::vector<Anope::string> &params) anope_override
{
const Anope::string &nick = params[0];
if (Anope::ReadOnly && !source.HasPriv("nickserv/drop"))
{
source.Reply(_("Sorry, nickname de-registration is temporarily disabled."));
return;
}
NickAlias *na = NickAlias::Find(nick);
if (!na)
{
source.Reply(NICK_X_NOT_REGISTERED, nick.c_str());
return;
}
const NickCore *nc;
nc = source.GetAccount();
bool is_mine = source.GetAccount() == na->nc;
if (is_mine && (nc->aliases->size() > 1) && (na->nc->display == nick))
{
source.Reply(_("You must drop all aliases in the group before proceeding to delete your account."));
return;
}
if (!is_mine && !source.HasPriv("nickserv/drop"))
source.Reply(ACCESS_DENIED);
else if (Config->GetModule("nickserv")->Get<bool>("secureadmins", "yes") && !is_mine && na->nc->IsServicesOper())
source.Reply(_("You may not drop other Services Operators' nicknames."));
else
{
FOREACH_MOD(OnNickDrop, (source, na));
Log(!is_mine ? LOG_ADMIN : LOG_COMMAND, source, this) << "to drop nickname " << na->nick << " (group: " << na->nc->display << ") (email: " << (!na->nc->email.empty() ? na->nc->email : "none") << ")";
delete na;
source.Reply(_("Nickname \002%s\002 has been dropped."), nick.c_str());
}
}
bool OnHelp(CommandSource &source, const Anope::string &subcommand) anope_override
{
this->SendSyntax(source);
source.Reply(" ");
source.Reply(_("Drops the given nick from the database. Once your nickname\n"
"is dropped you may lose all of your access and channels that\n"
"you may own. Any other user will be able to gain control of\n"
"this nick."));
if (!source.HasPriv("nickserv/drop"))
source.Reply(_("You may drop any nick within your group."));
else
source.Reply(_("As a Services Operator, you may drop any nick."));
return true;
}
};
class NSDrop : public Module
{
CommandNSDrop commandnsdrop;
public:
NSDrop(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, VENDOR),
commandnsdrop(this)
{
}
};
MODULE_INIT(NSDrop)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment