1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
/*
* Copyright (c) 2011 William Pitcock <nenolod@dereferenced.org>
*
* Rights to this code are as documented in doc/LICENSE.
*/
#include "atheme.h"
#include "exttarget.h"
DECLARE_MODULE_V1
(
"exttarget/oper", false, _modinit, _moddeinit,
PACKAGE_STRING,
VENDOR_STRING
);
static mowgli_patricia_t **exttarget_tree = NULL;
static myentity_t dummy_entity;
static chanacs_t *dummy_match_user(chanacs_t *ca, user_t *u)
{
if (is_ircop(u))
return ca;
return NULL;
}
static chanacs_t *dummy_match_entity(chanacs_t *ca, myentity_t *mt)
{
if (ca->entity == mt)
return ca;
return NULL;
}
static bool dummy_can_register_channel(myentity_t *mt)
{
return false;
}
static bool dummy_allow_foundership(myentity_t *mt)
{
return false;
}
static entity_chanacs_validation_vtable_t dummy_validate = {
.match_entity = dummy_match_entity,
.match_user = dummy_match_user,
.can_register_channel = dummy_can_register_channel,
.allow_foundership = dummy_allow_foundership,
};
static myentity_t dummy_entity = {
.name = "$oper",
.type = ENT_EXTTARGET,
.chanacs_validate = &dummy_validate,
};
static myentity_t *oper_validate_f(const char *param)
{
return &dummy_entity;
}
void _modinit(module_t *m)
{
MODULE_TRY_REQUEST_SYMBOL(m, exttarget_tree, "exttarget/main", "exttarget_tree");
mowgli_patricia_add(*exttarget_tree, "oper", oper_validate_f);
object_init(object(&dummy_entity), "$oper", NULL);
}
void _moddeinit(module_unload_intent_t intent)
{
mowgli_patricia_delete(*exttarget_tree, "oper");
}
|