]> jfr.im git - irc/evilnet/x3.git/blame - src/chanserv.h
fix another compile warning
[irc/evilnet/x3.git] / src / chanserv.h
CommitLineData
d76ed9a9
AS
1/* chanserv.h - Channel service bot
2 * Copyright 2000-2004 srvx Development Team
3 *
83ff05c3 4 * This file is part of x3.
d76ed9a9 5 *
d0f04f71 6 * x3 is free software; you can redistribute it and/or modify
d76ed9a9
AS
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with srvx; if not, write to the Free Software Foundation,
18 * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
19 */
20
21#ifndef _chanserv_h
22#define _chanserv_h
23
24#include "nickserv.h"
25
26enum UL_ALIASES {
c9bf23fe 27 UL_PEON = 1,
55342ce8 28 UL_HALFOP = 150,
d76ed9a9 29 UL_OP = 200,
4048352e 30 UL_MANAGER = 300,
c9bf23fe 31 UL_PRESENT = UL_MANAGER, /* Level needed to keep the channel active */
d76ed9a9
AS
32 UL_COOWNER = 400,
33 UL_OWNER = 500,
34 UL_HELPER = 600,
35};
36
37enum levelOption {
d76ed9a9 38 lvlEnfOps,
55342ce8 39 lvlEnfHalfOps,
d76ed9a9
AS
40 lvlEnfModes,
41 lvlEnfTopic,
42 lvlPubCmd,
43 lvlSetters,
d76ed9a9
AS
44 lvlUserInfo,
45 lvlInviteMe,
46 lvlTopicSnarf,
47 NUM_LEVEL_OPTIONS
48};
49
50enum charOption {
4b6129c0 51 chAutomode,
d76ed9a9
AS
52 chProtect,
53 chToys,
54 chTopicRefresh,
55 chCTCPReaction,
31f23f13 56 chBanTimeout,
7637f48f 57 chResync,
d76ed9a9
AS
58 NUM_CHAR_OPTIONS
59};
60
61#define CHANNEL_NODELETE 0x00000001 /* (1 << 0) */
62#define CHANNEL_SUSPENDED 0x00000002 /* (1 << 1) */
63#define CHANNEL_INFO_LINES 0x00000004 /* (1 << 2) - DEPRECATED */
64#define CHANNEL_VOICE_ALL 0x00000008 /* (1 << 3) - DEPRECATED */
55342ce8 65
d76ed9a9
AS
66/* No longer used. */ /* (1 << 4) */
67#define CHANNEL_DYNAMIC_LIMIT 0x00000020 /* (1 << 5) */
68#define CHANNEL_TOPIC_SNARF 0x00000040 /* (1 << 6) - DEPRECATED */
69#define CHANNEL_PEON_INVITE 0x00000080 /* (1 << 7) - DEPRECATED */
70#define CHANNEL_OFFCHANNEL 0x00000100 /* (1 << 8) */
55342ce8 71#define CHANNEL_HOP_ALL 0x00000200 /* (1 << 9) */
d76ed9a9
AS
72/* Flags with values over 0x20000000 or (1 << 29) will not work
73 * because chanData.flags is a 30-bit field.
74 */
75
ac3bdc8d
AS
76/* how many seconds a pending adduser will wait for a user
77 * to get auth or register
78 */
79#define ADDUSER_PENDING_EXPIRE 7200 /* 2 hours */
80
d76ed9a9
AS
81#define IsProtected(x) ((x)->flags & CHANNEL_NODELETE)
82#define IsSuspended(x) ((x)->flags & CHANNEL_SUSPENDED)
0d16e639 83#define IsOffChannel(x) (((x)->flags & CHANNEL_OFFCHANNEL) && (off_channel > 1))
d76ed9a9
AS
84
85struct chanData
86{
87 struct chanNode *channel;
88 struct mod_chanmode modes;
89
90 time_t registered;
91 time_t visited;
92 time_t limitAdjusted;
a32da4c7 93 time_t ownerTransfer;
d76ed9a9
AS
94
95 char *topic;
96 char *greeting;
97 char *user_greeting;
98 char *registrar;
99 char *topic_mask;
100
101 unsigned int flags : 30;
102 unsigned int may_opchan : 1;
103 unsigned int max;
104 unsigned int last_refresh;
7637f48f 105 unsigned int last_resync;
31f23f13 106 unsigned short banCount; /* Lamers, really */
d76ed9a9
AS
107 unsigned short userCount;
108 unsigned short lvlOpts[NUM_LEVEL_OPTIONS];
109 unsigned char chOpts[NUM_CHAR_OPTIONS];
110
111 struct userData *users;
31f23f13 112 struct banData *bans; /* Lamers, really */
d76ed9a9
AS
113 struct dict *notes;
114 struct suspended *suspended;
82f37c08 115 struct giveownership *giveownership;
d76ed9a9
AS
116 struct chanData *prev;
117 struct chanData *next;
118};
119
c8ca69a0 120#define USER_NOAUTO_OP 0x00000001 /* OLD; Not used at all.. */
d76ed9a9
AS
121#define USER_SUSPENDED 0x00000002
122#define USER_AUTO_INVITE 0x00000004
c8ca69a0 123#define USER_AUTO_OP 0x00000008
cd25f2e9 124#define USER_AUTO_JOIN 0x00000010
125#define USER_FLAGS_SIZE 25
c8ca69a0 126#define USER_FLAGS_DEFAULT USER_AUTO_OP
d76ed9a9 127
c8ca69a0 128#define IsUserAutoOp(USER) ((USER)->flags & USER_AUTO_OP)
d76ed9a9
AS
129#define IsUserSuspended(USER) ((USER)->flags & USER_SUSPENDED)
130#define IsUserAutoInvite(USER) ((USER)->flags & USER_AUTO_INVITE)
cd25f2e9 131#define IsUserAutoJoin(USER) ((USER)->flags & USER_AUTO_JOIN)
d76ed9a9
AS
132
133struct userData
134{
135 struct handle_info *handle;
136 struct chanData *channel;
137
138 char *info;
139 time_t seen;
b10abdb2 140 time_t expires;
dfaa28a4 141 time_t accessexpiry;
142 time_t clvlexpiry;
143 unsigned short lastaccess;
d76ed9a9
AS
144 unsigned short access;
145 unsigned int present : 1;
146 unsigned int flags : USER_FLAGS_SIZE;
147
148 /* linked list of userDatas for a chanData */
149 struct userData *prev;
150 struct userData *next;
151 /* linked list of userDatas for a handle_info */
152 struct userData *u_prev;
153 struct userData *u_next;
154};
155
ac3bdc8d
AS
156struct adduserPending
157{
158 struct chanNode *channel;
159 struct userNode *user;
160 int level;
161 time_t created;
162
163 struct adduserPending *prev;
164 struct adduserPending *next;
165};
166
d76ed9a9
AS
167struct banData
168{
169 char mask[NICKLEN + USERLEN + HOSTLEN + 3];
170 char owner[NICKLEN+1];
171 struct chanData *channel;
172
173 time_t set;
174 time_t triggered;
175 time_t expires;
176
177 char *reason;
178
179 struct banData *prev;
180 struct banData *next;
181};
182
183struct suspended
184{
185 struct chanData *cData;
186 char *suspender;
187 char *reason;
188 time_t issued, expires, revoked;
189 struct suspended *previous;
190};
191
82f37c08 192struct giveownership
193{
194 char *staff_issuer;
195 char *old_owner;
196 char *target;
197 unsigned short target_access;
198 time_t issued;
199 char *reason;
200 struct giveownership *previous;
201};
202
d76ed9a9
AS
203struct do_not_register
204{
205 char chan_name[CHANNELLEN+1];
206 char setter[NICKSERV_HANDLE_LEN+1];
207 time_t set;
208 char reason[1];
209};
210
63c95a47 211#define GetChannelUser(channel, handle) _GetChannelUser(channel, handle, 1, 0)
212struct userData *_GetChannelUser(struct chanData *channel, struct handle_info *handle, int override, int allow_suspended);
213struct banData *add_channel_ban(struct chanData *channel, const char *mask, char *owner, time_t set, time_t triggered, time_t expires, char *reason);
214
d76ed9a9
AS
215void init_chanserv(const char *nick);
216void del_channel_user(struct userData *user, int do_gc);
217struct channelList *chanserv_support_channels(void);
218unsigned short user_level_from_name(const char *name, unsigned short clamp_level);
219struct do_not_register *chanserv_is_dnr(const char *chan_name, struct handle_info *handle);
220int check_user_level(struct chanNode *channel, struct userNode *user, enum levelOption opt, int allow_override, int exempt_owner);
221
e5a8f7cd 222void do_math(char *Buffer, char *Math);
de9510bc
AS
223char* user_level_name_from_level(int level);
224
ac3bdc8d
AS
225void process_adduser_pending(struct userNode *user);
226void wipe_adduser_pending(struct chanNode *channel, struct userNode *user);
e5a8f7cd 227
1b6b5e2f 228int check_bans(struct userNode *user, const char *channel);
5aa400d2 229int trace_check_bans(struct userNode *user, struct chanNode *chan);
c99dcaf6 230
d76ed9a9 231#endif