]> jfr.im git - irc/quakenet/newserv.git/blame - control/control.h
Merge.
[irc/quakenet/newserv.git] / control / control.h
CommitLineData
c86edd1d
Q
1
2#ifndef __CONTROL_H
3#define __CONTROL_H
4
5#include "../parser/parser.h"
6#include "../nick/nick.h"
7#include "../channel/channel.h"
8
38cee035 9void registercontrolhelpcmd(const char *name, int level, int maxparams, CommandHandler handler, char *help);
c86edd1d 10int deregistercontrolcmd(const char *name, CommandHandler handler);
38cee035 11void controlmessage(nick *target, char *message, ... );
c86edd1d
Q
12void controlchanmsg(channel *cp, char *message, ...);
13void controlnotice(nick *target, char *message, ...);
38cee035
CP
14int controlshowcommands(void *sender, int cargc, char **cargv);
15int controlrmmod(void *sender, int cargc, char **cargv);
16void controlspecialrmmod(void *arg);
17void controlspecialreloadmod(void *arg);
18void controlhelp(nick *np, Command *cmd);
0a659cde 19void controlnswall(int noticelevel, char *format, ...);
38cee035
CP
20
21#define registercontrolcmd(a, b, c, d) registercontrolhelpcmd(a, b, c, d, NULL)
22
23typedef void (*ControlMsg)(nick *, char *, ... );
24typedef void (*ControlWall)(flag_t, flag_t, char *, ...);
25
26extern ControlMsg controlreply;
27extern ControlWall controlwall;
28
29extern nick *mynick;
30
31extern CommandTree *controlcmds;
32
33struct specialsched {
34 sstring *modulename;
35 void *schedule;
1085be4b 36};
38cee035
CP
37
38/* NEVER USE THE FOLLOWING IN COMMANDS, you'll end up missing bits off and users'll end up being able to gline people */
39#define __NO_ANYONE 0x000
40#define __NO_AUTHED 0x001 /* must be authed with the network, don't know what use this is really */
41#define __NO_OPERED 0x002 /* just means that they MUST be /oper'ed, for hello -- part of LEGACY */
42#define __NO_ACCOUNT 0x004 /* for hello, must have a user account */
43#define __NO_LEGACY 0x008 /* reserved for old newserv commands, their level is 10 */
44#define __NO_STAFF 0x010 /* +s */
45#define __NO_TRUST 0x020 /* +t */
46#define __NO_OPER 0x040 /* +O */
47#define __NO_SEC 0x080 /* +w */
48#define __NO_DEVELOPER 0x100 /* +d */
3f5ead93 49#define __NO_RELAY 0x200 /* +Y */
38cee035
CP
50
51/* These are dangerous, they don't include requiring /OPER or STAFF status, be careful */
52#define NOD_ACCOUNT __NO_ACCOUNT | NO_AUTHED /* must contain authed else account won't be checked */
53#define NOD_STAFF __NO_STAFF | NOD_ACCOUNT
54#define NOD_TRUST __NO_TRUST | NOD_ACCOUNT
55#define NOD_OPER __NO_OPER | NOD_ACCOUNT
56#define NOD_SEC __NO_SEC | NOD_ACCOUNT
57#define NOD_DEVELOPER __NO_DEVELOPER | NOD_ACCOUNT
3f5ead93 58#define NOD_RELAY __NO_RELAY | NOD_ACCOUNT
38cee035
CP
59
60/* These ones are safe to use */
61#define NO_ANYONE __NO_ANYONE /* don't have to be authed to Q, or us, or opered or anything */
62#define NO_AUTHED __NO_AUTHED /* must be authed to Q */
63#define NO_ACCOUNT NOD_ACCOUNT /* must have an account on the bot */
64#define NO_OPERED __NO_OPERED /* must be /opered */
65#define NO_STAFF NOD_STAFF /* must be authed to Q and have staff level on bot */
66#define NO_OPER NO_OPERED | NOD_OPER /* must be authed to Q, /opered, and have oper level on bot */
67#define NO_DEVELOPER NO_OPERED | NOD_DEVELOPER /* must be authed to Q, /opered, and have dev level on bot */
68#define NO_TRUST_STAFF NO_STAFF | NOD_TRUST /* must be authed to Q, and have staff and trust level on bot */
69#define NO_TRUST_OPER NO_OPER | NOD_TRUST /* must be authed to Q, /opered, and have trust and oper levels on bot */
70#define NO_SEC_STAFF NO_STAFF | NOD_SEC /* must be authed to Q, and have staff and sec level on bot */
71#define NO_SEC_OPER NO_OPER | NOD_SEC /* must be authed to Q, /opered, and have sec and oper levels on bot */
3f5ead93 72#define NO_RELAY NO_OPERED | NOD_RELAY /* must be authed to Q, /opered, and have the relay level on bot */
38cee035 73
3f5ead93 74#define NO_ALL_FLAGS __NO_STAFF | __NO_TRUST | __NO_OPER | __NO_SEC | __NO_DEVELOPER | __NO_RELAY
38cee035
CP
75#define NO_OPER_FLAGS __NO_STAFF
76#define NO_DEV_FLAGS NO_ALL_FLAGS
77
78#define NL_MANAGEMENT 0x0001 /* hello, password, userflags, noticeflags */
79#define NL_TRUSTS 0x0002 /* trust stuff... */
e609eb1f
CP
80#define NL_KICKKILLS 0x0004 /* KICK/KILL command */
81#define NL_MISC 0x0008 /* misc commands (resync, etc) */
38cee035
CP
82#define NL_GLINES 0x0010 /* GLINE commands */
83#define NL_HITS 0x0020 /* Where a gline or kill is set automatically by the bot */
84#define NL_CLONING 0x0040 /* Clone detection */
85#define NL_CLEARCHAN 0x0080 /* When someone clearchans */
86#define NL_FAKEUSERS 0x0100 /* Fakeuser addition */
87#define NL_BROADCASTS 0x0200 /* Broadcast/mbroadcast/sbroadcast */
88#define NL_OPERATIONS 0x0400 /* insmod/rmmod/etc */
89#define NL_OPERING 0x0800 /* when someone opers */
90#define NL_NOTICES 0x1000 /* turn off to receive privmsgs instead of notices */
91#define NL_ALL_COMMANDS 0x2000 /* every single command sent */
c86edd1d
Q
92
93#endif