2008-03-29 21:36:39 +01:00
|
|
|
/*
|
|
|
|
* Deny user to remove +i flag except they are irc operators
|
|
|
|
*
|
|
|
|
* Based off no_oper_invis.c by jilles
|
|
|
|
*
|
2008-03-29 21:37:12 +01:00
|
|
|
* Note that +i must be included in default_umodes
|
2008-03-29 21:36:39 +01:00
|
|
|
*/
|
|
|
|
|
2016-08-13 05:05:54 +02:00
|
|
|
using namespace ircd;
|
|
|
|
|
2016-03-07 11:11:51 +01:00
|
|
|
static const char noi_desc[] =
|
|
|
|
"Do not allow users to remove user mode +i unless they are operators";
|
|
|
|
|
2008-03-29 21:36:39 +01:00
|
|
|
static void h_noi_umode_changed(hook_data_umode_changed *);
|
|
|
|
|
|
|
|
mapi_hfn_list_av1 noi_hfnlist[] = {
|
|
|
|
{ "umode_changed", (hookfn) h_noi_umode_changed },
|
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
|
|
|
|
2016-03-07 11:11:51 +01:00
|
|
|
DECLARE_MODULE_AV2(force_user_invis, NULL, NULL, NULL, NULL, noi_hfnlist, NULL, NULL, noi_desc);
|
2008-03-29 21:36:39 +01:00
|
|
|
|
|
|
|
static void
|
|
|
|
h_noi_umode_changed(hook_data_umode_changed *hdata)
|
|
|
|
{
|
2016-08-22 03:57:43 +02:00
|
|
|
client::client *source_p = hdata->client;
|
2008-03-29 21:36:39 +01:00
|
|
|
|
2016-08-24 00:25:09 +02:00
|
|
|
if (my(*source_p) && !is(*source_p, umode::OPER) && !is(*source_p, umode::INVISIBLE)) {
|
|
|
|
set(*source_p, umode::INVISIBLE);
|
2008-03-29 21:36:39 +01:00
|
|
|
}
|
|
|
|
}
|