ChanServ.suspend duration
[srvx.git] / src / chanserv.h
1 /* chanserv.h - Channel service bot
2  * Copyright 2000-2004 srvx Development Team
3  *
4  * This file is part of srvx.
5  *
6  * srvx is free software; you can redistribute it and/or modify
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
26 enum UL_ALIASES {
27     UL_PEON = 100,
28     UL_OP = 200,
29     UL_MASTER = 300,
30     UL_PRESENT = UL_MASTER,
31     UL_COOWNER = 400,
32     UL_OWNER = 500,
33     UL_HELPER = 600,
34 };
35
36 enum levelOption {
37     lvlGiveVoice,
38     lvlGiveOps,
39     lvlEnfOps,
40     lvlEnfModes,
41     lvlEnfTopic,
42     lvlPubCmd,
43     lvlSetters,
44     lvlCTCPUsers,
45     lvlUserInfo,
46     lvlInviteMe,
47     lvlTopicSnarf,
48     lvlVote,
49     NUM_LEVEL_OPTIONS
50 };
51
52 enum charOption {
53     chProtect,
54     chToys,
55     chTopicRefresh,
56     chCTCPReaction,
57     NUM_CHAR_OPTIONS
58 };
59
60 #define CHANNEL_NODELETE    0x00000001 /* (1 << 0) */
61 #define CHANNEL_SUSPENDED   0x00000002 /* (1 << 1) */
62 #define CHANNEL_INFO_LINES  0x00000004 /* (1 << 2) - DEPRECATED */
63 #define CHANNEL_VOICE_ALL   0x00000008 /* (1 << 3) - DEPRECATED */
64 /* No longer used. */                      /* (1 << 4) */
65 #define CHANNEL_DYNAMIC_LIMIT   0x00000020 /* (1 << 5) */
66 #define CHANNEL_TOPIC_SNARF     0x00000040 /* (1 << 6) - DEPRECATED */
67 #define CHANNEL_PEON_INVITE     0x00000080 /* (1 << 7) - DEPRECATED */
68 #define CHANNEL_OFFCHANNEL      0x00000100 /* (1 << 8) */
69 #define CHANNEL_UNREVIEWED      0x00000200 /* (1 << 9) */
70 #define CHANNEL_ADVTOPIC        0x00000400 /* (1 << 10) */
71 /* Flags with values over 0x20000000 or (1 << 29) will not work
72  * because chanData.flags is a 30-bit field.
73  */
74
75 #define IsProtected(x)  ((x)->flags & CHANNEL_NODELETE)
76 #define IsSuspended(x)  ((x)->flags & CHANNEL_SUSPENDED)
77 #define IsOffChannel(x) (((x)->flags & CHANNEL_OFFCHANNEL) && (off_channel > 1))
78
79 #define MAXADVTOPICENTRIES 9
80
81 struct chanData
82 {
83     struct chanNode     *channel;
84     struct mod_chanmode modes;
85
86     unsigned long       registered;
87     unsigned long       visited;
88     unsigned long       limitAdjusted;
89     unsigned long       ownerTransfer;
90     unsigned long       expiry;
91
92     char    *topic;
93     char    *greeting;
94     char    *user_greeting;
95     char    *registrar;
96     char    *topic_mask;
97
98     char          *vote;
99     unsigned int  vote_start;
100     dict_t        vote_options;
101
102     unsigned int        flags : 30;
103     unsigned int        may_opchan : 1;
104     unsigned int        max;
105     unsigned int        max_time;
106     unsigned int        last_refresh;
107     unsigned short      banCount;
108     unsigned short      userCount;
109     unsigned short      lvlOpts[NUM_LEVEL_OPTIONS];
110     unsigned char       chOpts[NUM_CHAR_OPTIONS];
111
112     char *advtopic[MAXADVTOPICENTRIES];
113
114     struct userData     *users;
115     struct banData      *bans;
116     struct dict         *notes;
117     struct suspended    *suspended;
118     struct giveownership *giveownership;
119     struct chanData     *prev;
120     struct chanData     *next;
121 };
122
123 #define USER_AUTO_OP            0x00000001
124 #define USER_SUSPENDED          0x00000002
125 #define USER_AUTO_INVITE        0x00000004
126 #define USER_FLAGS_SIZE         7
127
128 #define IsUserAutoOp(USER)      (!((USER)->flags & USER_AUTO_OP))
129 #define IsUserSuspended(USER)   ((USER)->flags & USER_SUSPENDED)
130 #define IsUserAutoInvite(USER)  ((USER)->flags & USER_AUTO_INVITE)
131
132 struct userData
133 {
134     struct handle_info  *handle;
135     struct chanData     *channel;
136
137     char                *info;
138     unsigned long       seen;
139     time_t              expires; /* suspend */
140     unsigned short      access;
141     unsigned int        present : 1;
142     unsigned int        flags : USER_FLAGS_SIZE;
143
144     unsigned short      voted;
145     unsigned int        votefor;
146
147     /* linked list of userDatas for a chanData */
148     struct userData     *prev;
149     struct userData     *next;
150     /* linked list of userDatas for a handle_info */
151     struct userData     *u_prev;
152     struct userData     *u_next;
153 };
154
155 struct banData
156 {
157     char            mask[NICKLEN + USERLEN + HOSTLEN + 3];
158     char            owner[NICKLEN+1];
159     struct chanData *channel;
160
161     unsigned long   set;
162     unsigned long   triggered;
163     unsigned long   expires;
164
165     char            *reason;
166
167     struct banData  *prev;
168     struct banData  *next;
169 };
170
171 struct suspended
172 {
173     struct chanData     *cData;
174     char                *suspender;
175     char                *reason;
176     unsigned long       issued;
177     unsigned long       expires;
178     unsigned long       revoked;
179     struct suspended    *previous;
180 };
181
182 struct vote_option
183 {
184     char                *name;
185     unsigned int        option_id;
186     char                *option_str;
187     unsigned int        voted;
188 };
189
190 struct giveownership
191 {
192     char                  *staff_issuer;
193
194     char                  *old_owner;
195
196     char                  *target;
197     unsigned short        target_access;
198
199     time_t                issued;
200     char                  *reason;
201
202     struct giveownership  *previous;
203 };
204
205 struct do_not_register
206 {
207     char   chan_name[CHANNELLEN+1];
208     char   setter[NICKSERV_HANDLE_LEN+1];
209     unsigned long set;
210     unsigned long expires;
211     char   reason[1];
212 };
213
214 #define GetChannelUser(channel, handle) _GetChannelUser(channel, handle, 1, 0)
215 struct userData *_GetChannelUser(struct chanData *channel, struct handle_info *handle, int override, int allow_suspended);
216 struct banData *add_channel_ban(struct chanData *channel, const char *mask, char *owner, unsigned long set, unsigned long triggered, unsigned long expires, char *reason);
217 void init_chanserv(const char *nick);
218 void del_channel_user(struct userData *user, int do_gc);
219 struct channelList *chanserv_support_channels(void);
220 unsigned short user_level_from_name(const char *name, unsigned short clamp_level);
221 struct do_not_register *chanserv_is_dnr(const char *chan_name, struct handle_info *handle);
222 int check_user_level(struct chanNode *channel, struct userNode *user, enum levelOption opt, int allow_override, int exempt_owner);
223 struct mod_chanmode *find_matching_bans(struct banList *bans, struct userNode *actee, const char *mask);
224 void handle_new_channel_created(char *chan, struct userNode *user);
225
226 #endif