mirror of
https://github.com/matrix-construct/construct
synced 2024-11-18 07:50:57 +01:00
7e1bb8ad0d
channel mode classification which is required by RPL_MYINFO indicating arity, and RPL_ISUPPORT indicating an enumerated class. The content of these replies had previously been generated by hardcoded strings of some letters. Channel modes require classification which corresponds to the CHANMODES= data in RPL_ISUPPORT. Classes A,B,C can then be listed in the unary column of RPL_MYINFO. cflag_add() is updated for this. Additional cleanup of chmode.h and channel.h circularity is also proffered within. Submitted-by: Jason Volk <jason@zemos.net>
55 lines
1.1 KiB
C
55 lines
1.1 KiB
C
#include "stdinc.h"
|
|
#include "modules.h"
|
|
#include "hook.h"
|
|
#include "client.h"
|
|
#include "ircd.h"
|
|
#include "send.h"
|
|
#include "s_conf.h"
|
|
#include "s_user.h"
|
|
#include "s_serv.h"
|
|
#include "numeric.h"
|
|
#include "chmode.h"
|
|
|
|
static const char chm_operonly_desc[] =
|
|
"Adds channel mode +O which makes a channel operator-only";
|
|
|
|
static void h_can_join(hook_data_channel *);
|
|
|
|
mapi_hfn_list_av1 operonly_hfnlist[] = {
|
|
{ "can_join", (hookfn) h_can_join },
|
|
{ NULL, NULL }
|
|
};
|
|
|
|
static unsigned int mymode;
|
|
|
|
static int
|
|
_modinit(void)
|
|
{
|
|
mymode = cflag_add('O', CHM_D, chm_staff);
|
|
if (mymode == 0)
|
|
return -1;
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
static void
|
|
_moddeinit(void)
|
|
{
|
|
cflag_orphan('O');
|
|
}
|
|
|
|
DECLARE_MODULE_AV2(chm_operonly, _modinit, _moddeinit, NULL, NULL, operonly_hfnlist, NULL, NULL, chm_operonly_desc);
|
|
|
|
static void
|
|
h_can_join(hook_data_channel *data)
|
|
{
|
|
struct Client *source_p = data->client;
|
|
struct Channel *chptr = data->chptr;
|
|
|
|
if((chptr->mode.mode & mymode) && !IsOper(source_p)) {
|
|
sendto_one_numeric(source_p, 520, "%s :Cannot join channel (+O) - you are not an IRC operator", chptr->chname);
|
|
data->approved = ERR_CUSTOM;
|
|
}
|
|
}
|
|
|