/*
* Copyright (c) 2005 Atheme Development Group
* Copyright (c) 2017 ChatLounge IRC Network Development Team
*
* Rights to this code are documented in doc/LICENSE.
*
* This file contains routines to handle the GroupServ HELP command.
*
*/
#include "atheme.h"
#include "groupserv.h"
DECLARE_MODULE_V1
(
"groupserv/drop", false, _modinit, _moddeinit,
PACKAGE_STRING,
VENDOR_STRING
);
static void gs_cmd_drop(sourceinfo_t *si, int parc, char *parv[]);
command_t gs_drop = { "DROP", N_("Drops a group registration."), AC_AUTHENTICATED, 2, gs_cmd_drop, { .path = "groupserv/drop" } };
static void gs_cmd_drop(sourceinfo_t *si, int parc, char *parv[])
{
mygroup_t *mg;
char *name = parv[0];
char *key = parv[1];
char fullcmd[512];
char key0[80], key1[80];
if (!name)
{
command_fail(si, fault_needmoreparams, STR_INSUFFICIENT_PARAMS, "DROP");
command_fail(si, fault_needmoreparams, _("Syntax: DROP <!group>"));
return;
}
if (*name != '!')
{
command_fail(si, fault_badparams, STR_INVALID_PARAMS, "DROP");
command_fail(si, fault_badparams, _("Syntax: DROP <!group>"));
return;
}
if (!(mg = mygroup_find(name)))
{
command_fail(si, fault_nosuch_target, _("Group \2%s\2 does not exist."), name);
return;
}
if (!groupacs_sourceinfo_has_flag(mg, si, GA_FOUNDER))
{
command_fail(si, fault_noprivs, _("You are not authorized to execute this command."));
return;
}
if (si->su != NULL)
{
if (!key)
{
create_challenge(si, entity(mg)->name, 0, key0);
snprintf(fullcmd, sizeof fullcmd, "/%s%s DROP %s %s",
(ircd->uses_rcommand == false) ? "msg " : "",
si->service->disp, entity(mg)->name, key0);
command_success_nodata(si, _("To avoid accidental use of this command, this operation has to be confirmed. Please confirm by replying with \2%s\2"),
fullcmd);
return;
}
/* accept current and previous key */
create_challenge(si, entity(mg)->name, 0, key0);
create_challenge(si, entity(mg)->name, 1, key1);
if (strcmp(key, key0) && strcmp(key, key1))
{
command_fail(si, fault_badparams, _("Invalid key for %s."), "DROP");
return;
}
}
logcommand(si, CMDLOG_REGISTER, "DROP: \2%s\2", entity(mg)->name);
remove_group_chanacs(mg);
hook_call_group_drop(mg);
command_success_nodata(si, _("The group \2%s\2 has been dropped."), entity(mg)->name);
object_unref(mg);
return;
}
void _modinit(module_t *m)
{
use_groupserv_main_symbols(m);
service_named_bind_command("groupserv", &gs_drop);
}
void _moddeinit(module_unload_intent_t intent)
{
service_named_unbind_command("groupserv", &gs_drop);
}