]> jfr.im git - solanum.git/blame - extensions/extb_oper.c
modules: Add AV2 descriptions to all m_u* modules
[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
13static int _modinit(void);
14static void _moddeinit(void);
15static int eb_oper(const char *data, struct Client *client_p, struct Channel *chptr, long mode_type);
c81afd15 16static const char extb_desc[] = "Oper ($o) extban type";
212380e3 17
c81afd15 18DECLARE_MODULE_AV2(extb_oper, _modinit, _moddeinit, NULL, NULL, NULL, NULL, NULL, extb_desc);
212380e3
AC
19
20static int
21_modinit(void)
22{
23 extban_table['o'] = eb_oper;
24
25 return 0;
26}
27
28static void
29_moddeinit(void)
30{
31 extban_table['o'] = NULL;
32}
33
34static int eb_oper(const char *data, struct Client *client_p,
35 struct Channel *chptr, long mode_type)
36{
37
38 (void)chptr;
212380e3 39 (void)mode_type;
655e7dee 40
adb3f9d0 41 if (data != NULL)
947d2bba
AC
42 {
43 struct PrivilegeSet *set = privilegeset_get(data);
44 if (set != NULL && client_p->localClient->privset == set)
45 return EXTBAN_MATCH;
46
4862f41a
KB
47 /* $o:admin or whatever */
48 return HasPrivilege(client_p, data) ? EXTBAN_MATCH : EXTBAN_NOMATCH;
947d2bba 49 }
655e7dee 50
4862f41a 51 return IsOper(client_p) ? EXTBAN_MATCH : EXTBAN_NOMATCH;
212380e3 52}