2016-01-06 01:44:17 +01:00
|
|
|
/*
|
|
|
|
* Override WHOIS logic to hide channel memberships that are not common.
|
|
|
|
* -- kaniini
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "stdinc.h"
|
|
|
|
#include "modules.h"
|
|
|
|
#include "client.h"
|
|
|
|
#include "hook.h"
|
|
|
|
#include "ircd.h"
|
|
|
|
#include "send.h"
|
|
|
|
#include "s_conf.h"
|
|
|
|
#include "s_newconf.h"
|
|
|
|
|
2016-03-09 08:29:41 +01:00
|
|
|
static const char hide_desc[] = "Hides channel memberships not shared";
|
|
|
|
|
2016-01-06 01:44:17 +01:00
|
|
|
static void h_huc_doing_whois_channel_visibility(hook_data_client *);
|
|
|
|
|
|
|
|
mapi_hfn_list_av1 huc_hfnlist[] = {
|
|
|
|
{ "doing_whois_channel_visibility", (hookfn) h_huc_doing_whois_channel_visibility },
|
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
|
|
|
|
2016-03-07 10:08:40 +01:00
|
|
|
DECLARE_MODULE_AV2(hide_uncommon_channels, NULL, NULL, NULL, NULL, huc_hfnlist, NULL, NULL, hide_desc);
|
2016-01-06 01:44:17 +01:00
|
|
|
|
|
|
|
static void
|
|
|
|
h_huc_doing_whois_channel_visibility(hook_data_client *hdata)
|
|
|
|
{
|
|
|
|
hdata->approved = ((PubChannel(hdata->chptr) && !IsInvisible(hdata->target)) || IsMember((hdata->client), (hdata->chptr)));
|
|
|
|
}
|