1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-08 00:43:12 +02:00
Files
unrealircd/src/modules/extbans/regnick.c
T

89 lines
2.1 KiB
C

/*
* Extended ban type: ban (or exempt or invex) registered nick (~b ~R:xyz)
* (C) Copyright 2003-.. Bram Matthys (Syzop) and the UnrealIRCd team
*
* 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(regnick)
= {
"chanmodes/extbans/regnick",
"$Id$",
"ExtBan ~R - Ban/exempt specific nick, but only if registered",
"3.2-b8-1",
NULL
};
/* Forward declarations */
char *extban_regnick_conv_param(char *para);
int extban_regnick_is_banned(aClient *sptr, aChannel *chptr, char *banin, int type);
/** Called upon module init */
MOD_INIT(regnick)
{
ExtbanInfo req;
req.flag = 'R';
req.is_ok = NULL;
req.conv_param = extban_regnick_conv_param;
req.is_banned = extban_regnick_is_banned;
req.options = EXTBOPT_INVEX;
if (!ExtbanAdd(modinfo->handle, req))
{
config_error("could not register extended ban type");
return MOD_FAILED;
}
MARK_AS_OFFICIAL_MODULE(modinfo);
return MOD_SUCCESS;
}
/** Called upon module load */
MOD_LOAD(regnick)
{
return MOD_SUCCESS;
}
/** Called upon unload */
MOD_UNLOAD(regnick)
{
return MOD_SUCCESS;
}
/** Registered user ban */
char *extban_regnick_conv_param(char *para)
{
static char retbuf[NICKLEN + 4];
strlcpy(retbuf, para, sizeof(retbuf));
if (do_nick_name(retbuf+3) == 0)
return NULL;
return retbuf;
}
int extban_regnick_is_banned(aClient *sptr, aChannel *chptr, char *banin, int type)
{
char *ban = banin+3;
if (IsRegNick(sptr) && !strcasecmp(ban, sptr->name))
return 1;
return 0;
}