0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2025-01-05 20:34:29 +01:00
construct/extensions/force_user_invis.cc
2016-08-23 05:22:38 -07:00

31 lines
771 B
C++

/*
* Deny user to remove +i flag except they are irc operators
*
* Based off no_oper_invis.c by jilles
*
* Note that +i must be included in default_umodes
*/
using namespace ircd;
static const char noi_desc[] =
"Do not allow users to remove user mode +i unless they are operators";
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 }
};
DECLARE_MODULE_AV2(force_user_invis, NULL, NULL, NULL, NULL, noi_hfnlist, NULL, NULL, noi_desc);
static void
h_noi_umode_changed(hook_data_umode_changed *hdata)
{
client::client *source_p = hdata->client;
if (my(*source_p) && !IsOper(source_p) && !is_invisible(*source_p)) {
SetInvisible(source_p);
}
}