/* * Copyright (c) 2005 William Pitcock * Copyright (c) 2007 Jilles Tjoelker * Rights to this code are as documented in doc/LICENSE. * * Prevents you from being added to access lists. * */ #include "atheme.h" #include "uplink.h" DECLARE_MODULE_V1 ( "nickserv/set_neverop", false, _modinit, _moddeinit, PACKAGE_STRING, "Atheme Development Group " ); mowgli_patricia_t **ns_set_cmdtree; static void ns_cmd_set_neverop(sourceinfo_t *si, int parc, char *parv[]); command_t ns_set_neverop = { "NEVEROP", N_("Prevents you from being added to access lists."), AC_NONE, 1, ns_cmd_set_neverop, { .path = "nickserv/set_neverop" } }; void _modinit(module_t *m) { MODULE_USE_SYMBOL(ns_set_cmdtree, "nickserv/set_core", "ns_set_cmdtree"); command_add(&ns_set_neverop, *ns_set_cmdtree); } void _moddeinit(void) { command_delete(&ns_set_neverop, *ns_set_cmdtree); } /* SET NEVEROP [ON|OFF] */ static void ns_cmd_set_neverop(sourceinfo_t *si, int parc, char *parv[]) { char *params = strtok(parv[0], " "); if (si->smu == NULL) return; if (params == NULL) { command_fail(si, fault_needmoreparams, STR_INSUFFICIENT_PARAMS, "NEVEROP"); return; } if (!strcasecmp("ON", params)) { if (MU_NEVEROP & si->smu->flags) { command_fail(si, fault_nochange, _("The \2%s\2 flag is already set for account \2%s\2."), "NEVEROP", entity(si->smu)->name); return; } logcommand(si, CMDLOG_SET, "SET:NEVEROP:ON"); si->smu->flags |= MU_NEVEROP; command_success_nodata(si, _("The \2%s\2 flag has been set for account \2%s\2."), "NEVEROP", entity(si->smu)->name); return; } else if (!strcasecmp("OFF", params)) { if (!(MU_NEVEROP & si->smu->flags)) { command_fail(si, fault_nochange, _("The \2%s\2 flag is not set for account \2%s\2."), "NEVEROP", entity(si->smu)->name); return; } logcommand(si, CMDLOG_SET, "SET:NEVEROP:OFF"); si->smu->flags &= ~MU_NEVEROP; command_success_nodata(si, _("The \2%s\2 flag has been removed for account \2%s\2."), "NEVEROP", entity(si->smu)->name); return; } else { command_fail(si, fault_badparams, STR_INVALID_PARAMS, "NEVEROP"); return; } } /* vim:cinoptions=>s,e0,n0,f0,{0,}0,^0,=s,ps,t0,c3,+s,(2s,us,)20,*30,gs,hs * vim:ts=8 * vim:sw=8 * vim:noexpandtab */