[b7d3cc34] | 1 | /********************************************************************\ |
---|
| 2 | * BitlBee -- An IRC to other IM-networks gateway * |
---|
| 3 | * * |
---|
| 4 | * Copyright 2002-2004 Wilmer van der Gaast and others * |
---|
| 5 | \********************************************************************/ |
---|
| 6 | |
---|
[3ddb7477] | 7 | /* The IRC-based UI (for now the only one) */ |
---|
[b7d3cc34] | 8 | |
---|
| 9 | /* |
---|
| 10 | This program is free software; you can redistribute it and/or modify |
---|
| 11 | it under the terms of the GNU General Public License as published by |
---|
| 12 | the Free Software Foundation; either version 2 of the License, or |
---|
| 13 | (at your option) any later version. |
---|
| 14 | |
---|
| 15 | This program is distributed in the hope that it will be useful, |
---|
| 16 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 18 | GNU General Public License for more details. |
---|
| 19 | |
---|
| 20 | You should have received a copy of the GNU General Public License with |
---|
| 21 | the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL; |
---|
| 22 | if not, write to the Free Software Foundation, Inc., 59 Temple Place, |
---|
| 23 | Suite 330, Boston, MA 02111-1307 USA |
---|
| 24 | */ |
---|
| 25 | |
---|
| 26 | #ifndef _IRC_H |
---|
| 27 | #define _IRC_H |
---|
| 28 | |
---|
| 29 | #define IRC_MAX_LINE 512 |
---|
| 30 | #define IRC_MAX_ARGS 8 |
---|
| 31 | |
---|
| 32 | #define IRC_LOGIN_TIMEOUT 60 |
---|
| 33 | #define IRC_PING_STRING "PinglBee" |
---|
| 34 | |
---|
[b919363] | 35 | #define UMODES "abisw" /* Allowed umodes (although they mostly do nothing) */ |
---|
| 36 | #define UMODES_PRIV "Ro" /* Allowed, but not by user directly */ |
---|
| 37 | #define UMODES_KEEP "R" /* Don't allow unsetting using /MODE */ |
---|
| 38 | #define CMODES "nt" /* Allowed modes */ |
---|
| 39 | #define CMODE "t" /* Default mode */ |
---|
| 40 | #define UMODE "s" /* Default mode */ |
---|
| 41 | |
---|
| 42 | #define CTYPES "&#" /* Valid channel name prefixes */ |
---|
[b7d3cc34] | 43 | |
---|
| 44 | typedef enum |
---|
| 45 | { |
---|
[bd9b00f] | 46 | USTATUS_OFFLINE = 0, |
---|
[79e826a] | 47 | USTATUS_AUTHORIZED = 1, |
---|
| 48 | USTATUS_LOGGED_IN = 2, |
---|
| 49 | USTATUS_IDENTIFIED = 4, |
---|
| 50 | USTATUS_SHUTDOWN = 8 |
---|
[b7d3cc34] | 51 | } irc_status_t; |
---|
| 52 | |
---|
[3ddb7477] | 53 | struct irc_user; |
---|
| 54 | |
---|
[b7d3cc34] | 55 | typedef struct irc |
---|
| 56 | { |
---|
| 57 | int fd; |
---|
| 58 | irc_status_t status; |
---|
| 59 | double last_pong; |
---|
| 60 | int pinging; |
---|
| 61 | char *sendbuffer; |
---|
| 62 | char *readbuffer; |
---|
[f9756bd] | 63 | GIConv iconv, oconv; |
---|
[b7d3cc34] | 64 | |
---|
[3ddb7477] | 65 | struct irc_user *root; |
---|
| 66 | struct irc_user *user; |
---|
[74f1cde] | 67 | |
---|
| 68 | char *last_root_cmd; |
---|
[b7d3cc34] | 69 | |
---|
[a199d33] | 70 | char *password; /* HACK: Used to save the user's password, but before |
---|
| 71 | logging in, this may contain a password we should |
---|
| 72 | send to identify after USER/NICK are received. */ |
---|
[b7d3cc34] | 73 | |
---|
| 74 | char umode[8]; |
---|
| 75 | |
---|
| 76 | struct query *queries; |
---|
| 77 | struct account *accounts; |
---|
[2c2df7d] | 78 | GSList *file_transfers; |
---|
[b7d3cc34] | 79 | |
---|
[4be8239] | 80 | GSList *users, *channels; |
---|
[3ddb7477] | 81 | GHashTable *nick_user_hash; |
---|
[b7d3cc34] | 82 | GHashTable *watches; |
---|
| 83 | |
---|
| 84 | gint r_watch_source_id; |
---|
| 85 | gint w_watch_source_id; |
---|
| 86 | gint ping_source_id; |
---|
[3ddb7477] | 87 | |
---|
| 88 | struct bee *b; |
---|
[b7d3cc34] | 89 | } irc_t; |
---|
| 90 | |
---|
[74f1cde] | 91 | typedef enum |
---|
| 92 | { |
---|
| 93 | IRC_USER_PRIVATE = 1, |
---|
| 94 | } irc_user_flags_t; |
---|
| 95 | |
---|
[3ddb7477] | 96 | typedef struct irc_user |
---|
| 97 | { |
---|
[b95932e] | 98 | irc_t *irc; |
---|
| 99 | |
---|
[3ddb7477] | 100 | char *nick; |
---|
| 101 | char *user; |
---|
| 102 | char *host; |
---|
| 103 | char *fullname; |
---|
| 104 | |
---|
| 105 | /* Nickname in lowercase for case sensitive searches */ |
---|
| 106 | char *key; |
---|
| 107 | |
---|
[74f1cde] | 108 | irc_user_flags_t flags; |
---|
[3ddb7477] | 109 | |
---|
| 110 | char *sendbuf; |
---|
| 111 | int sendbuf_len; |
---|
| 112 | guint sendbuf_timer; |
---|
[74f1cde] | 113 | //int sendbuf_flags; |
---|
[3ddb7477] | 114 | |
---|
| 115 | //struct user *b; |
---|
[280c56a] | 116 | |
---|
| 117 | const struct irc_user_funcs *f; |
---|
[3ddb7477] | 118 | } irc_user_t; |
---|
| 119 | |
---|
[280c56a] | 120 | struct irc_user_funcs |
---|
| 121 | { |
---|
| 122 | gboolean (*privmsg)( irc_user_t *iu, const char *msg ); |
---|
| 123 | }; |
---|
| 124 | |
---|
| 125 | extern const struct irc_user_funcs irc_user_root_funcs; |
---|
| 126 | extern const struct irc_user_funcs irc_user_self_funcs; |
---|
| 127 | |
---|
[4be8239] | 128 | typedef enum |
---|
| 129 | { |
---|
| 130 | IRC_CHANNEL_JOINED = 1, |
---|
| 131 | } irc_channel_flags_t; |
---|
| 132 | |
---|
| 133 | typedef struct irc_channel |
---|
| 134 | { |
---|
| 135 | irc_t *irc; |
---|
| 136 | char *name; |
---|
[280c56a] | 137 | char mode[8]; |
---|
| 138 | int flags; |
---|
| 139 | |
---|
[4be8239] | 140 | char *topic; |
---|
[83e92bf] | 141 | char *topic_who; |
---|
| 142 | time_t topic_time; |
---|
[280c56a] | 143 | |
---|
[4be8239] | 144 | GSList *users; |
---|
| 145 | struct set *set; |
---|
[280c56a] | 146 | |
---|
| 147 | const struct irc_channel_funcs *f; |
---|
[4be8239] | 148 | } irc_channel_t; |
---|
| 149 | |
---|
[280c56a] | 150 | struct irc_channel_funcs |
---|
| 151 | { |
---|
| 152 | gboolean (*privmsg)( irc_channel_t *iu, const char *msg ); |
---|
| 153 | }; |
---|
| 154 | |
---|
[b7d3cc34] | 155 | #include "user.h" |
---|
| 156 | |
---|
[3ddb7477] | 157 | /* irc.c */ |
---|
[b7d3cc34] | 158 | extern GSList *irc_connection_list; |
---|
| 159 | |
---|
| 160 | irc_t *irc_new( int fd ); |
---|
[a9ca7dd] | 161 | void irc_abort( irc_t *irc, int immed, char *format, ... ) G_GNUC_PRINTF( 3, 4 ); |
---|
[b7d3cc34] | 162 | void irc_free( irc_t *irc ); |
---|
| 163 | |
---|
[f73b969] | 164 | void irc_process( irc_t *irc ); |
---|
[0431ea1] | 165 | char **irc_parse_line( char *line ); |
---|
[74c119d] | 166 | char *irc_build_line( char **cmd ); |
---|
[b7d3cc34] | 167 | |
---|
[a9ca7dd] | 168 | void irc_write( irc_t *irc, char *format, ... ) G_GNUC_PRINTF( 2, 3 ); |
---|
| 169 | void irc_write_all( int now, char *format, ... ) G_GNUC_PRINTF( 2, 3 ); |
---|
[3ddb7477] | 170 | void irc_vawrite( irc_t *irc, char *format, va_list params ); |
---|
[b7d3cc34] | 171 | |
---|
[edf9657] | 172 | int irc_check_login( irc_t *irc ); |
---|
[3ddb7477] | 173 | |
---|
[b919363] | 174 | void irc_umode_set( irc_t *irc, const char *s, gboolean allow_priv ); |
---|
| 175 | |
---|
[4be8239] | 176 | /* irc_channel.c */ |
---|
| 177 | irc_channel_t *irc_channel_new( irc_t *irc, const char *name ); |
---|
[b9e020a] | 178 | irc_channel_t *irc_channel_by_name( irc_t *irc, const char *name ); |
---|
[83e92bf] | 179 | int irc_channel_free( irc_channel_t *ic ); |
---|
[4be8239] | 180 | int irc_channel_add_user( irc_channel_t *ic, irc_user_t *iu ); |
---|
| 181 | int irc_channel_del_user( irc_channel_t *ic, irc_user_t *iu ); |
---|
[83e92bf] | 182 | int irc_channel_set_topic( irc_channel_t *ic, const char *topic, const irc_user_t *who ); |
---|
[b919363] | 183 | gboolean irc_channel_name_ok( const char *name ); |
---|
[4be8239] | 184 | |
---|
[3ddb7477] | 185 | /* irc_commands.c */ |
---|
| 186 | void irc_exec( irc_t *irc, char **cmd ); |
---|
| 187 | |
---|
| 188 | /* irc_send.c */ |
---|
| 189 | void irc_send_num( irc_t *irc, int code, char *format, ... ) G_GNUC_PRINTF( 3, 4 ); |
---|
| 190 | void irc_send_login( irc_t *irc ); |
---|
| 191 | void irc_send_motd( irc_t *irc ); |
---|
[4be8239] | 192 | void irc_usermsg( irc_t *irc, char *format, ... ); |
---|
| 193 | void irc_send_join( irc_channel_t *ic, irc_user_t *iu ); |
---|
| 194 | void irc_send_part( irc_channel_t *ic, irc_user_t *iu, const char *reason ); |
---|
| 195 | void irc_send_names( irc_channel_t *ic ); |
---|
[83e92bf] | 196 | void irc_send_topic( irc_channel_t *ic, gboolean topic_change ); |
---|
[b95932e] | 197 | void irc_send_whois( irc_user_t *iu ); |
---|
[2f53ada] | 198 | void irc_send_who( irc_t *irc, GSList *l, const char *channel ); |
---|
[6761a40] | 199 | void irc_send_msg( irc_user_t *iu, const char *type, const char *dst, const char *msg, const char *prefix ); |
---|
| 200 | void irc_send_msg_raw( irc_user_t *iu, const char *type, const char *dst, const char *msg ); |
---|
[3ddb7477] | 201 | |
---|
| 202 | /* irc_user.c */ |
---|
| 203 | irc_user_t *irc_user_new( irc_t *irc, const char *nick ); |
---|
| 204 | int irc_user_free( irc_t *irc, const char *nick ); |
---|
[280c56a] | 205 | irc_user_t *irc_user_by_name( irc_t *irc, const char *nick ); |
---|
[3ddb7477] | 206 | int irc_user_rename( irc_t *irc, const char *old, const char *new ); |
---|
[ebaebfe] | 207 | gint irc_user_cmp( gconstpointer a_, gconstpointer b_ ); |
---|
[b7d3cc34] | 208 | |
---|
| 209 | #endif |
---|