pissircd/src/modules/third/noglobalmsg.c

73 lines
1.7 KiB
C

/*
* IRC - Internet Relay Chat, src/modules/third/noglobalmsg.c
* (C) 2021 Polsaker - All rights reserved.
*
* See file AUTHORS in IRC package for additional names of
* the programmers.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 1, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "unrealircd.h"
ModuleHeader MOD_HEADER
= {
"third/noglobalmsg",
"1.1",
"Disables PRIVMSG $*",
"Polsaker",
"unrealircd-6",
};
CMD_OVERRIDE_FUNC(override_privmsg);
MOD_INIT()
{
return MOD_SUCCESS;
}
MOD_LOAD()
{
if (!CommandOverrideAdd(modinfo->handle, "PRIVMSG", 0, override_privmsg))
return MOD_FAILED;
return MOD_SUCCESS;
}
MOD_UNLOAD()
{
return MOD_SUCCESS;
}
CMD_OVERRIDE_FUNC(override_privmsg)
{
char *targetstr, *p;
char targets[BUFSIZE];
if (parc < 3 || BadPtr(parv[2]))
return;
strlcpy(targets, parv[1], sizeof(targets));
for (p = NULL, targetstr = strtoken(&p, targets, ","); targetstr; targetstr = strtoken(&p, NULL, ","))
{
if (*targetstr == '$')
{
sendnumeric(client, ERR_YOUREBANNEDCREEP, "Why would you want to do that?!");
return;
}
}
CallCommandOverride(ovr, client, recv_mtags, parc, parv);
}