]> jfr.im git - solanum.git/blob - extensions/extb_oper.c
extensions: add AV2 description strings to a few modules
[solanum.git] / extensions / extb_oper.c
1 /*
2 * Oper extban type: matches opers
3 * -- jilles
4 */
5
6 #include "stdinc.h"
7 #include "modules.h"
8 #include "client.h"
9 #include "privilege.h"
10 #include "s_newconf.h"
11 #include "ircd.h"
12
13 static int _modinit(void);
14 static void _moddeinit(void);
15 static int eb_oper(const char *data, struct Client *client_p, struct Channel *chptr, long mode_type);
16 static const char extb_desc[] = "Oper ($o) extban type";
17
18 DECLARE_MODULE_AV2(extb_oper, _modinit, _moddeinit, NULL, NULL, NULL, NULL, NULL, extb_desc);
19
20 static int
21 _modinit(void)
22 {
23 extban_table['o'] = eb_oper;
24
25 return 0;
26 }
27
28 static void
29 _moddeinit(void)
30 {
31 extban_table['o'] = NULL;
32 }
33
34 static int eb_oper(const char *data, struct Client *client_p,
35 struct Channel *chptr, long mode_type)
36 {
37
38 (void)chptr;
39 (void)mode_type;
40
41 if (data != NULL)
42 {
43 struct PrivilegeSet *set = privilegeset_get(data);
44 if (set != NULL && client_p->localClient->privset == set)
45 return EXTBAN_MATCH;
46
47 /* $o:admin or whatever */
48 return HasPrivilege(client_p, data) ? EXTBAN_MATCH : EXTBAN_NOMATCH;
49 }
50
51 return IsOper(client_p) ? EXTBAN_MATCH : EXTBAN_NOMATCH;
52 }