]> jfr.im git - solanum.git/blob - extensions/chm_quietunreg_compat.c
chmode: Get elevated access for op-only queries
[solanum.git] / extensions / chm_quietunreg_compat.c
1 /*
2 * Treat cmode +-R as +-q $~a.
3 * -- jilles
4 */
5
6 #include "stdinc.h"
7 #include "modules.h"
8 #include "client.h"
9 #include "hook.h"
10 #include "ircd.h"
11 #include "chmode.h"
12
13 static const char chm_quietunreg_compat_desc[] =
14 "Adds an emulated channel mode +R which is converted into mode +q $~a";
15
16 static int _modinit(void);
17 static void _moddeinit(void);
18 static void chm_quietunreg(struct Client *source_p, struct Channel *chptr,
19 int alevel, const char *arg, int *errors, int dir, char c, long mode_type);
20
21 DECLARE_MODULE_AV2(chm_quietunreg_compat, _modinit, _moddeinit, NULL, NULL, NULL, NULL, NULL, chm_quietunreg_compat_desc);
22
23 static int
24 _modinit(void)
25 {
26 chmode_table['R'] = (struct ChannelMode){ chm_quietunreg, 0, 0 };
27 return 0;
28 }
29
30 static void
31 _moddeinit(void)
32 {
33 chmode_table['R'] = (struct ChannelMode){ chm_nosuch, 0, 0 };
34 }
35
36 static void
37 chm_quietunreg(struct Client *source_p, struct Channel *chptr,
38 int alevel, const char *arg, int *errors, int dir, char c, long mode_type)
39 {
40 if (MyClient(source_p))
41 chm_ban(source_p, chptr, alevel, "$~a",
42 errors, dir, 'q', CHFL_QUIET);
43 else
44 chm_nosuch(source_p, chptr, alevel, NULL,
45 errors, dir, c, mode_type);
46 }