]> jfr.im git - irc/rqf/shadowircd.git/blame - extensions/extb_channel.c
Disallow mIRC italics in channel names when disable_fake_channels
[irc/rqf/shadowircd.git] / extensions / extb_channel.c
CommitLineData
212380e3 1/*
2 * Channel extban type: matches users who are in a certain public channel
3 * -- jilles
4 *
212380e3 5 */
6
7#include "stdinc.h"
8#include "modules.h"
9#include "client.h"
10#include "channel.h"
11#include "hash.h"
12#include "ircd.h"
13
14static int _modinit(void);
15static void _moddeinit(void);
16static int eb_channel(const char *data, struct Client *client_p, struct Channel *chptr, long mode_type);
17
18DECLARE_MODULE_AV1(extb_channel, _modinit, _moddeinit, NULL, NULL, NULL, "$Revision: 1723 $");
19
20static int
21_modinit(void)
22{
23 extban_table['c'] = eb_channel;
24
25 return 0;
26}
27
28static void
29_moddeinit(void)
30{
31 extban_table['c'] = NULL;
32}
33
34static int eb_channel(const char *data, struct Client *client_p,
35 struct Channel *chptr, long mode_type)
36{
37 struct Channel *chptr2;
38
39 (void)chptr;
40 (void)mode_type;
41 if (data == NULL)
42 return EXTBAN_INVALID;
43 chptr2 = find_channel(data);
44 if (chptr2 == NULL)
45 return EXTBAN_INVALID;
46 /* require consistent target */
47 if (chptr->chname[0] == '#' && data[0] == '&')
48 return EXTBAN_INVALID;
49 /* privacy! don't allow +s/+p channels to influence another channel */
50 if (!PubChannel(chptr2))
51 return EXTBAN_INVALID;
52 return IsMember(client_p, chptr2) ? EXTBAN_MATCH : EXTBAN_NOMATCH;
53}