2012-11-01 07:48:08 +01:00
|
|
|
/*
|
|
|
|
* restrict unauthenticated users from doing anything as channel op
|
|
|
|
*/
|
|
|
|
|
2016-08-13 05:05:54 +02:00
|
|
|
using namespace ircd;
|
|
|
|
|
2016-03-07 10:50:03 +01:00
|
|
|
static const char restrict_desc[] =
|
|
|
|
"Restrict unautenticated users from doing anything as channel ops";
|
|
|
|
|
2012-11-01 07:48:08 +01:00
|
|
|
static void hack_channel_access(void *data);
|
|
|
|
|
|
|
|
mapi_hfn_list_av1 restrict_unauthenticated_hfnlist[] = {
|
|
|
|
{ "get_channel_access", (hookfn) hack_channel_access },
|
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
hack_channel_access(void *vdata)
|
|
|
|
{
|
|
|
|
hook_data_channel_approval *data = (hook_data_channel_approval *) vdata;
|
|
|
|
|
2016-08-23 04:33:36 +02:00
|
|
|
if (!my(*data->client))
|
2012-11-01 07:48:08 +01:00
|
|
|
return;
|
|
|
|
|
2016-08-22 03:57:43 +02:00
|
|
|
if (suser(user(*data->client)).empty())
|
2012-11-01 07:48:08 +01:00
|
|
|
data->approved = 0;
|
|
|
|
}
|
|
|
|
|
2016-03-07 10:50:03 +01:00
|
|
|
DECLARE_MODULE_AV2(restrict_unauthenticated, NULL, NULL, NULL, NULL,
|
|
|
|
restrict_unauthenticated_hfnlist, NULL, NULL, restrict_desc);
|