mirror of
https://github.com/matrix-construct/construct
synced 2024-11-03 20:38:53 +01:00
19716b9fd6
Additionally, attempting to use too many modes or two times the same letter is now detected and prevented. Modules now request that a channel mode be added/orphaned, instead of ugly manipulation from which that request had to be guessed. Slight changes are needed to modules that provide channel modes. From the old API, one important function has been made static, the other important function has been renamed, so loading old modules should fail safely.
51 lines
1,010 B
C
51 lines
1,010 B
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 void h_can_join(hook_data_channel *);
|
|
|
|
mapi_hfn_list_av1 adminonly_hfnlist[] = {
|
|
{ "can_join", (hookfn) h_can_join },
|
|
{ NULL, NULL }
|
|
};
|
|
|
|
static unsigned int mymode;
|
|
|
|
static int
|
|
_modinit(void)
|
|
{
|
|
mymode = cflag_add('A', chm_staff);
|
|
if (mymode == 0)
|
|
return -1;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void
|
|
_moddeinit(void)
|
|
{
|
|
cflag_orphan('A');
|
|
}
|
|
|
|
DECLARE_MODULE_AV1(chm_adminonly, _modinit, _moddeinit, NULL, NULL, adminonly_hfnlist, "$Revision$");
|
|
|
|
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) && !IsAdmin(source_p)) {
|
|
sendto_one_numeric(source_p, 519, "%s :Cannot join channel (+A) - you are not an IRC server administrator", chptr->chname);
|
|
data->approved = ERR_CUSTOM;
|
|
}
|
|
}
|
|
|