2007-01-25 07:40:21 +01:00
|
|
|
/*
|
|
|
|
* Oper extban type: matches opers
|
|
|
|
* -- jilles
|
|
|
|
*/
|
|
|
|
|
2016-07-01 05:04:00 +02:00
|
|
|
#include <ircd/stdinc.h>
|
|
|
|
#include <ircd/modules.h>
|
|
|
|
#include <ircd/client.h>
|
|
|
|
#include <ircd/privilege.h>
|
|
|
|
#include <ircd/s_newconf.h>
|
|
|
|
#include <ircd/ircd.h>
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-03-09 08:29:41 +01:00
|
|
|
static const char extb_desc[] = "Oper ($o) extban type";
|
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
static int _modinit(void);
|
|
|
|
static void _moddeinit(void);
|
|
|
|
static int eb_oper(const char *data, struct Client *client_p, struct Channel *chptr, long mode_type);
|
|
|
|
|
2016-03-07 07:31:41 +01:00
|
|
|
DECLARE_MODULE_AV2(extb_oper, _modinit, _moddeinit, NULL, NULL, NULL, NULL, NULL, extb_desc);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
static int
|
|
|
|
_modinit(void)
|
|
|
|
{
|
|
|
|
extban_table['o'] = eb_oper;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_moddeinit(void)
|
|
|
|
{
|
|
|
|
extban_table['o'] = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int eb_oper(const char *data, struct Client *client_p,
|
|
|
|
struct Channel *chptr, long mode_type)
|
|
|
|
{
|
|
|
|
|
|
|
|
(void)chptr;
|
|
|
|
(void)mode_type;
|
2012-01-22 11:05:34 +01:00
|
|
|
|
2007-12-18 23:00:42 +01:00
|
|
|
if (data != NULL)
|
2016-01-06 02:12:38 +01:00
|
|
|
{
|
|
|
|
struct PrivilegeSet *set = privilegeset_get(data);
|
|
|
|
if (set != NULL && client_p->localClient->privset == set)
|
|
|
|
return EXTBAN_MATCH;
|
|
|
|
|
2012-01-24 18:13:32 +01:00
|
|
|
/* $o:admin or whatever */
|
|
|
|
return HasPrivilege(client_p, data) ? EXTBAN_MATCH : EXTBAN_NOMATCH;
|
2016-01-06 02:12:38 +01:00
|
|
|
}
|
2012-01-22 11:05:34 +01:00
|
|
|
|
2012-01-24 18:13:32 +01:00
|
|
|
return IsOper(client_p) ? EXTBAN_MATCH : EXTBAN_NOMATCH;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|