]> jfr.im git - irc/evilnet/x3.git/blame - src/chanserv.h
tweaks
[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 {
27 UL_PEON = 100,
55342ce8 28 UL_HALFOP = 150,
d76ed9a9 29 UL_OP = 200,
4048352e
AS
30 UL_MANAGER = 300,
31 UL_PRESENT = UL_MANAGER,
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;
d76ed9a9
AS
141 unsigned short access;
142 unsigned int present : 1;
143 unsigned int flags : USER_FLAGS_SIZE;
144
145 /* linked list of userDatas for a chanData */
146 struct userData *prev;
147 struct userData *next;
148 /* linked list of userDatas for a handle_info */
149 struct userData *u_prev;
150 struct userData *u_next;
151};
152
ac3bdc8d
AS
153struct adduserPending
154{
155 struct chanNode *channel;
156 struct userNode *user;
157 int level;
158 time_t created;
159
160 struct adduserPending *prev;
161 struct adduserPending *next;
162};
163
d76ed9a9
AS
164struct banData
165{
166 char mask[NICKLEN + USERLEN + HOSTLEN + 3];
167 char owner[NICKLEN+1];
168 struct chanData *channel;
169
170 time_t set;
171 time_t triggered;
172 time_t expires;
173
174 char *reason;
175
176 struct banData *prev;
177 struct banData *next;
178};
179
180struct suspended
181{
182 struct chanData *cData;
183 char *suspender;
184 char *reason;
185 time_t issued, expires, revoked;
186 struct suspended *previous;
187};
188
82f37c08 189struct giveownership
190{
191 char *staff_issuer;
192 char *old_owner;
193 char *target;
194 unsigned short target_access;
195 time_t issued;
196 char *reason;
197 struct giveownership *previous;
198};
199
d76ed9a9
AS
200struct do_not_register
201{
202 char chan_name[CHANNELLEN+1];
203 char setter[NICKSERV_HANDLE_LEN+1];
204 time_t set;
205 char reason[1];
206};
207
63c95a47 208#define GetChannelUser(channel, handle) _GetChannelUser(channel, handle, 1, 0)
209struct userData *_GetChannelUser(struct chanData *channel, struct handle_info *handle, int override, int allow_suspended);
210struct banData *add_channel_ban(struct chanData *channel, const char *mask, char *owner, time_t set, time_t triggered, time_t expires, char *reason);
211
d76ed9a9
AS
212void init_chanserv(const char *nick);
213void del_channel_user(struct userData *user, int do_gc);
214struct channelList *chanserv_support_channels(void);
215unsigned short user_level_from_name(const char *name, unsigned short clamp_level);
216struct do_not_register *chanserv_is_dnr(const char *chan_name, struct handle_info *handle);
217int check_user_level(struct chanNode *channel, struct userNode *user, enum levelOption opt, int allow_override, int exempt_owner);
218
e5a8f7cd 219void do_math(char *Buffer, char *Math);
de9510bc
AS
220char* user_level_name_from_level(int level);
221
ac3bdc8d
AS
222void process_adduser_pending(struct userNode *user);
223void wipe_adduser_pending(struct chanNode *channel, struct userNode *user);
e5a8f7cd 224
d76ed9a9 225#endif