]> jfr.im git - irc/evilnet/x3.git/blame - src/chanserv.h
Added some bits from check_ctcp into the mark version handling
[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 7 * it under the terms of the GNU General Public License as published by
348683aa 8 * the Free Software Foundation; either version 3 of the License, or
d76ed9a9
AS
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
8b9e7d45 101 unsigned int maxsetinfo;
d76ed9a9
AS
102 unsigned int flags : 30;
103 unsigned int may_opchan : 1;
104 unsigned int max;
105 unsigned int last_refresh;
7637f48f 106 unsigned int last_resync;
31f23f13 107 unsigned short banCount; /* Lamers, really */
d76ed9a9
AS
108 unsigned short userCount;
109 unsigned short lvlOpts[NUM_LEVEL_OPTIONS];
110 unsigned char chOpts[NUM_CHAR_OPTIONS];
111
112 struct userData *users;
31f23f13 113 struct banData *bans; /* Lamers, really */
d76ed9a9
AS
114 struct dict *notes;
115 struct suspended *suspended;
82f37c08 116 struct giveownership *giveownership;
d76ed9a9
AS
117 struct chanData *prev;
118 struct chanData *next;
119};
120
c8ca69a0 121#define USER_NOAUTO_OP 0x00000001 /* OLD; Not used at all.. */
d76ed9a9
AS
122#define USER_SUSPENDED 0x00000002
123#define USER_AUTO_INVITE 0x00000004
c8ca69a0 124#define USER_AUTO_OP 0x00000008
cd25f2e9 125#define USER_AUTO_JOIN 0x00000010
126#define USER_FLAGS_SIZE 25
c8ca69a0 127#define USER_FLAGS_DEFAULT USER_AUTO_OP
d76ed9a9 128
c8ca69a0 129#define IsUserAutoOp(USER) ((USER)->flags & USER_AUTO_OP)
d76ed9a9
AS
130#define IsUserSuspended(USER) ((USER)->flags & USER_SUSPENDED)
131#define IsUserAutoInvite(USER) ((USER)->flags & USER_AUTO_INVITE)
cd25f2e9 132#define IsUserAutoJoin(USER) ((USER)->flags & USER_AUTO_JOIN)
d76ed9a9
AS
133
134struct userData
135{
136 struct handle_info *handle;
137 struct chanData *channel;
138
139 char *info;
140 time_t seen;
b10abdb2 141 time_t expires;
dfaa28a4 142 time_t accessexpiry;
143 time_t clvlexpiry;
144 unsigned short lastaccess;
d76ed9a9
AS
145 unsigned short access;
146 unsigned int present : 1;
147 unsigned int flags : USER_FLAGS_SIZE;
148
149 /* linked list of userDatas for a chanData */
150 struct userData *prev;
151 struct userData *next;
152 /* linked list of userDatas for a handle_info */
153 struct userData *u_prev;
154 struct userData *u_next;
155};
156
ac3bdc8d
AS
157struct adduserPending
158{
159 struct chanNode *channel;
160 struct userNode *user;
161 int level;
162 time_t created;
163
164 struct adduserPending *prev;
165 struct adduserPending *next;
166};
167
d76ed9a9
AS
168struct banData
169{
170 char mask[NICKLEN + USERLEN + HOSTLEN + 3];
171 char owner[NICKLEN+1];
172 struct chanData *channel;
173
174 time_t set;
175 time_t triggered;
176 time_t expires;
177
178 char *reason;
179
180 struct banData *prev;
181 struct banData *next;
182};
183
184struct suspended
185{
186 struct chanData *cData;
187 char *suspender;
188 char *reason;
189 time_t issued, expires, revoked;
190 struct suspended *previous;
191};
192
82f37c08 193struct giveownership
194{
195 char *staff_issuer;
196 char *old_owner;
197 char *target;
198 unsigned short target_access;
199 time_t issued;
200 char *reason;
201 struct giveownership *previous;
202};
203
d76ed9a9
AS
204struct do_not_register
205{
206 char chan_name[CHANNELLEN+1];
207 char setter[NICKSERV_HANDLE_LEN+1];
0f6fe38c 208 time_t set;
d76ed9a9
AS
209 char reason[1];
210};
211
63c95a47 212#define GetChannelUser(channel, handle) _GetChannelUser(channel, handle, 1, 0)
213struct userData *_GetChannelUser(struct chanData *channel, struct handle_info *handle, int override, int allow_suspended);
214struct banData *add_channel_ban(struct chanData *channel, const char *mask, char *owner, time_t set, time_t triggered, time_t expires, char *reason);
215
d76ed9a9
AS
216void init_chanserv(const char *nick);
217void del_channel_user(struct userData *user, int do_gc);
218struct channelList *chanserv_support_channels(void);
219unsigned short user_level_from_name(const char *name, unsigned short clamp_level);
220struct do_not_register *chanserv_is_dnr(const char *chan_name, struct handle_info *handle);
221int check_user_level(struct chanNode *channel, struct userNode *user, enum levelOption opt, int allow_override, int exempt_owner);
222
e5a8f7cd 223void do_math(char *Buffer, char *Math);
de9510bc
AS
224char* user_level_name_from_level(int level);
225
ac3bdc8d
AS
226void process_adduser_pending(struct userNode *user);
227void wipe_adduser_pending(struct chanNode *channel, struct userNode *user);
e5a8f7cd 228
1b6b5e2f 229int check_bans(struct userNode *user, const char *channel);
5aa400d2 230int trace_check_bans(struct userNode *user, struct chanNode *chan);
c99dcaf6 231
d76ed9a9 232#endif