2008-07-27 10:10:48 +02:00
|
|
|
#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"
|
|
|
|
|
2016-03-07 06:48:27 +01:00
|
|
|
static const char chm_operonly_desc[] =
|
|
|
|
"Adds channel mode +O which makes a channel operator-only";
|
2008-07-27 10:10:48 +02:00
|
|
|
|
2016-03-09 08:29:41 +01:00
|
|
|
static void h_can_join(hook_data_channel *);
|
|
|
|
|
2008-07-27 10:10:48 +02:00
|
|
|
mapi_hfn_list_av1 operonly_hfnlist[] = {
|
|
|
|
{ "can_join", (hookfn) h_can_join },
|
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
|
|
|
|
2010-04-01 01:16:16 +02:00
|
|
|
static unsigned int mymode;
|
2008-07-27 10:10:48 +02:00
|
|
|
|
|
|
|
static int
|
|
|
|
_modinit(void)
|
|
|
|
{
|
2010-04-01 01:16:16 +02:00
|
|
|
mymode = cflag_add('O', chm_staff);
|
|
|
|
if (mymode == 0)
|
|
|
|
return -1;
|
2008-07-27 10:10:48 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
_moddeinit(void)
|
|
|
|
{
|
2010-04-01 01:16:16 +02:00
|
|
|
cflag_orphan('O');
|
2008-07-27 10:10:48 +02:00
|
|
|
}
|
|
|
|
|
2016-03-07 06:48:27 +01:00
|
|
|
DECLARE_MODULE_AV2(chm_operonly, _modinit, _moddeinit, NULL, NULL, operonly_hfnlist, NULL, NULL, chm_operonly_desc);
|
2008-07-27 10:10:48 +02:00
|
|
|
|
|
|
|
static void
|
|
|
|
h_can_join(hook_data_channel *data)
|
|
|
|
{
|
|
|
|
struct Client *source_p = data->client;
|
|
|
|
struct Channel *chptr = data->chptr;
|
|
|
|
|
2010-04-01 01:16:16 +02:00
|
|
|
if((chptr->mode.mode & mymode) && !IsOper(source_p)) {
|
2008-07-31 16:10:14 +02:00
|
|
|
sendto_one_numeric(source_p, 520, "%s :Cannot join channel (+O) - you are not an IRC operator", chptr->chname);
|
2008-07-27 10:10:48 +02:00
|
|
|
data->approved = ERR_CUSTOM;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|