X-Git-Url: https://jfr.im/git/irc/evilnet/x3.git/blobdiff_plain/d76ed9a966ee3d955c8ef00ecc02e643c2005e2e..35305a49c0973c0e29e4a607c2b507a2d8face43:/src/nickserv.h diff --git a/src/nickserv.h b/src/nickserv.h index 9c1f6e9..78f7d85 100644 --- a/src/nickserv.h +++ b/src/nickserv.h @@ -1,9 +1,9 @@ /* nickserv.h - Nick/authentiction service * Copyright 2000-2004 srvx Development Team * - * This file is part of srvx. + * This file is part of x3. * - * srvx is free software; you can redistribute it and/or modify + * x3 is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. @@ -24,7 +24,7 @@ #include "hash.h" /* for NICKLEN, etc., and common.h */ struct svccmd; -#define NICKSERV_HANDLE_LEN NICKLEN +#define NICKSERV_HANDLE_LEN ACCOUNTLEN #define COOKIELEN 10 /* HI_FLAG_* go into handle_info.flags */ @@ -38,15 +38,21 @@ struct svccmd; #define HI_FLAG_NODELETE 0x00000080 #define HI_FLAG_NETWORK_HELPER 0x00000100 #define HI_FLAG_BOT 0x00000200 +#define HI_FLAG_AUTOHIDE 0x00000400 +#define HI_FLAG_ADVANCED 0x00000800 /* Flag characters for the above. First char is LSB, etc. */ -#define HANDLE_FLAGS "SphgscfnHb" +#define HANDLE_FLAGS "SphgscfnHbx" /* HI_STYLE_* go into handle_info.userlist_style */ -#define HI_STYLE_DEF 'd' -#define HI_STYLE_ZOOT 'Z' +#define HI_STYLE_NORMAL 'n' +#define HI_STYLE_CLEAN 'c' +#define HI_STYLE_ADVANCED 'a' +#define HI_STYLE_CLASSIC 'k' #define HI_DEFAULT_FLAGS (HI_FLAG_MIRC_COLOR) -#define HI_DEFAULT_STYLE HI_STYLE_DEF + +/* This is overridden by conf file */ +#define HI_DEFAULT_STYLE HI_STYLE_NORMAL #define HANDLE_FLAGGED(hi, tok) ((hi)->flags & HI_FLAG_##tok) #define HANDLE_SET_FLAG(hi, tok) ((hi)->flags |= HI_FLAG_##tok) @@ -75,12 +81,20 @@ struct handle_cookie { char cookie[COOKIELEN+1]; }; +struct handle_note { + char setter[NICKSERV_HANDLE_LEN+1]; + time_t date; + char note[1]; +}; + struct handle_info { struct nick_info *nicks; struct string_list *masks; + struct string_list *ignores; struct userNode *users; struct userData *channels; struct handle_cookie *cookie; + struct handle_note *note; struct language *language; char *email_addr; char *epithet; @@ -121,13 +135,21 @@ void init_nickserv(const char *nick); struct handle_info *get_handle_info(const char *handle); struct handle_info *smart_get_handle_info(struct userNode *service, struct userNode *user, const char *name); int oper_try_set_access(struct userNode *user, struct userNode *bot, struct handle_info *target, unsigned int new_level); -int oper_outranks(struct userNode *user, struct handle_info *hi); +int oper_outranks(struct svccmd *cmd, struct userNode *user, struct handle_info *hi); struct nick_info *get_nick_info(const char *nick); struct modeNode *find_handle_in_channel(struct chanNode *channel, struct handle_info *handle, struct userNode *except); int nickserv_modify_handle_flags(struct userNode *user, struct userNode *bot, const char *str, unsigned long *add, unsigned long *remove); int oper_has_access(struct userNode *user, struct userNode *bot, unsigned int min_level, unsigned int quiet); void nickserv_show_oper_accounts(struct userNode *user, struct svccmd *cmd); +struct handle_info *get_victim_oper(struct svccmd *cmd, struct userNode *user, const char *target); +struct handle_info *loc_auth(char *handle, char *password); + +typedef void (*user_mode_func_t)(struct userNode *user, const char *mode_change); +void reg_user_mode_func(user_mode_func_t func); +typedef void (*channel_mode_func_t)(struct userNode *who, struct chanNode *channel, char **mode, unsigned int argc); +void reg_channel_mode_func(channel_mode_func_t func); + /* auth_funcs are called when a user gets a new handle_info. They are * called *after* user->handle_info has been updated. */ typedef void (*auth_func_t)(struct userNode *user, struct handle_info *old_handle); @@ -156,4 +178,6 @@ void reg_allowauth_func(allowauth_func_t func); typedef void (*failpw_func_t)(struct userNode *user, struct handle_info *handle); void reg_failpw_func(failpw_func_t func); +void send_func_list(struct userNode *user); + #endif