2008-07-27 08:47:40 +00: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-09 07:29:41 +00:00
|
|
|
static const char chm_sslonly_desc[] =
|
|
|
|
"Adds channel mode +S that bans non-SSL users from joing a channel";
|
|
|
|
|
2008-07-27 08:47:40 +00:00
|
|
|
static void h_can_join(hook_data_channel *);
|
|
|
|
|
|
|
|
mapi_hfn_list_av1 sslonly_hfnlist[] = {
|
|
|
|
{ "can_join", (hookfn) h_can_join },
|
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
|
|
|
|
2010-03-31 23:16:16 +00:00
|
|
|
static unsigned int mymode;
|
|
|
|
|
2008-07-27 08:47:40 +00:00
|
|
|
static int
|
|
|
|
_modinit(void)
|
|
|
|
{
|
2010-03-31 23:16:16 +00:00
|
|
|
mymode = cflag_add('S', chm_simple);
|
|
|
|
if (mymode == 0)
|
|
|
|
return -1;
|
2008-07-27 08:47:40 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_moddeinit(void)
|
|
|
|
{
|
2010-03-31 23:16:16 +00:00
|
|
|
cflag_orphan('S');
|
2008-07-27 08:47:40 +00:00
|
|
|
}
|
|
|
|
|
2016-03-07 05:48:27 +00:00
|
|
|
DECLARE_MODULE_AV2(chm_sslonly, _modinit, _moddeinit, NULL, NULL, sslonly_hfnlist, NULL, NULL, chm_sslonly_desc);
|
2008-07-27 08:47:40 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
h_can_join(hook_data_channel *data)
|
|
|
|
{
|
|
|
|
struct Client *source_p = data->client;
|
|
|
|
struct Channel *chptr = data->chptr;
|
|
|
|
|
2020-10-28 21:55:26 +00:00
|
|
|
if((chptr->mode.mode & mymode) && !IsSecureClient(source_p)) {
|
2014-06-12 21:30:37 +00:00
|
|
|
/* XXX This is equal to ERR_THROTTLE */
|
|
|
|
sendto_one_numeric(source_p, 480, "%s :Cannot join channel (+S) - SSL/TLS required", chptr->chname);
|
2008-07-27 08:47:40 +00:00
|
|
|
data->approved = ERR_CUSTOM;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|