pissircd/src/modules/chanmodes/nocolor.c

143 lines
3.6 KiB
C

/*
* Block Color UnrealIRCd Module (Channel Mode +c)
* (C) Copyright 2000-.. 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"
CMD_FUNC(nocolor);
ModuleHeader MOD_HEADER
= {
"chanmodes/nocolor",
"4.2",
"Channel Mode +c",
"UnrealIRCd Team",
"unrealircd-6",
};
Cmode_t EXTCMODE_NOCOLOR;
#define IsNoColor(channel) (channel->mode.mode & EXTCMODE_NOCOLOR)
int nocolor_can_send_to_channel(Client *client, Channel *channel, Membership *lp, const char **msg, const char **errmsg, SendType sendtype);
const char *nocolor_prelocalpart(Client *client, Channel *channel, const char *comment);
const char *nocolor_prelocalquit(Client *client, const char *comment);
MOD_TEST()
{
return MOD_SUCCESS;
}
MOD_INIT()
{
CmodeInfo req;
/* Channel mode */
memset(&req, 0, sizeof(req));
req.paracount = 0;
req.letter = 'c';
req.is_ok = extcmode_default_requirechop;
CmodeAdd(modinfo->handle, req, &EXTCMODE_NOCOLOR);
HookAdd(modinfo->handle, HOOKTYPE_CAN_SEND_TO_CHANNEL, 0, nocolor_can_send_to_channel);
HookAddConstString(modinfo->handle, HOOKTYPE_PRE_LOCAL_PART, 0, nocolor_prelocalpart);
HookAddConstString(modinfo->handle, HOOKTYPE_PRE_LOCAL_QUIT_CHAN, 0, nocolor_prelocalpart);
HookAddConstString(modinfo->handle, HOOKTYPE_PRE_LOCAL_QUIT, 0, nocolor_prelocalquit);
MARK_AS_OFFICIAL_MODULE(modinfo);
return MOD_SUCCESS;
}
MOD_LOAD()
{
return MOD_SUCCESS;
}
MOD_UNLOAD()
{
return MOD_SUCCESS;
}
static int IsUsingColor(const char *s)
{
if (!s)
return 0;
for (; *s; s++)
if (*s == 3 || *s == 27 || *s == 4 || *s == 22) /* mirc color, ansi, rgb, reverse */
return 1;
return 0;
}
int nocolor_can_send_to_channel(Client *client, Channel *channel, Membership *lp, const char **msg, const char **errmsg, SendType sendtype)
{
Hook *h;
int i;
if (MyUser(client) && IsNoColor(channel) && IsUsingColor(*msg))
{
for (h = Hooks[HOOKTYPE_CAN_BYPASS_CHANNEL_MESSAGE_RESTRICTION]; h; h = h->next)
{
i = (*(h->func.intfunc))(client, channel, BYPASS_CHANMSG_COLOR);
if (i == HOOK_ALLOW)
return HOOK_CONTINUE; /* bypass this restriction */
if (i != HOOK_CONTINUE)
break;
}
*errmsg = "Color is not permitted in this channel";
return HOOK_DENY;
}
return HOOK_CONTINUE;
}
const char *nocolor_prelocalpart(Client *client, Channel *channel, const char *comment)
{
if (!comment)
return NULL;
if (MyUser(client) && IsNoColor(channel) && IsUsingColor(comment))
return NULL;
return comment;
}
/** Is any channel where the user is in +c? */
static int IsAnyChannelNoColor(Client *client)
{
Membership *lp;
for (lp = client->user->channel; lp; lp = lp->next)
if (IsNoColor(lp->channel))
return 1;
return 0;
}
const char *nocolor_prelocalquit(Client *client, const char *comment)
{
if (!comment)
return NULL;
if (MyUser(client) && !BadPtr(comment) && IsUsingColor(comment) && IsAnyChannelNoColor(client))
return NULL;
return comment;
}