]> jfr.im git - solanum.git/blame - extensions/extb_oper.c
m_stats: z: remove unnecessary casting and fix format strings
[solanum.git] / extensions / extb_oper.c
CommitLineData
212380e3
AC
1/*
2 * Oper extban type: matches opers
3 * -- jilles
212380e3
AC
4 */
5
6#include "stdinc.h"
7#include "modules.h"
8#include "client.h"
655e7dee
AC
9#include "privilege.h"
10#include "s_newconf.h"
212380e3
AC
11#include "ircd.h"
12
eeabf33a
EM
13static const char extb_desc[] = "Oper ($o) extban type";
14
212380e3
AC
15static int _modinit(void);
16static void _moddeinit(void);
17static int eb_oper(const char *data, struct Client *client_p, struct Channel *chptr, long mode_type);
18
c81afd15 19DECLARE_MODULE_AV2(extb_oper, _modinit, _moddeinit, NULL, NULL, NULL, NULL, NULL, extb_desc);
212380e3
AC
20
21static int
22_modinit(void)
23{
24 extban_table['o'] = eb_oper;
25
26 return 0;
27}
28
29static void
30_moddeinit(void)
31{
32 extban_table['o'] = NULL;
33}
34
35static int eb_oper(const char *data, struct Client *client_p,
36 struct Channel *chptr, long mode_type)
37{
38
39 (void)chptr;
212380e3 40 (void)mode_type;
655e7dee 41
adb3f9d0 42 if (data != NULL)
947d2bba
AC
43 {
44 struct PrivilegeSet *set = privilegeset_get(data);
ed3ca2ff 45 if (set != NULL && client_p->user->privset == set)
947d2bba
AC
46 return EXTBAN_MATCH;
47
4862f41a
KB
48 /* $o:admin or whatever */
49 return HasPrivilege(client_p, data) ? EXTBAN_MATCH : EXTBAN_NOMATCH;
947d2bba 50 }
655e7dee 51
4862f41a 52 return IsOper(client_p) ? EXTBAN_MATCH : EXTBAN_NOMATCH;
212380e3 53}