]> jfr.im git - irc/evilnet/x3.git/blob - src/nickserv.h
Applied pLaYa's 'classic' userlist view patch
[irc/evilnet/x3.git] / src / nickserv.h
1 /* nickserv.h - Nick/authentiction service
2 * Copyright 2000-2004 srvx Development Team
3 *
4 * This file is part of x3.
5 *
6 * x3 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 _nickserv_h
22 #define _nickserv_h
23
24 #include "hash.h" /* for NICKLEN, etc., and common.h */
25 struct svccmd;
26
27 #define NICKSERV_HANDLE_LEN ACCOUNTLEN
28 #define COOKIELEN 10
29
30 /* HI_FLAG_* go into handle_info.flags */
31 #define HI_FLAG_OPER_SUSPENDED 0x00000001
32 #define HI_FLAG_USE_PRIVMSG 0x00000002
33 #define HI_FLAG_SUPPORT_HELPER 0x00000004
34 #define HI_FLAG_HELPING 0x00000008
35 #define HI_FLAG_SUSPENDED 0x00000010
36 #define HI_FLAG_MIRC_COLOR 0x00000020
37 #define HI_FLAG_FROZEN 0x00000040
38 #define HI_FLAG_NODELETE 0x00000080
39 #define HI_FLAG_NETWORK_HELPER 0x00000100
40 #define HI_FLAG_BOT 0x00000200
41 #define HI_FLAG_AUTOHIDE 0x00000400
42 /* Flag characters for the above. First char is LSB, etc. */
43 #define HANDLE_FLAGS "SphgscfnHbx"
44
45 /* HI_STYLE_* go into handle_info.userlist_style */
46 #define HI_STYLE_NORMAL 'n'
47 #define HI_STYLE_CLEAN 'c'
48 #define HI_STYLE_ADVANCED 'a'
49 #define HI_STYLE_CLASSIC 'k'
50
51 #define HI_DEFAULT_FLAGS (HI_FLAG_MIRC_COLOR)
52
53 /* This is overridden by conf file */
54 #define HI_DEFAULT_STYLE HI_STYLE_NORMAL
55
56 #define HANDLE_FLAGGED(hi, tok) ((hi)->flags & HI_FLAG_##tok)
57 #define HANDLE_SET_FLAG(hi, tok) ((hi)->flags |= HI_FLAG_##tok)
58 #define HANDLE_TOGGLE_FLAG(hi, tok) ((hi)->flags ^= HI_FLAG_##tok)
59 #define HANDLE_CLEAR_FLAG(hi, tok) ((hi)->flags &= ~HI_FLAG_##tok)
60
61 #define IsSupportHelper(user) (user->handle_info && HANDLE_FLAGGED(user->handle_info, SUPPORT_HELPER))
62 #define IsNetworkHelper(user) (user->handle_info && HANDLE_FLAGGED(user->handle_info, NETWORK_HELPER))
63 #define IsHelper(user) (IsSupportHelper(user) || IsNetworkHelper(user))
64 #define IsHelping(user) (user->handle_info && HANDLE_FLAGGED(user->handle_info, HELPING))
65 #define IsStaff(user) (IsOper(user) || IsSupportHelper(user) || IsNetworkHelper(user))
66 #define IsBot(user) (user->handle_info && HANDLE_FLAGGED(user->handle_info, BOT))
67
68 enum cookie_type {
69 ACTIVATION,
70 PASSWORD_CHANGE,
71 EMAIL_CHANGE,
72 ALLOWAUTH
73 };
74
75 struct handle_cookie {
76 struct handle_info *hi;
77 char *data;
78 enum cookie_type type;
79 time_t expires;
80 char cookie[COOKIELEN+1];
81 };
82
83 struct handle_note {
84 char setter[NICKSERV_HANDLE_LEN+1];
85 time_t date;
86 char note[1];
87 };
88
89 struct handle_info {
90 struct nick_info *nicks;
91 struct string_list *masks;
92 struct userNode *users;
93 struct userData *channels;
94 struct handle_cookie *cookie;
95 struct handle_note *note;
96 struct language *language;
97 char *email_addr;
98 char *epithet;
99 char *infoline;
100 char *handle;
101 char *fakehost;
102 #ifdef WITH_PROTOCOL_BAHAMUT
103 unsigned long id;
104 #endif
105 time_t registered;
106 time_t lastseen;
107 unsigned short flags;
108 unsigned short opserv_level;
109 unsigned short screen_width;
110 unsigned short table_width;
111 unsigned char userlist_style;
112 unsigned char announcements;
113 unsigned char maxlogins;
114 char passwd[MD5_CRYPT_LENGTH+1];
115 char last_quit_host[USERLEN+HOSTLEN+2];
116 };
117
118 struct nick_info {
119 struct handle_info *owner;
120 struct nick_info *next; /* next nick owned by same handle */
121 char nick[NICKLEN+1];
122 };
123
124 struct handle_info_list {
125 unsigned int used, size;
126 struct handle_info **list;
127 char *tag; /* e.g. email address */
128 };
129
130 extern const char *handle_flags;
131
132 void init_nickserv(const char *nick);
133 struct handle_info *get_handle_info(const char *handle);
134 struct handle_info *smart_get_handle_info(struct userNode *service, struct userNode *user, const char *name);
135 int oper_try_set_access(struct userNode *user, struct userNode *bot, struct handle_info *target, unsigned int new_level);
136 int oper_outranks(struct userNode *user, struct handle_info *hi);
137 struct nick_info *get_nick_info(const char *nick);
138 struct modeNode *find_handle_in_channel(struct chanNode *channel, struct handle_info *handle, struct userNode *except);
139 int nickserv_modify_handle_flags(struct userNode *user, struct userNode *bot, const char *str, unsigned long *add, unsigned long *remove);
140 int oper_has_access(struct userNode *user, struct userNode *bot, unsigned int min_level, unsigned int quiet);
141 void nickserv_show_oper_accounts(struct userNode *user, struct svccmd *cmd);
142
143 struct handle_info *loc_auth(char *handle, char *password);
144
145 typedef void (*user_mode_func_t)(struct userNode *user, const char *mode_change);
146 void reg_user_mode_func(user_mode_func_t func);
147 typedef void (*channel_mode_func_t)(struct userNode *who, struct chanNode *channel, char **mode, unsigned int argc);
148 void reg_channel_mode_func(channel_mode_func_t func);
149
150 /* auth_funcs are called when a user gets a new handle_info. They are
151 * called *after* user->handle_info has been updated. */
152 typedef void (*auth_func_t)(struct userNode *user, struct handle_info *old_handle);
153 void reg_auth_func(auth_func_t func);
154
155 /* Called just after a handle is renamed. */
156 typedef void (*handle_rename_func_t)(struct handle_info *handle, const char *old_handle);
157 void reg_handle_rename_func(handle_rename_func_t func);
158
159 /* unreg_funcs are called right before a handle is unregistered.
160 * `user' is the person who caused the handle to be unregistered (either a
161 * client authed to the handle, or an oper). */
162 typedef void (*unreg_func_t)(struct userNode *user, struct handle_info *handle);
163 void reg_unreg_func(unreg_func_t func);
164
165 /* Called just before a handle is merged */
166 typedef void (*handle_merge_func_t)(struct userNode *user, struct handle_info *handle_to, struct handle_info *handle_from);
167 void reg_handle_merge_func(handle_merge_func_t);
168
169 /* Called after an allowauth. handle is null if allowauth authorization was
170 * removed */
171 typedef void (*allowauth_func_t)(struct userNode *user, struct userNode *target, struct handle_info *handle);
172 void reg_allowauth_func(allowauth_func_t func);
173
174 /* Called when an auth attempt fails because of a bad password */
175 typedef void (*failpw_func_t)(struct userNode *user, struct handle_info *handle);
176 void reg_failpw_func(failpw_func_t func);
177
178 void send_func_list(struct userNode *user);
179
180 #endif