mirror of
https://github.com/matrix-construct/construct
synced 2024-11-03 04:18:55 +01:00
46 lines
1 KiB
C++
46 lines
1 KiB
C++
using namespace ircd;
|
|
|
|
static const char chm_adminonly_desc[] =
|
|
"Enables channel mode +A that blocks non-admins from joining a channel";
|
|
|
|
static void h_can_join(hook_data_channel *);
|
|
|
|
mapi_hfn_list_av1 adminonly_hfnlist[] = {
|
|
{ "can_join", (hookfn) h_can_join },
|
|
{ NULL, NULL }
|
|
};
|
|
|
|
static chan::mode::type mymode;
|
|
|
|
static int
|
|
_modinit(void)
|
|
{
|
|
using namespace chan::mode;
|
|
|
|
mymode = add('A', category::D, functor::staff);
|
|
if (mymode == 0)
|
|
return -1;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void
|
|
_moddeinit(void)
|
|
{
|
|
chan::mode::orphan('A');
|
|
}
|
|
|
|
DECLARE_MODULE_AV2(chm_adminonly, _modinit, _moddeinit, NULL, NULL, adminonly_hfnlist, NULL, NULL, chm_adminonly_desc);
|
|
|
|
static void
|
|
h_can_join(hook_data_channel *data)
|
|
{
|
|
client::client *source_p = data->client;
|
|
const auto &chptr(data->chptr);
|
|
|
|
if((chptr->mode.mode & mymode) && !is(*source_p, umode::ADMIN)) {
|
|
sendto_one_numeric(source_p, 519, "%s :Cannot join channel (+A) - you are not an IRC server administrator", chptr->name.c_str());
|
|
data->approved = chan::mode::ERR_CUSTOM;
|
|
}
|
|
}
|
|
|