]> jfr.im git - solanum.git/blob - extensions/chm_operonly.c
AV2 descriptions for m_[no]*
[solanum.git] / extensions / chm_operonly.c
1 #include "stdinc.h"
2 #include "modules.h"
3 #include "hook.h"
4 #include "client.h"
5 #include "ircd.h"
6 #include "send.h"
7 #include "s_conf.h"
8 #include "s_user.h"
9 #include "s_serv.h"
10 #include "numeric.h"
11 #include "chmode.h"
12
13 static void h_can_join(hook_data_channel *);
14 static const char chm_operonly_desc[] =
15 "Adds channel mode +O which makes a channel operator-only";
16
17 mapi_hfn_list_av1 operonly_hfnlist[] = {
18 { "can_join", (hookfn) h_can_join },
19 { NULL, NULL }
20 };
21
22 static unsigned int mymode;
23
24 static int
25 _modinit(void)
26 {
27 mymode = cflag_add('O', chm_staff);
28 if (mymode == 0)
29 return -1;
30
31 return 0;
32 }
33
34
35 static void
36 _moddeinit(void)
37 {
38 cflag_orphan('O');
39 }
40
41 DECLARE_MODULE_AV2(chm_operonly, _modinit, _moddeinit, NULL, NULL, operonly_hfnlist, NULL, NULL, chm_operonly_desc);
42
43 static void
44 h_can_join(hook_data_channel *data)
45 {
46 struct Client *source_p = data->client;
47 struct Channel *chptr = data->chptr;
48
49 if((chptr->mode.mode & mymode) && !IsOper(source_p)) {
50 sendto_one_numeric(source_p, 520, "%s :Cannot join channel (+O) - you are not an IRC operator", chptr->chname);
51 data->approved = ERR_CUSTOM;
52 }
53 }
54