mirror of
https://github.com/matrix-construct/construct
synced 2024-11-01 11:29:05 +01:00
67 lines
1.4 KiB
C
67 lines
1.4 KiB
C
|
/*
|
||
|
* Do not allow operators to be kicked from +M channels.
|
||
|
* -- kaniini
|
||
|
*/
|
||
|
|
||
|
#include "stdinc.h"
|
||
|
#include "modules.h"
|
||
|
#include "hook.h"
|
||
|
#include "client.h"
|
||
|
#include "ircd.h"
|
||
|
#include "send.h"
|
||
|
#include "hash.h"
|
||
|
#include "s_conf.h"
|
||
|
#include "s_user.h"
|
||
|
#include "s_serv.h"
|
||
|
#include "numeric.h"
|
||
|
#include "privilege.h"
|
||
|
#include "s_newconf.h"
|
||
|
#include "chmode.h"
|
||
|
|
||
|
static void hdl_can_kick(hook_data_channel_approval *);
|
||
|
|
||
|
mapi_hfn_list_av1 chm_operpeace_hfnlist[] = {
|
||
|
{ "can_kick", (hookfn) hdl_can_kick },
|
||
|
{ NULL, NULL }
|
||
|
};
|
||
|
|
||
|
static unsigned int mymode;
|
||
|
|
||
|
static int
|
||
|
_modinit(void)
|
||
|
{
|
||
|
mymode = cflag_add('M', chm_hidden);
|
||
|
if (mymode == 0)
|
||
|
return -1;
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
static void
|
||
|
_moddeinit(void)
|
||
|
{
|
||
|
cflag_orphan('M');
|
||
|
}
|
||
|
|
||
|
DECLARE_MODULE_AV1(chm_operpeace, _modinit, _moddeinit, NULL, NULL, chm_operpeace_hfnlist, "$Revision$");
|
||
|
|
||
|
static void
|
||
|
hdl_can_kick(hook_data_channel_approval *data)
|
||
|
{
|
||
|
struct Client *source_p = data->client;
|
||
|
struct Client *who = data->target;
|
||
|
struct Channel *chptr = data->chptr;
|
||
|
|
||
|
if(IsOper(source_p))
|
||
|
return;
|
||
|
|
||
|
if((chptr->mode.mode & mymode) && IsOper(who))
|
||
|
{
|
||
|
sendto_realops_snomask(SNO_GENERAL, L_NETWIDE, "%s attempted to kick %s from %s (which is +M)",
|
||
|
source_p->name, who->name, chptr->chname);
|
||
|
sendto_one_numeric(source_p, ERR_ISCHANSERVICE, "%s %s :Cannot kick IRC operators from that channel.",
|
||
|
who->name, chptr->chname);
|
||
|
data->approved = 0;
|
||
|
}
|
||
|
}
|