1 | /********************************************************************\ |
---|
2 | * BitlBee -- An IRC to other IM-networks gateway * |
---|
3 | * * |
---|
4 | * Copyright 2002-2004 Wilmer van der Gaast and others * |
---|
5 | \********************************************************************/ |
---|
6 | |
---|
7 | /* |
---|
8 | * nogaim |
---|
9 | * |
---|
10 | * Gaim without gaim - for BitlBee |
---|
11 | * |
---|
12 | * This file contains functions called by the Gaim IM-modules. It contains |
---|
13 | * some struct and type definitions from Gaim. |
---|
14 | * |
---|
15 | * Copyright (C) 1998-1999, Mark Spencer <markster@marko.net> |
---|
16 | * (and possibly other members of the Gaim team) |
---|
17 | * Copyright 2002-2004 Wilmer van der Gaast <wilmer@gaast.net> |
---|
18 | */ |
---|
19 | |
---|
20 | /* |
---|
21 | This program is free software; you can redistribute it and/or modify |
---|
22 | it under the terms of the GNU General Public License as published by |
---|
23 | the Free Software Foundation; either version 2 of the License, or |
---|
24 | (at your option) any later version. |
---|
25 | |
---|
26 | This program is distributed in the hope that it will be useful, |
---|
27 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
28 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
29 | GNU General Public License for more details. |
---|
30 | |
---|
31 | You should have received a copy of the GNU General Public License with |
---|
32 | the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL; |
---|
33 | if not, write to the Free Software Foundation, Inc., 59 Temple Place, |
---|
34 | Suite 330, Boston, MA 02111-1307 USA |
---|
35 | */ |
---|
36 | |
---|
37 | #ifndef _NOGAIM_H |
---|
38 | #define _NOGAIM_H |
---|
39 | |
---|
40 | #include "bitlbee.h" |
---|
41 | #include "account.h" |
---|
42 | #include "proxy.h" |
---|
43 | #include "md5.h" |
---|
44 | #include "sha.h" |
---|
45 | |
---|
46 | |
---|
47 | #define BUF_LEN MSG_LEN |
---|
48 | #define BUF_LONG ( BUF_LEN * 2 ) |
---|
49 | #define MSG_LEN 2048 |
---|
50 | #define BUF_LEN MSG_LEN |
---|
51 | |
---|
52 | #define SELF_ALIAS_LEN 400 |
---|
53 | #define BUDDY_ALIAS_MAXLEN 388 /* because MSN names can be 387 characters */ |
---|
54 | |
---|
55 | #define WEBSITE "http://www.bitlbee.org/" |
---|
56 | #define IM_FLAG_AWAY 0x0020 |
---|
57 | #define GAIM_AWAY_CUSTOM "Custom" |
---|
58 | |
---|
59 | #define OPT_CONN_HTML 0x00000001 |
---|
60 | #define OPT_LOGGED_IN 0x00010000 |
---|
61 | #define OPT_LOGGING_OUT 0x00020000 |
---|
62 | |
---|
63 | /* ok. now the fun begins. first we create a connection structure */ |
---|
64 | struct gaim_connection |
---|
65 | { |
---|
66 | account_t *acc; |
---|
67 | guint32 flags; |
---|
68 | |
---|
69 | /* each connection then can have its own protocol-specific data */ |
---|
70 | void *proto_data; |
---|
71 | |
---|
72 | /* all connections need an input watcher */ |
---|
73 | int inpa; |
---|
74 | guint keepalive; |
---|
75 | |
---|
76 | /* buddy list stuff. there is still a global groups for the buddy list, but |
---|
77 | * we need to maintain our own set of buddies, and our own permit/deny lists */ |
---|
78 | GSList *permit; |
---|
79 | GSList *deny; |
---|
80 | int permdeny; |
---|
81 | |
---|
82 | char username[64]; |
---|
83 | char displayname[128]; |
---|
84 | char password[32]; |
---|
85 | |
---|
86 | char *away; |
---|
87 | |
---|
88 | int evil; |
---|
89 | gboolean wants_to_die; /* defaults to FALSE */ |
---|
90 | |
---|
91 | /* BitlBee */ |
---|
92 | irc_t *irc; |
---|
93 | |
---|
94 | struct conversation *conversations; |
---|
95 | }; |
---|
96 | |
---|
97 | /* struct buddy_chat went away and got merged with this. */ |
---|
98 | struct conversation { |
---|
99 | struct gaim_connection *gc; |
---|
100 | |
---|
101 | /* stuff used just for chat */ |
---|
102 | GList *in_room; |
---|
103 | GList *ignored; |
---|
104 | int id; |
---|
105 | |
---|
106 | /* BitlBee */ |
---|
107 | struct conversation *next; |
---|
108 | char *channel; |
---|
109 | char *title; |
---|
110 | char joined; |
---|
111 | void *data; |
---|
112 | }; |
---|
113 | |
---|
114 | struct buddy { |
---|
115 | char name[80]; |
---|
116 | char show[BUDDY_ALIAS_MAXLEN]; |
---|
117 | int present; |
---|
118 | int evil; |
---|
119 | time_t signon; |
---|
120 | time_t idle; |
---|
121 | int uc; |
---|
122 | guint caps; /* woohoo! */ |
---|
123 | void *proto_data; /* what a hack */ |
---|
124 | struct gaim_connection *gc; /* the connection it belongs to */ |
---|
125 | }; |
---|
126 | |
---|
127 | struct prpl { |
---|
128 | int options; |
---|
129 | const char *name; |
---|
130 | |
---|
131 | void (* acc_init) (account_t *); |
---|
132 | void (* login) (account_t *); |
---|
133 | void (* keepalive) (struct gaim_connection *); |
---|
134 | void (* close) (struct gaim_connection *); |
---|
135 | |
---|
136 | int (* send_im) (struct gaim_connection *, char *who, char *message, int len, int away); |
---|
137 | void (* set_away) (struct gaim_connection *, char *state, char *message); |
---|
138 | void (* get_away) (struct gaim_connection *, char *who); |
---|
139 | int (* send_typing) (struct gaim_connection *, char *who, int typing); |
---|
140 | |
---|
141 | void (* add_buddy) (struct gaim_connection *, char *name); |
---|
142 | void (* group_buddy) (struct gaim_connection *, char *who, char *old_group, char *new_group); |
---|
143 | void (* remove_buddy) (struct gaim_connection *, char *name, char *group); |
---|
144 | void (* add_permit) (struct gaim_connection *, char *name); |
---|
145 | void (* add_deny) (struct gaim_connection *, char *name); |
---|
146 | void (* rem_permit) (struct gaim_connection *, char *name); |
---|
147 | void (* rem_deny) (struct gaim_connection *, char *name); |
---|
148 | void (* set_permit_deny)(struct gaim_connection *); |
---|
149 | |
---|
150 | void (* set_info) (struct gaim_connection *, char *info); |
---|
151 | void (* get_info) (struct gaim_connection *, char *who); |
---|
152 | void (* alias_buddy) (struct gaim_connection *, char *who); /* save/store buddy's alias on server list/roster */ |
---|
153 | |
---|
154 | /* Group chat stuff. */ |
---|
155 | void (* join_chat) (struct gaim_connection *, GList *data); |
---|
156 | void (* chat_invite) (struct gaim_connection *, int id, char *who, char *message); |
---|
157 | void (* chat_leave) (struct gaim_connection *, int id); |
---|
158 | int (* chat_send) (struct gaim_connection *, int id, char *message); |
---|
159 | int (* chat_open) (struct gaim_connection *, char *who); |
---|
160 | |
---|
161 | /* DIE! */ |
---|
162 | char *(* get_status_string) (struct gaim_connection *gc, int stat); |
---|
163 | |
---|
164 | GList *(* away_states)(struct gaim_connection *gc); |
---|
165 | |
---|
166 | /* Mainly for AOL, since they think "Bung hole" == "Bu ngho le". *sigh* */ |
---|
167 | int (* handle_cmp) (const char *who1, const char *who2); |
---|
168 | }; |
---|
169 | |
---|
170 | #define UC_UNAVAILABLE 1 |
---|
171 | |
---|
172 | /* JABBER */ |
---|
173 | #define UC_AWAY (0x02 | UC_UNAVAILABLE) |
---|
174 | #define UC_CHAT 0x04 |
---|
175 | #define UC_XA (0x08 | UC_UNAVAILABLE) |
---|
176 | #define UC_DND (0x10 | UC_UNAVAILABLE) |
---|
177 | |
---|
178 | G_MODULE_EXPORT GSList *get_connections(); |
---|
179 | G_MODULE_EXPORT struct prpl *find_protocol(const char *name); |
---|
180 | G_MODULE_EXPORT void register_protocol(struct prpl *); |
---|
181 | |
---|
182 | /* nogaim.c */ |
---|
183 | int bim_set_away( struct gaim_connection *gc, char *away ); |
---|
184 | int bim_buddy_msg( struct gaim_connection *gc, char *handle, char *msg, int flags ); |
---|
185 | int bim_chat_msg( struct gaim_connection *gc, int id, char *msg ); |
---|
186 | |
---|
187 | void bim_add_allow( struct gaim_connection *gc, char *handle ); |
---|
188 | void bim_rem_allow( struct gaim_connection *gc, char *handle ); |
---|
189 | void bim_add_block( struct gaim_connection *gc, char *handle ); |
---|
190 | void bim_rem_block( struct gaim_connection *gc, char *handle ); |
---|
191 | |
---|
192 | void nogaim_init(); |
---|
193 | char *set_eval_away_devoice( set_t *set, char *value ); |
---|
194 | |
---|
195 | gboolean auto_reconnect( gpointer data, gint fd, b_input_condition cond ); |
---|
196 | void cancel_auto_reconnect( struct account *a ); |
---|
197 | |
---|
198 | /* multi.c */ |
---|
199 | G_MODULE_EXPORT struct gaim_connection *new_gaim_conn( account_t *acc ); |
---|
200 | G_MODULE_EXPORT void destroy_gaim_conn( struct gaim_connection *gc ); |
---|
201 | G_MODULE_EXPORT void set_login_progress( struct gaim_connection *gc, int step, char *msg ); |
---|
202 | G_MODULE_EXPORT void hide_login_progress( struct gaim_connection *gc, char *msg ); |
---|
203 | G_MODULE_EXPORT void hide_login_progress_error( struct gaim_connection *gc, char *msg ); |
---|
204 | G_MODULE_EXPORT void serv_got_crap( struct gaim_connection *gc, char *format, ... ) G_GNUC_PRINTF( 2, 3 ); |
---|
205 | G_MODULE_EXPORT void account_online( struct gaim_connection *gc ); |
---|
206 | G_MODULE_EXPORT void signoff( struct gaim_connection *gc ); |
---|
207 | |
---|
208 | /* dialogs.c */ |
---|
209 | G_MODULE_EXPORT void do_error_dialog( struct gaim_connection *gc, char *msg, char *title ); |
---|
210 | G_MODULE_EXPORT void do_ask_dialog( struct gaim_connection *gc, char *msg, void *data, void *doit, void *dont ); |
---|
211 | |
---|
212 | /* list.c */ |
---|
213 | G_MODULE_EXPORT void add_buddy( struct gaim_connection *gc, char *group, char *handle, char *realname ); |
---|
214 | G_MODULE_EXPORT struct buddy *find_buddy( struct gaim_connection *gc, char *handle ); |
---|
215 | G_MODULE_EXPORT void signoff_blocked( struct gaim_connection *gc ); |
---|
216 | |
---|
217 | G_MODULE_EXPORT void serv_buddy_rename( struct gaim_connection *gc, char *handle, char *realname ); |
---|
218 | |
---|
219 | /* buddy_chat.c */ |
---|
220 | G_MODULE_EXPORT void add_chat_buddy( struct conversation *b, char *handle ); |
---|
221 | G_MODULE_EXPORT void remove_chat_buddy( struct conversation *b, char *handle, char *reason ); |
---|
222 | |
---|
223 | /* prpl.c */ |
---|
224 | G_MODULE_EXPORT void show_got_added( struct gaim_connection *gc, char *handle, const char *realname ); |
---|
225 | |
---|
226 | /* server.c */ |
---|
227 | G_MODULE_EXPORT void serv_got_update( struct gaim_connection *gc, char *handle, int loggedin, int evil, time_t signon, time_t idle, int type, guint caps ); |
---|
228 | G_MODULE_EXPORT void serv_got_im( struct gaim_connection *gc, char *handle, char *msg, guint32 flags, time_t mtime, gint len ); |
---|
229 | G_MODULE_EXPORT void serv_got_typing( struct gaim_connection *gc, char *handle, int timeout, int type ); |
---|
230 | G_MODULE_EXPORT void serv_got_chat_invite( struct gaim_connection *gc, char *handle, char *who, char *msg, GList *data ); |
---|
231 | G_MODULE_EXPORT struct conversation *serv_got_joined_chat( struct gaim_connection *gc, int id, char *handle ); |
---|
232 | G_MODULE_EXPORT void serv_got_chat_in( struct gaim_connection *gc, int id, char *who, int whisper, char *msg, time_t mtime ); |
---|
233 | G_MODULE_EXPORT void serv_got_chat_left( struct gaim_connection *gc, int id ); |
---|
234 | |
---|
235 | struct conversation *conv_findchannel( char *channel ); |
---|
236 | |
---|
237 | #endif |
---|