mirror of
https://github.com/matrix-construct/construct
synced 2024-11-01 11:29:05 +01:00
57 lines
1.3 KiB
C
57 lines
1.3 KiB
C
/*
|
|
* Channel creation notices
|
|
*
|
|
*/
|
|
|
|
#include "stdinc.h"
|
|
#include "modules.h"
|
|
#include "client.h"
|
|
#include "hook.h"
|
|
#include "ircd.h"
|
|
#include "send.h"
|
|
#include "s_conf.h"
|
|
#include "snomask.h"
|
|
#include "ratbox_lib.h"
|
|
|
|
static int _modinit(void);
|
|
static void _moddeinit(void);
|
|
static void h_scc_channel_join(void *);
|
|
|
|
mapi_hfn_list_av1 scc_hfnlist[] = {
|
|
{ "channel_join", (hookfn) h_scc_channel_join },
|
|
{ NULL, NULL }
|
|
};
|
|
|
|
DECLARE_MODULE_AV1(sno_channelcreate, _modinit, _moddeinit, NULL, NULL, scc_hfnlist, "$Revision: 639 $");
|
|
|
|
static int
|
|
_modinit(void)
|
|
{
|
|
/* add the snomask to the available slot */
|
|
snomask_modes['l'] = find_snomask_slot();
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void
|
|
_moddeinit(void)
|
|
{
|
|
/* disable the snomask and remove it from the available list */
|
|
snomask_modes['l'] = 0;
|
|
}
|
|
|
|
|
|
static void
|
|
h_scc_channel_join(void *vdata)
|
|
{
|
|
hook_data_channel_activity *data = (hook_data_channel_activity *)vdata;
|
|
struct Channel *chptr = data->chptr;
|
|
struct Client *source_p = data->client;
|
|
|
|
/* If they just joined a channel, and it only has one member, then they just created it. */
|
|
if(rb_dlink_list_length(&chptr->members) == 1 && is_chanop(find_channel_membership(chptr, source_p)))
|
|
{
|
|
sendto_realops_snomask(snomask_modes['l'], L_NETWIDE, "%s is creating new channel %s",
|
|
source_p->name, chptr->chname);
|
|
}
|
|
}
|