Mercurial > pidgin
annotate src/protocols/oscar/oscar.c @ 5208:0a6912730d56
[gaim-migrate @ 5576]
Stupid Chip. Stupid.
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Fri, 25 Apr 2003 08:22:32 +0000 |
parents | fefad67de2c7 |
children | 0241d6b6702d |
rev | line source |
---|---|
2086 | 1 /* |
2 * gaim | |
3 * | |
4 * Some code copyright (C) 1998-1999, Mark Spencer <markster@marko.net> | |
5 * libfaim code copyright 1998, 1999 Adam Fritzler <afritz@auk.cx> | |
6 * | |
7 * This program is free software; you can redistribute it and/or modify | |
8 * it under the terms of the GNU General Public License as published by | |
9 * the Free Software Foundation; either version 2 of the License, or | |
10 * (at your option) any later version. | |
11 * | |
12 * This program is distributed in the hope that it will be useful, | |
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 * GNU General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU General Public License | |
18 * along with this program; if not, write to the Free Software | |
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
20 * | |
21 */ | |
22 | |
23 #ifdef HAVE_CONFIG_H | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
24 #include <config.h> |
2086 | 25 #endif |
26 | |
3664 | 27 #include <sys/types.h> |
4617 | 28 /* this must happen before sys/socket.h or freebsd won't compile */ |
3664 | 29 |
3630 | 30 #ifndef _WIN32 |
2086 | 31 #include <netdb.h> |
32 #include <netinet/in.h> | |
33 #include <arpa/inet.h> | |
3630 | 34 #include <sys/socket.h> |
35 #include <unistd.h> | |
36 #endif | |
37 | |
38 #include <errno.h> | |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
39 #include <ctype.h> |
2086 | 40 #include <string.h> |
41 #include <stdlib.h> | |
42 #include <stdio.h> | |
43 #include <time.h> | |
44 #include <sys/stat.h> | |
3630 | 45 #include <signal.h> |
46 | |
4608 | 47 #include "gaim.h" |
2086 | 48 #include "multi.h" |
49 #include "prpl.h" | |
4373
dcc6c130c6d9
[gaim-migrate @ 4639]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4366
diff
changeset
|
50 #include "core.h" |
4889 | 51 #include "proxy.h" |
2086 | 52 #include "aim.h" |
53 | |
3630 | 54 #ifdef _WIN32 |
55 #include "win32dep.h" | |
56 #endif | |
57 | |
2086 | 58 /* constants to identify proto_opts */ |
59 #define USEROPT_AUTH 0 | |
60 #define USEROPT_AUTHPORT 1 | |
61 | |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
62 #define UC_AOL 0x02 |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
63 #define UC_ADMIN 0x04 |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
64 #define UC_UNCONFIRMED 0x08 |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
65 #define UC_NORMAL 0x10 |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
66 #define UC_AB 0x20 |
3079 | 67 #define UC_WIRELESS 0x40 |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
68 |
2086 | 69 #define AIMHASHDATA "http://gaim.sourceforge.net/aim_data.php3" |
70 | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
71 static GaimPlugin *my_protocol = NULL; |
4249 | 72 |
3630 | 73 /* For win32 compatability */ |
74 G_MODULE_IMPORT GSList *connections; | |
75 G_MODULE_IMPORT int report_idle; | |
76 | |
4811 | 77 static int caps_aim = AIM_CAPS_CHAT | AIM_CAPS_BUDDYICON | AIM_CAPS_IMIMAGE | AIM_CAPS_SENDFILE | AIM_CAPS_INTEROPERATE; |
78 static int caps_icq = AIM_CAPS_BUDDYICON | AIM_CAPS_IMIMAGE | AIM_CAPS_SENDFILE | AIM_CAPS_ICQUTF8 | AIM_CAPS_INTEROPERATE; | |
3458 | 79 |
4665 | 80 static fu8_t features_aim[] = {0x01, 0x01, 0x01, 0x02}; |
81 static fu8_t features_icq[] = {0x01, 0x06}; | |
2086 | 82 |
83 struct oscar_data { | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
84 aim_session_t *sess; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
85 aim_conn_t *conn; |
2086 | 86 |
87 guint cnpa; | |
88 guint paspa; | |
3694 | 89 guint emlpa; |
4804 | 90 guint icopa; |
2086 | 91 |
4823 | 92 gboolean iconconnecting; |
93 | |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
94 GSList *create_rooms; |
2086 | 95 |
96 gboolean conf; | |
97 gboolean reqemail; | |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
98 gboolean setemail; |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
99 char *email; |
2979 | 100 gboolean setnick; |
101 char *newsn; | |
2086 | 102 gboolean chpass; |
103 char *oldp; | |
104 char *newp; | |
105 | |
106 GSList *oscar_chats; | |
107 GSList *direct_ims; | |
3630 | 108 GSList *file_transfers; |
4738 | 109 GHashTable *buddyinfo; |
4804 | 110 GSList *requesticon; |
2086 | 111 |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
112 gboolean killme; |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
113 gboolean icq; |
2791
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
114 GSList *evilhack; |
4804 | 115 guint icontimer; |
2993 | 116 |
117 struct { | |
4230 | 118 guint maxwatchers; /* max users who can watch you */ |
2993 | 119 guint maxbuddies; /* max users you can watch */ |
4230 | 120 guint maxgroups; /* max groups in server list */ |
2993 | 121 guint maxpermits; /* max users on permit list */ |
122 guint maxdenies; /* max users on deny list */ | |
123 guint maxsiglen; /* max size (bytes) of profile */ | |
124 guint maxawaymsglen; /* max size (bytes) of posted away message */ | |
125 } rights; | |
2086 | 126 }; |
127 | |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
128 struct create_room { |
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
129 char *name; |
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
130 int exchange; |
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
131 }; |
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
132 |
2086 | 133 struct chat_connection { |
134 char *name; | |
135 char *show; /* AOL did something funny to us */ | |
2821
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
136 fu16_t exchange; |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
137 fu16_t instance; |
2086 | 138 int fd; /* this is redundant since we have the conn below */ |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
139 aim_conn_t *conn; |
2086 | 140 int inpa; |
141 int id; | |
142 struct gaim_connection *gc; /* i hate this. */ | |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4358
diff
changeset
|
143 struct gaim_conversation *cnv; /* bah. */ |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
144 int maxlen; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
145 int maxvis; |
2086 | 146 }; |
147 | |
148 struct direct_im { | |
149 struct gaim_connection *gc; | |
150 char name[80]; | |
151 int watcher; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
152 aim_conn_t *conn; |
3008 | 153 gboolean connected; |
2086 | 154 }; |
155 | |
156 struct ask_direct { | |
157 struct gaim_connection *gc; | |
158 char *sn; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
159 char ip[64]; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
160 fu8_t cookie[8]; |
2086 | 161 }; |
162 | |
4738 | 163 /* Various PRPL-specific buddy info that we want to keep track of */ |
164 struct buddyinfo { | |
165 time_t signon; | |
166 int caps; | |
167 gboolean typingnot; | |
168 | |
169 unsigned long ico_len; | |
170 unsigned long ico_csum; | |
171 time_t ico_time; | |
172 gboolean ico_need; | |
173 | |
174 unsigned long ico_me_len; | |
175 unsigned long ico_me_csum; | |
176 time_t ico_me_time; | |
177 gboolean ico_informed; | |
4804 | 178 |
4853 | 179 fu16_t iconcsumlen; |
180 fu8_t iconcsum[30]; | |
2086 | 181 }; |
182 | |
4230 | 183 struct name_data { |
3141 | 184 struct gaim_connection *gc; |
4230 | 185 gchar *name; |
3453 | 186 gchar *nick; |
3141 | 187 }; |
188 | |
5129 | 189 static char *msgerrreason[] = { |
190 N_("Invalid error"), | |
191 N_("Invalid SNAC"), | |
192 N_("Rate to host"), | |
193 N_("Rate to client"), | |
194 N_("Not logged in"), | |
195 N_("Service unavailable"), | |
196 N_("Service not defined"), | |
197 N_("Obsolete SNAC"), | |
198 N_("Not supported by host"), | |
199 N_("Not supported by client"), | |
200 N_("Refused by client"), | |
201 N_("Reply too big"), | |
202 N_("Responses lost"), | |
203 N_("Request denied"), | |
204 N_("Busted SNAC payload"), | |
205 N_("Insufficient rights"), | |
206 N_("In local permit/deny"), | |
207 N_("Too evil (sender)"), | |
208 N_("Too evil (receiver)"), | |
209 N_("User temporarily unavailable"), | |
210 N_("No match"), | |
211 N_("List overflow"), | |
212 N_("Request ambiguous"), | |
213 N_("Queue full"), | |
214 N_("Not while on AOL") | |
215 }; | |
216 static int msgerrreasonlen = 25; | |
217 | |
218 /* All the libfaim->gaim callback functions */ | |
219 static int gaim_parse_auth_resp (aim_session_t *, aim_frame_t *, ...); | |
220 static int gaim_parse_login (aim_session_t *, aim_frame_t *, ...); | |
221 static int gaim_handle_redirect (aim_session_t *, aim_frame_t *, ...); | |
222 static int gaim_info_change (aim_session_t *, aim_frame_t *, ...); | |
223 static int gaim_account_confirm (aim_session_t *, aim_frame_t *, ...); | |
224 static int gaim_parse_oncoming (aim_session_t *, aim_frame_t *, ...); | |
225 static int gaim_parse_offgoing (aim_session_t *, aim_frame_t *, ...); | |
226 static int gaim_parse_incoming_im(aim_session_t *, aim_frame_t *, ...); | |
227 static int gaim_parse_misses (aim_session_t *, aim_frame_t *, ...); | |
228 static int gaim_parse_clientauto (aim_session_t *, aim_frame_t *, ...); | |
229 static int gaim_parse_user_info (aim_session_t *, aim_frame_t *, ...); | |
230 static int gaim_parse_motd (aim_session_t *, aim_frame_t *, ...); | |
231 static int gaim_chatnav_info (aim_session_t *, aim_frame_t *, ...); | |
232 static int gaim_chat_join (aim_session_t *, aim_frame_t *, ...); | |
233 static int gaim_chat_leave (aim_session_t *, aim_frame_t *, ...); | |
234 static int gaim_chat_info_update (aim_session_t *, aim_frame_t *, ...); | |
235 static int gaim_chat_incoming_msg(aim_session_t *, aim_frame_t *, ...); | |
236 static int gaim_email_parseupdate(aim_session_t *, aim_frame_t *, ...); | |
237 static int gaim_icon_error (aim_session_t *, aim_frame_t *, ...); | |
238 static int gaim_icon_parseicon (aim_session_t *, aim_frame_t *, ...); | |
239 static int gaim_parse_msgack (aim_session_t *, aim_frame_t *, ...); | |
240 static int gaim_parse_ratechange (aim_session_t *, aim_frame_t *, ...); | |
241 static int gaim_parse_evilnotify (aim_session_t *, aim_frame_t *, ...); | |
242 static int gaim_parse_searcherror(aim_session_t *, aim_frame_t *, ...); | |
243 static int gaim_parse_searchreply(aim_session_t *, aim_frame_t *, ...); | |
244 static int gaim_bosrights (aim_session_t *, aim_frame_t *, ...); | |
245 static int gaim_connerr (aim_session_t *, aim_frame_t *, ...); | |
246 static int conninitdone_admin (aim_session_t *, aim_frame_t *, ...); | |
247 static int conninitdone_bos (aim_session_t *, aim_frame_t *, ...); | |
248 static int conninitdone_chatnav (aim_session_t *, aim_frame_t *, ...); | |
249 static int conninitdone_chat (aim_session_t *, aim_frame_t *, ...); | |
250 static int conninitdone_email (aim_session_t *, aim_frame_t *, ...); | |
251 static int conninitdone_icon (aim_session_t *, aim_frame_t *, ...); | |
252 static int gaim_parse_msgerr (aim_session_t *, aim_frame_t *, ...); | |
253 static int gaim_parse_mtn (aim_session_t *, aim_frame_t *, ...); | |
254 static int gaim_parse_locaterights(aim_session_t *, aim_frame_t *, ...); | |
255 static int gaim_parse_buddyrights(aim_session_t *, aim_frame_t *, ...); | |
256 static int gaim_parse_locerr (aim_session_t *, aim_frame_t *, ...); | |
257 static int gaim_icbm_param_info (aim_session_t *, aim_frame_t *, ...); | |
258 static int gaim_parse_genericerr (aim_session_t *, aim_frame_t *, ...); | |
259 static int gaim_memrequest (aim_session_t *, aim_frame_t *, ...); | |
260 static int gaim_selfinfo (aim_session_t *, aim_frame_t *, ...); | |
261 static int gaim_offlinemsg (aim_session_t *, aim_frame_t *, ...); | |
262 static int gaim_offlinemsgdone (aim_session_t *, aim_frame_t *, ...); | |
263 static int gaim_icqalias (aim_session_t *, aim_frame_t *, ...); | |
264 static int gaim_icqinfo (aim_session_t *, aim_frame_t *, ...); | |
265 static int gaim_popup (aim_session_t *, aim_frame_t *, ...); | |
266 #ifndef NOSSI | |
267 static int gaim_ssi_parseerr (aim_session_t *, aim_frame_t *, ...); | |
268 static int gaim_ssi_parserights (aim_session_t *, aim_frame_t *, ...); | |
269 static int gaim_ssi_parselist (aim_session_t *, aim_frame_t *, ...); | |
270 static int gaim_ssi_parseack (aim_session_t *, aim_frame_t *, ...); | |
271 static int gaim_ssi_authgiven (aim_session_t *, aim_frame_t *, ...); | |
272 static int gaim_ssi_authrequest (aim_session_t *, aim_frame_t *, ...); | |
273 static int gaim_ssi_authreply (aim_session_t *, aim_frame_t *, ...); | |
274 static int gaim_ssi_gotadded (aim_session_t *, aim_frame_t *, ...); | |
275 #endif | |
276 | |
277 /* for DirectIM/image transfer */ | |
278 static int gaim_odc_initiate (aim_session_t *, aim_frame_t *, ...); | |
279 static int gaim_odc_incoming (aim_session_t *, aim_frame_t *, ...); | |
280 static int gaim_odc_typing (aim_session_t *, aim_frame_t *, ...); | |
281 static int gaim_update_ui (aim_session_t *, aim_frame_t *, ...); | |
282 | |
283 /* for file transfer */ | |
284 static int oscar_sendfile_estblsh(aim_session_t *, aim_frame_t *, ...); | |
285 static int oscar_sendfile_prompt (aim_session_t *, aim_frame_t *, ...); | |
286 static int oscar_sendfile_ack (aim_session_t *, aim_frame_t *, ...); | |
287 static int oscar_sendfile_done (aim_session_t *, aim_frame_t *, ...); | |
288 | |
289 /* for icons */ | |
290 static gboolean gaim_icon_timerfunc(gpointer data); | |
291 | |
5149 | 292 int ill_just_write_my_own_damn_round_function(double val) { |
293 if ((val - (int)val) > 0.5) | |
294 return val+1; | |
295 else | |
296 return val; | |
297 } | |
298 | |
4230 | 299 static void gaim_free_name_data(struct name_data *data) { |
300 g_free(data->name); | |
301 g_free(data->nick); | |
302 g_free(data); | |
303 } | |
304 | |
5129 | 305 static fu32_t oscar_encoding_check(const char *utf8) |
306 { | |
307 int i = 0; | |
308 fu32_t encodingflag = 0; | |
309 | |
310 /* Determine how we can send this message. Per the warnings elsewhere | |
311 * in this file, these little checks determine the simplest encoding | |
312 * we can use for a given message send using it. */ | |
313 while (utf8[i]) { | |
314 if ((unsigned char)utf8[i] > 0x7f) { | |
315 /* not ASCII! */ | |
316 encodingflag = AIM_IMFLAGS_ISO_8859_1; | |
317 break; | |
318 } | |
319 i++; | |
320 } | |
321 while (utf8[i]) { | |
322 /* ISO-8859-1 is 0x00-0xbf in the first byte | |
323 * followed by 0xc0-0xc3 in the second */ | |
324 if ((unsigned char)utf8[i] < 0x80) { | |
325 i++; | |
326 continue; | |
327 } else if (((unsigned char)utf8[i] & 0xfc) == 0xc0 && | |
328 ((unsigned char)utf8[i + 1] & 0xc0) == 0x80) { | |
329 i += 2; | |
330 continue; | |
331 } | |
332 encodingflag = AIM_IMFLAGS_UNICODE; | |
333 break; | |
334 } | |
335 | |
336 return encodingflag; | |
337 } | |
338 | |
339 static fu32_t oscar_encoding_parse(const char *enc) | |
340 { | |
341 char *charset; | |
342 | |
343 /* If anything goes wrong, fall back on ASCII and print a message */ | |
344 if (enc == NULL) { | |
345 debug_printf("Encoding was null, that's odd\n"); | |
346 return 0; | |
347 } | |
348 charset = strstr(enc, "charset="); | |
349 if (charset == NULL) { | |
350 debug_printf("No charset specified for info, assuming ASCII\n"); | |
351 return 0; | |
352 } | |
353 charset += 8; | |
354 if (!strcmp(charset, "\"us-ascii\"") || !strcmp(charset, "\"utf-8\"")) { | |
355 /* UTF-8 is our native charset, ASCII is a proper subset */ | |
356 return 0; | |
357 } else if (!strcmp(charset, "\"iso-8859-1\"")) { | |
358 return AIM_IMFLAGS_ISO_8859_1; | |
359 } else if (!strcmp(charset, "\"unicode-2-0\"")) { | |
360 return AIM_IMFLAGS_UNICODE; | |
361 } else { | |
362 debug_printf("Unrecognized character set '%s', using ASCII\n", charset); | |
363 return 0; | |
364 } | |
365 } | |
366 | |
367 gchar *oscar_encoding_to_utf8(const char *encoding, char *text, int textlen) | |
368 { | |
369 gchar *utf8 = NULL; | |
370 int flags = oscar_encoding_parse(encoding); | |
371 | |
372 switch (flags) { | |
373 case 0: | |
374 utf8 = g_strndup(text, textlen); | |
375 break; | |
376 case AIM_IMFLAGS_ISO_8859_1: | |
377 utf8 = g_convert(text, textlen, "UTF-8", "ISO-8859-1", NULL, NULL, NULL); | |
378 break; | |
379 case AIM_IMFLAGS_UNICODE: | |
380 utf8 = g_convert(text, textlen, "UTF-8", "UCS-2BE", NULL, NULL, NULL); | |
381 break; | |
382 } | |
383 | |
384 return utf8; | |
385 } | |
386 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
387 static struct direct_im *find_direct_im(struct oscar_data *od, const char *who) { |
2086 | 388 GSList *d = od->direct_ims; |
389 struct direct_im *m = NULL; | |
390 | |
391 while (d) { | |
392 m = (struct direct_im *)d->data; | |
4355 | 393 if (!aim_sncmp(who, m->name)) |
4269 | 394 return m; |
2086 | 395 d = d->next; |
396 } | |
397 | |
4269 | 398 return NULL; |
2086 | 399 } |
400 | |
2821
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
401 static char *extract_name(const char *name) { |
4121 | 402 char *tmp, *x; |
2086 | 403 int i, j; |
4120 | 404 |
405 if (!name) | |
4121 | 406 return NULL; |
407 | |
4120 | 408 x = strchr(name, '-'); |
4121 | 409 |
2086 | 410 if (!x) return NULL; |
411 x = strchr(++x, '-'); | |
412 if (!x) return NULL; | |
413 tmp = g_strdup(++x); | |
414 | |
415 for (i = 0, j = 0; x[i]; i++) { | |
2361
554b001d7d98
[gaim-migrate @ 2374]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2357
diff
changeset
|
416 char hex[3]; |
554b001d7d98
[gaim-migrate @ 2374]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2357
diff
changeset
|
417 if (x[i] != '%') { |
2086 | 418 tmp[j++] = x[i]; |
2361
554b001d7d98
[gaim-migrate @ 2374]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2357
diff
changeset
|
419 continue; |
2086 | 420 } |
2361
554b001d7d98
[gaim-migrate @ 2374]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2357
diff
changeset
|
421 strncpy(hex, x + ++i, 2); hex[2] = 0; |
554b001d7d98
[gaim-migrate @ 2374]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2357
diff
changeset
|
422 i++; |
554b001d7d98
[gaim-migrate @ 2374]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2357
diff
changeset
|
423 tmp[j++] = strtol(hex, NULL, 16); |
2086 | 424 } |
425 | |
426 tmp[j] = 0; | |
427 return tmp; | |
428 } | |
429 | |
430 static struct chat_connection *find_oscar_chat(struct gaim_connection *gc, int id) { | |
431 GSList *g = ((struct oscar_data *)gc->proto_data)->oscar_chats; | |
432 struct chat_connection *c = NULL; | |
433 | |
434 while (g) { | |
435 c = (struct chat_connection *)g->data; | |
436 if (c->id == id) | |
437 break; | |
438 g = g->next; | |
439 c = NULL; | |
440 } | |
441 | |
442 return c; | |
443 } | |
444 | |
445 static struct chat_connection *find_oscar_chat_by_conn(struct gaim_connection *gc, | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
446 aim_conn_t *conn) { |
2086 | 447 GSList *g = ((struct oscar_data *)gc->proto_data)->oscar_chats; |
448 struct chat_connection *c = NULL; | |
449 | |
450 while (g) { | |
451 c = (struct chat_connection *)g->data; | |
452 if (c->conn == conn) | |
453 break; | |
454 g = g->next; | |
455 c = NULL; | |
456 } | |
457 | |
458 return c; | |
459 } | |
460 | |
4617 | 461 static void gaim_odc_disconnect(aim_session_t *sess, aim_conn_t *conn) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
462 struct gaim_connection *gc = sess->aux_data; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
463 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4358
diff
changeset
|
464 struct gaim_conversation *cnv; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
465 struct direct_im *dim; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
466 char *sn; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
467 char buf[256]; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
468 |
4617 | 469 sn = g_strdup(aim_odc_getsn(conn)); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
470 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
471 debug_printf("%s disconnected Direct IM.\n", sn); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
472 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
473 dim = find_direct_im(od, sn); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
474 od->direct_ims = g_slist_remove(od->direct_ims, dim); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
475 gaim_input_remove(dim->watcher); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
476 |
3008 | 477 if (dim->connected) |
478 g_snprintf(buf, sizeof buf, _("Direct IM with %s closed"), sn); | |
479 else | |
480 g_snprintf(buf, sizeof buf, _("Direct IM with %s failed"), sn); | |
481 | |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4358
diff
changeset
|
482 if ((cnv = gaim_find_conversation(sn))) |
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4358
diff
changeset
|
483 gaim_conversation_write(cnv, NULL, buf, -1, WFLAG_SYSTEM, time(NULL)); |
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4358
diff
changeset
|
484 |
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4358
diff
changeset
|
485 gaim_conversation_update_progress(cnv, 100); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
486 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
487 g_free(dim); /* I guess? I don't see it anywhere else... -- mid */ |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
488 g_free(sn); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
489 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
490 return; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
491 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
492 |
4617 | 493 static void oscar_callback(gpointer data, gint source, GaimInputCondition condition) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
494 aim_conn_t *conn = (aim_conn_t *)data; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
495 aim_session_t *sess = aim_conn_getsess(conn); |
2086 | 496 struct gaim_connection *gc = sess ? sess->aux_data : NULL; |
4617 | 497 struct oscar_data *od; |
2086 | 498 |
499 if (!gc) { | |
500 /* gc is null. we return, else we seg SIGSEG on next line. */ | |
501 debug_printf("oscar callback for closed connection (1).\n"); | |
502 return; | |
503 } | |
504 | |
4617 | 505 od = (struct oscar_data *)gc->proto_data; |
2086 | 506 |
507 if (!g_slist_find(connections, gc)) { | |
508 /* oh boy. this is probably bad. i guess the only thing we | |
509 * can really do is return? */ | |
510 debug_printf("oscar callback for closed connection (2).\n"); | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
511 debug_printf("gc = %p\n", gc); |
2086 | 512 return; |
513 } | |
514 | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
515 if (condition & GAIM_INPUT_READ) { |
4617 | 516 if (conn->type == AIM_CONN_TYPE_LISTENER) { |
517 debug_printf("got information on rendezvous listener\n"); | |
518 if (aim_handlerendconnect(od->sess, conn) < 0) { | |
519 debug_printf("connection error (rendezvous listener)\n"); | |
520 aim_conn_kill(od->sess, &conn); | |
2086 | 521 } |
522 } else { | |
4617 | 523 if (aim_get_command(od->sess, conn) >= 0) { |
524 aim_rxdispatch(od->sess); | |
525 if (od->killme) | |
2086 | 526 signoff(gc); |
527 } else { | |
528 if ((conn->type == AIM_CONN_TYPE_BOS) || | |
4617 | 529 !(aim_getconn_type(od->sess, AIM_CONN_TYPE_BOS))) { |
4236 | 530 debug_printf("major connection error\n"); |
3074 | 531 hide_login_progress_error(gc, _("Disconnected.")); |
2086 | 532 signoff(gc); |
533 } else if (conn->type == AIM_CONN_TYPE_CHAT) { | |
534 struct chat_connection *c = find_oscar_chat_by_conn(gc, conn); | |
535 char buf[BUF_LONG]; | |
536 debug_printf("disconnected from chat room %s\n", c->name); | |
537 c->conn = NULL; | |
538 if (c->inpa > 0) | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
539 gaim_input_remove(c->inpa); |
2086 | 540 c->inpa = 0; |
541 c->fd = -1; | |
4617 | 542 aim_conn_kill(od->sess, &conn); |
3574 | 543 snprintf(buf, sizeof(buf), _("You have been disconnected from chat room %s."), c->name); |
3427 | 544 do_error_dialog(buf, NULL, GAIM_ERROR); |
2086 | 545 } else if (conn->type == AIM_CONN_TYPE_CHATNAV) { |
4617 | 546 if (od->cnpa > 0) |
547 gaim_input_remove(od->cnpa); | |
548 od->cnpa = 0; | |
2086 | 549 debug_printf("removing chatnav input watcher\n"); |
4617 | 550 while (od->create_rooms) { |
551 struct create_room *cr = od->create_rooms->data; | |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
552 g_free(cr->name); |
4617 | 553 od->create_rooms = |
554 g_slist_remove(od->create_rooms, cr); | |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
555 g_free(cr); |
3427 | 556 do_error_dialog(_("Chat is currently unavailable"), NULL, GAIM_ERROR); |
2086 | 557 } |
4617 | 558 aim_conn_kill(od->sess, &conn); |
2086 | 559 } else if (conn->type == AIM_CONN_TYPE_AUTH) { |
4617 | 560 if (od->paspa > 0) |
561 gaim_input_remove(od->paspa); | |
562 od->paspa = 0; | |
2086 | 563 debug_printf("removing authconn input watcher\n"); |
4617 | 564 aim_conn_kill(od->sess, &conn); |
3694 | 565 } else if (conn->type == AIM_CONN_TYPE_EMAIL) { |
4617 | 566 if (od->emlpa > 0) |
567 gaim_input_remove(od->emlpa); | |
568 od->emlpa = 0; | |
3694 | 569 debug_printf("removing email input watcher\n"); |
4617 | 570 aim_conn_kill(od->sess, &conn); |
4804 | 571 } else if (conn->type == AIM_CONN_TYPE_ICON) { |
572 if (od->icopa > 0) | |
573 gaim_input_remove(od->icopa); | |
574 od->icopa = 0; | |
575 debug_printf("removing icon input watcher\n"); | |
576 aim_conn_kill(od->sess, &conn); | |
2086 | 577 } else if (conn->type == AIM_CONN_TYPE_RENDEZVOUS) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
578 if (conn->subtype == AIM_CONN_SUBTYPE_OFT_DIRECTIM) |
4617 | 579 gaim_odc_disconnect(od->sess, conn); |
580 aim_conn_kill(od->sess, &conn); | |
2086 | 581 } else { |
4194 | 582 debug_printf("holy crap! generic connection error! %hu\n", |
2086 | 583 conn->type); |
4617 | 584 aim_conn_kill(od->sess, &conn); |
2086 | 585 } |
586 } | |
587 } | |
588 } | |
589 } | |
590 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
591 static void oscar_debug(aim_session_t *sess, int level, const char *format, va_list va) { |
2086 | 592 char *s = g_strdup_vprintf(format, va); |
593 char buf[256]; | |
594 char *t; | |
595 struct gaim_connection *gc = sess->aux_data; | |
596 | |
597 g_snprintf(buf, sizeof(buf), "%s %d: ", gc->username, level); | |
598 t = g_strconcat(buf, s, NULL); | |
599 debug_printf(t); | |
600 if (t[strlen(t)-1] != '\n') | |
601 debug_printf("\n"); | |
602 g_free(t); | |
603 g_free(s); | |
604 } | |
605 | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
606 static void oscar_login_connect(gpointer data, gint source, GaimInputCondition cond) |
2086 | 607 { |
608 struct gaim_connection *gc = data; | |
4617 | 609 struct oscar_data *od; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
610 aim_session_t *sess; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
611 aim_conn_t *conn; |
2086 | 612 |
613 if (!g_slist_find(connections, gc)) { | |
614 close(source); | |
615 return; | |
616 } | |
617 | |
4617 | 618 od = gc->proto_data; |
619 sess = od->sess; | |
2086 | 620 conn = aim_getconn_type_all(sess, AIM_CONN_TYPE_AUTH); |
4366 | 621 |
622 conn->fd = source; | |
2086 | 623 |
624 if (source < 0) { | |
625 hide_login_progress(gc, _("Couldn't connect to host")); | |
626 signoff(gc); | |
627 return; | |
628 } | |
629 | |
630 aim_conn_completeconnect(sess, conn); | |
4617 | 631 gc->inpa = gaim_input_add(conn->fd, GAIM_INPUT_READ, oscar_callback, conn); |
4236 | 632 debug_printf("Password sent, waiting for response\n"); |
2086 | 633 } |
634 | |
4491 | 635 static void oscar_login(struct gaim_account *account) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
636 aim_session_t *sess; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
637 aim_conn_t *conn; |
2086 | 638 char buf[256]; |
4491 | 639 struct gaim_connection *gc = new_gaim_conn(account); |
4617 | 640 struct oscar_data *od = gc->proto_data = g_new0(struct oscar_data, 1); |
2086 | 641 |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
642 debug_printf("oscar_login: gc = %p\n", gc); |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
643 |
4491 | 644 if (isdigit(*account->username)) { |
4617 | 645 od->icq = TRUE; |
3064 | 646 gc->password[8] = 0; |
2706
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
647 } else { |
2918
4df759d607f3
[gaim-migrate @ 2931]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2916
diff
changeset
|
648 gc->flags |= OPT_CONN_HTML; |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
649 gc->flags |= OPT_CONN_AUTO_RESP; |
2706
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
650 } |
4738 | 651 od->buddyinfo = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free); |
2086 | 652 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
653 sess = g_new0(aim_session_t, 1); |
2086 | 654 |
655 aim_session_init(sess, AIM_SESS_FLAGS_NONBLOCKCONNECT, 0); | |
656 aim_setdebuggingcb(sess, oscar_debug); | |
657 | |
658 /* we need an immediate queue because we don't use a while-loop to | |
659 * see if things need to be sent. */ | |
660 aim_tx_setenqueue(sess, AIM_TX_IMMEDIATE, NULL); | |
4617 | 661 od->sess = sess; |
2086 | 662 sess->aux_data = gc; |
663 | |
664 conn = aim_newconn(sess, AIM_CONN_TYPE_AUTH, NULL); | |
665 if (conn == NULL) { | |
4236 | 666 debug_printf("internal connection error\n"); |
2086 | 667 hide_login_progress(gc, _("Unable to login to AIM")); |
668 signoff(gc); | |
669 return; | |
670 } | |
671 | |
672 g_snprintf(buf, sizeof(buf), _("Signon: %s"), gc->username); | |
673 set_login_progress(gc, 2, buf); | |
674 | |
4649 | 675 aim_conn_addhandler(sess, conn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNERR, gaim_connerr, 0); |
2086 | 676 aim_conn_addhandler(sess, conn, 0x0017, 0x0007, gaim_parse_login, 0); |
677 aim_conn_addhandler(sess, conn, 0x0017, 0x0003, gaim_parse_auth_resp, 0); | |
678 | |
679 conn->status |= AIM_CONN_STATUS_INPROGRESS; | |
4634 | 680 if (proxy_connect(account, account->proto_opt[USEROPT_AUTH][0] ? |
4491 | 681 account->proto_opt[USEROPT_AUTH] : FAIM_LOGIN_SERVER, |
682 account->proto_opt[USEROPT_AUTHPORT][0] ? | |
683 atoi(account->proto_opt[USEROPT_AUTHPORT]) : FAIM_LOGIN_PORT, | |
684 oscar_login_connect, gc) < 0) { | |
2086 | 685 hide_login_progress(gc, _("Couldn't connect to host")); |
686 signoff(gc); | |
687 return; | |
688 } | |
689 aim_request_login(sess, conn, gc->username); | |
690 } | |
691 | |
692 static void oscar_close(struct gaim_connection *gc) { | |
4617 | 693 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
694 | |
695 while (od->oscar_chats) { | |
696 struct chat_connection *n = od->oscar_chats->data; | |
2086 | 697 if (n->inpa > 0) |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
698 gaim_input_remove(n->inpa); |
2086 | 699 g_free(n->name); |
700 g_free(n->show); | |
4617 | 701 od->oscar_chats = g_slist_remove(od->oscar_chats, n); |
2086 | 702 g_free(n); |
703 } | |
4617 | 704 while (od->direct_ims) { |
705 struct direct_im *n = od->direct_ims->data; | |
2086 | 706 if (n->watcher > 0) |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
707 gaim_input_remove(n->watcher); |
4617 | 708 od->direct_ims = g_slist_remove(od->direct_ims, n); |
2086 | 709 g_free(n); |
710 } | |
4617 | 711 /* BBB */ |
712 while (od->file_transfers) { | |
713 struct gaim_xfer *xfer; | |
714 xfer = (struct gaim_xfer *)od->file_transfers->data; | |
715 gaim_xfer_destroy(xfer); | |
3630 | 716 } |
4804 | 717 while (od->requesticon) { |
718 char *sn = od->requesticon->data; | |
719 od->requesticon = g_slist_remove(od->requesticon, sn); | |
720 free(sn); | |
721 } | |
4738 | 722 g_hash_table_destroy(od->buddyinfo); |
4617 | 723 while (od->evilhack) { |
724 g_free(od->evilhack->data); | |
725 od->evilhack = g_slist_remove(od->evilhack, od->evilhack->data); | |
2791
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
726 } |
4617 | 727 while (od->create_rooms) { |
728 struct create_room *cr = od->create_rooms->data; | |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
729 g_free(cr->name); |
4617 | 730 od->create_rooms = g_slist_remove(od->create_rooms, cr); |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
731 g_free(cr); |
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
732 } |
4617 | 733 if (od->email) |
734 g_free(od->email); | |
735 if (od->newp) | |
736 g_free(od->newp); | |
737 if (od->oldp) | |
738 g_free(od->oldp); | |
2086 | 739 if (gc->inpa > 0) |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
740 gaim_input_remove(gc->inpa); |
4617 | 741 if (od->cnpa > 0) |
742 gaim_input_remove(od->cnpa); | |
743 if (od->paspa > 0) | |
744 gaim_input_remove(od->paspa); | |
745 if (od->emlpa > 0) | |
746 gaim_input_remove(od->emlpa); | |
4804 | 747 if (od->icopa > 0) |
748 gaim_input_remove(od->icopa); | |
4832 | 749 if (od->icopa > 0) |
750 gaim_input_remove(od->icopa); | |
751 if (od->icontimer) | |
752 g_source_remove(od->icontimer); | |
4617 | 753 aim_session_kill(od->sess); |
754 g_free(od->sess); | |
755 od->sess = NULL; | |
2086 | 756 g_free(gc->proto_data); |
757 gc->proto_data = NULL; | |
4236 | 758 debug_printf("Signed off.\n"); |
2086 | 759 } |
760 | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
761 static void oscar_bos_connect(gpointer data, gint source, GaimInputCondition cond) { |
2086 | 762 struct gaim_connection *gc = data; |
4617 | 763 struct oscar_data *od; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
764 aim_session_t *sess; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
765 aim_conn_t *bosconn; |
2086 | 766 |
767 if (!g_slist_find(connections, gc)) { | |
768 close(source); | |
769 return; | |
770 } | |
771 | |
4617 | 772 od = gc->proto_data; |
773 sess = od->sess; | |
774 bosconn = od->conn; | |
4366 | 775 bosconn->fd = source; |
2086 | 776 |
777 if (source < 0) { | |
778 hide_login_progress(gc, _("Could Not Connect")); | |
779 signoff(gc); | |
780 return; | |
781 } | |
782 | |
783 aim_conn_completeconnect(sess, bosconn); | |
4617 | 784 gc->inpa = gaim_input_add(bosconn->fd, GAIM_INPUT_READ, oscar_callback, bosconn); |
2086 | 785 set_login_progress(gc, 4, _("Connection established, cookie sent")); |
786 } | |
787 | |
4617 | 788 /* BBB */ |
4656 | 789 /* |
790 * This little area in oscar.c is the nexus of file transfer code, | |
791 * so I wrote a little explanation of what happens. I am such a | |
792 * ninja. | |
793 * | |
794 * The series of events for a file send is: | |
795 * -Create xfer and call gaim_xfer_request (this happens in oscar_ask_sendfile) | |
796 * -User chooses a file and oscar_xfer_init is called. It establishs a | |
797 * listening socket, then asks the remote user to connect to us (and | |
798 * gives them the file name, port, IP, etc.) | |
799 * -They connect to us and we send them an AIM_CB_OFT_PROMPT (this happens | |
800 * in oscar_sendfile_estblsh) | |
801 * -They send us an AIM_CB_OFT_ACK and then we start sending data | |
802 * -When we finish, they send us an AIM_CB_OFT_DONE and they close the | |
803 * connection. | |
804 * -We get drunk because file transfer kicks ass. | |
805 * | |
806 * The series of events for a file receive is: | |
807 * -Create xfer and call gaim_xfer request (this happens in incomingim_chan2) | |
808 * -Gaim user selects file to name and location to save file to and | |
809 * oscar_xfer_init is called | |
810 * -It connects to the remote user using the IP they gave us earlier | |
811 * -After connecting, they send us an AIM_CB_OFT_PROMPT. In reply, we send | |
812 * them an AIM_CB_OFT_ACK. | |
813 * -They begin to send us lots of raw data. | |
814 * -When they finish sending data we send an AIM_CB_OFT_DONE and then close | |
815 * the connectionn. | |
816 */ | |
817 static void oscar_sendfile_connected(gpointer data, gint source, GaimInputCondition condition); | |
818 | |
819 /* XXX - This function is pretty ugly */ | |
5146 | 820 static void oscar_xfer_init(struct gaim_xfer *xfer) |
4656 | 821 { |
5146 | 822 struct aim_oft_info *oft_info = xfer->data; |
823 struct gaim_connection *gc = oft_info->sess->aux_data; | |
824 struct oscar_data *od = gc->proto_data; | |
4656 | 825 |
826 if (gaim_xfer_get_type(xfer) == GAIM_XFER_SEND) { | |
827 int i; | |
828 | |
829 xfer->filename = g_path_get_basename(xfer->local_filename); | |
5146 | 830 strncpy(oft_info->fh.name, xfer->filename, 64); |
831 oft_info->fh.totsize = gaim_xfer_get_size(xfer); | |
832 oft_info->fh.size = gaim_xfer_get_size(xfer); | |
833 oft_info->fh.checksum = aim_oft_checksum_file(xfer->local_filename); | |
4656 | 834 |
835 /* | |
5146 | 836 * First try the port specified earlier (5190). If that fails, |
837 * increment by 1 and try again. | |
4656 | 838 */ |
5146 | 839 aim_sendfile_listen(od->sess, oft_info); |
840 for (i=0; (i<5 && !oft_info->conn); i++) { | |
841 xfer->local_port = oft_info->port = oft_info->port + 1; | |
842 aim_sendfile_listen(od->sess, oft_info); | |
4656 | 843 } |
5146 | 844 debug_printf("port is %d, ip is %s\n", xfer->local_port, oft_info->clientip); |
845 if (oft_info->conn) { | |
846 xfer->watcher = gaim_input_add(oft_info->conn->fd, GAIM_INPUT_READ, oscar_callback, oft_info->conn); | |
847 aim_im_sendch2_sendfile_ask(od->sess, oft_info); | |
848 aim_conn_addhandler(od->sess, oft_info->conn, AIM_CB_FAM_OFT, AIM_CB_OFT_ESTABLISHED, oscar_sendfile_estblsh, 0); | |
4656 | 849 } else { |
850 do_error_dialog(_("File Transfer Aborted"), _("Unable to establish listener socket."), GAIM_ERROR); | |
851 /* XXX - The below line causes a crash because the transfer is canceled before the "Ok" callback on the file selection thing exists, I think */ | |
4675
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4666
diff
changeset
|
852 /* gaim_xfer_cancel_remote(xfer); */ |
4656 | 853 } |
854 } else if (gaim_xfer_get_type(xfer) == GAIM_XFER_RECEIVE) { | |
5146 | 855 oft_info->conn = aim_newconn(od->sess, AIM_CONN_TYPE_RENDEZVOUS, NULL); |
856 if (oft_info->conn) { | |
857 oft_info->conn->subtype = AIM_CONN_SUBTYPE_OFT_SENDFILE; | |
858 aim_conn_addhandler(od->sess, oft_info->conn, AIM_CB_FAM_OFT, AIM_CB_OFT_PROMPT, oscar_sendfile_prompt, 0); | |
859 oft_info->conn->fd = xfer->fd = proxy_connect(gc->account, xfer->remote_ip, xfer->remote_port, oscar_sendfile_connected, xfer); | |
4656 | 860 if (xfer->fd == -1) { |
861 do_error_dialog(_("File Transfer Aborted"), _("Unable to establish file descriptor."), GAIM_ERROR); | |
4675
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4666
diff
changeset
|
862 /* gaim_xfer_cancel_remote(xfer); */ |
4656 | 863 } |
864 } else { | |
865 do_error_dialog(_("File Transfer Aborted"), _("Unable to create new connection."), GAIM_ERROR); | |
4675
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4666
diff
changeset
|
866 /* gaim_xfer_cancel_remote(xfer); */ |
4656 | 867 /* Try a different port? Ask them to connect to us? */ |
868 } | |
869 | |
870 } | |
871 } | |
872 | |
5146 | 873 static void oscar_xfer_start(struct gaim_xfer *xfer) |
4656 | 874 { |
5146 | 875 |
4656 | 876 debug_printf("AAA - in oscar_xfer_start\n"); |
877 /* I'm pretty sure we don't need to do jack here. Nor Jill. */ | |
878 } | |
879 | |
5146 | 880 static void oscar_xfer_end(struct gaim_xfer *xfer) |
4656 | 881 { |
5146 | 882 struct aim_oft_info *oft_info = xfer->data; |
883 struct gaim_connection *gc = oft_info->sess->aux_data; | |
884 struct oscar_data *od = gc->proto_data; | |
4656 | 885 |
886 debug_printf("AAA - in oscar_xfer_end\n"); | |
5146 | 887 |
888 if (gaim_xfer_get_type(xfer) == GAIM_XFER_RECEIVE) { | |
889 oft_info->fh.nrecvd = gaim_xfer_get_bytes_sent(xfer); | |
890 aim_oft_sendheader(oft_info->sess, AIM_CB_OFT_DONE, oft_info); | |
891 } | |
892 | |
893 aim_conn_kill(oft_info->sess, &oft_info->conn); | |
894 aim_oft_destroyinfo(oft_info); | |
4656 | 895 xfer->data = NULL; |
5146 | 896 od->file_transfers = g_slist_remove(od->file_transfers, xfer); |
4656 | 897 } |
898 | |
5146 | 899 static void oscar_xfer_cancel_send(struct gaim_xfer *xfer) |
4675
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4666
diff
changeset
|
900 { |
5146 | 901 struct aim_oft_info *oft_info = xfer->data; |
902 struct gaim_connection *gc = oft_info->sess->aux_data; | |
903 struct oscar_data *od = gc->proto_data; | |
4763 | 904 |
905 debug_printf("AAA - in oscar_xfer_cancel_send\n"); | |
5146 | 906 |
907 aim_im_sendch2_sendfile_cancel(oft_info->sess, oft_info); | |
908 | |
909 aim_conn_kill(oft_info->sess, &oft_info->conn); | |
910 aim_oft_destroyinfo(oft_info); | |
4763 | 911 xfer->data = NULL; |
5146 | 912 od->file_transfers = g_slist_remove(od->file_transfers, xfer); |
4675
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4666
diff
changeset
|
913 } |
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4666
diff
changeset
|
914 |
5146 | 915 static void oscar_xfer_cancel_recv(struct gaim_xfer *xfer) |
4656 | 916 { |
5146 | 917 struct aim_oft_info *oft_info = xfer->data; |
918 struct gaim_connection *gc = oft_info->sess->aux_data; | |
919 struct oscar_data *od = gc->proto_data; | |
4656 | 920 |
4763 | 921 debug_printf("AAA - in oscar_xfer_cancel_recv\n"); |
5146 | 922 |
923 aim_im_sendch2_sendfile_cancel(oft_info->sess, oft_info); | |
924 | |
925 aim_conn_kill(oft_info->sess, &oft_info->conn); | |
926 aim_oft_destroyinfo(oft_info); | |
4656 | 927 xfer->data = NULL; |
5146 | 928 od->file_transfers = g_slist_remove(od->file_transfers, xfer); |
4656 | 929 } |
930 | |
5146 | 931 static void oscar_xfer_ack(struct gaim_xfer *xfer, const char *buffer, size_t size) |
4656 | 932 { |
5146 | 933 struct aim_oft_info *oft_info = xfer->data; |
4656 | 934 |
935 if (gaim_xfer_get_type(xfer) == GAIM_XFER_SEND) { | |
936 /* | |
937 * If we're done sending, intercept the socket from the core ft code | |
938 * and wait for the other guy to send the "done" OFT packet. | |
939 */ | |
940 if (gaim_xfer_get_bytes_remaining(xfer) <= 0) { | |
941 gaim_input_remove(xfer->watcher); | |
5146 | 942 xfer->watcher = gaim_input_add(xfer->fd, GAIM_INPUT_READ, oscar_callback, oft_info->conn); |
4656 | 943 xfer->fd = 0; |
944 gaim_xfer_set_completed(xfer, TRUE); | |
945 } | |
946 } else if (gaim_xfer_get_type(xfer) == GAIM_XFER_RECEIVE) { | |
5146 | 947 /* Update our rolling checksum. Like Walmart, yo. */ |
948 oft_info->fh.recvcsum = aim_oft_checksum_chunk(buffer, size, oft_info->fh.recvcsum); | |
4656 | 949 } |
950 } | |
951 | |
5146 | 952 static struct gaim_xfer *oscar_find_xfer_by_cookie(GSList *fts, const char *ck) |
4656 | 953 { |
954 struct gaim_xfer *xfer; | |
5146 | 955 struct aim_oft_info *oft_info; |
4656 | 956 |
957 while (fts) { | |
958 xfer = fts->data; | |
5146 | 959 oft_info = xfer->data; |
960 | |
961 if (oft_info && !strcmp(ck, oft_info->cookie)) | |
4656 | 962 return xfer; |
963 | |
964 fts = g_slist_next(fts); | |
965 } | |
966 | |
967 return NULL; | |
968 } | |
969 | |
5146 | 970 static struct gaim_xfer *oscar_find_xfer_by_conn(GSList *fts, aim_conn_t *conn) |
4656 | 971 { |
972 struct gaim_xfer *xfer; | |
5146 | 973 struct aim_oft_info *oft_info; |
4656 | 974 |
975 while (fts) { | |
976 xfer = fts->data; | |
5146 | 977 oft_info = xfer->data; |
978 | |
979 if (oft_info && (conn == oft_info->conn)) | |
4656 | 980 return xfer; |
981 | |
982 fts = g_slist_next(fts); | |
983 } | |
984 | |
985 return NULL; | |
986 } | |
987 | |
5136 | 988 static void oscar_ask_sendfile(struct gaim_connection *gc, const char *destsn) { |
3630 | 989 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
5146 | 990 struct gaim_xfer *xfer; |
991 struct aim_oft_info *oft_info; | |
992 aim_conn_t *conn; | |
3752 | 993 |
4617 | 994 /* You want to send a file to someone else, you're so generous */ |
995 | |
996 /* Build the file transfer handle */ | |
997 xfer = gaim_xfer_new(gc->account, GAIM_XFER_SEND, destsn); | |
5146 | 998 if ((conn = aim_conn_findbygroup(od->sess, 0x0004))) |
999 xfer->local_ip = gaim_getip_from_fd(conn->fd); | |
4617 | 1000 xfer->local_port = 5190; |
1001 | |
5146 | 1002 /* Create the oscar-specific data */ |
1003 oft_info = aim_oft_createinfo(od->sess, NULL, destsn, xfer->local_ip, xfer->local_port, 0, 0, NULL); | |
1004 xfer->data = oft_info; | |
1005 | |
4617 | 1006 /* Setup our I/O op functions */ |
1007 gaim_xfer_set_init_fnc(xfer, oscar_xfer_init); | |
1008 gaim_xfer_set_start_fnc(xfer, oscar_xfer_start); | |
1009 gaim_xfer_set_end_fnc(xfer, oscar_xfer_end); | |
4675
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4666
diff
changeset
|
1010 gaim_xfer_set_cancel_send_fnc(xfer, oscar_xfer_cancel_send); |
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4666
diff
changeset
|
1011 gaim_xfer_set_cancel_recv_fnc(xfer, oscar_xfer_cancel_recv); |
4656 | 1012 gaim_xfer_set_ack_fnc(xfer, oscar_xfer_ack); |
4617 | 1013 |
1014 /* Keep track of this transfer for later */ | |
1015 od->file_transfers = g_slist_append(od->file_transfers, xfer); | |
1016 | |
1017 /* Now perform the request */ | |
1018 gaim_xfer_request(xfer); | |
3630 | 1019 } |
1020 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1021 static int gaim_parse_auth_resp(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 1022 va_list ap; |
2704 | 1023 struct aim_authresp_info *info; |
4452 | 1024 int i, rc; |
1025 char *host; int port; | |
4491 | 1026 struct gaim_account *account; |
2704 | 1027 aim_conn_t *bosconn; |
2086 | 1028 |
1029 struct gaim_connection *gc = sess->aux_data; | |
1030 struct oscar_data *od = gc->proto_data; | |
4491 | 1031 account = gc->account; |
1032 port = account->proto_opt[USEROPT_AUTHPORT][0] ? | |
1033 atoi(account->proto_opt[USEROPT_AUTHPORT]) : FAIM_LOGIN_PORT, | |
2086 | 1034 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1035 va_start(ap, fr); |
2704 | 1036 info = va_arg(ap, struct aim_authresp_info *); |
2086 | 1037 va_end(ap); |
1038 | |
2704 | 1039 debug_printf("inside auth_resp (Screen name: %s)\n", info->sn); |
1040 | |
4293 | 1041 if (info->errorcode || !info->bosip || !info->cookielen || !info->cookie) { |
4056 | 1042 char buf[256]; |
2704 | 1043 switch (info->errorcode) { |
2086 | 1044 case 0x05: |
1045 /* Incorrect nick/password */ | |
1046 hide_login_progress(gc, _("Incorrect nickname or password.")); | |
1047 break; | |
1048 case 0x11: | |
1049 /* Suspended account */ | |
1050 hide_login_progress(gc, _("Your account is currently suspended.")); | |
1051 break; | |
3498 | 1052 case 0x14: |
1053 /* service temporarily unavailable */ | |
1054 hide_login_progress(gc, _("The AOL Instant Messenger service is temporarily unavailable.")); | |
1055 break; | |
2086 | 1056 case 0x18: |
1057 /* connecting too frequently */ | |
1058 hide_login_progress(gc, _("You have been connecting and disconnecting too frequently. Wait ten minutes and try again. If you continue to try, you will need to wait even longer.")); | |
1059 break; | |
1060 case 0x1c: | |
1061 /* client too old */ | |
4056 | 1062 g_snprintf(buf, sizeof(buf), _("The client version you are using is too old. Please upgrade at %s"), WEBSITE); |
1063 hide_login_progress(gc, buf); | |
2086 | 1064 break; |
1065 default: | |
1066 hide_login_progress(gc, _("Authentication Failed")); | |
1067 break; | |
1068 } | |
4194 | 1069 debug_printf("Login Error Code 0x%04hx\n", info->errorcode); |
2704 | 1070 debug_printf("Error URL: %s\n", info->errorurl); |
2086 | 1071 od->killme = TRUE; |
1072 return 1; | |
1073 } | |
1074 | |
1075 | |
4194 | 1076 debug_printf("Reg status: %hu\n", info->regstatus); |
2704 | 1077 if (info->email) { |
1078 debug_printf("Email: %s\n", info->email); | |
2086 | 1079 } else { |
1080 debug_printf("Email is NULL\n"); | |
1081 } | |
2704 | 1082 debug_printf("BOSIP: %s\n", info->bosip); |
2086 | 1083 debug_printf("Closing auth connection...\n"); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1084 aim_conn_kill(sess, &fr->conn); |
2086 | 1085 |
1086 bosconn = aim_newconn(sess, AIM_CONN_TYPE_BOS, NULL); | |
1087 if (bosconn == NULL) { | |
1088 hide_login_progress(gc, _("Internal Error")); | |
1089 od->killme = TRUE; | |
1090 return 0; | |
1091 } | |
1092 | |
4649 | 1093 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNERR, gaim_connerr, 0); |
2675 | 1094 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNINITDONE, conninitdone_bos, 0); |
2086 | 1095 aim_conn_addhandler(sess, bosconn, 0x0009, 0x0003, gaim_bosrights, 0); |
1096 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_ACK, AIM_CB_ACK_ACK, NULL, 0); | |
1097 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_GEN, AIM_CB_GEN_REDIRECT, gaim_handle_redirect, 0); | |
2993 | 1098 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_LOC, AIM_CB_LOC_RIGHTSINFO, gaim_parse_locaterights, 0); |
2086 | 1099 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_BUD, AIM_CB_BUD_RIGHTSINFO, gaim_parse_buddyrights, 0); |
1100 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_BUD, AIM_CB_BUD_ONCOMING, gaim_parse_oncoming, 0); | |
1101 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_BUD, AIM_CB_BUD_OFFGOING, gaim_parse_offgoing, 0); | |
1102 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_INCOMING, gaim_parse_incoming_im, 0); | |
1103 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_LOC, AIM_CB_LOC_ERROR, gaim_parse_locerr, 0); | |
1104 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_MISSEDCALL, gaim_parse_misses, 0); | |
3212 | 1105 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_CLIENTAUTORESP, gaim_parse_clientauto, 0); |
2086 | 1106 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_GEN, AIM_CB_GEN_RATECHANGE, gaim_parse_ratechange, 0); |
1107 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_GEN, AIM_CB_GEN_EVIL, gaim_parse_evilnotify, 0); | |
1108 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_LOK, AIM_CB_LOK_ERROR, gaim_parse_searcherror, 0); | |
1109 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_LOK, 0x0003, gaim_parse_searchreply, 0); | |
1110 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_ERROR, gaim_parse_msgerr, 0); | |
3595 | 1111 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_MTN, gaim_parse_mtn, 0); |
2086 | 1112 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_LOC, AIM_CB_LOC_USERINFO, gaim_parse_user_info, 0); |
1113 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_ACK, gaim_parse_msgack, 0); | |
1114 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_GEN, AIM_CB_GEN_MOTD, gaim_parse_motd, 0); | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
1115 aim_conn_addhandler(sess, bosconn, 0x0004, 0x0005, gaim_icbm_param_info, 0); |
2086 | 1116 aim_conn_addhandler(sess, bosconn, 0x0001, 0x0001, gaim_parse_genericerr, 0); |
1117 aim_conn_addhandler(sess, bosconn, 0x0003, 0x0001, gaim_parse_genericerr, 0); | |
1118 aim_conn_addhandler(sess, bosconn, 0x0009, 0x0001, gaim_parse_genericerr, 0); | |
1119 aim_conn_addhandler(sess, bosconn, 0x0001, 0x001f, gaim_memrequest, 0); | |
2507
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
1120 aim_conn_addhandler(sess, bosconn, 0x0001, 0x000f, gaim_selfinfo, 0); |
2706
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
1121 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_ICQ, AIM_CB_ICQ_OFFLINEMSG, gaim_offlinemsg, 0); |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
1122 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_ICQ, AIM_CB_ICQ_OFFLINEMSGCOMPLETE, gaim_offlinemsgdone, 0); |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
1123 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_POP, 0x0002, gaim_popup, 0); |
4759 | 1124 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_ICQ, AIM_CB_ICQ_ALIAS, gaim_icqalias, 0); |
4624 | 1125 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_ICQ, AIM_CB_ICQ_INFO, gaim_icqinfo, 0); |
4230 | 1126 #ifndef NOSSI |
4642 | 1127 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_ERROR, gaim_ssi_parseerr, 0); |
2991 | 1128 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_RIGHTSINFO, gaim_ssi_parserights, 0); |
1129 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_LIST, gaim_ssi_parselist, 0); | |
1130 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_NOLIST, gaim_ssi_parselist, 0); | |
4230 | 1131 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_SRVACK, gaim_ssi_parseack, 0); |
1132 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_RECVAUTH, gaim_ssi_authgiven, 0); | |
1133 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_RECVAUTHREQ, gaim_ssi_authrequest, 0); | |
1134 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_RECVAUTHREP, gaim_ssi_authreply, 0); | |
1135 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_ADDED, gaim_ssi_gotadded, 0); | |
1136 #endif | |
4508
4c40fccbd7c9
[gaim-migrate @ 4784]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
1137 |
2086 | 1138 ((struct oscar_data *)gc->proto_data)->conn = bosconn; |
2704 | 1139 for (i = 0; i < (int)strlen(info->bosip); i++) { |
1140 if (info->bosip[i] == ':') { | |
1141 port = atoi(&(info->bosip[i+1])); | |
2086 | 1142 break; |
1143 } | |
1144 } | |
2704 | 1145 host = g_strndup(info->bosip, i); |
2086 | 1146 bosconn->status |= AIM_CONN_STATUS_INPROGRESS; |
4634 | 1147 rc = proxy_connect(gc->account, host, port, oscar_bos_connect, gc); |
2086 | 1148 g_free(host); |
4366 | 1149 if (rc < 0) { |
2086 | 1150 hide_login_progress(gc, _("Could Not Connect")); |
1151 od->killme = TRUE; | |
1152 return 0; | |
1153 } | |
4293 | 1154 aim_sendcookie(sess, bosconn, info->cookielen, info->cookie); |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1155 gaim_input_remove(gc->inpa); |
2704 | 1156 |
2086 | 1157 return 1; |
1158 } | |
1159 | |
1160 struct pieceofcrap { | |
1161 struct gaim_connection *gc; | |
1162 unsigned long offset; | |
1163 unsigned long len; | |
1164 char *modname; | |
1165 int fd; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1166 aim_conn_t *conn; |
2086 | 1167 unsigned int inpa; |
1168 }; | |
1169 | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1170 static void damn_you(gpointer data, gint source, GaimInputCondition c) |
2086 | 1171 { |
1172 struct pieceofcrap *pos = data; | |
1173 struct oscar_data *od = pos->gc->proto_data; | |
1174 char in = '\0'; | |
1175 int x = 0; | |
1176 unsigned char m[17]; | |
1177 | |
1178 while (read(pos->fd, &in, 1) == 1) { | |
1179 if (in == '\n') | |
1180 x++; | |
1181 else if (in != '\r') | |
1182 x = 0; | |
1183 if (x == 2) | |
1184 break; | |
1185 in = '\0'; | |
1186 } | |
1187 if (in != '\n') { | |
4056 | 1188 char buf[256]; |
1189 g_snprintf(buf, sizeof(buf), _("You may be disconnected shortly. You may want to use TOC until " | |
1190 "this is fixed. Check %s for updates."), WEBSITE); | |
3427 | 1191 do_error_dialog(_("Gaim was Unable to get a valid AIM login hash."), |
4056 | 1192 buf, GAIM_WARNING); |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1193 gaim_input_remove(pos->inpa); |
2086 | 1194 close(pos->fd); |
1195 g_free(pos); | |
1196 return; | |
1197 } | |
1198 read(pos->fd, m, 16); | |
1199 m[16] = '\0'; | |
1200 debug_printf("Sending hash: "); | |
1201 for (x = 0; x < 16; x++) | |
4194 | 1202 debug_printf("%02hhx ", (unsigned char)m[x]); |
2086 | 1203 debug_printf("\n"); |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1204 gaim_input_remove(pos->inpa); |
2086 | 1205 close(pos->fd); |
1206 aim_sendmemblock(od->sess, pos->conn, 0, 16, m, AIM_SENDMEMBLOCK_FLAG_ISHASH); | |
1207 g_free(pos); | |
1208 } | |
1209 | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1210 static void straight_to_hell(gpointer data, gint source, GaimInputCondition cond) { |
2086 | 1211 struct pieceofcrap *pos = data; |
1212 char buf[BUF_LONG]; | |
1213 | |
4366 | 1214 pos->fd = source; |
1215 | |
2086 | 1216 if (source < 0) { |
4056 | 1217 char buf[256]; |
1218 g_snprintf(buf, sizeof(buf), _("You may be disconnected shortly. You may want to use TOC until " | |
1219 "this is fixed. Check %s for updates."), WEBSITE); | |
3427 | 1220 do_error_dialog(_("Gaim was Unable to get a valid AIM login hash."), |
4056 | 1221 buf, GAIM_WARNING); |
2086 | 1222 if (pos->modname) |
1223 g_free(pos->modname); | |
1224 g_free(pos); | |
1225 return; | |
1226 } | |
1227 | |
1228 g_snprintf(buf, sizeof(buf), "GET " AIMHASHDATA | |
1229 "?offset=%ld&len=%ld&modname=%s HTTP/1.0\n\n", | |
1230 pos->offset, pos->len, pos->modname ? pos->modname : ""); | |
1231 write(pos->fd, buf, strlen(buf)); | |
1232 if (pos->modname) | |
1233 g_free(pos->modname); | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1234 pos->inpa = gaim_input_add(pos->fd, GAIM_INPUT_READ, damn_you, pos); |
2086 | 1235 return; |
1236 } | |
1237 | |
1238 /* size of icbmui.ocm, the largest module in AIM 3.5 */ | |
1239 #define AIM_MAX_FILE_SIZE 98304 | |
1240 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1241 int gaim_memrequest(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 1242 va_list ap; |
1243 struct pieceofcrap *pos; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1244 fu32_t offset, len; |
2086 | 1245 char *modname; |
1246 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1247 va_start(ap, fr); |
4200 | 1248 offset = va_arg(ap, fu32_t); |
1249 len = va_arg(ap, fu32_t); | |
2086 | 1250 modname = va_arg(ap, char *); |
1251 va_end(ap); | |
1252 | |
4194 | 1253 debug_printf("offset: %lu, len: %lu, file: %s\n", offset, len, (modname ? modname : "aim.exe")); |
2086 | 1254 if (len == 0) { |
1255 debug_printf("len is 0, hashing NULL\n"); | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1256 aim_sendmemblock(sess, fr->conn, offset, len, NULL, |
2086 | 1257 AIM_SENDMEMBLOCK_FLAG_ISREQUEST); |
1258 return 1; | |
1259 } | |
1260 /* uncomment this when you're convinced it's right. remember, it's been wrong before. | |
1261 if (offset > AIM_MAX_FILE_SIZE || len > AIM_MAX_FILE_SIZE) { | |
1262 char *buf; | |
1263 int i = 8; | |
1264 if (modname) | |
1265 i += strlen(modname); | |
1266 buf = g_malloc(i); | |
1267 i = 0; | |
1268 if (modname) { | |
1269 memcpy(buf, modname, strlen(modname)); | |
1270 i += strlen(modname); | |
1271 } | |
1272 buf[i++] = offset & 0xff; | |
1273 buf[i++] = (offset >> 8) & 0xff; | |
1274 buf[i++] = (offset >> 16) & 0xff; | |
1275 buf[i++] = (offset >> 24) & 0xff; | |
1276 buf[i++] = len & 0xff; | |
1277 buf[i++] = (len >> 8) & 0xff; | |
1278 buf[i++] = (len >> 16) & 0xff; | |
1279 buf[i++] = (len >> 24) & 0xff; | |
1280 debug_printf("len + offset is invalid, hashing request\n"); | |
1281 aim_sendmemblock(sess, command->conn, offset, i, buf, AIM_SENDMEMBLOCK_FLAG_ISREQUEST); | |
1282 g_free(buf); | |
1283 return 1; | |
1284 } | |
1285 */ | |
1286 | |
1287 pos = g_new0(struct pieceofcrap, 1); | |
1288 pos->gc = sess->aux_data; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1289 pos->conn = fr->conn; |
2086 | 1290 |
1291 pos->offset = offset; | |
1292 pos->len = len; | |
1293 pos->modname = modname ? g_strdup(modname) : NULL; | |
1294 | |
4634 | 1295 if (proxy_connect(pos->gc->account, "gaim.sourceforge.net", 80, straight_to_hell, pos) != 0) { |
4056 | 1296 char buf[256]; |
2086 | 1297 if (pos->modname) |
1298 g_free(pos->modname); | |
1299 g_free(pos); | |
4056 | 1300 g_snprintf(buf, sizeof(buf), _("You may be disconnected shortly. You may want to use TOC until " |
1301 "this is fixed. Check %s for updates."), WEBSITE); | |
4452 | 1302 do_error_dialog(_("Gaim was Unable to get a valid login hash."), |
4056 | 1303 buf, GAIM_WARNING); |
2086 | 1304 } |
1305 | |
1306 return 1; | |
1307 } | |
1308 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1309 static int gaim_parse_login(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 1310 char *key; |
1311 va_list ap; | |
1312 struct gaim_connection *gc = sess->aux_data; | |
4617 | 1313 struct oscar_data *od = gc->proto_data; |
2086 | 1314 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1315 va_start(ap, fr); |
2086 | 1316 key = va_arg(ap, char *); |
1317 va_end(ap); | |
1318 | |
4617 | 1319 if (od->icq) { |
3458 | 1320 struct client_info_s info = CLIENTINFO_ICQ_KNOWNGOOD; |
1321 aim_send_login(sess, fr->conn, gc->username, gc->password, &info, key); | |
1322 } else { | |
1323 #if 0 | |
1324 struct client_info_s info = {"gaim", 4, 1, 2010, "us", "en", 0x0004, 0x0000, 0x04b}; | |
1325 #endif | |
1326 struct client_info_s info = CLIENTINFO_AIM_KNOWNGOOD; | |
1327 aim_send_login(sess, fr->conn, gc->username, gc->password, &info, key); | |
1328 } | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1329 |
2086 | 1330 return 1; |
1331 } | |
1332 | |
2675 | 1333 static int conninitdone_chat(aim_session_t *sess, aim_frame_t *fr, ...) { |
2647 | 1334 struct gaim_connection *gc = sess->aux_data; |
1335 struct chat_connection *chatcon; | |
1336 static int id = 1; | |
1337 | |
2821
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1338 aim_conn_addhandler(sess, fr->conn, 0x000e, 0x0001, gaim_parse_genericerr, 0); |
2675 | 1339 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_CHT, AIM_CB_CHT_USERJOIN, gaim_chat_join, 0); |
1340 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_CHT, AIM_CB_CHT_USERLEAVE, gaim_chat_leave, 0); | |
1341 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_CHT, AIM_CB_CHT_ROOMINFOUPDATE, gaim_chat_info_update, 0); | |
1342 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_CHT, AIM_CB_CHT_INCOMINGMSG, gaim_chat_incoming_msg, 0); | |
1343 | |
2672 | 1344 aim_clientready(sess, fr->conn); |
2675 | 1345 |
2647 | 1346 chatcon = find_oscar_chat_by_conn(gc, fr->conn); |
1347 chatcon->id = id; | |
1348 chatcon->cnv = serv_got_joined_chat(gc, id++, chatcon->show); | |
1349 | |
1350 return 1; | |
1351 } | |
1352 | |
2675 | 1353 static int conninitdone_chatnav(aim_session_t *sess, aim_frame_t *fr, ...) { |
1354 | |
2821
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1355 aim_conn_addhandler(sess, fr->conn, 0x000d, 0x0001, gaim_parse_genericerr, 0); |
2647 | 1356 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_CTN, AIM_CB_CTN_INFO, gaim_chatnav_info, 0); |
2675 | 1357 |
1358 aim_clientready(sess, fr->conn); | |
1359 | |
1360 aim_chatnav_reqrights(sess, fr->conn); | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1361 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1362 return 1; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1363 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1364 |
3694 | 1365 static int conninitdone_email(aim_session_t *sess, aim_frame_t *fr, ...) { |
1366 | |
1367 aim_conn_addhandler(sess, fr->conn, 0x0018, 0x0001, gaim_parse_genericerr, 0); | |
1368 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_EML, AIM_CB_EML_MAILSTATUS, gaim_email_parseupdate, 0); | |
1369 | |
1370 aim_email_sendcookies(sess, fr->conn); | |
1371 aim_email_activate(sess, fr->conn); | |
1372 aim_clientready(sess, fr->conn); | |
1373 | |
1374 return 1; | |
1375 } | |
1376 | |
4804 | 1377 static int conninitdone_icon(aim_session_t *sess, aim_frame_t *fr, ...) { |
1378 struct gaim_connection *gc = sess->aux_data; | |
1379 struct oscar_data *od = gc->proto_data; | |
1380 | |
1381 aim_conn_addhandler(sess, fr->conn, 0x0018, 0x0001, gaim_parse_genericerr, 0); | |
1382 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_ICO, AIM_CB_ICO_ERROR, gaim_icon_error, 0); | |
1383 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_ICO, AIM_CB_ICO_RESPONSE, gaim_icon_parseicon, 0); | |
1384 | |
1385 aim_clientready(sess, fr->conn); | |
1386 | |
4823 | 1387 od->iconconnecting = FALSE; |
1388 | |
4804 | 1389 if (od->icontimer) |
1390 g_source_remove(od->icontimer); | |
1391 od->icontimer = g_timeout_add(100, gaim_icon_timerfunc, gc); | |
1392 | |
1393 return 1; | |
1394 } | |
1395 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1396 static void oscar_chatnav_connect(gpointer data, gint source, GaimInputCondition cond) { |
2086 | 1397 struct gaim_connection *gc = data; |
4617 | 1398 struct oscar_data *od; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1399 aim_session_t *sess; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1400 aim_conn_t *tstconn; |
2086 | 1401 |
1402 if (!g_slist_find(connections, gc)) { | |
1403 close(source); | |
1404 return; | |
1405 } | |
1406 | |
4617 | 1407 od = gc->proto_data; |
1408 sess = od->sess; | |
2086 | 1409 tstconn = aim_getconn_type_all(sess, AIM_CONN_TYPE_CHATNAV); |
4366 | 1410 tstconn->fd = source; |
2086 | 1411 |
1412 if (source < 0) { | |
1413 aim_conn_kill(sess, &tstconn); | |
1414 debug_printf("unable to connect to chatnav server\n"); | |
1415 return; | |
1416 } | |
1417 | |
1418 aim_conn_completeconnect(sess, tstconn); | |
4617 | 1419 od->cnpa = gaim_input_add(tstconn->fd, GAIM_INPUT_READ, oscar_callback, tstconn); |
2086 | 1420 debug_printf("chatnav: connected\n"); |
1421 } | |
1422 | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1423 static void oscar_auth_connect(gpointer data, gint source, GaimInputCondition cond) |
2086 | 1424 { |
1425 struct gaim_connection *gc = data; | |
4617 | 1426 struct oscar_data *od; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1427 aim_session_t *sess; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1428 aim_conn_t *tstconn; |
2086 | 1429 |
1430 if (!g_slist_find(connections, gc)) { | |
1431 close(source); | |
1432 return; | |
1433 } | |
1434 | |
4617 | 1435 od = gc->proto_data; |
1436 sess = od->sess; | |
2086 | 1437 tstconn = aim_getconn_type_all(sess, AIM_CONN_TYPE_AUTH); |
4366 | 1438 tstconn->fd = source; |
2086 | 1439 |
1440 if (source < 0) { | |
1441 aim_conn_kill(sess, &tstconn); | |
1442 debug_printf("unable to connect to authorizer\n"); | |
1443 return; | |
1444 } | |
1445 | |
1446 aim_conn_completeconnect(sess, tstconn); | |
4617 | 1447 od->paspa = gaim_input_add(tstconn->fd, GAIM_INPUT_READ, oscar_callback, tstconn); |
2086 | 1448 debug_printf("chatnav: connected\n"); |
1449 } | |
1450 | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1451 static void oscar_chat_connect(gpointer data, gint source, GaimInputCondition cond) |
2086 | 1452 { |
1453 struct chat_connection *ccon = data; | |
1454 struct gaim_connection *gc = ccon->gc; | |
4617 | 1455 struct oscar_data *od; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1456 aim_session_t *sess; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1457 aim_conn_t *tstconn; |
2086 | 1458 |
1459 if (!g_slist_find(connections, gc)) { | |
1460 close(source); | |
1461 g_free(ccon->show); | |
1462 g_free(ccon->name); | |
1463 g_free(ccon); | |
1464 return; | |
1465 } | |
1466 | |
4617 | 1467 od = gc->proto_data; |
1468 sess = od->sess; | |
2086 | 1469 tstconn = ccon->conn; |
4366 | 1470 tstconn->fd = source; |
2086 | 1471 |
1472 if (source < 0) { | |
1473 aim_conn_kill(sess, &tstconn); | |
1474 g_free(ccon->show); | |
1475 g_free(ccon->name); | |
1476 g_free(ccon); | |
1477 return; | |
1478 } | |
1479 | |
1480 aim_conn_completeconnect(sess, ccon->conn); | |
4617 | 1481 ccon->inpa = gaim_input_add(tstconn->fd, GAIM_INPUT_READ, oscar_callback, tstconn); |
1482 od->oscar_chats = g_slist_append(od->oscar_chats, ccon); | |
2086 | 1483 } |
1484 | |
3694 | 1485 static void oscar_email_connect(gpointer data, gint source, GaimInputCondition cond) { |
1486 struct gaim_connection *gc = data; | |
4617 | 1487 struct oscar_data *od; |
3694 | 1488 aim_session_t *sess; |
1489 aim_conn_t *tstconn; | |
1490 | |
1491 if (!g_slist_find(connections, gc)) { | |
1492 close(source); | |
1493 return; | |
1494 } | |
1495 | |
4617 | 1496 od = gc->proto_data; |
1497 sess = od->sess; | |
3694 | 1498 tstconn = aim_getconn_type_all(sess, AIM_CONN_TYPE_EMAIL); |
4366 | 1499 tstconn->fd = source; |
3694 | 1500 |
1501 if (source < 0) { | |
1502 aim_conn_kill(sess, &tstconn); | |
1503 debug_printf("unable to connect to email server\n"); | |
1504 return; | |
1505 } | |
1506 | |
1507 aim_conn_completeconnect(sess, tstconn); | |
4617 | 1508 od->emlpa = gaim_input_add(tstconn->fd, GAIM_INPUT_READ, oscar_callback, tstconn); |
3694 | 1509 debug_printf("email: connected\n"); |
1510 } | |
1511 | |
4804 | 1512 static void oscar_icon_connect(gpointer data, gint source, GaimInputCondition cond) { |
1513 struct gaim_connection *gc = data; | |
1514 struct oscar_data *od; | |
1515 aim_session_t *sess; | |
1516 aim_conn_t *tstconn; | |
1517 | |
1518 if (!g_slist_find(connections, gc)) { | |
1519 close(source); | |
1520 return; | |
1521 } | |
1522 | |
1523 od = gc->proto_data; | |
1524 sess = od->sess; | |
1525 tstconn = aim_getconn_type_all(sess, AIM_CONN_TYPE_ICON); | |
1526 tstconn->fd = source; | |
1527 | |
1528 if (source < 0) { | |
1529 aim_conn_kill(sess, &tstconn); | |
1530 debug_printf("unable to connect to icon server\n"); | |
1531 return; | |
1532 } | |
1533 | |
1534 aim_conn_completeconnect(sess, tstconn); | |
1535 od->icopa = gaim_input_add(tstconn->fd, GAIM_INPUT_READ, oscar_callback, tstconn); | |
1536 debug_printf("icon: connected\n"); | |
1537 } | |
1538 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1539 /* Hrmph. I don't know how to make this look better. --mid */ |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1540 static int gaim_handle_redirect(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 1541 struct gaim_connection *gc = sess->aux_data; |
4491 | 1542 struct gaim_account *account = gc->account; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1543 aim_conn_t *tstconn; |
4452 | 1544 int i; |
2086 | 1545 char *host; |
1546 int port; | |
4821 | 1547 va_list ap; |
1548 struct aim_redirect_data *redir; | |
2086 | 1549 |
4491 | 1550 port = account->proto_opt[USEROPT_AUTHPORT][0] ? |
1551 atoi(account->proto_opt[USEROPT_AUTHPORT]) : FAIM_LOGIN_PORT, | |
2086 | 1552 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1553 va_start(ap, fr); |
2821
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1554 redir = va_arg(ap, struct aim_redirect_data *); |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1555 va_end(ap); |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1556 |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1557 for (i = 0; i < (int)strlen(redir->ip); i++) { |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1558 if (redir->ip[i] == ':') { |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1559 port = atoi(&(redir->ip[i+1])); |
2086 | 1560 break; |
1561 } | |
1562 } | |
2821
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1563 host = g_strndup(redir->ip, i); |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1564 |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1565 switch(redir->group) { |
2086 | 1566 case 0x7: /* Authorizer */ |
1567 debug_printf("Reconnecting with authorizor...\n"); | |
1568 tstconn = aim_newconn(sess, AIM_CONN_TYPE_AUTH, NULL); | |
1569 if (tstconn == NULL) { | |
1570 debug_printf("unable to reconnect with authorizer\n"); | |
1571 g_free(host); | |
1572 return 1; | |
1573 } | |
4649 | 1574 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNERR, gaim_connerr, 0); |
2675 | 1575 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNINITDONE, conninitdone_admin, 0); |
2086 | 1576 aim_conn_addhandler(sess, tstconn, 0x0007, 0x0003, gaim_info_change, 0); |
1577 aim_conn_addhandler(sess, tstconn, 0x0007, 0x0005, gaim_info_change, 0); | |
1578 aim_conn_addhandler(sess, tstconn, 0x0007, 0x0007, gaim_account_confirm, 0); | |
1579 | |
1580 tstconn->status |= AIM_CONN_STATUS_INPROGRESS; | |
4634 | 1581 if (proxy_connect(account, host, port, oscar_auth_connect, gc) != 0) { |
2086 | 1582 aim_conn_kill(sess, &tstconn); |
1583 debug_printf("unable to reconnect with authorizer\n"); | |
1584 g_free(host); | |
1585 return 1; | |
1586 } | |
4293 | 1587 aim_sendcookie(sess, tstconn, redir->cookielen, redir->cookie); |
4194 | 1588 break; |
1589 | |
2086 | 1590 case 0xd: /* ChatNav */ |
1591 tstconn = aim_newconn(sess, AIM_CONN_TYPE_CHATNAV, NULL); | |
1592 if (tstconn == NULL) { | |
1593 debug_printf("unable to connect to chatnav server\n"); | |
1594 g_free(host); | |
1595 return 1; | |
1596 } | |
4649 | 1597 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNERR, gaim_connerr, 0); |
2675 | 1598 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNINITDONE, conninitdone_chatnav, 0); |
2086 | 1599 |
1600 tstconn->status |= AIM_CONN_STATUS_INPROGRESS; | |
4634 | 1601 if (proxy_connect(account, host, port, oscar_chatnav_connect, gc) != 0) { |
2086 | 1602 aim_conn_kill(sess, &tstconn); |
1603 debug_printf("unable to connect to chatnav server\n"); | |
1604 g_free(host); | |
1605 return 1; | |
1606 } | |
4293 | 1607 aim_sendcookie(sess, tstconn, redir->cookielen, redir->cookie); |
4194 | 1608 break; |
1609 | |
1610 case 0xe: { /* Chat */ | |
2086 | 1611 struct chat_connection *ccon; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1612 |
2086 | 1613 tstconn = aim_newconn(sess, AIM_CONN_TYPE_CHAT, NULL); |
1614 if (tstconn == NULL) { | |
1615 debug_printf("unable to connect to chat server\n"); | |
1616 g_free(host); | |
1617 return 1; | |
1618 } | |
1619 | |
4649 | 1620 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNERR, gaim_connerr, 0); |
2675 | 1621 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNINITDONE, conninitdone_chat, 0); |
1622 | |
2086 | 1623 ccon = g_new0(struct chat_connection, 1); |
1624 ccon->conn = tstconn; | |
1625 ccon->gc = gc; | |
1626 ccon->fd = -1; | |
2821
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1627 ccon->name = g_strdup(redir->chat.room); |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1628 ccon->exchange = redir->chat.exchange; |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1629 ccon->instance = redir->chat.instance; |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1630 ccon->show = extract_name(redir->chat.room); |
4634 | 1631 |
2086 | 1632 ccon->conn->status |= AIM_CONN_STATUS_INPROGRESS; |
4634 | 1633 if (proxy_connect(account, host, port, oscar_chat_connect, ccon) != 0) { |
2086 | 1634 aim_conn_kill(sess, &tstconn); |
1635 debug_printf("unable to connect to chat server\n"); | |
1636 g_free(host); | |
1637 g_free(ccon->show); | |
1638 g_free(ccon->name); | |
1639 g_free(ccon); | |
1640 return 1; | |
1641 } | |
4293 | 1642 aim_sendcookie(sess, tstconn, redir->cookielen, redir->cookie); |
4194 | 1643 debug_printf("Connected to chat room %s exchange %hu\n", ccon->name, ccon->exchange); |
1644 } break; | |
3694 | 1645 |
4804 | 1646 case 0x0010: { /* icon */ |
1647 if (!(tstconn = aim_newconn(sess, AIM_CONN_TYPE_ICON, NULL))) { | |
1648 debug_printf("unable to connect to icon server\n"); | |
1649 g_free(host); | |
1650 return 1; | |
1651 } | |
1652 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNERR, gaim_connerr, 0); | |
1653 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNINITDONE, conninitdone_icon, 0); | |
1654 | |
1655 tstconn->status |= AIM_CONN_STATUS_INPROGRESS; | |
1656 if (proxy_connect(account, host, port, oscar_icon_connect, gc) != 0) { | |
1657 aim_conn_kill(sess, &tstconn); | |
1658 debug_printf("unable to connect to icon server\n"); | |
1659 g_free(host); | |
1660 return 1; | |
1661 } | |
1662 aim_sendcookie(sess, tstconn, redir->cookielen, redir->cookie); | |
1663 } break; | |
1664 | |
3694 | 1665 case 0x0018: { /* email */ |
1666 if (!(tstconn = aim_newconn(sess, AIM_CONN_TYPE_EMAIL, NULL))) { | |
1667 debug_printf("unable to connect to email server\n"); | |
1668 g_free(host); | |
1669 return 1; | |
1670 } | |
4649 | 1671 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNERR, gaim_connerr, 0); |
3694 | 1672 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNINITDONE, conninitdone_email, 0); |
1673 | |
1674 tstconn->status |= AIM_CONN_STATUS_INPROGRESS; | |
4634 | 1675 if (proxy_connect(account, host, port, oscar_email_connect, gc) != 0) { |
3694 | 1676 aim_conn_kill(sess, &tstconn); |
1677 debug_printf("unable to connect to email server\n"); | |
1678 g_free(host); | |
1679 return 1; | |
1680 } | |
4293 | 1681 aim_sendcookie(sess, tstconn, redir->cookielen, redir->cookie); |
3694 | 1682 } break; |
1683 | |
2086 | 1684 default: /* huh? */ |
4194 | 1685 debug_printf("got redirect for unknown service 0x%04hx\n", redir->group); |
2086 | 1686 break; |
1687 } | |
1688 | |
1689 g_free(host); | |
1690 return 1; | |
1691 } | |
1692 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1693 static int gaim_parse_oncoming(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 1694 struct gaim_connection *gc = sess->aux_data; |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
1695 struct oscar_data *od = gc->proto_data; |
4738 | 1696 struct buddyinfo *bi; |
2993 | 1697 time_t time_idle = 0, signon = 0; |
1698 int type = 0; | |
1699 int caps = 0; | |
2086 | 1700 va_list ap; |
4738 | 1701 aim_userinfo_t *info; |
4194 | 1702 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1703 va_start(ap, fr); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
1704 info = va_arg(ap, aim_userinfo_t *); |
2086 | 1705 va_end(ap); |
1706 | |
2993 | 1707 if (info->present & AIM_USERINFO_PRESENT_CAPABILITIES) |
1708 caps = info->capabilities; | |
3267 | 1709 if (info->flags & AIM_FLAG_ACTIVEBUDDY) |
1710 type |= UC_AB; | |
1711 | |
4766 | 1712 if (info->present & AIM_USERINFO_PRESENT_FLAGS) { |
1713 if (info->flags & AIM_FLAG_UNCONFIRMED) | |
1714 type |= UC_UNCONFIRMED; | |
1715 if (info->flags & AIM_FLAG_ADMINISTRATOR) | |
1716 type |= UC_ADMIN; | |
1717 if (info->flags & AIM_FLAG_AOL) | |
1718 type |= UC_AOL; | |
1719 if (info->flags & AIM_FLAG_FREE) | |
1720 type |= UC_NORMAL; | |
1721 if (info->flags & AIM_FLAG_AWAY) | |
1722 type |= UC_UNAVAILABLE; | |
1723 if (info->flags & AIM_FLAG_WIRELESS) | |
1724 type |= UC_WIRELESS; | |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
1725 } |
2993 | 1726 if (info->present & AIM_USERINFO_PRESENT_ICQEXTSTATUS) { |
3595 | 1727 type = (info->icqinfo.status << 16); |
3013 | 1728 if (!(info->icqinfo.status & AIM_ICQ_STATE_CHAT) && |
1729 (info->icqinfo.status != AIM_ICQ_STATE_NORMAL)) { | |
2993 | 1730 type |= UC_UNAVAILABLE; |
3013 | 1731 } |
2993 | 1732 } |
1733 | |
1734 if (caps & AIM_CAPS_ICQ) | |
1735 caps ^= AIM_CAPS_ICQ; | |
1736 | |
1737 if (info->present & AIM_USERINFO_PRESENT_IDLE) { | |
2086 | 1738 time(&time_idle); |
1739 time_idle -= info->idletime*60; | |
2993 | 1740 } |
1741 | |
1742 if (info->present & AIM_USERINFO_PRESENT_SESSIONLEN) | |
1743 signon = time(NULL) - info->sessionlen; | |
2086 | 1744 |
4269 | 1745 if (!aim_sncmp(gc->username, info->sn)) |
2305
0371b905baef
[gaim-migrate @ 2315]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2303
diff
changeset
|
1746 g_snprintf(gc->displayname, sizeof(gc->displayname), "%s", info->sn); |
0371b905baef
[gaim-migrate @ 2315]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2303
diff
changeset
|
1747 |
4738 | 1748 bi = g_hash_table_lookup(od->buddyinfo, normalize(info->sn)); |
1749 if (!bi) { | |
1750 bi = g_new0(struct buddyinfo, 1); | |
1751 g_hash_table_insert(od->buddyinfo, g_strdup(normalize(info->sn)), bi); | |
1752 } | |
1753 bi->signon = info->onlinesince ? info->onlinesince : (info->sessionlen + time(NULL)); | |
4829 | 1754 if (caps) |
1755 bi->caps = caps; | |
4739 | 1756 bi->typingnot = FALSE; |
1757 bi->ico_informed = FALSE; | |
4732 | 1758 |
4804 | 1759 /* Server stored icon stuff */ |
4853 | 1760 if (info->iconcsumlen) { |
1761 char *b16, *saved_b16; | |
1762 struct buddy *b; | |
1763 | |
1764 memcpy(bi->iconcsum, info->iconcsum, info->iconcsumlen); | |
1765 bi->iconcsumlen = info->iconcsumlen; | |
1766 b16 = tobase16(bi->iconcsum, bi->iconcsumlen); | |
1767 b = gaim_find_buddy(gc->account, info->sn); | |
1768 saved_b16 = gaim_buddy_get_setting(b, "icon_checksum"); | |
1769 if (!b16 || !saved_b16 || strcmp(b16, saved_b16)) { | |
1770 GSList *cur = od->requesticon; | |
1771 while (cur && aim_sncmp((char *)cur->data, info->sn)) | |
1772 cur = cur->next; | |
1773 if (!cur) { | |
1774 od->requesticon = g_slist_append(od->requesticon, strdup(normalize(info->sn))); | |
1775 if (od->icontimer) | |
1776 g_source_remove(od->icontimer); | |
1777 od->icontimer = g_timeout_add(500, gaim_icon_timerfunc, gc); | |
1778 } | |
1779 } | |
1780 free(saved_b16); | |
1781 free(b16); | |
1782 } | |
1783 | |
5149 | 1784 serv_got_update(gc, info->sn, 1, ill_just_write_my_own_damn_round_function(info->warnlevel/10.0), signon, time_idle, type); |
2086 | 1785 |
1786 return 1; | |
1787 } | |
1788 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1789 static int gaim_parse_offgoing(aim_session_t *sess, aim_frame_t *fr, ...) { |
4739 | 1790 struct gaim_connection *gc = sess->aux_data; |
2086 | 1791 va_list ap; |
4739 | 1792 aim_userinfo_t *info; |
2086 | 1793 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1794 va_start(ap, fr); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
1795 info = va_arg(ap, aim_userinfo_t *); |
2086 | 1796 va_end(ap); |
1797 | |
4732 | 1798 serv_got_update(gc, info->sn, 0, 0, 0, 0, 0); |
2086 | 1799 |
1800 return 1; | |
1801 } | |
1802 | |
3730 | 1803 static void cancel_direct_im(struct ask_direct *d) { |
2086 | 1804 debug_printf("Freeing DirectIM prompts.\n"); |
1805 | |
1806 g_free(d->sn); | |
1807 g_free(d); | |
1808 } | |
1809 | |
4617 | 1810 static void oscar_odc_callback(gpointer data, gint source, GaimInputCondition condition) { |
2086 | 1811 struct direct_im *dim = data; |
1812 struct gaim_connection *gc = dim->gc; | |
1813 struct oscar_data *od = gc->proto_data; | |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4358
diff
changeset
|
1814 struct gaim_conversation *cnv; |
2086 | 1815 char buf[256]; |
3008 | 1816 struct sockaddr name; |
1817 socklen_t name_len = 1; | |
1818 | |
2086 | 1819 if (!g_slist_find(connections, gc)) { |
1820 g_free(dim); | |
1821 return; | |
1822 } | |
1823 | |
1824 if (source < 0) { | |
1825 g_free(dim); | |
1826 return; | |
1827 } | |
1828 | |
4366 | 1829 dim->conn->fd = source; |
2086 | 1830 aim_conn_completeconnect(od->sess, dim->conn); |
4491 | 1831 if (!(cnv = gaim_find_conversation(dim->name))) |
1832 cnv = gaim_conversation_new(GAIM_CONV_IM, dim->gc->account, dim->name); | |
3008 | 1833 |
1834 /* This is the best way to see if we're connected or not */ | |
1835 if (getpeername(source, &name, &name_len) == 0) { | |
1836 g_snprintf(buf, sizeof buf, _("Direct IM with %s established"), dim->name); | |
1837 dim->connected = TRUE; | |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4358
diff
changeset
|
1838 gaim_conversation_write(cnv, NULL, buf, -1, WFLAG_SYSTEM, time(NULL)); |
3008 | 1839 } |
2086 | 1840 od->direct_ims = g_slist_append(od->direct_ims, dim); |
3008 | 1841 |
4617 | 1842 dim->watcher = gaim_input_add(dim->conn->fd, GAIM_INPUT_READ, oscar_callback, dim->conn); |
2086 | 1843 } |
1844 | |
4617 | 1845 /* BBB */ |
3952 | 1846 /* |
4617 | 1847 * This is called after a remote AIM user has connected to us. We |
1848 * want to do some voodoo with the socket file descriptors, add a | |
1849 * callback or two, and then send the AIM_CB_OFT_PROMPT. | |
3952 | 1850 */ |
4656 | 1851 static int oscar_sendfile_estblsh(aim_session_t *sess, aim_frame_t *fr, ...) { |
3630 | 1852 struct gaim_connection *gc = sess->aux_data; |
1853 struct oscar_data *od = (struct oscar_data *)gc->proto_data; | |
4617 | 1854 struct gaim_xfer *xfer; |
5146 | 1855 struct aim_oft_info *oft_info; |
3630 | 1856 va_list ap; |
1857 aim_conn_t *conn, *listenerconn; | |
4656 | 1858 |
1859 debug_printf("AAA - in oscar_sendfile_estblsh\n"); | |
3630 | 1860 va_start(ap, fr); |
1861 conn = va_arg(ap, aim_conn_t *); | |
1862 listenerconn = va_arg(ap, aim_conn_t *); | |
1863 va_end(ap); | |
1864 | |
4617 | 1865 if (!(xfer = oscar_find_xfer_by_conn(od->file_transfers, listenerconn))) |
1866 return 1; | |
1867 | |
5146 | 1868 if (!(oft_info = xfer->data)) |
4617 | 1869 return 1; |
1870 | |
3630 | 1871 /* Stop watching listener conn; watch transfer conn instead */ |
4617 | 1872 gaim_input_remove(xfer->watcher); |
3630 | 1873 aim_conn_kill(sess, &listenerconn); |
1874 | |
5146 | 1875 oft_info->conn = conn; |
1876 xfer->fd = oft_info->conn->fd; | |
1877 | |
1878 aim_conn_addhandler(sess, oft_info->conn, AIM_CB_FAM_OFT, AIM_CB_OFT_ACK, oscar_sendfile_ack, 0); | |
1879 aim_conn_addhandler(sess, oft_info->conn, AIM_CB_FAM_OFT, AIM_CB_OFT_DONE, oscar_sendfile_done, 0); | |
1880 xfer->watcher = gaim_input_add(oft_info->conn->fd, GAIM_INPUT_READ, oscar_callback, oft_info->conn); | |
4617 | 1881 |
1882 /* Inform the other user that we are connected and ready to transfer */ | |
5146 | 1883 aim_oft_sendheader(sess, AIM_CB_OFT_PROMPT, oft_info); |
3630 | 1884 |
1885 return 0; | |
1886 } | |
1887 | |
3952 | 1888 /* |
4617 | 1889 * This is the gaim callback passed to proxy_connect when connecting to another AIM |
1890 * user in order to transfer a file. | |
3952 | 1891 */ |
4617 | 1892 static void oscar_sendfile_connected(gpointer data, gint source, GaimInputCondition condition) { |
1893 struct gaim_xfer *xfer; | |
5146 | 1894 struct aim_oft_info *oft_info; |
4656 | 1895 |
1896 debug_printf("AAA - in oscar_sendfile_connected\n"); | |
4617 | 1897 if (!(xfer = data)) |
1898 return; | |
5146 | 1899 if (!(oft_info = xfer->data)) |
3630 | 1900 return; |
4617 | 1901 if (source < 0) |
1902 return; | |
1903 | |
1904 xfer->fd = source; | |
5146 | 1905 oft_info->conn->fd = source; |
1906 | |
1907 aim_conn_completeconnect(oft_info->sess, oft_info->conn); | |
1908 xfer->watcher = gaim_input_add(xfer->fd, GAIM_INPUT_READ, oscar_callback, oft_info->conn); | |
4617 | 1909 |
1910 /* Inform the other user that we are connected and ready to transfer */ | |
5146 | 1911 aim_im_sendch2_sendfile_accept(oft_info->sess, oft_info); |
4617 | 1912 |
1913 return; | |
3630 | 1914 } |
1915 | |
3952 | 1916 /* |
4617 | 1917 * This is called when a buddy sends us some file info. This happens when they |
1918 * are sending a file to you, and you have just established a connection to them. | |
4650 | 1919 * You should send them the exact same info except use the real cookie. We also |
4617 | 1920 * get like totally ready to like, receive the file, kay? |
3952 | 1921 */ |
4617 | 1922 static int oscar_sendfile_prompt(aim_session_t *sess, aim_frame_t *fr, ...) { |
1923 struct gaim_connection *gc = sess->aux_data; | |
1924 struct oscar_data *od = gc->proto_data; | |
1925 struct gaim_xfer *xfer; | |
5146 | 1926 struct aim_oft_info *oft_info; |
4617 | 1927 va_list ap; |
1928 aim_conn_t *conn; | |
1929 fu8_t *cookie; | |
1930 struct aim_fileheader_t *fh; | |
4656 | 1931 |
1932 debug_printf("AAA - in oscar_sendfile_prompt\n"); | |
4617 | 1933 va_start(ap, fr); |
1934 conn = va_arg(ap, aim_conn_t *); | |
1935 cookie = va_arg(ap, fu8_t *); | |
1936 fh = va_arg(ap, struct aim_fileheader_t *); | |
1937 va_end(ap); | |
1938 | |
1939 if (!(xfer = oscar_find_xfer_by_conn(od->file_transfers, conn))) | |
1940 return 1; | |
1941 | |
5146 | 1942 if (!(oft_info = xfer->data)) |
4617 | 1943 return 1; |
1944 | |
1945 /* We want to stop listening with a normal thingy */ | |
1946 gaim_input_remove(xfer->watcher); | |
1947 xfer->watcher = 0; | |
1948 | |
5146 | 1949 /* They sent us some information about the file they're sending */ |
1950 memcpy(&oft_info->fh, fh, sizeof(*fh)); | |
1951 | |
1952 /* Fill in the cookie */ | |
1953 memcpy(&oft_info->fh.bcookie, oft_info->cookie, 8); | |
1954 | |
4617 | 1955 /* XXX - convert the name from UTF-8 to UCS-2 if necessary, and pass the encoding to the call below */ |
5146 | 1956 aim_oft_sendheader(oft_info->sess, AIM_CB_OFT_ACK, oft_info); |
4617 | 1957 gaim_xfer_start(xfer, xfer->fd, NULL, 0); |
1958 | |
1959 return 0; | |
3630 | 1960 } |
1961 | |
3952 | 1962 /* |
4657 | 1963 * We are sending a file to someone else. They have just acknowledged our |
4617 | 1964 * prompt, so we want to start sending data like there's no tomorrow. |
3952 | 1965 */ |
4617 | 1966 static int oscar_sendfile_ack(aim_session_t *sess, aim_frame_t *fr, ...) { |
1967 struct gaim_connection *gc = sess->aux_data; | |
1968 struct oscar_data *od = gc->proto_data; | |
1969 struct gaim_xfer *xfer; | |
1970 va_list ap; | |
1971 aim_conn_t *conn; | |
1972 fu8_t *cookie; | |
1973 struct aim_fileheader_t *fh; | |
4656 | 1974 |
1975 debug_printf("AAA - in oscar_sendfile_ack\n"); | |
4617 | 1976 va_start(ap, fr); |
1977 conn = va_arg(ap, aim_conn_t *); | |
1978 cookie = va_arg(ap, fu8_t *); | |
1979 fh = va_arg(ap, struct aim_fileheader_t *); | |
1980 va_end(ap); | |
1981 | |
1982 if (!(xfer = oscar_find_xfer_by_cookie(od->file_transfers, cookie))) | |
1983 return 1; | |
1984 | |
4656 | 1985 /* We want to stop listening with a normal thingy */ |
1986 gaim_input_remove(xfer->watcher); | |
1987 xfer->watcher = 0; | |
1988 | |
4617 | 1989 gaim_xfer_start(xfer, xfer->fd, NULL, 0); |
1990 | |
1991 return 0; | |
3630 | 1992 } |
4617 | 1993 |
1994 /* | |
1995 * We just sent a file to someone. They said they got it and everything, | |
1996 * so we can close our direct connection and what not. | |
1997 */ | |
1998 static int oscar_sendfile_done(aim_session_t *sess, aim_frame_t *fr, ...) { | |
1999 struct gaim_connection *gc = sess->aux_data; | |
2000 struct oscar_data *od = gc->proto_data; | |
2001 struct gaim_xfer *xfer; | |
2002 va_list ap; | |
2003 aim_conn_t *conn; | |
2004 fu8_t *cookie; | |
2005 struct aim_fileheader_t *fh; | |
4656 | 2006 |
2007 debug_printf("AAA - in oscar_sendfile_done\n"); | |
4617 | 2008 va_start(ap, fr); |
2009 conn = va_arg(ap, aim_conn_t *); | |
2010 cookie = va_arg(ap, fu8_t *); | |
2011 fh = va_arg(ap, struct aim_fileheader_t *); | |
2012 va_end(ap); | |
2013 | |
2014 if (!(xfer = oscar_find_xfer_by_conn(od->file_transfers, conn))) | |
2015 return 1; | |
2016 | |
4656 | 2017 xfer->fd = conn->fd; |
4617 | 2018 gaim_xfer_end(xfer); |
2019 | |
2020 return 0; | |
2021 } | |
3630 | 2022 |
4244 | 2023 static void accept_direct_im(struct ask_direct *d) { |
2086 | 2024 struct gaim_connection *gc = d->gc; |
4244 | 2025 struct oscar_data *od; |
2086 | 2026 struct direct_im *dim; |
2945 | 2027 char *host; int port = 4443; |
4366 | 2028 int i, rc; |
2086 | 2029 |
4244 | 2030 if (!g_slist_find(connections, gc)) { |
2031 cancel_direct_im(d); | |
2032 return; | |
2033 } | |
2034 | |
2035 od = (struct oscar_data *)gc->proto_data; | |
2086 | 2036 debug_printf("Accepted DirectIM.\n"); |
2037 | |
2038 dim = find_direct_im(od, d->sn); | |
2039 if (dim) { | |
3730 | 2040 cancel_direct_im(d); /* 40 */ |
4244 | 2041 return; |
2086 | 2042 } |
2043 dim = g_new0(struct direct_im, 1); | |
2044 dim->gc = d->gc; | |
2045 g_snprintf(dim->name, sizeof dim->name, "%s", d->sn); | |
2046 | |
4617 | 2047 dim->conn = aim_odc_connect(od->sess, d->sn, NULL, d->cookie); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2048 if (!dim->conn) { |
2086 | 2049 g_free(dim); |
3730 | 2050 cancel_direct_im(d); |
4244 | 2051 return; |
2086 | 2052 } |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2053 |
2086 | 2054 aim_conn_addhandler(od->sess, dim->conn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIMINCOMING, |
4617 | 2055 gaim_odc_incoming, 0); |
2086 | 2056 aim_conn_addhandler(od->sess, dim->conn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIMTYPING, |
4617 | 2057 gaim_odc_typing, 0); |
3033 | 2058 aim_conn_addhandler(od->sess, dim->conn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_IMAGETRANSFER, |
2993 | 2059 gaim_update_ui, 0); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2060 for (i = 0; i < (int)strlen(d->ip); i++) { |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2061 if (d->ip[i] == ':') { |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2062 port = atoi(&(d->ip[i+1])); |
2086 | 2063 break; |
2064 } | |
2065 } | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2066 host = g_strndup(d->ip, i); |
2086 | 2067 dim->conn->status |= AIM_CONN_STATUS_INPROGRESS; |
4634 | 2068 rc = proxy_connect(gc->account, host, port, oscar_odc_callback, dim); |
2086 | 2069 g_free(host); |
4366 | 2070 if (rc < 0) { |
2086 | 2071 aim_conn_kill(od->sess, &dim->conn); |
2072 g_free(dim); | |
3730 | 2073 cancel_direct_im(d); |
4244 | 2074 return; |
2086 | 2075 } |
2076 | |
3730 | 2077 cancel_direct_im(d); |
2086 | 2078 |
4244 | 2079 return; |
2086 | 2080 } |
2081 | |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
2082 static int incomingim_chan1(aim_session_t *sess, aim_conn_t *conn, aim_userinfo_t *userinfo, struct aim_incomingim_ch1_args *args) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2083 struct gaim_connection *gc = sess->aux_data; |
3600 | 2084 struct oscar_data *od = gc->proto_data; |
4738 | 2085 char *tmp; |
2273
0b5c3338fa3d
[gaim-migrate @ 2283]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2249
diff
changeset
|
2086 int flags = 0; |
3659 | 2087 int convlen; |
2088 GError *err = NULL; | |
4738 | 2089 struct buddyinfo *bi; |
2090 | |
2091 bi = g_hash_table_lookup(od->buddyinfo, normalize(userinfo->sn)); | |
2092 if (!bi) { | |
2093 bi = g_new0(struct buddyinfo, 1); | |
2094 g_hash_table_insert(od->buddyinfo, g_strdup(normalize(userinfo->sn)), bi); | |
2095 } | |
2273
0b5c3338fa3d
[gaim-migrate @ 2283]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2249
diff
changeset
|
2096 |
0b5c3338fa3d
[gaim-migrate @ 2283]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2249
diff
changeset
|
2097 if (args->icbmflags & AIM_IMFLAGS_AWAY) |
0b5c3338fa3d
[gaim-migrate @ 2283]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2249
diff
changeset
|
2098 flags |= IM_FLAG_AWAY; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2099 |
4738 | 2100 if (args->icbmflags & AIM_IMFLAGS_TYPINGNOT) |
2101 bi->typingnot = TRUE; | |
2102 else | |
2103 bi->typingnot = FALSE; | |
2104 | |
4380 | 2105 if ((args->icbmflags & AIM_IMFLAGS_HASICON) && (args->iconlen) && (args->iconsum) && (args->iconstamp)) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2106 debug_printf("%s has an icon\n", userinfo->sn); |
4738 | 2107 if ((args->iconlen != bi->ico_len) || (args->iconsum != bi->ico_csum) || (args->iconstamp != bi->ico_time)) { |
2108 bi->ico_need = TRUE; | |
2109 bi->ico_len = args->iconlen; | |
2110 bi->ico_csum = args->iconsum; | |
2111 bi->ico_time = args->iconstamp; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2112 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2113 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2114 |
4491 | 2115 if (gc->account->iconfile[0] && (args->icbmflags & AIM_IMFLAGS_BUDDYREQ)) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2116 FILE *file; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2117 struct stat st; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2118 |
4491 | 2119 if (!stat(gc->account->iconfile, &st)) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2120 char *buf = g_malloc(st.st_size); |
4491 | 2121 file = fopen(gc->account->iconfile, "rb"); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2122 if (file) { |
2603
24664768a739
[gaim-migrate @ 2616]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2597
diff
changeset
|
2123 int len = fread(buf, 1, st.st_size, file); |
4194 | 2124 debug_printf("Sending buddy icon to %s (%d bytes, %lu reported)\n", |
4617 | 2125 userinfo->sn, len, st.st_size); |
2126 aim_im_sendch2_icon(sess, userinfo->sn, buf, st.st_size, | |
2127 st.st_mtime, aimutil_iconsum(buf, st.st_size)); | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2128 fclose(file); |
2336
c6c5eaf69188
[gaim-migrate @ 2349]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2315
diff
changeset
|
2129 } else |
c6c5eaf69188
[gaim-migrate @ 2349]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2315
diff
changeset
|
2130 debug_printf("Can't open buddy icon file!\n"); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2131 g_free(buf); |
2336
c6c5eaf69188
[gaim-migrate @ 2349]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2315
diff
changeset
|
2132 } else |
c6c5eaf69188
[gaim-migrate @ 2349]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2315
diff
changeset
|
2133 debug_printf("Can't stat buddy icon file!\n"); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2134 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2135 |
4662 | 2136 debug_printf("Character set is %hu %hu\n", args->charset, args->charsubset); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2137 if (args->icbmflags & AIM_IMFLAGS_UNICODE) { |
3722 | 2138 /* This message is marked as UNICODE, so we have to |
2139 * convert it to utf-8 before handing it to the gaim core. | |
2140 * This conversion should *never* fail, if it does it | |
2141 * means that either the incoming ICBM is corrupted or | |
4662 | 2142 * there is something we don't understand about it. |
2143 * For the record, AIM Unicode is big-endian UCS-2 */ | |
2144 | |
2145 debug_printf("Received UNICODE IM\n"); | |
4121 | 2146 |
2147 if (!args->msg || !args->msglen) | |
2148 return 1; | |
4641 | 2149 |
3659 | 2150 tmp = g_convert(args->msg, args->msglen, "UTF-8", "UCS-2BE", NULL, &convlen, &err); |
2151 if (err) { | |
2152 debug_printf("Unicode IM conversion: %s\n", err->message); | |
2153 tmp = strdup(_("(There was an error receiving this message)")); | |
4800 | 2154 g_error_free(err); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2155 } |
3722 | 2156 } else { |
3850 | 2157 /* This will get executed for both AIM_IMFLAGS_ISO_8859_1 and |
3722 | 2158 * unflagged messages, which are ASCII. That's OK because |
2159 * ASCII is a strict subset of ISO-8859-1; this should | |
2160 * help with compatibility with old, broken versions of | |
2161 * gaim (everything before 0.60) and other broken clients | |
2162 * that will happily send ISO-8859-1 without marking it as | |
2163 * such */ | |
4662 | 2164 if (args->icbmflags & AIM_IMFLAGS_ISO_8859_1) |
4194 | 2165 debug_printf("Received ISO-8859-1 IM\n"); |
4121 | 2166 |
2167 if (!args->msg || !args->msglen) | |
2168 return 1; | |
2169 | |
3659 | 2170 tmp = g_convert(args->msg, args->msglen, "UTF-8", "ISO-8859-1", NULL, &convlen, &err); |
2171 if (err) { | |
2172 debug_printf("ISO-8859-1 IM conversion: %s\n", err->message); | |
2173 tmp = strdup(_("(There was an error receiving this message)")); | |
4800 | 2174 g_error_free(err); |
3659 | 2175 } |
3642 | 2176 } |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2177 |
4333 | 2178 /* strip_linefeed(tmp); */ |
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2833
diff
changeset
|
2179 serv_got_im(gc, userinfo->sn, tmp, flags, time(NULL), -1); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2180 g_free(tmp); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2181 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2182 return 1; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2183 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2184 |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
2185 static int incomingim_chan2(aim_session_t *sess, aim_conn_t *conn, aim_userinfo_t *userinfo, struct aim_incomingim_ch2_args *args) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2186 struct gaim_connection *gc = sess->aux_data; |
4617 | 2187 struct oscar_data *od = gc->proto_data; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2188 |
4121 | 2189 if (!args) |
2190 return 0; | |
4194 | 2191 |
4617 | 2192 debug_printf("rendezvous with %s, status is %hu\n", userinfo->sn, args->status); |
2869 | 2193 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2194 if (args->reqclass & AIM_CAPS_CHAT) { |
4121 | 2195 char *name; |
4120 | 2196 int *exch; |
4121 | 2197 GList *m = NULL; |
4120 | 2198 |
4121 | 2199 if (!args->info.chat.roominfo.name || !args->info.chat.roominfo.exchange || !args->msg) |
2200 return 1; | |
2201 name = extract_name(args->info.chat.roominfo.name); | |
4120 | 2202 exch = g_new0(int, 1); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2203 m = g_list_append(m, g_strdup(name ? name : args->info.chat.roominfo.name)); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2204 *exch = args->info.chat.roominfo.exchange; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2205 m = g_list_append(m, exch); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2206 serv_got_chat_invite(gc, |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2207 name ? name : args->info.chat.roominfo.name, |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2208 userinfo->sn, |
2869 | 2209 (char *)args->msg, |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2210 m); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2211 if (name) |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2212 g_free(name); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2213 } else if (args->reqclass & AIM_CAPS_SENDFILE) { |
4617 | 2214 /* BBB */ |
2215 if (args->status == AIM_RENDEZVOUS_PROPOSE) { | |
2216 /* Someone wants to send a file (or files) to us */ | |
2217 struct gaim_xfer *xfer; | |
5146 | 2218 struct aim_oft_info *oft_info; |
2219 | |
2220 if (!args->cookie || !args->port || !args->verifiedip || | |
2221 !args->info.sendfile.filename || !args->info.sendfile.totsize || | |
4656 | 2222 !args->info.sendfile.totfiles || !args->reqclass) { |
2223 debug_printf("%s tried to send you a file with incomplete information.\n", userinfo->sn); | |
5146 | 2224 if (args->proxyip) |
2225 debug_printf("IP for a proxy server was given. Gaim does not support this yet.\n"); | |
4617 | 2226 return 1; |
4656 | 2227 } |
4617 | 2228 |
2229 if (args->info.sendfile.subtype == AIM_OFT_SUBTYPE_SEND_DIR) { | |
2230 /* last char of the ft req is a star, they are sending us a | |
2231 * directory -- remove the star and trailing slash so we dont save | |
2232 * directories that look like 'dirname\*' -- arl */ | |
2233 char *tmp = strrchr(args->info.sendfile.filename, '\\'); | |
2234 if (tmp && (tmp[1] == '*')) { | |
2235 tmp[0] = '\0'; | |
2236 } | |
2237 } | |
2238 | |
2239 /* Build the file transfer handle */ | |
2240 xfer = gaim_xfer_new(gc->account, GAIM_XFER_RECEIVE, userinfo->sn); | |
5163 | 2241 xfer->remote_ip = g_strdup(args->verifiedip); |
5146 | 2242 xfer->remote_port = args->port; |
4617 | 2243 gaim_xfer_set_filename(xfer, args->info.sendfile.filename); |
2244 gaim_xfer_set_size(xfer, args->info.sendfile.totsize); | |
5146 | 2245 |
2246 /* Create the oscar-specific data */ | |
5163 | 2247 oft_info = aim_oft_createinfo(od->sess, args->cookie, userinfo->sn, args->clientip, xfer->remote_port, 0, 0, NULL); |
4898 | 2248 if (args->proxyip) |
5146 | 2249 oft_info->proxyip = g_strdup(args->proxyip); |
4898 | 2250 if (args->verifiedip) |
5146 | 2251 oft_info->verifiedip = g_strdup(args->verifiedip); |
2252 xfer->data = oft_info; | |
4617 | 2253 |
2254 /* Setup our I/O op functions */ | |
2255 gaim_xfer_set_init_fnc(xfer, oscar_xfer_init); | |
2256 gaim_xfer_set_start_fnc(xfer, oscar_xfer_start); | |
2257 gaim_xfer_set_end_fnc(xfer, oscar_xfer_end); | |
4675
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4666
diff
changeset
|
2258 gaim_xfer_set_cancel_send_fnc(xfer, oscar_xfer_cancel_send); |
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4666
diff
changeset
|
2259 gaim_xfer_set_cancel_recv_fnc(xfer, oscar_xfer_cancel_recv); |
4617 | 2260 gaim_xfer_set_ack_fnc(xfer, oscar_xfer_ack); |
2261 | |
2262 /* | |
2263 * XXX - Should do something with args->msg, args->encoding, and args->language | |
2264 * probably make it apply to all ch2 messages. | |
3752 | 2265 */ |
4617 | 2266 |
2267 /* Keep track of this transfer for later */ | |
2268 od->file_transfers = g_slist_append(od->file_transfers, xfer); | |
2269 | |
2270 /* Now perform the request */ | |
2271 gaim_xfer_request(xfer); | |
2272 } else if (args->status == AIM_RENDEZVOUS_CANCEL) { | |
2273 /* The other user wants to cancel a file transfer */ | |
2274 struct gaim_xfer *xfer; | |
2275 debug_printf("AAA - File transfer canceled by remote user\n"); | |
2276 if ((xfer = oscar_find_xfer_by_cookie(od->file_transfers, args->cookie))) | |
4675
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4666
diff
changeset
|
2277 gaim_xfer_cancel_remote(xfer); |
4617 | 2278 } else if (args->status == AIM_RENDEZVOUS_ACCEPT) { |
2279 /* | |
2280 * This gets sent by the receiver of a file | |
2281 * as they connect directly to us. If we don't | |
2282 * get this, then maybe a third party connected | |
2283 * to us, and we shouldn't send them anything. | |
2284 */ | |
2285 } else { | |
2286 debug_printf("unknown rendezvous status!\n"); | |
3630 | 2287 } |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2288 } else if (args->reqclass & AIM_CAPS_GETFILE) { |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2289 } else if (args->reqclass & AIM_CAPS_VOICE) { |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2290 } else if (args->reqclass & AIM_CAPS_BUDDYICON) { |
4799 | 2291 set_icon_data(gc, userinfo->sn, args->info.icon.icon, |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2292 args->info.icon.length); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2293 } else if (args->reqclass & AIM_CAPS_IMIMAGE) { |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2294 struct ask_direct *d = g_new0(struct ask_direct, 1); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2295 char buf[256]; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2296 |
4212 | 2297 if (!args->verifiedip) { |
4650 | 2298 debug_printf("directim kill blocked (%s)\n", userinfo->sn); |
2299 return 1; | |
4212 | 2300 } |
2301 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2302 debug_printf("%s received direct im request from %s (%s)\n", |
2869 | 2303 gc->username, userinfo->sn, args->verifiedip); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2304 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2305 d->gc = gc; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2306 d->sn = g_strdup(userinfo->sn); |
2869 | 2307 strncpy(d->ip, args->verifiedip, sizeof(d->ip)); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2308 memcpy(d->cookie, args->cookie, 8); |
4650 | 2309 g_snprintf(buf, sizeof buf, _("%s has just asked to directly connect to %s"), userinfo->sn, gc->username); |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
2310 do_ask_dialog(buf, _("This requires a direct connection between the two computers and is necessary for IM Images. Because your IP address will be revealed, this may be considered a privacy risk."), d, _("Connect"), accept_direct_im, _("Cancel"), cancel_direct_im, my_protocol->handle, FALSE); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2311 } else { |
4194 | 2312 debug_printf("Unknown reqclass %hu\n", args->reqclass); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2313 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2314 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2315 return 1; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2316 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2317 |
3453 | 2318 /* |
4230 | 2319 * Authorization Functions |
2320 * Most of these are callbacks from dialogs. They're used by both | |
2321 * methods of authorization (SSI and old-school channel 4 ICBM) | |
3453 | 2322 */ |
4269 | 2323 /* When you ask other people for authorization */ |
4337 | 2324 static void gaim_auth_request(struct name_data *data, char *msg) { |
4230 | 2325 struct gaim_connection *gc = data->gc; |
4244 | 2326 |
2327 if (g_slist_find(connections, gc)) { | |
2328 struct oscar_data *od = gc->proto_data; | |
4687 | 2329 struct buddy *buddy = gaim_find_buddy(gc->account, data->name); |
2330 struct group *group = gaim_find_buddys_group(buddy); | |
4244 | 2331 if (buddy && group) { |
2332 debug_printf("ssi: adding buddy %s to group %s\n", buddy->name, group->name); | |
4889 | 2333 aim_ssi_sendauthrequest(od->sess, data->name, msg ? msg : _("Please authorize me so I can add you to my buddy list.")); |
4269 | 2334 if (!aim_ssi_itemlist_finditem(od->sess->ssi.local, group->name, buddy->name, AIM_SSI_TYPE_BUDDY)) |
4889 | 2335 aim_ssi_addbuddy(od->sess, buddy->name, group->name, gaim_get_buddy_alias_only(buddy), NULL, NULL, 1); |
4244 | 2336 } |
4230 | 2337 } |
4337 | 2338 } |
2339 | |
2340 static void gaim_auth_request_msgprompt(struct name_data *data) { | |
2341 do_prompt_dialog(_("Authorization Request Message:"), _("Please authorize me!"), data, gaim_auth_request, gaim_free_name_data); | |
4230 | 2342 } |
2343 | |
2344 static void gaim_auth_dontrequest(struct name_data *data) { | |
4244 | 2345 struct gaim_connection *gc = data->gc; |
2346 | |
2347 if (g_slist_find(connections, gc)) { | |
2348 /* struct oscar_data *od = gc->proto_data; */ | |
2349 /* XXX - Take the buddy out of our buddy list */ | |
2350 } | |
2351 | |
4230 | 2352 gaim_free_name_data(data); |
2353 } | |
2354 | |
5136 | 2355 static void gaim_auth_sendrequest(struct gaim_connection *gc, const char *name) { |
4269 | 2356 struct name_data *data = g_new(struct name_data, 1); |
2357 struct buddy *buddy; | |
2358 gchar *dialog_msg, *nombre; | |
2359 | |
4687 | 2360 buddy = gaim_find_buddy(gc->account, name); |
2361 if (buddy && (gaim_get_buddy_alias_only(buddy))) | |
2362 nombre = g_strdup_printf("%s (%s)", name, gaim_get_buddy_alias_only(buddy)); | |
4269 | 2363 else |
4830 | 2364 nombre = NULL; |
2365 | |
2366 dialog_msg = g_strdup_printf(_("The user %s requires authorization before being added to a buddy list. Do you want to send an authorization request?"), (nombre ? nombre : name)); | |
4269 | 2367 data->gc = gc; |
2368 data->name = g_strdup(name); | |
2369 data->nick = NULL; | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
2370 do_ask_dialog(_("Request Authorization"), dialog_msg, data, _("Request Authorization"), gaim_auth_request_msgprompt, _("Cancel"), gaim_auth_dontrequest, my_protocol->handle, FALSE); |
4269 | 2371 |
2372 g_free(dialog_msg); | |
2373 g_free(nombre); | |
2374 } | |
2375 | |
4230 | 2376 /* When other people ask you for authorization */ |
2377 static void gaim_auth_grant(struct name_data *data) { | |
2378 struct gaim_connection *gc = data->gc; | |
4244 | 2379 |
2380 if (g_slist_find(connections, gc)) { | |
2381 struct oscar_data *od = gc->proto_data; | |
4236 | 2382 #ifdef NOSSI |
4244 | 2383 struct buddy *buddy; |
2384 gchar message; | |
2385 message = 0; | |
4687 | 2386 buddy = gaim_find_buddy(gc->account, data->name); |
4617 | 2387 aim_im_sendch4(od->sess, data->name, AIM_ICQMSG_AUTHGRANTED, &message); |
4687 | 2388 show_got_added(gc, NULL, data->name, (buddy ? gaim_get_buddy_alias_only(buddy) : NULL), NULL); |
4230 | 2389 #else |
4889 | 2390 aim_ssi_sendauthreply(od->sess, data->name, 0x01, NULL); |
4230 | 2391 #endif |
4244 | 2392 } |
2393 | |
4230 | 2394 gaim_free_name_data(data); |
3141 | 2395 } |
2396 | |
4230 | 2397 /* When other people ask you for authorization */ |
4337 | 2398 static void gaim_auth_dontgrant(struct name_data *data, char *msg) { |
4230 | 2399 struct gaim_connection *gc = data->gc; |
4244 | 2400 |
2401 if (g_slist_find(connections, gc)) { | |
2402 struct oscar_data *od = gc->proto_data; | |
4230 | 2403 #ifdef NOSSI |
4617 | 2404 aim_im_sendch4(od->sess, data->name, AIM_ICQMSG_AUTHDENIED, msg ? msg : _("No reason given.")); |
4230 | 2405 #else |
4889 | 2406 aim_ssi_sendauthreply(od->sess, data->name, 0x00, msg ? msg : _("No reason given.")); |
4230 | 2407 #endif |
4244 | 2408 } |
4337 | 2409 } |
2410 | |
2411 static void gaim_auth_dontgrant_msgprompt(struct name_data *data) { | |
2412 do_prompt_dialog(_("Authorization Denied Message:"), _("No reason given."), data, gaim_auth_dontgrant, gaim_free_name_data); | |
3141 | 2413 } |
2414 | |
4230 | 2415 /* When someone sends you contacts */ |
2416 static void gaim_icq_contactadd(struct name_data *data) { | |
2417 struct gaim_connection *gc = data->gc; | |
4244 | 2418 |
2419 if (g_slist_find(connections, gc)) { | |
2420 show_add_buddy(gc, data->name, NULL, data->nick); | |
2421 } | |
2422 | |
4230 | 2423 gaim_free_name_data(data); |
3453 | 2424 } |
2425 | |
4075 | 2426 static int incomingim_chan4(aim_session_t *sess, aim_conn_t *conn, aim_userinfo_t *userinfo, struct aim_incomingim_ch4_args *args, time_t t) { |
3141 | 2427 struct gaim_connection *gc = sess->aux_data; |
4076 | 2428 gchar **msg1, **msg2; |
2429 GError *err = NULL; | |
2430 int i; | |
2431 | |
4121 | 2432 if (!args->type || !args->msg || !args->uin) |
2433 return 1; | |
4194 | 2434 |
2435 debug_printf("Received a channel 4 message of type 0x%02hhx.\n", args->type); | |
4076 | 2436 |
2437 /* Split up the message at the delimeter character, then convert each string to UTF-8 */ | |
4173 | 2438 msg1 = g_strsplit(args->msg, "\376", 0); |
4194 | 2439 msg2 = (gchar **)g_malloc(10*sizeof(gchar *)); /* XXX - 10 is a guess */ |
4076 | 2440 for (i=0; msg1[i]; i++) { |
2441 strip_linefeed(msg1[i]); | |
2442 msg2[i] = g_convert(msg1[i], strlen(msg1[i]), "UTF-8", "ISO-8859-1", NULL, NULL, &err); | |
4800 | 2443 if (err) { |
4076 | 2444 debug_printf("Error converting a string from ISO-8859-1 to UTF-8 in oscar ICBM channel 4 parsing\n"); |
4800 | 2445 g_error_free(err); |
2446 } | |
4076 | 2447 } |
2448 msg2[i] = NULL; | |
2449 | |
3952 | 2450 switch (args->type) { |
4173 | 2451 case 0x01: { /* MacICQ message or basic offline message */ |
4076 | 2452 if (i >= 1) { |
2453 gchar *uin = g_strdup_printf("%lu", args->uin); | |
2454 if (t) { /* This is an offline message */ | |
2455 /* I think this timestamp is in UTC, or something */ | |
2456 serv_got_im(gc, uin, msg2[0], 0, t, -1); | |
2457 } else { /* This is a message from MacICQ/Miranda */ | |
2458 serv_got_im(gc, uin, msg2[0], 0, time(NULL), -1); | |
2459 } | |
2460 g_free(uin); | |
4075 | 2461 } |
3316 | 2462 } break; |
2463 | |
4173 | 2464 case 0x04: { /* Someone sent you a URL */ |
4076 | 2465 if (i >= 2) { |
2466 gchar *uin = g_strdup_printf("%lu", args->uin); | |
2467 gchar *message = g_strdup_printf("<A HREF=\"%s\">%s</A>", msg2[1], msg2[0]); | |
3453 | 2468 serv_got_im(gc, uin, message, 0, time(NULL), -1); |
2469 g_free(uin); | |
2470 g_free(message); | |
2471 } | |
2472 } break; | |
2473 | |
4173 | 2474 case 0x06: { /* Someone requested authorization */ |
4076 | 2475 if (i >= 6) { |
4230 | 2476 struct name_data *data = g_new(struct name_data, 1); |
4337 | 2477 gchar *dialog_msg = g_strdup_printf(_("The user %lu wants to add you to their buddy list for the following reason:\n%s"), args->uin, msg2[5] ? msg2[5] : _("No reason given.")); |
4076 | 2478 debug_printf("Received an authorization request from UIN %lu\n", args->uin); |
2479 data->gc = gc; | |
4230 | 2480 data->name = g_strdup_printf("%lu", args->uin); |
2481 data->nick = NULL; | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
2482 do_ask_dialog(_("Authorization Request"), dialog_msg, data, _("Authorize"), gaim_auth_grant, _("Deny"), gaim_auth_dontgrant_msgprompt, my_protocol->handle, FALSE); |
4076 | 2483 g_free(dialog_msg); |
2484 } | |
3141 | 2485 } break; |
2486 | |
4173 | 2487 case 0x07: { /* Someone has denied you authorization */ |
4076 | 2488 if (i >= 1) { |
4194 | 2489 gchar *dialog_msg = g_strdup_printf(_("The user %lu has denied your request to add them to your contact list for the following reason:\n%s"), args->uin, msg2[0] ? msg2[0] : _("No reason given.")); |
4230 | 2490 do_error_dialog(_("ICQ authorization denied."), dialog_msg, GAIM_INFO); |
4076 | 2491 g_free(dialog_msg); |
2492 } | |
3141 | 2493 } break; |
2494 | |
4173 | 2495 case 0x08: { /* Someone has granted you authorization */ |
4194 | 2496 gchar *dialog_msg = g_strdup_printf(_("The user %lu has granted your request to add them to your contact list."), args->uin); |
3427 | 2497 do_error_dialog("ICQ authorization accepted.", dialog_msg, GAIM_INFO); |
3141 | 2498 g_free(dialog_msg); |
2499 } break; | |
2500 | |
4333 | 2501 case 0x09: { /* Message from the Godly ICQ server itself, I think */ |
2502 if (i >= 5) { | |
2503 gchar *dialog_msg = g_strdup_printf(_("You have received a special message\n\nFrom: %s [%s]\n%s"), msg2[0], msg2[3], msg2[5]); | |
2504 do_error_dialog("ICQ Server Message", dialog_msg, GAIM_INFO); | |
2505 g_free(dialog_msg); | |
2506 } | |
2507 } break; | |
2508 | |
4173 | 2509 case 0x0d: { /* Someone has sent you a pager message from http://www.icq.com/your_uin */ |
4076 | 2510 if (i >= 6) { |
4194 | 2511 gchar *dialog_msg = g_strdup_printf(_("You have received an ICQ page\n\nFrom: %s [%s]\n%s"), msg2[0], msg2[3], msg2[5]); |
4076 | 2512 do_error_dialog("ICQ Page", dialog_msg, GAIM_INFO); |
2513 g_free(dialog_msg); | |
2514 } | |
4075 | 2515 } break; |
2516 | |
4173 | 2517 case 0x0e: { /* Someone has emailed you at your_uin@pager.icq.com */ |
4076 | 2518 if (i >= 6) { |
4308 | 2519 gchar *dialog_msg = g_strdup_printf(_("You have received an ICQ email from %s [%s]\n\nMessage is:\n%s"), msg2[0], msg2[3], msg2[5]); |
4076 | 2520 do_error_dialog("ICQ Email", dialog_msg, GAIM_INFO); |
2521 g_free(dialog_msg); | |
2522 } | |
4075 | 2523 } break; |
2524 | |
4173 | 2525 case 0x12: { |
3141 | 2526 /* Ack for authorizing/denying someone. Or possibly an ack for sending any system notice */ |
4173 | 2527 /* Someone added you to their contact list? */ |
3141 | 2528 } break; |
2529 | |
4173 | 2530 case 0x13: { /* Someone has sent you some ICQ contacts */ |
3453 | 2531 int i, num; |
2532 gchar **text; | |
4173 | 2533 text = g_strsplit(args->msg, "\376", 0); |
3453 | 2534 if (text) { |
2535 num = 0; | |
2536 for (i=0; i<strlen(text[0]); i++) | |
2537 num = num*10 + text[0][i]-48; | |
2538 for (i=0; i<num; i++) { | |
4230 | 2539 struct name_data *data = g_new(struct name_data, 1); |
3730 | 2540 gchar *message = g_strdup_printf(_("ICQ user %lu has sent you a contact: %s (%s)"), args->uin, text[i*2+2], text[i*2+1]); |
3453 | 2541 data->gc = gc; |
4790 | 2542 data->name = g_strdup(text[i*2+1]); |
2543 data->nick = g_strdup(text[i*2+2]); | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
2544 do_ask_dialog(message, _("Do you want to add this contact to your Buddy List?"), data, _("Add"), gaim_icq_contactadd, _("Decline"), gaim_free_name_data, my_protocol->handle, FALSE); |
3453 | 2545 g_free(message); |
2546 } | |
2547 g_strfreev(text); | |
2548 } | |
2549 } break; | |
2550 | |
4173 | 2551 case 0x1a: { /* Someone has sent you a greeting card or requested contacts? */ |
3453 | 2552 /* This is boring and silly. */ |
2553 } break; | |
2554 | |
3141 | 2555 default: { |
4194 | 2556 debug_printf("Received a channel 4 message of unknown type (type 0x%02hhx).\n", args->type); |
3141 | 2557 } break; |
2558 } | |
2559 | |
4076 | 2560 g_strfreev(msg1); |
2561 g_strfreev(msg2); | |
2562 | |
3141 | 2563 return 1; |
2564 } | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2565 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2566 static int gaim_parse_incoming_im(aim_session_t *sess, aim_frame_t *fr, ...) { |
4200 | 2567 fu16_t channel; |
2568 int ret = 0; | |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
2569 aim_userinfo_t *userinfo; |
2086 | 2570 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2571 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2572 va_start(ap, fr); |
4200 | 2573 channel = (fu16_t)va_arg(ap, unsigned int); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
2574 userinfo = va_arg(ap, aim_userinfo_t *); |
2086 | 2575 |
3141 | 2576 switch (channel) { |
2577 case 1: { /* standard message */ | |
2578 struct aim_incomingim_ch1_args *args; | |
2579 args = va_arg(ap, struct aim_incomingim_ch1_args *); | |
2580 ret = incomingim_chan1(sess, fr->conn, userinfo, args); | |
2581 } break; | |
2582 | |
2583 case 2: { /* rendevous */ | |
2584 struct aim_incomingim_ch2_args *args; | |
2585 args = va_arg(ap, struct aim_incomingim_ch2_args *); | |
2586 ret = incomingim_chan2(sess, fr->conn, userinfo, args); | |
2587 } break; | |
2588 | |
2589 case 4: { /* ICQ */ | |
2590 struct aim_incomingim_ch4_args *args; | |
2591 args = va_arg(ap, struct aim_incomingim_ch4_args *); | |
4075 | 2592 ret = incomingim_chan4(sess, fr->conn, userinfo, args, 0); |
3141 | 2593 } break; |
2594 | |
2595 default: { | |
4194 | 2596 debug_printf("ICBM received on unsupported channel (channel 0x%04hx).", channel); |
3141 | 2597 } break; |
2086 | 2598 } |
2599 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2600 va_end(ap); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2601 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2602 return ret; |
2086 | 2603 } |
2604 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2605 static int gaim_parse_misses(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 2606 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2607 fu16_t chan, nummissed, reason; |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
2608 aim_userinfo_t *userinfo; |
2086 | 2609 char buf[1024]; |
2610 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2611 va_start(ap, fr); |
4200 | 2612 chan = (fu16_t)va_arg(ap, unsigned int); |
2613 userinfo = va_arg(ap, aim_userinfo_t *); | |
2614 nummissed = (fu16_t)va_arg(ap, unsigned int); | |
2615 reason = (fu16_t)va_arg(ap, unsigned int); | |
2086 | 2616 va_end(ap); |
2617 | |
2618 switch(reason) { | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2619 case 0: |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2620 /* Invalid (0) */ |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2621 g_snprintf(buf, |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2622 sizeof(buf), |
4276 | 2623 ngettext( |
2624 "You missed %hu message from %s because it was invalid.", | |
2625 "You missed %hu messages from %s because they were invalid.", | |
2626 nummissed), | |
4282 | 2627 nummissed, |
2628 userinfo->sn); | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2629 break; |
2086 | 2630 case 1: |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2631 /* Message too large */ |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2632 g_snprintf(buf, |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2633 sizeof(buf), |
4276 | 2634 ngettext( |
2635 "You missed %hu message from %s because it was too large.", | |
2636 "You missed %hu messages from %s because they were too large.", | |
2637 nummissed), | |
4282 | 2638 nummissed, |
2639 userinfo->sn); | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2640 break; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2641 case 2: |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2642 /* Rate exceeded */ |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2643 g_snprintf(buf, |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2644 sizeof(buf), |
4276 | 2645 ngettext( |
2646 "You missed %hu message from %s because the rate limit has been exceeded.", | |
2647 "You missed %hu messages from %s because the rate limit has been exceeded.", | |
2648 nummissed), | |
4282 | 2649 nummissed, |
2650 userinfo->sn); | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2651 break; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2652 case 3: |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2653 /* Evil Sender */ |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2654 g_snprintf(buf, |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2655 sizeof(buf), |
4276 | 2656 ngettext( |
2657 "You missed %hu message from %s because he/she was too evil.", | |
2658 "You missed %hu messages from %s because he/she was too evil.", | |
2659 nummissed), | |
4282 | 2660 nummissed, |
2661 userinfo->sn); | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2662 break; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2663 case 4: |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2664 /* Evil Receiver */ |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2665 g_snprintf(buf, |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2666 sizeof(buf), |
4276 | 2667 ngettext( |
2668 "You missed %hu message from %s because you are too evil.", | |
2669 "You missed %hu messages from %s because you are too evil.", | |
2670 nummissed), | |
4282 | 2671 nummissed, |
2672 userinfo->sn); | |
2086 | 2673 break; |
2674 default: | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2675 g_snprintf(buf, |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2676 sizeof(buf), |
4276 | 2677 ngettext( |
2678 "You missed %hu message from %s for an unknown reason.", | |
2679 "You missed %hu messages from %s for an unknown reason.", | |
2680 nummissed), | |
4282 | 2681 nummissed, |
2682 userinfo->sn); | |
2086 | 2683 break; |
2684 } | |
3427 | 2685 do_error_dialog(buf, NULL, GAIM_ERROR); |
2086 | 2686 |
2687 return 1; | |
2688 } | |
2689 | |
3212 | 2690 static char *gaim_icq_status(int state) { |
2691 /* Make a cute little string that shows the status of the dude or dudet */ | |
2692 if (state & AIM_ICQ_STATE_CHAT) | |
4342 | 2693 return g_strdup_printf(_("Free For Chat")); |
3212 | 2694 else if (state & AIM_ICQ_STATE_DND) |
4342 | 2695 return g_strdup_printf(_("Do Not Disturb")); |
3212 | 2696 else if (state & AIM_ICQ_STATE_OUT) |
4342 | 2697 return g_strdup_printf(_("Not Available")); |
3212 | 2698 else if (state & AIM_ICQ_STATE_BUSY) |
4342 | 2699 return g_strdup_printf(_("Occupied")); |
3212 | 2700 else if (state & AIM_ICQ_STATE_AWAY) |
4342 | 2701 return g_strdup_printf(_("Away")); |
3212 | 2702 else if (state & AIM_ICQ_STATE_WEBAWARE) |
4342 | 2703 return g_strdup_printf(_("Web Aware")); |
3212 | 2704 else if (state & AIM_ICQ_STATE_INVISIBLE) |
4342 | 2705 return g_strdup_printf(_("Invisible")); |
3212 | 2706 else |
4342 | 2707 return g_strdup_printf(_("Online")); |
3212 | 2708 } |
2709 | |
4194 | 2710 static int gaim_parse_clientauto_ch2(aim_session_t *sess, const char *who, fu16_t reason, const char *cookie) { |
3630 | 2711 struct gaim_connection *gc = sess->aux_data; |
4617 | 2712 struct oscar_data *od = gc->proto_data; |
2713 | |
2714 /* BBB */ | |
3630 | 2715 switch (reason) { |
4151 | 2716 case 3: { /* Decline sendfile. */ |
4617 | 2717 struct gaim_xfer *xfer; |
2718 debug_printf("AAA - Other user declined file transfer\n"); | |
2719 if ((xfer = oscar_find_xfer_by_cookie(od->file_transfers, cookie))) | |
4675
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4666
diff
changeset
|
2720 gaim_xfer_cancel_remote(xfer); |
4151 | 2721 } break; |
2722 | |
2723 default: { | |
4194 | 2724 debug_printf("Received an unknown rendezvous client auto-response from %s. Type 0x%04hx\n", who, reason); |
4151 | 2725 } |
3630 | 2726 |
2727 } | |
2728 | |
2729 return 0; | |
2730 } | |
2731 | |
4194 | 2732 static int gaim_parse_clientauto_ch4(aim_session_t *sess, char *who, fu16_t reason, fu32_t state, char *msg) { |
4151 | 2733 struct gaim_connection *gc = sess->aux_data; |
2734 | |
2735 switch(reason) { | |
2736 case 0x0003: { /* Reply from an ICQ status message request */ | |
2737 char *status_msg = gaim_icq_status(state); | |
2738 char *dialog_msg, **splitmsg; | |
2739 struct oscar_data *od = gc->proto_data; | |
2740 GSList *l = od->evilhack; | |
2741 gboolean evilhack = FALSE; | |
2742 | |
2743 /* Split at (carriage return/newline)'s, then rejoin later with BRs between. */ | |
2744 splitmsg = g_strsplit(msg, "\r\n", 0); | |
2745 | |
2746 /* If who is in od->evilhack, then we're just getting the away message, otherwise this | |
2747 * will just get appended to the info box (which is already showing). */ | |
2748 while (l) { | |
2749 char *x = l->data; | |
2750 if (!strcmp(x, normalize(who))) { | |
2751 evilhack = TRUE; | |
2752 g_free(x); | |
2753 od->evilhack = g_slist_remove(od->evilhack, x); | |
2754 break; | |
2755 } | |
2756 l = l->next; | |
2757 } | |
2758 | |
2759 if (evilhack) | |
4344 | 2760 dialog_msg = g_strdup_printf(_("<B>UIN:</B> %s<BR><B>Status:</B> %s<HR>%s"), who, status_msg, g_strjoinv("<BR>", splitmsg)); |
4151 | 2761 else |
4344 | 2762 dialog_msg = g_strdup_printf(_("<B>Status:</B> %s<HR>%s"), status_msg, g_strjoinv("<BR>", splitmsg)); |
4151 | 2763 g_show_info_text(gc, who, 2, dialog_msg, NULL); |
2764 | |
2765 g_free(status_msg); | |
2766 g_free(dialog_msg); | |
2767 g_strfreev(splitmsg); | |
2768 } break; | |
2769 | |
2770 default: { | |
4194 | 2771 debug_printf("Received an unknown client auto-response from %s. Type 0x%04hx\n", who, reason); |
4151 | 2772 } break; |
2773 } /* end of switch */ | |
2774 | |
2775 return 0; | |
2776 } | |
2777 | |
3212 | 2778 static int gaim_parse_clientauto(aim_session_t *sess, aim_frame_t *fr, ...) { |
2779 va_list ap; | |
2780 fu16_t chan, reason; | |
2781 char *who; | |
2782 | |
2783 va_start(ap, fr); | |
4200 | 2784 chan = (fu16_t)va_arg(ap, unsigned int); |
3212 | 2785 who = va_arg(ap, char *); |
4200 | 2786 reason = (fu16_t)va_arg(ap, unsigned int); |
3212 | 2787 |
3952 | 2788 if (chan == 0x0002) { /* File transfer declined */ |
3630 | 2789 char *cookie = va_arg(ap, char *); |
4151 | 2790 return gaim_parse_clientauto_ch2(sess, who, reason, cookie); |
3952 | 2791 } else if (chan == 0x0004) { /* ICQ message */ |
4200 | 2792 fu32_t state = 0; |
4151 | 2793 char *msg = NULL; |
2794 if (reason == 0x0003) { | |
4200 | 2795 state = va_arg(ap, fu32_t); |
4151 | 2796 msg = va_arg(ap, char *); |
2797 } | |
2798 return gaim_parse_clientauto_ch4(sess, who, reason, state, msg); | |
2799 } | |
3952 | 2800 |
3212 | 2801 va_end(ap); |
2802 | |
2803 return 1; | |
2804 } | |
2805 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2806 static int gaim_parse_genericerr(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 2807 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2808 fu16_t reason; |
2865
88dc3623a2ae
[gaim-migrate @ 2878]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2864
diff
changeset
|
2809 char *m; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2810 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2811 va_start(ap, fr); |
4199 | 2812 reason = (fu16_t) va_arg(ap, unsigned int); |
2086 | 2813 va_end(ap); |
2814 | |
4194 | 2815 debug_printf("snac threw error (reason 0x%04hx: %s)\n", reason, |
2086 | 2816 (reason < msgerrreasonlen) ? msgerrreason[reason] : "unknown"); |
2817 | |
2865
88dc3623a2ae
[gaim-migrate @ 2878]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2864
diff
changeset
|
2818 m = g_strdup_printf(_("SNAC threw error: %s\n"), |
4056 | 2819 reason < msgerrreasonlen ? gettext(msgerrreason[reason]) : _("Unknown error")); |
3427 | 2820 do_error_dialog(m, NULL, GAIM_ERROR); |
2865
88dc3623a2ae
[gaim-migrate @ 2878]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2864
diff
changeset
|
2821 g_free(m); |
88dc3623a2ae
[gaim-migrate @ 2878]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2864
diff
changeset
|
2822 |
2086 | 2823 return 1; |
2824 } | |
2825 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2826 static int gaim_parse_msgerr(aim_session_t *sess, aim_frame_t *fr, ...) { |
4617 | 2827 #if 0 |
3752 | 2828 struct gaim_connection *gc = sess->aux_data; |
4617 | 2829 struct oscar_data *od = gc->proto_data; |
2830 struct gaim_xfer *xfer; | |
4508
4c40fccbd7c9
[gaim-migrate @ 4784]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
2831 #endif |
4617 | 2832 va_list ap; |
2833 fu16_t reason; | |
2834 char *data, *buf; | |
4508
4c40fccbd7c9
[gaim-migrate @ 4784]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
2835 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2836 va_start(ap, fr); |
4617 | 2837 reason = (fu16_t)va_arg(ap, unsigned int); |
3752 | 2838 data = va_arg(ap, char *); |
2086 | 2839 va_end(ap); |
2840 | |
4617 | 2841 debug_printf("Message error with data %s and reason %hu\n", data, reason); |
2842 | |
2843 /* BBB */ | |
4508
4c40fccbd7c9
[gaim-migrate @ 4784]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
2844 #if 0 |
4617 | 2845 /* If this was a file transfer request, data is a cookie */ |
2846 if ((xfer = oscar_find_xfer_by_cookie(od->file_transfers, data))) { | |
4675
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4666
diff
changeset
|
2847 gaim_xfer_cancel_remote(xfer); |
3630 | 2848 return 1; |
2849 } | |
4508
4c40fccbd7c9
[gaim-migrate @ 4784]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
2850 #endif |
3630 | 2851 |
4617 | 2852 /* Data is assumed to be the destination sn */ |
2853 buf = g_strdup_printf(_("Your message to %s did not get sent:"), data); | |
4342 | 2854 do_error_dialog(buf, (reason < msgerrreasonlen) ? gettext(msgerrreason[reason]) : _("No reason given."), GAIM_ERROR); |
4617 | 2855 g_free(buf); |
2086 | 2856 |
2857 return 1; | |
2858 } | |
2859 | |
3595 | 2860 static int gaim_parse_mtn(aim_session_t *sess, aim_frame_t *fr, ...) { |
2861 struct gaim_connection *gc = sess->aux_data; | |
2862 va_list ap; | |
2863 fu16_t type1, type2; | |
2864 char *sn; | |
2865 | |
2866 va_start(ap, fr); | |
4199 | 2867 type1 = (fu16_t) va_arg(ap, unsigned int); |
3595 | 2868 sn = va_arg(ap, char *); |
4199 | 2869 type2 = (fu16_t) va_arg(ap, unsigned int); |
3595 | 2870 va_end(ap); |
2871 | |
2872 switch (type2) { | |
2873 case 0x0000: { /* Text has been cleared */ | |
2874 serv_got_typing_stopped(gc, sn); | |
2875 } break; | |
2876 | |
2877 case 0x0001: { /* Paused typing */ | |
3768 | 2878 serv_got_typing(gc, sn, 0, TYPED); |
3595 | 2879 } break; |
2880 | |
2881 case 0x0002: { /* Typing */ | |
3768 | 2882 serv_got_typing(gc, sn, 0, TYPING); |
3595 | 2883 } break; |
2884 | |
2885 default: { | |
4624 | 2886 printf("Received unknown typing notification message from %s. Type1 is 0x%04x and type2 is 0x%04hx.\n", sn, type1, type2); |
3595 | 2887 } break; |
2888 } | |
2889 | |
2890 return 1; | |
2891 } | |
2892 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2893 static int gaim_parse_locerr(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 2894 va_list ap; |
2895 char *destn; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2896 fu16_t reason; |
2086 | 2897 char buf[1024]; |
2898 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2899 va_start(ap, fr); |
4199 | 2900 reason = (fu16_t) va_arg(ap, unsigned int); |
2086 | 2901 destn = va_arg(ap, char *); |
2902 va_end(ap); | |
2903 | |
3574 | 2904 snprintf(buf, sizeof(buf), _("User information for %s unavailable:"), destn); |
4342 | 2905 do_error_dialog(buf, (reason < msgerrreasonlen) ? gettext(msgerrreason[reason]) : _("No reason given."), GAIM_ERROR); |
2086 | 2906 |
2907 return 1; | |
2908 } | |
2909 | |
2910 static char *images(int flags) { | |
2911 static char buf[1024]; | |
3101 | 2912 g_snprintf(buf, sizeof(buf), "%s%s%s%s%s%s%s", |
2679 | 2913 (flags & AIM_FLAG_ACTIVEBUDDY) ? "<IMG SRC=\"ab_icon.gif\">" : "", |
2086 | 2914 (flags & AIM_FLAG_UNCONFIRMED) ? "<IMG SRC=\"dt_icon.gif\">" : "", |
2915 (flags & AIM_FLAG_AOL) ? "<IMG SRC=\"aol_icon.gif\">" : "", | |
3101 | 2916 (flags & AIM_FLAG_ICQ) ? "<IMG SRC=\"icq_icon.gif\">" : "", |
2086 | 2917 (flags & AIM_FLAG_ADMINISTRATOR) ? "<IMG SRC=\"admin_icon.gif\">" : "", |
3079 | 2918 (flags & AIM_FLAG_FREE) ? "<IMG SRC=\"free_icon.gif\">" : "", |
2919 (flags & AIM_FLAG_WIRELESS) ? "<IMG SRC=\"wireless_icon.gif\">" : ""); | |
2086 | 2920 return buf; |
2921 } | |
2922 | |
3101 | 2923 |
2920 | 2924 static char *caps_string(guint caps) |
2925 { | |
2926 static char buf[512], *tmp; | |
2927 int count = 0, i = 0; | |
2928 guint bit = 1; | |
4742 | 2929 |
2930 if (!caps) { | |
4744 | 2931 return NULL; |
4743 | 2932 } else while (bit <= 0x20000) { |
2920 | 2933 if (bit & caps) { |
2934 switch (bit) { | |
2935 case 0x1: | |
2936 tmp = _("Buddy Icon"); | |
2937 break; | |
2938 case 0x2: | |
2939 tmp = _("Voice"); | |
2940 break; | |
2941 case 0x4: | |
4898 | 2942 tmp = _("Direct IM"); |
2920 | 2943 break; |
2944 case 0x8: | |
2945 tmp = _("Chat"); | |
2946 break; | |
2947 case 0x10: | |
2948 tmp = _("Get File"); | |
2949 break; | |
2950 case 0x20: | |
2951 tmp = _("Send File"); | |
2952 break; | |
2953 case 0x40: | |
2954 case 0x200: | |
2955 tmp = _("Games"); | |
2956 break; | |
2957 case 0x80: | |
4898 | 2958 tmp = _("Add-Ins"); |
2920 | 2959 break; |
2960 case 0x100: | |
2961 tmp = _("Send Buddy List"); | |
2962 break; | |
2963 case 0x400: | |
2964 tmp = _("EveryBuddy Bug"); | |
2965 break; | |
2966 case 0x800: | |
2967 tmp = _("AP User"); | |
2968 break; | |
2969 case 0x1000: | |
2970 tmp = _("ICQ RTF"); | |
2971 break; | |
2972 case 0x2000: | |
2973 tmp = _("Nihilist"); | |
2974 break; | |
2975 case 0x4000: | |
2976 tmp = _("ICQ Server Relay"); | |
2977 break; | |
2978 case 0x8000: | |
2979 tmp = _("ICQ Unknown"); | |
2980 break; | |
2981 case 0x10000: | |
2982 tmp = _("Trillian Encryption"); | |
2983 break; | |
4742 | 2984 case 0x20000: |
2985 tmp = _("ICQ UTF8"); | |
2986 break; | |
2920 | 2987 default: |
2988 tmp = NULL; | |
2989 break; | |
2990 } | |
2991 if (tmp) | |
2992 i += g_snprintf(buf + i, sizeof(buf) - i, "%s%s", (count ? ", " : ""), | |
2993 tmp); | |
2994 count++; | |
2995 } | |
2996 bit <<= 1; | |
2997 } | |
4744 | 2998 return buf; |
2920 | 2999 } |
3000 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3001 static int gaim_parse_user_info(aim_session_t *sess, aim_frame_t *fr, ...) { |
4791 | 3002 struct gaim_connection *gc = sess->aux_data; |
3003 struct oscar_data *od = gc->proto_data; | |
3004 char header[BUF_LONG]; | |
3005 GSList *l = od->evilhack; | |
3006 gboolean evilhack = FALSE; | |
3007 gchar *membersince = NULL, *onlinesince = NULL, *idle = NULL; | |
3008 va_list ap; | |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3009 aim_userinfo_t *info; |
4791 | 3010 fu16_t infotype; |
4151 | 3011 char *text_enc = NULL, *text = NULL, *utf8 = NULL; |
3012 int text_len; | |
2086 | 3013 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3014 va_start(ap, fr); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3015 info = va_arg(ap, aim_userinfo_t *); |
4199 | 3016 infotype = (fu16_t) va_arg(ap, unsigned int); |
4151 | 3017 text_enc = va_arg(ap, char *); |
3018 text = va_arg(ap, char *); | |
3019 text_len = va_arg(ap, int); | |
2086 | 3020 va_end(ap); |
3021 | |
4151 | 3022 if (text_len > 0) { |
5129 | 3023 if (!(utf8 = oscar_encoding_to_utf8(text_enc, text, text_len))) { |
4791 | 3024 utf8 = g_strdup(_("<i>Unable to display information because it was sent in an unknown encoding.</i>")); |
4194 | 3025 debug_printf("Encountered an unknown encoding while parsing userinfo\n"); |
4151 | 3026 } |
3027 } | |
3028 | |
2993 | 3029 if (info->present & AIM_USERINFO_PRESENT_ONLINESINCE) { |
4834 | 3030 onlinesince = g_strdup_printf(_("Online Since : <b>%s</b><br>\n"), |
2993 | 3031 asctime(localtime(&info->onlinesince))); |
3032 } | |
3033 | |
3034 if (info->present & AIM_USERINFO_PRESENT_MEMBERSINCE) { | |
4834 | 3035 membersince = g_strdup_printf(_("Member Since : <b>%s</b><br>\n"), |
2993 | 3036 asctime(localtime(&info->membersince))); |
3037 } | |
3038 | |
3039 if (info->present & AIM_USERINFO_PRESENT_IDLE) { | |
4426 | 3040 gchar *itime = sec_to_text(info->idletime*60); |
4834 | 3041 idle = g_strdup_printf(_("Idle : <b>%s</b>"), itime); |
4426 | 3042 g_free(itime); |
2993 | 3043 } else |
4834 | 3044 idle = g_strdup(_("Idle: <b>Active</b>")); |
2993 | 3045 |
2791
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
3046 g_snprintf(header, sizeof header, |
4791 | 3047 _("Username : <b>%s</b> %s <br>\n" |
3048 "Warning Level : <b>%d %%</b><br>\n" | |
2086 | 3049 "%s" |
2993 | 3050 "%s" |
4344 | 3051 "%s\n" |
4791 | 3052 "<hr>\n"), |
2086 | 3053 info->sn, images(info->flags), |
5149 | 3054 ill_just_write_my_own_damn_round_function(info->warnlevel/10.0), |
2993 | 3055 onlinesince ? onlinesince : "", |
3056 membersince ? membersince : "", | |
3057 idle ? idle : ""); | |
3058 | |
3059 g_free(onlinesince); | |
3060 g_free(membersince); | |
3061 g_free(idle); | |
2773
a0fd8f91e294
[gaim-migrate @ 2786]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2768
diff
changeset
|
3062 |
2791
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
3063 while (l) { |
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
3064 char *x = l->data; |
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
3065 if (!strcmp(x, normalize(info->sn))) { |
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
3066 evilhack = TRUE; |
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
3067 g_free(x); |
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
3068 od->evilhack = g_slist_remove(od->evilhack, x); |
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
3069 break; |
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
3070 } |
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
3071 l = l->next; |
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
3072 } |
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
3073 |
2920 | 3074 if (infotype == AIM_GETINFO_AWAYMESSAGE) { |
2791
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
3075 if (evilhack) { |
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
3076 g_show_info_text(gc, info->sn, 2, |
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
3077 header, |
4151 | 3078 (utf8 && *utf8) ? away_subs(utf8, gc->username) : |
4207 | 3079 _("<i>User has no away message</i>"), NULL); |
2791
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
3080 } else { |
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
3081 g_show_info_text(gc, info->sn, 0, |
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
3082 header, |
4151 | 3083 (utf8 && *utf8) ? away_subs(utf8, gc->username) : NULL, |
4791 | 3084 (utf8 && *utf8) ? "<hr>" : NULL, |
2791
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
3085 NULL); |
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
3086 } |
2920 | 3087 } else if (infotype == AIM_GETINFO_CAPABILITIES) { |
3088 g_show_info_text(gc, info->sn, 2, | |
3089 header, | |
3090 "<i>", _("Client Capabilities: "), | |
3091 caps_string(info->capabilities), | |
3092 "</i>", | |
3093 NULL); | |
2791
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
3094 } else { |
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
3095 g_show_info_text(gc, info->sn, 1, |
5197 | 3096 (utf8 && *utf8) ? away_subs(utf8, gc->username) : _("<i>No Information Provided</i>"), |
2791
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
3097 NULL); |
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
3098 } |
2086 | 3099 |
4151 | 3100 g_free(utf8); |
3101 | |
2086 | 3102 return 1; |
3103 } | |
3104 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3105 static int gaim_parse_motd(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 3106 char *msg; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3107 fu16_t id; |
2086 | 3108 va_list ap; |
3109 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3110 va_start(ap, fr); |
4199 | 3111 id = (fu16_t) va_arg(ap, unsigned int); |
2086 | 3112 msg = va_arg(ap, char *); |
3113 va_end(ap); | |
3114 | |
4194 | 3115 debug_printf("MOTD: %s (%hu)\n", msg ? msg : "Unknown", id); |
2092
59b0377d18aa
[gaim-migrate @ 2102]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2090
diff
changeset
|
3116 if (id < 4) |
3427 | 3117 do_error_dialog(_("Your AIM connection may be lost."), NULL, GAIM_WARNING); |
2086 | 3118 |
3119 return 1; | |
3120 } | |
3121 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3122 static int gaim_chatnav_info(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 3123 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3124 fu16_t type; |
2086 | 3125 struct gaim_connection *gc = sess->aux_data; |
4617 | 3126 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
2086 | 3127 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3128 va_start(ap, fr); |
4199 | 3129 type = (fu16_t) va_arg(ap, unsigned int); |
2086 | 3130 |
3131 switch(type) { | |
3132 case 0x0002: { | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3133 fu8_t maxrooms; |
2086 | 3134 struct aim_chat_exchangeinfo *exchanges; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3135 int exchangecount, i; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3136 |
4199 | 3137 maxrooms = (fu8_t) va_arg(ap, unsigned int); |
2086 | 3138 exchangecount = va_arg(ap, int); |
3139 exchanges = va_arg(ap, struct aim_chat_exchangeinfo *); | |
3140 | |
3141 debug_printf("chat info: Chat Rights:\n"); | |
4194 | 3142 debug_printf("chat info: \tMax Concurrent Rooms: %hhd\n", maxrooms); |
2086 | 3143 debug_printf("chat info: \tExchange List: (%d total)\n", exchangecount); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3144 for (i = 0; i < exchangecount; i++) |
4194 | 3145 debug_printf("chat info: \t\t%hu %s\n", exchanges[i].number, exchanges[i].name ? exchanges[i].name : ""); |
4617 | 3146 while (od->create_rooms) { |
3147 struct create_room *cr = od->create_rooms->data; | |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
3148 debug_printf("creating room %s\n", cr->name); |
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
3149 aim_chatnav_createroom(sess, fr->conn, cr->name, cr->exchange); |
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
3150 g_free(cr->name); |
4617 | 3151 od->create_rooms = g_slist_remove(od->create_rooms, cr); |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
3152 g_free(cr); |
2086 | 3153 } |
3154 } | |
3155 break; | |
3156 case 0x0008: { | |
3157 char *fqcn, *name, *ck; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3158 fu16_t instance, flags, maxmsglen, maxoccupancy, unknown, exchange; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3159 fu8_t createperms; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3160 fu32_t createtime; |
2086 | 3161 |
3162 fqcn = va_arg(ap, char *); | |
4200 | 3163 instance = (fu16_t)va_arg(ap, unsigned int); |
3164 exchange = (fu16_t)va_arg(ap, unsigned int); | |
3165 flags = (fu16_t)va_arg(ap, unsigned int); | |
3166 createtime = va_arg(ap, fu32_t); | |
3167 maxmsglen = (fu16_t)va_arg(ap, unsigned int); | |
3168 maxoccupancy = (fu16_t)va_arg(ap, unsigned int); | |
3169 createperms = (fu8_t)va_arg(ap, unsigned int); | |
3170 unknown = (fu16_t)va_arg(ap, unsigned int); | |
3171 name = va_arg(ap, char *); | |
3172 ck = va_arg(ap, char *); | |
4194 | 3173 |
3174 debug_printf("created room: %s %hu %hu %hu %lu %hu %hu %hhu %hu %s %s\n", | |
2086 | 3175 fqcn, |
3176 exchange, instance, flags, | |
3177 createtime, | |
3178 maxmsglen, maxoccupancy, createperms, unknown, | |
3179 name, ck); | |
4617 | 3180 aim_chat_join(od->sess, od->conn, exchange, ck, instance); |
2086 | 3181 } |
3182 break; | |
3183 default: | |
4194 | 3184 debug_printf("chatnav info: unknown type (%04hx)\n", type); |
2086 | 3185 break; |
3186 } | |
4194 | 3187 |
3188 va_end(ap); | |
3189 | |
2086 | 3190 return 1; |
3191 } | |
3192 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3193 static int gaim_chat_join(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 3194 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3195 int count, i; |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3196 aim_userinfo_t *info; |
2086 | 3197 struct gaim_connection *g = sess->aux_data; |
3198 | |
3199 struct chat_connection *c = NULL; | |
3200 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3201 va_start(ap, fr); |
2086 | 3202 count = va_arg(ap, int); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3203 info = va_arg(ap, aim_userinfo_t *); |
2086 | 3204 va_end(ap); |
3205 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3206 c = find_oscar_chat_by_conn(g, fr->conn); |
2086 | 3207 if (!c) |
3208 return 1; | |
3209 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3210 for (i = 0; i < count; i++) |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4358
diff
changeset
|
3211 gaim_chat_add_user(GAIM_CHAT(c->cnv), info[i].sn, NULL); |
2086 | 3212 |
3213 return 1; | |
3214 } | |
3215 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3216 static int gaim_chat_leave(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 3217 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3218 int count, i; |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3219 aim_userinfo_t *info; |
2086 | 3220 struct gaim_connection *g = sess->aux_data; |
3221 | |
3222 struct chat_connection *c = NULL; | |
3223 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3224 va_start(ap, fr); |
2086 | 3225 count = va_arg(ap, int); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3226 info = va_arg(ap, aim_userinfo_t *); |
2086 | 3227 va_end(ap); |
3228 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3229 c = find_oscar_chat_by_conn(g, fr->conn); |
2086 | 3230 if (!c) |
3231 return 1; | |
3232 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3233 for (i = 0; i < count; i++) |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4358
diff
changeset
|
3234 gaim_chat_remove_user(GAIM_CHAT(c->cnv), info[i].sn, NULL); |
2086 | 3235 |
3236 return 1; | |
3237 } | |
3238 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3239 static int gaim_chat_info_update(aim_session_t *sess, aim_frame_t *fr, ...) { |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3240 va_list ap; |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3241 aim_userinfo_t *userinfo; |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3242 struct aim_chat_roominfo *roominfo; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3243 char *roomname; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3244 int usercount; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3245 char *roomdesc; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3246 fu16_t unknown_c9, unknown_d2, unknown_d5, maxmsglen, maxvisiblemsglen; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3247 fu32_t creationtime; |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3248 struct gaim_connection *gc = sess->aux_data; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3249 struct chat_connection *ccon = find_oscar_chat_by_conn(gc, fr->conn); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3250 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3251 va_start(ap, fr); |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3252 roominfo = va_arg(ap, struct aim_chat_roominfo *); |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3253 roomname = va_arg(ap, char *); |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3254 usercount= va_arg(ap, int); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3255 userinfo = va_arg(ap, aim_userinfo_t *); |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3256 roomdesc = va_arg(ap, char *); |
4200 | 3257 unknown_c9 = (fu16_t)va_arg(ap, unsigned int); |
3258 creationtime = va_arg(ap, fu32_t); | |
3259 maxmsglen = (fu16_t)va_arg(ap, unsigned int); | |
3260 unknown_d2 = (fu16_t)va_arg(ap, unsigned int); | |
3261 unknown_d5 = (fu16_t)va_arg(ap, unsigned int); | |
3262 maxvisiblemsglen = (fu16_t)va_arg(ap, unsigned int); | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3263 va_end(ap); |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3264 |
4194 | 3265 debug_printf("inside chat_info_update (maxmsglen = %hu, maxvislen = %hu)\n", |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3266 maxmsglen, maxvisiblemsglen); |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3267 |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3268 ccon->maxlen = maxmsglen; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3269 ccon->maxvis = maxvisiblemsglen; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3270 |
2086 | 3271 return 1; |
3272 } | |
3273 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3274 static int gaim_chat_incoming_msg(aim_session_t *sess, aim_frame_t *fr, ...) { |
4269 | 3275 struct gaim_connection *gc = sess->aux_data; |
2086 | 3276 va_list ap; |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3277 aim_userinfo_t *info; |
2086 | 3278 char *msg; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3279 struct chat_connection *ccon = find_oscar_chat_by_conn(gc, fr->conn); |
2086 | 3280 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3281 va_start(ap, fr); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3282 info = va_arg(ap, aim_userinfo_t *); |
4194 | 3283 msg = va_arg(ap, char *); |
3284 va_end(ap); | |
2086 | 3285 |
4269 | 3286 serv_got_chat_in(gc, ccon->id, info->sn, 0, msg, time((time_t)NULL)); |
2086 | 3287 |
3288 return 1; | |
3289 } | |
3290 | |
3694 | 3291 static int gaim_email_parseupdate(aim_session_t *sess, aim_frame_t *fr, ...) { |
3292 va_list ap; | |
3293 struct gaim_connection *gc = sess->aux_data; | |
3294 struct aim_emailinfo *emailinfo; | |
3725 | 3295 int havenewmail; |
3694 | 3296 |
3297 va_start(ap, fr); | |
3298 emailinfo = va_arg(ap, struct aim_emailinfo *); | |
3725 | 3299 havenewmail = va_arg(ap, int); |
3694 | 3300 va_end(ap); |
3301 | |
3725 | 3302 if (emailinfo) { |
3303 if (emailinfo->unread) { | |
3304 if (havenewmail) | |
3305 connection_has_mail(gc, emailinfo->nummsgs ? emailinfo->nummsgs : -1, NULL, NULL, emailinfo->url); | |
3306 } else | |
3694 | 3307 connection_has_mail(gc, 0, NULL, NULL, emailinfo->url); |
3308 } | |
3309 | |
3310 return 1; | |
3311 } | |
3312 | |
4804 | 3313 static int gaim_icon_error(aim_session_t *sess, aim_frame_t *fr, ...) { |
3314 struct gaim_connection *gc = sess->aux_data; | |
3315 struct oscar_data *od = gc->proto_data; | |
3316 char *sn; | |
3317 | |
3318 sn = od->requesticon->data; | |
3319 debug_printf("removing %s from hash table\n", sn); | |
3320 od->requesticon = g_slist_remove(od->requesticon, sn); | |
3321 free(sn); | |
3322 | |
3323 if (od->icontimer) | |
3324 g_source_remove(od->icontimer); | |
3325 od->icontimer = g_timeout_add(500, gaim_icon_timerfunc, gc); | |
3326 | |
3327 return 1; | |
3328 } | |
3329 | |
3330 static int gaim_icon_parseicon(aim_session_t *sess, aim_frame_t *fr, ...) { | |
3331 struct gaim_connection *gc = sess->aux_data; | |
3332 struct oscar_data *od = gc->proto_data; | |
3333 GSList *cur; | |
3334 va_list ap; | |
3335 char *sn; | |
4853 | 3336 fu8_t *iconcsum, *icon; |
3337 fu16_t iconcsumlen, iconlen; | |
4804 | 3338 |
3339 va_start(ap, fr); | |
3340 sn = va_arg(ap, char *); | |
4853 | 3341 iconcsum = va_arg(ap, fu8_t *); |
3342 iconcsumlen = va_arg(ap, int); | |
4804 | 3343 icon = va_arg(ap, fu8_t *); |
3344 iconlen = va_arg(ap, int); | |
3345 va_end(ap); | |
3346 | |
4853 | 3347 if (iconlen > 0) { |
3348 char *b16; | |
5129 | 3349 struct buddy *b = gaim_find_buddy(gc->account, sn); |
4804 | 3350 set_icon_data(gc, sn, icon, iconlen); |
4853 | 3351 b16 = tobase16(iconcsum, iconcsumlen); |
5129 | 3352 if (b16) { |
3353 gaim_buddy_set_setting(b, "icon_checksum", b16); | |
3354 gaim_blist_save(); | |
5125 | 3355 free(b16); |
5129 | 3356 } |
4853 | 3357 } |
4804 | 3358 |
3359 cur = od->requesticon; | |
3360 while (cur) { | |
3361 char *cursn = cur->data; | |
3362 if (!aim_sncmp(cursn, sn)) { | |
3363 od->requesticon = g_slist_remove(od->requesticon, cursn); | |
3364 free(cursn); | |
3365 cur = od->requesticon; | |
3366 } else | |
3367 cur = cur->next; | |
3368 } | |
3369 | |
3370 if (od->icontimer) | |
3371 g_source_remove(od->icontimer); | |
3372 od->icontimer = g_timeout_add(250, gaim_icon_timerfunc, gc); | |
3373 | |
3374 return 1; | |
3375 } | |
3376 | |
3377 static gboolean gaim_icon_timerfunc(gpointer data) { | |
3378 struct gaim_connection *gc = data; | |
3379 struct oscar_data *od = gc->proto_data; | |
3380 struct buddyinfo *bi; | |
3381 aim_conn_t *conn; | |
3382 | |
3383 if (!od->requesticon) { | |
3384 debug_printf("no more icons to request\n"); | |
3385 return FALSE; | |
3386 } | |
3387 | |
3388 conn = aim_getconn_type(od->sess, AIM_CONN_TYPE_ICON); | |
4823 | 3389 if (!conn && !od->iconconnecting) { |
4804 | 3390 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_ICON); |
4823 | 3391 od->iconconnecting = TRUE; |
4804 | 3392 return FALSE; |
3393 } | |
3394 | |
3395 bi = g_hash_table_lookup(od->buddyinfo, (char *)od->requesticon->data); | |
4853 | 3396 if (bi && (bi->iconcsumlen > 0)) { |
4889 | 3397 aim_icon_request(od->sess, od->requesticon->data, bi->iconcsum, bi->iconcsumlen); |
4804 | 3398 return FALSE; |
3399 } else { | |
3400 char *sn = od->requesticon->data; | |
3401 od->requesticon = g_slist_remove(od->requesticon, sn); | |
3402 free(sn); | |
3403 } | |
3404 | |
3405 return TRUE; | |
3406 } | |
3407 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3408 /* |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3409 * Recieved in response to an IM sent with the AIM_IMFLAGS_ACK option. |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3410 */ |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3411 static int gaim_parse_msgack(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 3412 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3413 fu16_t type; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3414 char *sn; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3415 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3416 va_start(ap, fr); |
4199 | 3417 type = (fu16_t) va_arg(ap, unsigned int); |
2086 | 3418 sn = va_arg(ap, char *); |
3419 va_end(ap); | |
3420 | |
3421 debug_printf("Sent message to %s.\n", sn); | |
3422 | |
3423 return 1; | |
3424 } | |
3425 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3426 static int gaim_parse_ratechange(aim_session_t *sess, aim_frame_t *fr, ...) { |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3427 static const char *codes[5] = { |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3428 "invalid", |
4194 | 3429 "change", |
3430 "warning", | |
3431 "limit", | |
3432 "limit cleared", | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3433 }; |
2086 | 3434 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3435 fu16_t code, rateclass; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3436 fu32_t windowsize, clear, alert, limit, disconnect, currentavg, maxavg; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3437 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3438 va_start(ap, fr); |
4200 | 3439 code = (fu16_t)va_arg(ap, unsigned int); |
3440 rateclass= (fu16_t)va_arg(ap, unsigned int); | |
3441 windowsize = va_arg(ap, fu32_t); | |
3442 clear = va_arg(ap, fu32_t); | |
3443 alert = va_arg(ap, fu32_t); | |
3444 limit = va_arg(ap, fu32_t); | |
3445 disconnect = va_arg(ap, fu32_t); | |
3446 currentavg = va_arg(ap, fu32_t); | |
3447 maxavg = va_arg(ap, fu32_t); | |
2086 | 3448 va_end(ap); |
3449 | |
4194 | 3450 debug_printf("rate %s (param ID 0x%04hx): curavg = %lu, maxavg = %lu, alert at %lu, " |
3451 "clear warning at %lu, limit at %lu, disconnect at %lu (window size = %lu)\n", | |
2086 | 3452 (code < 5) ? codes[code] : codes[0], |
3453 rateclass, | |
3454 currentavg, maxavg, | |
3455 alert, clear, | |
3456 limit, disconnect, | |
3457 windowsize); | |
3458 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3459 /* XXX fix these values */ |
2086 | 3460 if (code == AIM_RATE_CODE_CHANGE) { |
3461 if (currentavg >= clear) | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3462 aim_conn_setlatency(fr->conn, 0); |
2086 | 3463 } else if (code == AIM_RATE_CODE_WARNING) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3464 aim_conn_setlatency(fr->conn, windowsize/4); |
2909
48ec70928d7f
[gaim-migrate @ 2922]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2906
diff
changeset
|
3465 } else if (code == AIM_RATE_CODE_LIMIT) { |
3427 | 3466 do_error_dialog(_("Rate limiting error."), |
3467 _("The last message was not sent because you are over the rate limit. " | |
3468 "Please wait 10 seconds and try again."), GAIM_ERROR); | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3469 aim_conn_setlatency(fr->conn, windowsize/2); |
2086 | 3470 } else if (code == AIM_RATE_CODE_CLEARLIMIT) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3471 aim_conn_setlatency(fr->conn, 0); |
2086 | 3472 } |
3473 | |
3474 return 1; | |
3475 } | |
3476 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3477 static int gaim_parse_evilnotify(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 3478 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3479 fu16_t newevil; |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3480 aim_userinfo_t *userinfo; |
2086 | 3481 struct gaim_connection *gc = sess->aux_data; |
3482 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3483 va_start(ap, fr); |
4199 | 3484 newevil = (fu16_t) va_arg(ap, unsigned int); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3485 userinfo = va_arg(ap, aim_userinfo_t *); |
2086 | 3486 va_end(ap); |
3487 | |
5149 | 3488 serv_got_eviled(gc, (userinfo && userinfo->sn[0]) ? userinfo->sn : NULL, ill_just_write_my_own_damn_round_function(newevil/10.0)); |
2086 | 3489 |
3490 return 1; | |
3491 } | |
3492 | |
2507
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3493 static int gaim_selfinfo(aim_session_t *sess, aim_frame_t *fr, ...) { |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3494 va_list ap; |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3495 aim_userinfo_t *info; |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3496 struct gaim_connection *gc = sess->aux_data; |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3497 |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3498 va_start(ap, fr); |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3499 info = va_arg(ap, aim_userinfo_t *); |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3500 va_end(ap); |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3501 |
5149 | 3502 gc->evil = ill_just_write_my_own_damn_round_function(info->warnlevel/10.0); |
4841 | 3503 |
3504 if (info->onlinesince) | |
3505 gc->login_time_official = info->onlinesince; | |
2507
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3506 |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3507 return 1; |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3508 } |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3509 |
4649 | 3510 static int gaim_connerr(aim_session_t *sess, aim_frame_t *fr, ...) { |
3511 struct gaim_connection *gc = sess->aux_data; | |
4666 | 3512 struct oscar_data *od = gc->proto_data; |
4649 | 3513 va_list ap; |
3514 fu16_t code; | |
3515 char *msg; | |
3516 | |
3517 va_start(ap, fr); | |
3518 code = (fu16_t)va_arg(ap, int); | |
3519 msg = va_arg(ap, char *); | |
3520 va_end(ap); | |
3521 | |
3522 debug_printf("Disconnected. Code is 0x%04x and msg is %s\n", code, msg); | |
3523 if ((fr) && (fr->conn) && (fr->conn->type == AIM_CONN_TYPE_BOS)) { | |
4651 | 3524 if (code == 0x0001) { |
4652 | 3525 hide_login_progress_error(gc, _("You have been disconnected because you have signed on with this screen name at another location.")); |
4651 | 3526 } else { |
4652 | 3527 hide_login_progress_error(gc, _("You have been signed off for an unknown reason.")); |
4651 | 3528 } |
4666 | 3529 od->killme = TRUE; |
4649 | 3530 } |
3531 | |
3532 return 1; | |
3533 } | |
3534 | |
2675 | 3535 static int conninitdone_bos(aim_session_t *sess, aim_frame_t *fr, ...) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3536 |
2703
441b84ab7f4e
[gaim-migrate @ 2716]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2698
diff
changeset
|
3537 aim_reqpersonalinfo(sess, fr->conn); |
4230 | 3538 |
3539 #ifndef NOSSI | |
3540 debug_printf("ssi: requesting ssi list\n"); | |
4889 | 3541 aim_ssi_reqrights(sess); |
3542 aim_ssi_reqdata(sess, sess->ssi.timestamp, sess->ssi.numitems); | |
4230 | 3543 #endif |
3544 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3545 aim_bos_reqlocaterights(sess, fr->conn); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3546 aim_bos_reqbuddyrights(sess, fr->conn); |
4617 | 3547 aim_im_reqparams(sess); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3548 aim_bos_reqrights(sess, fr->conn); |
4230 | 3549 |
3550 #ifdef NOSSI | |
3551 aim_bos_setgroupperm(sess, fr->conn, AIM_FLAG_ALLUSERS); | |
3552 aim_bos_setprivacyflags(sess, fr->conn, AIM_PRIVFLAGS_ALLOWIDLE | AIM_PRIVFLAGS_ALLOWMEMBERSINCE); | |
3553 #endif | |
2086 | 3554 |
3555 return 1; | |
3556 } | |
3557 | |
2675 | 3558 static int conninitdone_admin(aim_session_t *sess, aim_frame_t *fr, ...) { |
2647 | 3559 struct gaim_connection *gc = sess->aux_data; |
3560 struct oscar_data *od = gc->proto_data; | |
3561 | |
2672 | 3562 aim_clientready(sess, fr->conn); |
2675 | 3563 debug_printf("connected to admin\n"); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3564 |
2647 | 3565 if (od->chpass) { |
3566 debug_printf("changing password\n"); | |
2703
441b84ab7f4e
[gaim-migrate @ 2716]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2698
diff
changeset
|
3567 aim_admin_changepasswd(sess, fr->conn, od->newp, od->oldp); |
2647 | 3568 g_free(od->oldp); |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3569 od->oldp = NULL; |
2647 | 3570 g_free(od->newp); |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3571 od->newp = NULL; |
2647 | 3572 od->chpass = FALSE; |
3573 } | |
2979 | 3574 if (od->setnick) { |
3575 debug_printf("formatting screenname\n"); | |
3576 aim_admin_setnick(sess, fr->conn, od->newsn); | |
3577 g_free(od->newsn); | |
3578 od->newsn = NULL; | |
3579 od->setnick = FALSE; | |
3580 } | |
2647 | 3581 if (od->conf) { |
3582 debug_printf("confirming account\n"); | |
2703
441b84ab7f4e
[gaim-migrate @ 2716]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2698
diff
changeset
|
3583 aim_admin_reqconfirm(sess, fr->conn); |
2647 | 3584 od->conf = FALSE; |
3585 } | |
3586 if (od->reqemail) { | |
3587 debug_printf("requesting email\n"); | |
2703
441b84ab7f4e
[gaim-migrate @ 2716]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2698
diff
changeset
|
3588 aim_admin_getinfo(sess, fr->conn, 0x0011); |
2647 | 3589 od->reqemail = FALSE; |
3590 } | |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3591 if (od->setemail) { |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3592 debug_printf("setting email\n"); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3593 aim_admin_setemail(sess, fr->conn, od->email); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3594 g_free(od->email); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3595 od->setemail = FALSE; |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3596 } |
2647 | 3597 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3598 return 1; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3599 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3600 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3601 static int gaim_icbm_param_info(aim_session_t *sess, aim_frame_t *fr, ...) { |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3602 struct aim_icbmparameters *params; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3603 va_list ap; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3604 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3605 va_start(ap, fr); |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3606 params = va_arg(ap, struct aim_icbmparameters *); |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3607 va_end(ap); |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3608 |
4194 | 3609 /* XXX - evidently this crashes on solaris. i have no clue why |
3610 debug_printf("ICBM Parameters: maxchannel = %hu, default flags = 0x%08lx, max msg len = %hu, " | |
3611 "max sender evil = %f, max receiver evil = %f, min msg interval = %lu\n", | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3612 params->maxchan, params->flags, params->maxmsglen, |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3613 ((float)params->maxsenderwarn)/10.0, ((float)params->maxrecverwarn)/10.0, |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3614 params->minmsginterval); |
2427
5bc3b39fc0a5
[gaim-migrate @ 2440]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2421
diff
changeset
|
3615 */ |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3616 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3617 /* Maybe senderwarn and recverwarn should be user preferences... */ |
3595 | 3618 params->flags = 0x0000000b; |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3619 params->maxmsglen = 8000; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3620 params->minmsginterval = 0; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3621 |
4617 | 3622 aim_im_setparams(sess, params); |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3623 |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3624 return 1; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3625 } |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3626 |
2993 | 3627 static int gaim_parse_locaterights(aim_session_t *sess, aim_frame_t *fr, ...) |
3628 { | |
3629 va_list ap; | |
3630 fu16_t maxsiglen; | |
3631 struct gaim_connection *gc = sess->aux_data; | |
4617 | 3632 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
4151 | 3633 char *unicode; |
3634 int unicode_len; | |
3635 fu32_t flags; | |
2993 | 3636 |
3637 va_start(ap, fr); | |
4199 | 3638 maxsiglen = (fu16_t) va_arg(ap, int); |
2993 | 3639 va_end(ap); |
3640 | |
3641 debug_printf("locate rights: max sig len = %d\n", maxsiglen); | |
3642 | |
4617 | 3643 od->rights.maxsiglen = od->rights.maxawaymsglen = (guint)maxsiglen; |
3644 | |
3645 if (od->icq) | |
4151 | 3646 aim_bos_setprofile(sess, fr->conn, NULL, NULL, 0, NULL, NULL, 0, caps_icq); |
3647 else { | |
5129 | 3648 flags = oscar_encoding_check (gc->account->user_info); |
4151 | 3649 |
3650 if (flags == 0) { | |
4600 | 3651 aim_bos_setprofile(sess, fr->conn, "us-ascii", gc->account->user_info, |
4491 | 3652 strlen(gc->account->user_info), NULL, NULL, 0, caps_aim); |
4151 | 3653 } else { |
4491 | 3654 unicode = g_convert (gc->account->user_info, strlen(gc->account->user_info), |
4151 | 3655 "UCS-2BE", "UTF-8", NULL, &unicode_len, NULL); |
3656 aim_bos_setprofile(sess, fr->conn, "unicode-2-0", unicode, unicode_len, | |
3657 NULL, NULL, 0, caps_aim); | |
3658 g_free(unicode); | |
3659 } | |
3660 } | |
2993 | 3661 |
3662 return 1; | |
3663 } | |
3664 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3665 static int gaim_parse_buddyrights(aim_session_t *sess, aim_frame_t *fr, ...) { |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3666 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3667 fu16_t maxbuddies, maxwatchers; |
2993 | 3668 struct gaim_connection *gc = sess->aux_data; |
4617 | 3669 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3670 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3671 va_start(ap, fr); |
4199 | 3672 maxbuddies = (fu16_t) va_arg(ap, unsigned int); |
3673 maxwatchers = (fu16_t) va_arg(ap, unsigned int); | |
2086 | 3674 va_end(ap); |
3675 | |
4194 | 3676 debug_printf("buddy list rights: Max buddies = %hu / Max watchers = %hu\n", maxbuddies, maxwatchers); |
2086 | 3677 |
4617 | 3678 od->rights.maxbuddies = (guint)maxbuddies; |
3679 od->rights.maxwatchers = (guint)maxwatchers; | |
2993 | 3680 |
2086 | 3681 return 1; |
3682 } | |
3683 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3684 static int gaim_bosrights(aim_session_t *sess, aim_frame_t *fr, ...) { |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3685 fu16_t maxpermits, maxdenies; |
2086 | 3686 va_list ap; |
2993 | 3687 struct gaim_connection *gc = sess->aux_data; |
4617 | 3688 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
2086 | 3689 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3690 va_start(ap, fr); |
4199 | 3691 maxpermits = (fu16_t) va_arg(ap, unsigned int); |
3692 maxdenies = (fu16_t) va_arg(ap, unsigned int); | |
2086 | 3693 va_end(ap); |
3694 | |
4194 | 3695 debug_printf("BOS rights: Max permit = %hu / Max deny = %hu\n", maxpermits, maxdenies); |
2086 | 3696 |
4617 | 3697 od->rights.maxpermits = (guint)maxpermits; |
3698 od->rights.maxdenies = (guint)maxdenies; | |
2993 | 3699 |
3700 account_online(gc); | |
3701 serv_finish_login(gc); | |
3702 | |
3703 debug_printf("buddy list loaded\n"); | |
3704 | |
2672 | 3705 aim_clientready(sess, fr->conn); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3706 |
4617 | 3707 /* XXX - Should call aim_bos_setidle with 0x0000 */ |
3708 | |
4664 | 3709 if (od->icq) { |
3710 aim_icq_reqofflinemsgs(sess); | |
3711 aim_icq_hideip(sess); | |
3712 } | |
2706
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3713 |
2703
441b84ab7f4e
[gaim-migrate @ 2716]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2698
diff
changeset
|
3714 aim_reqservice(sess, fr->conn, AIM_CONN_TYPE_CHATNAV); |
4102 | 3715 if (sess->authinfo->email) |
3716 aim_reqservice(sess, fr->conn, AIM_CONN_TYPE_EMAIL); | |
2086 | 3717 |
3718 return 1; | |
3719 } | |
3720 | |
2706
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3721 static int gaim_offlinemsg(aim_session_t *sess, aim_frame_t *fr, ...) { |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3722 va_list ap; |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3723 struct aim_icq_offlinemsg *msg; |
4075 | 3724 struct aim_incomingim_ch4_args args; |
3725 time_t t; | |
2706
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3726 |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3727 va_start(ap, fr); |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3728 msg = va_arg(ap, struct aim_icq_offlinemsg *); |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3729 va_end(ap); |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3730 |
4075 | 3731 debug_printf("Received offline message. Converting to channel 4 ICBM...\n"); |
3732 args.uin = msg->sender; | |
3733 args.type = msg->type; | |
4173 | 3734 args.flags = msg->flags; |
4076 | 3735 args.msglen = msg->msglen; |
4075 | 3736 args.msg = msg->msg; |
3737 t = get_time(msg->year, msg->month, msg->day, msg->hour, msg->minute, 0); | |
3738 incomingim_chan4(sess, fr->conn, NULL, &args, t); | |
2706
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3739 |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3740 return 1; |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3741 } |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3742 |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3743 static int gaim_offlinemsgdone(aim_session_t *sess, aim_frame_t *fr, ...) |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3744 { |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3745 aim_icq_ackofflinemsgs(sess); |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3746 return 1; |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3747 } |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3748 |
4624 | 3749 static int gaim_icqinfo(aim_session_t *sess, aim_frame_t *fr, ...) |
2742
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
3750 { |
2773
a0fd8f91e294
[gaim-migrate @ 2786]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2768
diff
changeset
|
3751 struct gaim_connection *gc = sess->aux_data; |
4819 | 3752 gchar *buf, *tmp, *utf8; |
4624 | 3753 gchar who[16]; |
2742
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
3754 va_list ap; |
4151 | 3755 struct aim_icq_info *info; |
2742
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
3756 |
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
3757 va_start(ap, fr); |
4151 | 3758 info = va_arg(ap, struct aim_icq_info *); |
2742
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
3759 va_end(ap); |
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
3760 |
4664 | 3761 if (!info->uin) |
3762 return 0; | |
3763 | |
4151 | 3764 g_snprintf(who, sizeof(who), "%lu", info->uin); |
4820 | 3765 buf = g_strdup_printf("<b>%s</b> %s", _("UIN:"), who); |
4819 | 3766 if (info->nick && info->nick[0] && (utf8 = gaim_try_conv_to_utf8(info->nick))) { |
3767 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Nick:"), "</b> ", utf8, NULL); g_free(tmp); g_free(utf8); | |
3768 } | |
3769 if (info->first && info->first[0] && (utf8 = gaim_try_conv_to_utf8(info->first))) { | |
3770 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("First Name:"), "</b> ", utf8, NULL); g_free(tmp); g_free(utf8); | |
3771 } | |
3772 if (info->last && info->last[0] && (utf8 = gaim_try_conv_to_utf8(info->last))) { | |
3773 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Last Name:"), "</b> ", utf8, NULL); g_free(tmp); g_free(utf8); | |
3774 } | |
3775 if (info->email && info->email[0] && (utf8 = gaim_try_conv_to_utf8(info->email))) { | |
3776 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Email Address:"), "</b> <a href=\"mailto:", utf8, "\">", utf8, "</a>", NULL); g_free(tmp); g_free(utf8); | |
4625 | 3777 } |
3778 if (info->numaddresses && info->email2) { | |
3779 int i; | |
3780 for (i = 0; i < info->numaddresses; i++) { | |
4819 | 3781 if (info->email2[i] && info->email2[i][0] && (utf8 = gaim_try_conv_to_utf8(info->email2[i]))) { |
3782 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Email Address:"), "</b> <a href=\"mailto:", utf8, "\">", utf8, "</a>", NULL); g_free(tmp); g_free(utf8); | |
4643 | 3783 } |
4625 | 3784 } |
4624 | 3785 } |
4819 | 3786 if (info->mobile && info->mobile[0] && (utf8 = gaim_try_conv_to_utf8(info->mobile))) { |
3787 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Mobile Phone:"), "</b> ", utf8, NULL); g_free(tmp); g_free(utf8); | |
4625 | 3788 } |
3789 if (info->gender) { | |
4819 | 3790 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Gender:"), "</b> ", info->gender==1 ? _("Female") : _("Male"), NULL); g_free(tmp); |
4151 | 3791 } |
4624 | 3792 if (info->birthyear || info->birthmonth || info->birthday) { |
4627 | 3793 char date[30]; |
3794 struct tm tm; | |
3795 tm.tm_mday = (int)info->birthday; | |
3796 tm.tm_mon = (int)info->birthmonth-1; | |
3797 tm.tm_year = (int)info->birthyear-1900; | |
4628 | 3798 strftime(date, sizeof(date), "%x", &tm); |
4819 | 3799 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Birthday:"), "</b> ", date, NULL); g_free(tmp); |
4151 | 3800 } |
4624 | 3801 if (info->age) { |
3802 char age[5]; | |
3803 snprintf(age, sizeof(age), "%hhd", info->age); | |
4819 | 3804 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Age:"), "</b> ", age, NULL); g_free(tmp); |
3805 } | |
3806 if (info->personalwebpage && info->personalwebpage[0] && (utf8 = gaim_try_conv_to_utf8(info->personalwebpage))) { | |
3807 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Personal Web Page:"), "</b> <a href=\"", utf8, "\">", utf8, "</a>", NULL); g_free(tmp); g_free(utf8); | |
3808 } | |
3809 if (info->info && info->info[0] && (utf8 = gaim_try_conv_to_utf8(info->info))) { | |
3810 tmp = buf; buf = g_strconcat(tmp, "<hr><b>", _("Additional Information:"), "</b><br>", utf8, NULL); g_free(tmp); g_free(utf8); | |
4624 | 3811 } |
3812 tmp = buf; buf = g_strconcat(tmp, "<hr>\n", NULL); g_free(tmp); | |
4641 | 3813 if ((info->homeaddr && (info->homeaddr[0])) || (info->homecity && info->homecity[0]) || (info->homestate && info->homestate[0]) || (info->homezip && info->homezip[0])) { |
4819 | 3814 tmp = buf; buf = g_strconcat(tmp, "<b>", _("Home Address:"), "</b>", NULL); g_free(tmp); |
3815 if (info->homeaddr && info->homeaddr[0] && (utf8 = gaim_try_conv_to_utf8(info->homeaddr))) { | |
3816 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Address:"), "</b> ", utf8, NULL); g_free(tmp); g_free(utf8); | |
4624 | 3817 } |
4819 | 3818 if (info->homecity && info->homecity[0] && (utf8 = gaim_try_conv_to_utf8(info->homecity))) { |
3819 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("City:"), "</b> ", utf8, NULL); g_free(tmp); g_free(utf8); | |
4624 | 3820 } |
4819 | 3821 if (info->homestate && info->homestate[0] && (utf8 = gaim_try_conv_to_utf8(info->homestate))) { |
3822 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("State:"), "</b> ", utf8, NULL); g_free(tmp); g_free(utf8); | |
4624 | 3823 } |
4819 | 3824 if (info->homezip && info->homezip[0] && (utf8 = gaim_try_conv_to_utf8(info->homezip))) { |
3825 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Zip Code:"), "</b> ", utf8, NULL); g_free(tmp); g_free(utf8); | |
4624 | 3826 } |
3827 tmp = buf; buf = g_strconcat(tmp, "\n<hr>\n", NULL); g_free(tmp); | |
4151 | 3828 } |
4641 | 3829 if ((info->workaddr && info->workaddr[0]) || (info->workcity && info->workcity[0]) || (info->workstate && info->workstate[0]) || (info->workzip && info->workzip[0])) { |
4819 | 3830 tmp = buf; buf = g_strconcat(tmp, "<b>", _("Work Address:"), "</b>", NULL); g_free(tmp); |
3831 if (info->workaddr && info->workaddr[0] && (utf8 = gaim_try_conv_to_utf8(info->workaddr))) { | |
3832 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Address:"), "</b> ", utf8, NULL); g_free(tmp); g_free(utf8); | |
4624 | 3833 } |
4819 | 3834 if (info->workcity && info->workcity[0] && (utf8 = gaim_try_conv_to_utf8(info->workcity))) { |
3835 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("City:"), "</b> ", utf8, NULL); g_free(tmp); g_free(utf8); | |
4624 | 3836 } |
4819 | 3837 if (info->workstate && info->workstate[0] && (utf8 = gaim_try_conv_to_utf8(info->workstate))) { |
3838 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("State:"), "</b> ", utf8, NULL); g_free(tmp); g_free(utf8); | |
4624 | 3839 } |
4819 | 3840 if (info->workzip && info->workzip[0] && (utf8 = gaim_try_conv_to_utf8(info->workzip))) { |
3841 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Zip Code:"), "</b> ", utf8, NULL); g_free(tmp); g_free(utf8); | |
4624 | 3842 } |
3843 tmp = buf; buf = g_strconcat(tmp, "\n<hr>\n", NULL); g_free(tmp); | |
3844 } | |
4641 | 3845 if ((info->workcompany && info->workcompany[0]) || (info->workdivision && info->workdivision[0]) || (info->workposition && info->workposition[0]) || (info->workwebpage && info->workwebpage[0])) { |
4819 | 3846 tmp = buf; buf = g_strconcat(tmp, "<b>", _("Work Information:"), "</b>", NULL); g_free(tmp); |
3847 if (info->workcompany && info->workcompany[0] && (utf8 = gaim_try_conv_to_utf8(info->workcompany))) { | |
3848 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Company:"), "</b> ", utf8, NULL); g_free(tmp); g_free(utf8); | |
4624 | 3849 } |
4819 | 3850 if (info->workdivision && info->workdivision[0] && (utf8 = gaim_try_conv_to_utf8(info->workdivision))) { |
3851 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Division:"), "</b> ", utf8, NULL); g_free(tmp); g_free(utf8); | |
4624 | 3852 } |
4819 | 3853 if (info->workposition && info->workposition[0] && (utf8 = gaim_try_conv_to_utf8(info->workposition))) { |
3854 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Position:"), "</b> ", utf8, NULL); g_free(tmp); g_free(utf8); | |
4624 | 3855 } |
4819 | 3856 if (info->workwebpage && info->workwebpage[0] && (utf8 = gaim_try_conv_to_utf8(info->workwebpage))) { |
3857 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Web Page:"), "</b> <a href=\"", utf8, "\">", utf8, "</a>", NULL); g_free(tmp); g_free(utf8); | |
4624 | 3858 } |
3859 tmp = buf; buf = g_strconcat(tmp, "\n<hr>\n", NULL); g_free(tmp); | |
4151 | 3860 } |
3861 | |
3862 g_show_info_text(gc, who, 2, buf, NULL); | |
3863 g_free(buf); | |
3864 | |
2742
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
3865 return 1; |
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
3866 } |
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
3867 |
4759 | 3868 static int gaim_icqalias(aim_session_t *sess, aim_frame_t *fr, ...) |
3869 { | |
3870 struct gaim_connection *gc = sess->aux_data; | |
4820 | 3871 gchar who[16], *utf8; |
4759 | 3872 struct buddy *b; |
3873 va_list ap; | |
3874 struct aim_icq_info *info; | |
3875 | |
3876 va_start(ap, fr); | |
3877 info = va_arg(ap, struct aim_icq_info *); | |
3878 va_end(ap); | |
3879 | |
4822 | 3880 if (info->uin && info->nick && info->nick[0] && (utf8 = gaim_try_conv_to_utf8(info->nick))) { |
4759 | 3881 g_snprintf(who, sizeof(who), "%lu", info->uin); |
4820 | 3882 serv_got_alias(gc, who, utf8); |
4759 | 3883 if ((b = gaim_find_buddy(gc->account, who))) { |
4820 | 3884 gaim_buddy_set_setting(b, "servernick", utf8); |
4759 | 3885 gaim_blist_save(); |
3886 } | |
4820 | 3887 g_free(utf8); |
4759 | 3888 } |
3889 | |
3890 return 1; | |
3891 } | |
3892 | |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3893 static int gaim_popup(aim_session_t *sess, aim_frame_t *fr, ...) |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3894 { |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3895 char *msg, *url; |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3896 fu16_t wid, hei, delay; |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3897 va_list ap; |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3898 |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3899 va_start(ap, fr); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3900 msg = va_arg(ap, char *); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3901 url = va_arg(ap, char *); |
4199 | 3902 wid = (fu16_t) va_arg(ap, int); |
3903 hei = (fu16_t) va_arg(ap, int); | |
3904 delay = (fu16_t) va_arg(ap, int); | |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3905 va_end(ap); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3906 |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3907 serv_got_popup(msg, url, wid, hei); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3908 |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3909 return 1; |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3910 } |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3911 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3912 static int gaim_parse_searchreply(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 3913 va_list ap; |
3914 char *address, *SNs; | |
3915 int i, num; | |
3916 char *buf; | |
3917 int at = 0, len; | |
3918 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3919 va_start(ap, fr); |
2086 | 3920 address = va_arg(ap, char *); |
3921 num = va_arg(ap, int); | |
3922 SNs = va_arg(ap, char *); | |
3923 va_end(ap); | |
3924 | |
3925 len = num * (MAXSNLEN + 1) + 1024; | |
3926 buf = g_malloc(len); | |
3927 at += g_snprintf(buf + at, len - at, "<B>%s has the following screen names:</B><BR>", address); | |
3928 for (i = 0; i < num; i++) | |
3929 at += g_snprintf(buf + at, len - at, "%s<BR>", &SNs[i * (MAXSNLEN + 1)]); | |
3212 | 3930 g_show_info_text(NULL, NULL, 2, buf, NULL); |
2086 | 3931 g_free(buf); |
3932 | |
3933 return 1; | |
3934 } | |
3935 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3936 static int gaim_parse_searcherror(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 3937 va_list ap; |
3938 char *address; | |
3939 char buf[BUF_LONG]; | |
3940 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3941 va_start(ap, fr); |
2086 | 3942 address = va_arg(ap, char *); |
3943 va_end(ap); | |
3944 | |
3945 g_snprintf(buf, sizeof(buf), "No results found for email address %s", address); | |
3427 | 3946 do_error_dialog(buf, NULL, GAIM_ERROR); |
2086 | 3947 |
3948 return 1; | |
3949 } | |
3950 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3951 static int gaim_account_confirm(aim_session_t *sess, aim_frame_t *fr, ...) { |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3952 fu16_t status; |
2086 | 3953 va_list ap; |
3954 char msg[256]; | |
3955 struct gaim_connection *gc = sess->aux_data; | |
3956 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3957 va_start(ap, fr); |
4199 | 3958 status = (fu16_t) va_arg(ap, unsigned int); /* status code of confirmation request */ |
2086 | 3959 va_end(ap); |
3960 | |
3961 debug_printf("account confirmation returned status 0x%04x (%s)\n", status, | |
3912 | 3962 status ? "unknown" : "email sent"); |
3963 if (!status) { | |
2086 | 3964 g_snprintf(msg, sizeof(msg), "You should receive an email asking to confirm %s.", |
3965 gc->username); | |
4056 | 3966 do_error_dialog(_("Account Confirmation Requested"), msg, GAIM_INFO); |
2086 | 3967 } |
3968 | |
3969 return 1; | |
3970 } | |
3971 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3972 static int gaim_info_change(aim_session_t *sess, aim_frame_t *fr, ...) { |
3912 | 3973 struct gaim_connection *gc = sess->aux_data; |
2086 | 3974 va_list ap; |
3912 | 3975 fu16_t perms, err; |
3976 char *url, *sn, *email; | |
3977 int change; | |
2086 | 3978 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3979 va_start(ap, fr); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3980 change = va_arg(ap, int); |
4199 | 3981 perms = (fu16_t) va_arg(ap, unsigned int); |
3982 err = (fu16_t) va_arg(ap, unsigned int); | |
3912 | 3983 url = va_arg(ap, char *); |
3984 sn = va_arg(ap, char *); | |
3985 email = va_arg(ap, char *); | |
2086 | 3986 va_end(ap); |
3987 | |
3912 | 3988 debug_printf("account info: because of %s, perms=0x%04x, err=0x%04x, url=%s, sn=%s, email=%s\n", |
3989 change ? "change" : "request", perms, err, url, sn, email); | |
3990 | |
3991 if (err && url) { | |
3992 char *dialog_msg; | |
3993 char *dialog_top = g_strdup_printf(_("Error Changing Account Info")); | |
3994 switch (err) { | |
3995 case 0x0001: { | |
3996 dialog_msg = g_strdup_printf(_("Error 0x%04x: Unable to format screen name because the requested screen name differs from the original."), err); | |
3997 } break; | |
3998 case 0x0006: { | |
3999 dialog_msg = g_strdup_printf(_("Error 0x%04x: Unable to format screen name because the requested screen name ends in a space."), err); | |
4000 } break; | |
4001 case 0x000b: { | |
4002 dialog_msg = g_strdup_printf(_("Error 0x%04x: Unable to format screen name because the requested screen name is too long."), err); | |
4003 } break; | |
4004 case 0x001d: { | |
4005 dialog_msg = g_strdup_printf(_("Error 0x%04x: Unable to change email address because there is already a request pending for this screen name."), err); | |
4006 } break; | |
4007 case 0x0021: { | |
4008 dialog_msg = g_strdup_printf(_("Error 0x%04x: Unable to change email address because the given address has too many screen names associated with it."), err); | |
4009 } break; | |
4010 case 0x0023: { | |
4011 dialog_msg = g_strdup_printf(_("Error 0x%04x: Unable to change email address because the given address is invalid."), err); | |
4012 } break; | |
4013 default: { | |
4014 dialog_msg = g_strdup_printf(_("Error 0x%04x: Unknown error."), err); | |
4015 } break; | |
4016 } | |
4017 do_error_dialog(dialog_top, dialog_msg, GAIM_ERROR); | |
4018 g_free(dialog_top); | |
4019 g_free(dialog_msg); | |
4020 return 1; | |
4021 } | |
4022 | |
4023 if (sn) { | |
4585 | 4024 char *dialog_msg = g_strdup_printf(_("Your screen name is currently formatted as follows:\n%s"), sn); |
4056 | 4025 do_error_dialog(_("Account Info"), dialog_msg, GAIM_INFO); |
3912 | 4026 g_free(dialog_msg); |
4027 } | |
4028 | |
4029 if (email) { | |
4030 char *dialog_msg = g_strdup_printf(_("The email address for %s is %s"), gc->username, email); | |
4056 | 4031 do_error_dialog(_("Account Info"), dialog_msg, GAIM_INFO); |
3912 | 4032 g_free(dialog_msg); |
2086 | 4033 } |
4034 | |
4035 return 1; | |
4036 } | |
4037 | |
4038 static void oscar_keepalive(struct gaim_connection *gc) { | |
4617 | 4039 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
4040 aim_flap_nop(od->sess, od->conn); | |
2086 | 4041 } |
4042 | |
3001 | 4043 static int oscar_send_typing(struct gaim_connection *gc, char *name, int typing) { |
4617 | 4044 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
4045 struct direct_im *dim = find_direct_im(od, name); | |
3595 | 4046 if (dim) |
4870 | 4047 if (typing == TYPING) |
4048 aim_odc_send_typing(od->sess, dim->conn, 0x0002); | |
4049 else if (typing == TYPED) | |
4050 aim_odc_send_typing(od->sess, dim->conn, 0x0001); | |
4051 else | |
4052 aim_odc_send_typing(od->sess, dim->conn, 0x0000); | |
3595 | 4053 else { |
4738 | 4054 struct buddyinfo *bi = g_hash_table_lookup(od->buddyinfo, normalize(name)); |
4055 if (bi && bi->typingnot) { | |
3596 | 4056 if (typing == TYPING) |
4617 | 4057 aim_im_sendmtn(od->sess, 0x0001, name, 0x0002); |
3596 | 4058 else if (typing == TYPED) |
4617 | 4059 aim_im_sendmtn(od->sess, 0x0001, name, 0x0001); |
3595 | 4060 else |
4617 | 4061 aim_im_sendmtn(od->sess, 0x0001, name, 0x0000); |
3595 | 4062 } |
4063 } | |
2993 | 4064 return 0; |
4065 } | |
5136 | 4066 static void oscar_ask_direct_im(struct gaim_connection *gc, const char *name); |
4067 | |
4068 static int oscar_send_im(struct gaim_connection *gc, const char *name, const char *message, int len, int imflags) { | |
4617 | 4069 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
4070 struct direct_im *dim = find_direct_im(od, name); | |
2303
f5bf315e6104
[gaim-migrate @ 2313]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2297
diff
changeset
|
4071 int ret = 0; |
3659 | 4072 GError *err = NULL; |
3458 | 4073 |
4838 | 4074 if (dim && dim->connected) { |
4075 /* If we're directly connected, send a direct IM */ | |
4076 /* XXX - The last parameter below is the encoding. Let Paco-Paco do something with it. */ | |
4870 | 4077 if (imflags & IM_FLAG_AWAY) |
4078 ret = aim_odc_send_im(od->sess, dim->conn, message, len == -1 ? strlen(message) : len, 0, 1); | |
4079 else | |
4080 ret = aim_odc_send_im(od->sess, dim->conn, message, len == -1 ? strlen(message) : len, 0, 0); | |
3044 | 4081 } else if (len != -1) { |
4082 /* Trying to send an IM image outside of a direct connection. */ | |
4083 oscar_ask_direct_im(gc, name); | |
4838 | 4084 ret = -ENOTCONN; |
2086 | 4085 } else { |
4738 | 4086 struct buddyinfo *bi; |
3008 | 4087 struct aim_sendimext_args args; |
4088 struct stat st; | |
4151 | 4089 int len; |
4269 | 4090 |
4738 | 4091 bi = g_hash_table_lookup(od->buddyinfo, normalize(name)); |
4092 if (!bi) { | |
4093 bi = g_new0(struct buddyinfo, 1); | |
4094 g_hash_table_insert(od->buddyinfo, g_strdup(normalize(name)), bi); | |
4095 } | |
4096 | |
3008 | 4097 args.flags = AIM_IMFLAGS_ACK | AIM_IMFLAGS_CUSTOMFEATURES; |
4665 | 4098 if (od->icq) { |
4099 args.features = features_icq; | |
4100 args.featureslen = sizeof(features_icq); | |
3008 | 4101 args.flags |= AIM_IMFLAGS_OFFLINE; |
4665 | 4102 } else { |
4103 args.features = features_aim; | |
4104 args.featureslen = sizeof(features_aim); | |
4972 | 4105 |
4106 if (imflags & IM_FLAG_AWAY) | |
4107 args.flags |= AIM_IMFLAGS_AWAY; | |
4665 | 4108 } |
4269 | 4109 |
4738 | 4110 if (bi->ico_need) { |
4111 debug_printf("Sending buddy icon request with message\n"); | |
3008 | 4112 args.flags |= AIM_IMFLAGS_BUDDYREQ; |
4738 | 4113 bi->ico_need = FALSE; |
3008 | 4114 } |
4269 | 4115 |
4491 | 4116 if (gc->account->iconfile[0] && !stat(gc->account->iconfile, &st)) { |
4117 FILE *file = fopen(gc->account->iconfile, "r"); | |
3008 | 4118 if (file) { |
4119 char *buf = g_malloc(st.st_size); | |
4120 fread(buf, 1, st.st_size, file); | |
4269 | 4121 |
3008 | 4122 args.iconlen = st.st_size; |
4617 | 4123 args.iconsum = aimutil_iconsum(buf, st.st_size); |
3008 | 4124 args.iconstamp = st.st_mtime; |
4125 | |
4738 | 4126 if ((args.iconlen != bi->ico_me_len) || (args.iconsum != bi->ico_me_csum) || (args.iconstamp != bi->ico_me_time)) |
4127 bi->ico_informed = FALSE; | |
4128 | |
4129 if (!bi->ico_informed) { | |
4130 debug_printf("Claiming to have a buddy icon\n"); | |
4131 args.flags |= AIM_IMFLAGS_HASICON; | |
4132 bi->ico_me_len = args.iconlen; | |
4133 bi->ico_me_csum = args.iconsum; | |
4134 bi->ico_me_time = args.iconstamp; | |
4135 bi->ico_informed = TRUE; | |
4136 } | |
4137 | |
3008 | 4138 fclose(file); |
4139 g_free(buf); | |
2086 | 4140 } |
4141 } | |
4269 | 4142 |
3008 | 4143 args.destsn = name; |
4269 | 4144 |
3642 | 4145 len = strlen(message); |
5129 | 4146 args.flags |= oscar_encoding_check(message); |
3642 | 4147 if (args.flags & AIM_IMFLAGS_UNICODE) { |
4194 | 4148 debug_printf("Sending Unicode IM\n"); |
4662 | 4149 args.charset = 0x0002; |
4665 | 4150 args.charsubset = 0x0000; |
3659 | 4151 args.msg = g_convert(message, len, "UCS-2BE", "UTF-8", NULL, &len, &err); |
4152 if (err) { | |
4153 debug_printf("Error converting a unicode message: %s\n", err->message); | |
4154 debug_printf("This really shouldn't happen!\n"); | |
4155 /* We really shouldn't try to send the | |
4156 * IM now, but I'm not sure what to do */ | |
4800 | 4157 g_error_free(err); |
3659 | 4158 } |
3850 | 4159 } else if (args.flags & AIM_IMFLAGS_ISO_8859_1) { |
4194 | 4160 debug_printf("Sending ISO-8859-1 IM\n"); |
4662 | 4161 args.charset = 0x0003; |
4665 | 4162 args.charsubset = 0x0000; |
3659 | 4163 args.msg = g_convert(message, len, "ISO-8859-1", "UTF-8", NULL, &len, &err); |
4164 if (err) { | |
4165 debug_printf("conversion error: %s\n", err->message); | |
3642 | 4166 debug_printf("Someone tell Ethan his 8859-1 detection is wrong\n"); |
4167 args.flags ^= AIM_IMFLAGS_ISO_8859_1 | AIM_IMFLAGS_UNICODE; | |
4168 len = strlen(message); | |
4800 | 4169 g_error_free(err); |
3659 | 4170 args.msg = g_convert(message, len, "UCS-2BE", "UTF8", NULL, &len, &err); |
4171 if (err) { | |
4194 | 4172 debug_printf("Error in unicode fallback: %s\n", err->message); |
4800 | 4173 g_error_free(err); |
3659 | 4174 } |
3642 | 4175 } |
4176 } else { | |
4662 | 4177 args.charset = 0x0000; |
4178 args.charsubset = 0x0000; | |
3642 | 4179 args.msg = message; |
4180 } | |
4181 args.msglen = len; | |
4269 | 4182 |
4617 | 4183 ret = aim_im_sendch1_ext(od->sess, &args); |
2086 | 4184 } |
4838 | 4185 |
2303
f5bf315e6104
[gaim-migrate @ 2313]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2297
diff
changeset
|
4186 if (ret >= 0) |
f5bf315e6104
[gaim-migrate @ 2313]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2297
diff
changeset
|
4187 return 1; |
f5bf315e6104
[gaim-migrate @ 2313]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2297
diff
changeset
|
4188 return ret; |
2086 | 4189 } |
4190 | |
5136 | 4191 static void oscar_get_info(struct gaim_connection *g, const char *name) { |
4617 | 4192 struct oscar_data *od = (struct oscar_data *)g->proto_data; |
4193 if (od->icq) | |
4624 | 4194 aim_icq_getallinfo(od->sess, name); |
2742
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
4195 else |
2791
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
4196 /* people want the away message on the top, so we get the away message |
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
4197 * first and then get the regular info, since it's too difficult to |
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
4198 * insert in the middle. i hate people. */ |
4617 | 4199 aim_getinfo(od->sess, od->conn, name, AIM_GETINFO_AWAYMESSAGE); |
2791
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
4200 } |
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
4201 |
5136 | 4202 static void oscar_get_away(struct gaim_connection *g, const char *who) { |
4617 | 4203 struct oscar_data *od = (struct oscar_data *)g->proto_data; |
4204 if (od->icq) { | |
4687 | 4205 struct buddy *budlight = gaim_find_buddy(g->account, who); |
3212 | 4206 if (budlight) |
3595 | 4207 if ((budlight->uc & 0xffff0000) >> 16) |
4687 | 4208 aim_im_sendch2_geticqaway(od->sess, who, (budlight->uc & 0xffff0000) >> 16); |
3212 | 4209 else |
4210 debug_printf("Error: The user %s has no status message, therefore not requesting.\n", who); | |
4211 else | |
4212 debug_printf("Error: Could not find %s in local contact list, therefore unable to request status message.\n", who); | |
4213 } else | |
4617 | 4214 aim_getinfo(od->sess, od->conn, who, AIM_GETINFO_GENERALINFO); |
2086 | 4215 } |
4216 | |
3466 | 4217 static void oscar_set_dir(struct gaim_connection *g, const char *first, const char *middle, const char *last, |
4218 const char *maiden, const char *city, const char *state, const char *country, int web) { | |
4617 | 4219 /* XXX - some of these things are wrong, but i'm lazy */ |
4220 struct oscar_data *od = (struct oscar_data *)g->proto_data; | |
4221 aim_setdirectoryinfo(od->sess, od->conn, first, middle, last, | |
2086 | 4222 maiden, NULL, NULL, city, state, NULL, 0, web); |
4223 } | |
4224 | |
4225 | |
5129 | 4226 static void oscar_set_idle(struct gaim_connection *gc, int time) { |
4227 struct oscar_data *od = (struct oscar_data *)gc->proto_data; | |
4617 | 4228 aim_bos_setidle(od->sess, od->conn, time); |
2086 | 4229 } |
4230 | |
5129 | 4231 static void oscar_set_info(struct gaim_connection *gc, char *text) { |
4232 struct oscar_data *od = (struct oscar_data *)gc->proto_data; | |
4233 fu32_t flags = 0; | |
4234 char *msg = NULL; | |
4235 int msglen = 0; | |
2993 | 4236 |
4617 | 4237 if (od->rights.maxsiglen == 0) |
3427 | 4238 do_error_dialog(_("Unable to set AIM profile."), |
4239 _("You have probably requested to set your profile before the login procedure completed. " | |
5129 | 4240 "Your profile remains unset; try setting it again when you are fully connected."), GAIM_WARNING); |
4617 | 4241 |
4242 if (od->icq) | |
4243 aim_bos_setprofile(od->sess, od->conn, NULL, NULL, 0, NULL, NULL, 0, caps_icq); | |
4151 | 4244 else { |
5129 | 4245 if (!text) { |
4246 aim_bos_setprofile(od->sess, od->conn, NULL, NULL, 0, NULL, NULL, 0, caps_aim); | |
4247 return; | |
4248 } | |
4249 | |
4250 flags = oscar_encoding_check(text); | |
4251 if (flags & AIM_IMFLAGS_UNICODE) { | |
4252 msg = g_convert(text, strlen(text), "UCS-2BE", "UTF-8", NULL, &msglen, NULL); | |
4253 aim_bos_setprofile(od->sess, od->conn, "unicode-2-0", msg, (msglen > od->rights.maxsiglen ? od->rights.maxsiglen : msglen), NULL, NULL, 0, caps_aim); | |
4254 g_free(msg); | |
4255 } else if (flags & AIM_IMFLAGS_ISO_8859_1) { | |
4256 msg = g_convert(text, strlen(text), "ISO-8859-1", "UTF-8", NULL, &msglen, NULL); | |
4257 aim_bos_setprofile(od->sess, od->conn, "iso-8859-1", msg, (msglen > od->rights.maxsiglen ? od->rights.maxsiglen : msglen), NULL, NULL, 0, caps_aim); | |
4258 g_free(msg); | |
4151 | 4259 } else { |
5129 | 4260 msglen = strlen(text); |
4261 aim_bos_setprofile(od->sess, od->conn, "us-ascii", text, (msglen > od->rights.maxsiglen ? od->rights.maxsiglen : msglen), NULL, NULL, 0, caps_aim); | |
4151 | 4262 } |
5129 | 4263 |
4264 if (msglen > od->rights.maxsiglen) { | |
4265 gchar *errstr; | |
4266 errstr = g_strdup_printf(_("The maximum profile length of %d bytes has been exceeded. " | |
4267 "Gaim has truncated it for you."), od->rights.maxsiglen); | |
4268 do_error_dialog(_("Profile too long."), errstr, GAIM_WARNING); | |
4269 g_free(errstr); | |
4270 } | |
4271 | |
4272 } | |
2993 | 4273 |
4274 return; | |
2086 | 4275 } |
4276 | |
5129 | 4277 static void oscar_set_away_aim(struct gaim_connection *gc, struct oscar_data *od, const char *text) |
2993 | 4278 { |
5129 | 4279 fu32_t flags = 0; |
4280 char *msg = NULL; | |
4281 int msglen = 0; | |
2993 | 4282 |
4283 if (od->rights.maxawaymsglen == 0) | |
3427 | 4284 do_error_dialog(_("Unable to set AIM away message."), |
4285 _("You have probably requested to set your away message before the login procedure completed. " | |
5129 | 4286 "You remain in a \"present\" state; try setting it again when you are fully connected."), GAIM_WARNING); |
4287 | |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4288 if (gc->away) { |
2993 | 4289 g_free(gc->away); |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4290 gc->away = NULL; |
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4291 } |
2993 | 4292 |
5129 | 4293 if (!text) { |
4151 | 4294 aim_bos_setprofile(od->sess, od->conn, NULL, NULL, 0, NULL, "", 0, caps_aim); |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
4295 return; |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
4296 } |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
4297 |
5129 | 4298 flags = oscar_encoding_check(text); |
4299 if (flags & AIM_IMFLAGS_UNICODE) { | |
4300 msg = g_convert(text, strlen(text), "UCS-2BE", "UTF-8", NULL, &msglen, NULL); | |
4301 aim_bos_setprofile(od->sess, od->conn, NULL, NULL, 0, "unicode-2-0", msg, | |
4302 (msglen > od->rights.maxawaymsglen ? od->rights.maxawaymsglen : msglen), caps_aim); | |
4303 g_free(msg); | |
4304 gc->away = g_strndup(text, od->rights.maxawaymsglen/2); | |
4305 } else if (flags & AIM_IMFLAGS_ISO_8859_1) { | |
4306 msg = g_convert(text, strlen(text), "ISO-8859-1", "UTF-8", NULL, &msglen, NULL); | |
4307 aim_bos_setprofile(od->sess, od->conn, NULL, NULL, 0, "iso-8859-1", msg, | |
4308 (msglen > od->rights.maxawaymsglen ? od->rights.maxawaymsglen : msglen), caps_aim); | |
4309 g_free(msg); | |
4310 gc->away = g_strndup(text, od->rights.maxawaymsglen); | |
4311 } else { | |
4312 msglen = strlen(text); | |
4313 aim_bos_setprofile(od->sess, od->conn, NULL, NULL, 0, "us-ascii", text, | |
4314 (msglen > od->rights.maxawaymsglen ? od->rights.maxawaymsglen : msglen), caps_aim); | |
4315 gc->away = g_strndup(text, od->rights.maxawaymsglen); | |
4316 } | |
4317 | |
4318 if (msglen > od->rights.maxawaymsglen) { | |
2993 | 4319 gchar *errstr; |
4320 | |
5129 | 4321 errstr = g_strdup_printf(_("The maximum away message length of %d bytes has been exceeded. " |
3427 | 4322 "Gaim has truncated it and set you away."), od->rights.maxawaymsglen); |
5129 | 4323 do_error_dialog(_("Away message too long."), errstr, GAIM_WARNING); |
2993 | 4324 g_free(errstr); |
4325 } | |
4326 | |
4327 return; | |
4328 } | |
4329 | |
4330 static void oscar_set_away_icq(struct gaim_connection *gc, struct oscar_data *od, const char *state, const char *message) | |
4331 { | |
4332 | |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4333 if (gc->away) { |
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4334 g_free(gc->away); |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
4335 gc->away = NULL; |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4336 } |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
4337 |
4342 | 4338 if (strcmp(state, _("Invisible"))) { |
4491 | 4339 if (aim_ssi_getpermdeny(od->sess->ssi.local) != gc->account->permdeny) |
4889 | 4340 aim_ssi_setpermdeny(od->sess, gc->account->permdeny, 0xffffffff); |
4491 | 4341 gc->account->permdeny = 4; |
4342 | 4342 } else { |
4343 if (aim_ssi_getpermdeny(od->sess->ssi.local) != 0x03) | |
4889 | 4344 aim_ssi_setpermdeny(od->sess, 0x03, 0xffffffff); |
4491 | 4345 gc->account->permdeny = 3; |
4342 | 4346 } |
4347 | |
4348 if (!strcmp(state, _("Online"))) | |
4901 | 4349 aim_setextstatus(od->sess, AIM_ICQ_STATE_NORMAL); |
4342 | 4350 else if (!strcmp(state, _("Away"))) { |
4901 | 4351 aim_setextstatus(od->sess, AIM_ICQ_STATE_AWAY); |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4352 gc->away = g_strdup(""); |
4342 | 4353 } else if (!strcmp(state, _("Do Not Disturb"))) { |
4901 | 4354 aim_setextstatus(od->sess, AIM_ICQ_STATE_AWAY | AIM_ICQ_STATE_DND | AIM_ICQ_STATE_BUSY); |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4355 gc->away = g_strdup(""); |
4342 | 4356 } else if (!strcmp(state, _("Not Available"))) { |
4901 | 4357 aim_setextstatus(od->sess, AIM_ICQ_STATE_OUT | AIM_ICQ_STATE_AWAY); |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4358 gc->away = g_strdup(""); |
4342 | 4359 } else if (!strcmp(state, _("Occupied"))) { |
4901 | 4360 aim_setextstatus(od->sess, AIM_ICQ_STATE_AWAY | AIM_ICQ_STATE_BUSY); |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4361 gc->away = g_strdup(""); |
4342 | 4362 } else if (!strcmp(state, _("Free For Chat"))) { |
4901 | 4363 aim_setextstatus(od->sess, AIM_ICQ_STATE_CHAT); |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4364 gc->away = g_strdup(""); |
4342 | 4365 } else if (!strcmp(state, _("Invisible"))) { |
4901 | 4366 aim_setextstatus(od->sess, AIM_ICQ_STATE_INVISIBLE); |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4367 gc->away = g_strdup(""); |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
4368 } else if (!strcmp(state, GAIM_AWAY_CUSTOM)) { |
2998 | 4369 if (message) { |
4901 | 4370 aim_setextstatus(od->sess, AIM_ICQ_STATE_OUT | AIM_ICQ_STATE_AWAY); |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4371 gc->away = g_strdup(""); |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
4372 } else { |
4901 | 4373 aim_setextstatus(od->sess, AIM_ICQ_STATE_NORMAL); |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
4374 } |
2086 | 4375 } |
2993 | 4376 |
4377 return; | |
4378 } | |
4379 | |
4380 static void oscar_set_away(struct gaim_connection *gc, char *state, char *message) | |
4381 { | |
4382 struct oscar_data *od = (struct oscar_data *)gc->proto_data; | |
4383 | |
4384 if (od->icq) | |
4385 oscar_set_away_icq(gc, od, state, message); | |
4386 else | |
4387 oscar_set_away_aim(gc, od, message); | |
4388 | |
4389 return; | |
2086 | 4390 } |
4391 | |
4230 | 4392 static void oscar_warn(struct gaim_connection *gc, char *name, int anon) { |
4617 | 4393 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
4394 aim_im_warn(od->sess, od->conn, name, anon ? AIM_WARN_ANON : 0); | |
2086 | 4395 } |
4396 | |
4230 | 4397 static void oscar_dir_search(struct gaim_connection *gc, const char *first, const char *middle, const char *last, |
3466 | 4398 const char *maiden, const char *city, const char *state, const char *country, const char *email) { |
4617 | 4399 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
2086 | 4400 if (strlen(email)) |
4617 | 4401 aim_usersearch_address(od->sess, od->conn, email); |
2086 | 4402 } |
4403 | |
4230 | 4404 static void oscar_add_buddy(struct gaim_connection *gc, const char *name) { |
4405 struct oscar_data *od = (struct oscar_data *)gc->proto_data; | |
4406 #ifdef NOSSI | |
4407 aim_add_buddy(od->sess, od->conn, name); | |
4408 #else | |
4409 if ((od->sess->ssi.received_data) && !(aim_ssi_itemlist_exists(od->sess->ssi.local, name))) { | |
4687 | 4410 struct buddy *buddy = gaim_find_buddy(gc->account, name); |
4411 struct group *group = gaim_find_buddys_group(buddy); | |
4230 | 4412 if (buddy && group) { |
4413 debug_printf("ssi: adding buddy %s to group %s\n", name, group->name); | |
4889 | 4414 aim_ssi_addbuddy(od->sess, buddy->name, group->name, gaim_get_buddy_alias_only(buddy), NULL, NULL, 0); |
4230 | 4415 } |
4416 } | |
4417 #endif | |
4759 | 4418 if (od->icq) |
4419 aim_icq_getalias(od->sess, name); | |
4230 | 4420 } |
4421 | |
4422 static void oscar_add_buddies(struct gaim_connection *gc, GList *buddies) { | |
4423 struct oscar_data *od = (struct oscar_data *)gc->proto_data; | |
4424 #ifdef NOSSI | |
4425 char buf[MSG_LEN]; | |
4426 int n=0; | |
4427 while (buddies) { | |
4428 if (n > MSG_LEN - 18) { | |
4429 aim_bos_setbuddylist(od->sess, od->conn, buf); | |
4430 n = 0; | |
3092 | 4431 } |
4230 | 4432 n += g_snprintf(buf + n, sizeof(buf) - n, "%s&", (char *)buddies->data); |
4433 buddies = buddies->next; | |
4434 } | |
4435 aim_bos_setbuddylist(od->sess, od->conn, buf); | |
4436 #else | |
4437 if (od->sess->ssi.received_data) { | |
4438 while (buddies) { | |
4687 | 4439 struct buddy *buddy = gaim_find_buddy(gc->account, (const char *)buddies->data); |
4440 struct group *group = gaim_find_buddys_group(buddy); | |
4230 | 4441 if (buddy && group) { |
4442 debug_printf("ssi: adding buddy %s to group %s\n", (const char *)buddies->data, group->name); | |
4889 | 4443 aim_ssi_addbuddy(od->sess, buddy->name, group->name, gaim_get_buddy_alias_only(buddy), NULL, NULL, 0); |
4230 | 4444 } |
4445 buddies = buddies->next; | |
4446 } | |
4447 } | |
4448 #endif | |
4449 } | |
4450 | |
4451 static void oscar_remove_buddy(struct gaim_connection *gc, char *name, char *group) { | |
4452 struct oscar_data *od = (struct oscar_data *)gc->proto_data; | |
4453 #ifdef NOSSI | |
4454 aim_remove_buddy(od->sess, od->conn, name); | |
4455 #else | |
4456 if (od->sess->ssi.received_data) { | |
4457 debug_printf("ssi: deleting buddy %s from group %s\n", name, group); | |
4889 | 4458 aim_ssi_delbuddy(od->sess, name, group); |
4230 | 4459 } |
4460 #endif | |
4461 } | |
4462 | |
4463 static void oscar_remove_buddies(struct gaim_connection *gc, GList *buddies, const char *group) { | |
4464 struct oscar_data *od = (struct oscar_data *)gc->proto_data; | |
4465 #ifdef NOSSI | |
4466 GList *cur; | |
4467 for (cur=buddies; cur; cur=cur->next) | |
4468 aim_remove_buddy(od->sess, od->conn, cur->data); | |
4469 #else | |
4470 if (od->sess->ssi.received_data) { | |
3092 | 4471 while (buddies) { |
4230 | 4472 debug_printf("ssi: deleting buddy %s from group %s\n", (char *)buddies->data, group); |
4889 | 4473 aim_ssi_delbuddy(od->sess, buddies->data, group); |
3092 | 4474 buddies = buddies->next; |
4475 } | |
4230 | 4476 } |
4477 #endif | |
4478 } | |
4479 | |
4480 #ifndef NOSSI | |
4269 | 4481 static void oscar_move_buddy(struct gaim_connection *gc, const char *name, const char *old_group, const char *new_group) { |
4482 struct oscar_data *od = (struct oscar_data *)gc->proto_data; | |
4303 | 4483 if (od->sess->ssi.received_data && strcmp(old_group, new_group)) { |
4269 | 4484 debug_printf("ssi: moving buddy %s from group %s to group %s\n", name, old_group, new_group); |
4889 | 4485 aim_ssi_movebuddy(od->sess, old_group, new_group, name); |
4269 | 4486 } |
4487 } | |
4488 | |
4489 static void oscar_alias_buddy(struct gaim_connection *gc, const char *name, const char *alias) { | |
4490 struct oscar_data *od = (struct oscar_data *)gc->proto_data; | |
4491 if (od->sess->ssi.received_data) { | |
4492 char *gname = aim_ssi_itemlist_findparentname(od->sess->ssi.local, name); | |
4493 if (gname) { | |
4494 debug_printf("ssi: changing the alias for buddy %s to %s\n", name, alias); | |
4889 | 4495 aim_ssi_aliasbuddy(od->sess, gname, name, alias); |
4269 | 4496 } |
4497 } | |
4498 } | |
4499 | |
4230 | 4500 static void oscar_rename_group(struct gaim_connection *g, const char *old_group, const char *new_group, GList *members) { |
4501 struct oscar_data *od = (struct oscar_data *)g->proto_data; | |
4502 | |
4503 if (od->sess->ssi.received_data) { | |
4504 if (aim_ssi_itemlist_finditem(od->sess->ssi.local, new_group, NULL, AIM_SSI_TYPE_GROUP)) { | |
4505 oscar_remove_buddies(g, members, old_group); | |
4506 oscar_add_buddies(g, members); | |
4507 debug_printf("ssi: moved all buddies from group %s to %s\n", old_group, new_group); | |
4508 } else { | |
4889 | 4509 aim_ssi_rename_group(od->sess, old_group, new_group); |
4230 | 4510 debug_printf("ssi: renamed group %s to %s\n", old_group, new_group); |
2995 | 4511 } |
4512 } | |
4513 } | |
4514 | |
4642 | 4515 static int gaim_ssi_parseerr(aim_session_t *sess, aim_frame_t *fr, ...) { |
4516 struct gaim_connection *gc = sess->aux_data; | |
4517 struct oscar_data *od = gc->proto_data; | |
4518 va_list ap; | |
4519 fu16_t reason; | |
4520 | |
4521 va_start(ap, fr); | |
4522 reason = (fu16_t)va_arg(ap, unsigned int); | |
4523 va_end(ap); | |
4524 | |
4525 debug_printf("ssi: SNAC error %hu\n", reason); | |
4526 | |
4527 if (reason == 0x0005) { | |
4528 do_error_dialog(_("Unable To Retrive Buddy List"), _("Gaim was temporarily unable to retrive your buddy list from the AIM servers. Your buddy list is not lost, and will probably become available in a few hours."), GAIM_ERROR); | |
4529 } | |
4530 | |
4531 /* Activate SSI */ | |
4532 /* Sending the enable causes other people to be able to see you, and you to see them */ | |
4533 /* Make sure your privacy setting/invisibility is set how you want it before this! */ | |
4534 debug_printf("ssi: activating server-stored buddy list\n"); | |
4535 aim_ssi_enable(od->sess); | |
4536 | |
4537 return 1; | |
4538 } | |
4539 | |
2991 | 4540 static int gaim_ssi_parserights(aim_session_t *sess, aim_frame_t *fr, ...) { |
4230 | 4541 struct gaim_connection *gc = sess->aux_data; |
4542 struct oscar_data *od = (struct oscar_data *)gc->proto_data; | |
4543 int numtypes, i; | |
4544 fu16_t *maxitems; | |
2991 | 4545 va_list ap; |
4546 | |
4547 va_start(ap, fr); | |
4230 | 4548 numtypes = va_arg(ap, int); |
4549 maxitems = va_arg(ap, fu16_t *); | |
2991 | 4550 va_end(ap); |
4551 | |
4230 | 4552 debug_printf("ssi rights:"); |
4553 for (i=0; i<numtypes; i++) | |
4617 | 4554 debug_printf(" max type 0x%04x=%hd,", i, maxitems[i]); |
4317 | 4555 debug_printf("\n"); |
4230 | 4556 |
4557 if (numtypes >= 0) | |
4558 od->rights.maxbuddies = maxitems[0]; | |
4559 if (numtypes >= 1) | |
4560 od->rights.maxgroups = maxitems[1]; | |
4561 if (numtypes >= 2) | |
4562 od->rights.maxpermits = maxitems[2]; | |
4563 if (numtypes >= 3) | |
4564 od->rights.maxdenies = maxitems[3]; | |
2991 | 4565 |
4566 return 1; | |
4567 } | |
4568 | |
4569 static int gaim_ssi_parselist(aim_session_t *sess, aim_frame_t *fr, ...) { | |
4570 struct gaim_connection *gc = sess->aux_data; | |
4230 | 4571 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
2995 | 4572 struct aim_ssi_item *curitem; |
2991 | 4573 int tmp; |
4778 | 4574 gboolean export = FALSE; |
4617 | 4575 /* XXX - use these? |
4230 | 4576 va_list ap; |
4577 | |
4578 va_start(ap, fr); | |
4579 fmtver = (fu16_t)va_arg(ap, int); | |
4580 numitems = (fu16_t)va_arg(ap, int); | |
4581 items = va_arg(ap, struct aim_ssi_item); | |
4582 timestamp = va_arg(ap, fu32_t); | |
4583 va_end(ap); */ | |
2991 | 4584 |
4585 debug_printf("ssi: syncing local list and server list\n"); | |
4586 | |
4587 /* Clean the buddy list */ | |
4889 | 4588 aim_ssi_cleanlist(sess); |
2991 | 4589 |
4590 /* Add from server list to local list */ | |
4230 | 4591 for (curitem=sess->ssi.local; curitem; curitem=curitem->next) { |
2991 | 4592 switch (curitem->type) { |
4230 | 4593 case 0x0000: { /* Buddy */ |
4251 | 4594 if (curitem->name) { |
4292 | 4595 char *gname = aim_ssi_itemlist_findparentname(sess->ssi.local, curitem->name); |
4458 | 4596 char *gname_utf8 = gaim_try_conv_to_utf8(gname); |
4282 | 4597 char *alias = aim_ssi_getalias(sess->ssi.local, gname, curitem->name); |
4458 | 4598 char *alias_utf8 = gaim_try_conv_to_utf8(alias); |
4687 | 4599 struct buddy *buddy = gaim_find_buddy(gc->account, curitem->name); |
4458 | 4600 /* Should gname be freed here? -- elb */ |
4754 | 4601 /* Not with the current code, but that might be cleaner -- med */ |
4458 | 4602 free(alias); |
4282 | 4603 if (buddy) { |
4292 | 4604 /* Get server stored alias */ |
4705 | 4605 if (alias_utf8) { |
4606 g_free(buddy->alias); | |
4607 buddy->alias = g_strdup(alias_utf8); | |
4608 } | |
4282 | 4609 } else { |
4687 | 4610 struct group *g; |
4611 buddy = gaim_buddy_new(gc->account, curitem->name, alias_utf8); | |
5146 | 4612 |
4754 | 4613 if (!(g = gaim_find_group(gname_utf8 ? gname_utf8 : _("Orphans")))) { |
4687 | 4614 g = gaim_group_new(gname_utf8 ? gname_utf8 : _("Orphans")); |
4754 | 4615 gaim_blist_add_group(g, NULL); |
4616 } | |
5146 | 4617 |
5131 | 4618 debug_printf("ssi: adding buddy %s to group %s to local list\n", curitem->name, gname_utf8 ? gname_utf8 : _("Orphans")); |
4687 | 4619 gaim_blist_add_buddy(buddy, g, NULL); |
4778 | 4620 export = TRUE; |
4251 | 4621 } |
4458 | 4622 free(gname_utf8); |
4623 free(alias_utf8); | |
2991 | 4624 } |
4230 | 4625 } break; |
4626 | |
4627 case 0x0001: { /* Group */ | |
4282 | 4628 /* Shouldn't add empty groups */ |
4230 | 4629 } break; |
4630 | |
4631 case 0x0002: { /* Permit buddy */ | |
2991 | 4632 if (curitem->name) { |
4230 | 4633 /* if (!find_permdeny_by_name(gc->permit, curitem->name)) { AAA */ |
2991 | 4634 GSList *list; |
4491 | 4635 for (list=gc->account->permit; (list && aim_sncmp(curitem->name, list->data)); list=list->next); |
2991 | 4636 if (!list) { |
2995 | 4637 debug_printf("ssi: adding permit buddy %s to local list\n", curitem->name); |
4491 | 4638 gaim_privacy_permit_add(gc->account, curitem->name); |
2991 | 4639 build_allow_list(); |
4778 | 4640 export = TRUE; |
2991 | 4641 } |
4642 } | |
4230 | 4643 } break; |
4644 | |
4645 case 0x0003: { /* Deny buddy */ | |
2991 | 4646 if (curitem->name) { |
4647 GSList *list; | |
4491 | 4648 for (list=gc->account->deny; (list && aim_sncmp(curitem->name, list->data)); list=list->next); |
2991 | 4649 if (!list) { |
2995 | 4650 debug_printf("ssi: adding deny buddy %s to local list\n", curitem->name); |
4491 | 4651 gaim_privacy_deny_add(gc->account, curitem->name); |
2991 | 4652 build_block_list(); |
4778 | 4653 export = TRUE; |
2991 | 4654 } |
4655 } | |
4230 | 4656 } break; |
4657 | |
4658 case 0x0004: { /* Permit/deny setting */ | |
2991 | 4659 if (curitem->data) { |
4660 fu8_t permdeny; | |
4491 | 4661 if ((permdeny = aim_ssi_getpermdeny(sess->ssi.local)) && (permdeny != gc->account->permdeny)) { |
4662 debug_printf("ssi: changing permdeny from %d to %hhu\n", gc->account->permdeny, permdeny); | |
4663 gc->account->permdeny = permdeny; | |
4664 if (od->icq && gc->account->permdeny == 0x03) { | |
4342 | 4665 serv_set_away(gc, "Invisible", ""); |
4666 } | |
4778 | 4667 export = TRUE; |
2991 | 4668 } |
4669 } | |
4230 | 4670 } break; |
4671 | |
4672 case 0x0005: { /* Presence setting */ | |
3109 | 4673 /* We don't want to change Gaim's setting because it applies to all accounts */ |
4230 | 4674 } break; |
2991 | 4675 } /* End of switch on curitem->type */ |
4676 } /* End of for loop */ | |
4230 | 4677 |
4678 /* If changes were made, then flush buddy list to file */ | |
4778 | 4679 if (export) |
4349 | 4680 gaim_blist_save(); |
2991 | 4681 |
4759 | 4682 { /* Add from local list to server list */ |
4683 GaimBlistNode *gnode, *bnode; | |
4684 struct group *group; | |
4685 struct buddy *buddy; | |
4686 struct gaim_buddy_list *blist; | |
3017 | 4687 GSList *cur; |
4688 | |
2991 | 4689 /* Buddies */ |
4759 | 4690 if ((blist = gaim_get_blist())) |
4691 for (gnode = blist->root; gnode; gnode = gnode->next) { | |
4692 group = (struct group *)gnode; | |
4693 for (bnode = gnode->child; bnode; bnode = bnode->next) { | |
4694 buddy = (struct buddy *)bnode; | |
4695 if (buddy->account == gc->account) { | |
4696 gchar *servernick = gaim_buddy_get_setting(buddy, "servernick"); | |
4697 if (servernick) { | |
4698 serv_got_alias(gc, buddy->name, servernick); | |
4699 g_free(servernick); | |
4700 } | |
4701 if (aim_ssi_itemlist_exists(sess->ssi.local, buddy->name)) { | |
4702 /* Store local alias on server */ | |
4703 char *alias = aim_ssi_getalias(sess->ssi.local, group->name, buddy->name); | |
4783 | 4704 if (!alias && buddy->alias && strlen(buddy->alias)) |
4889 | 4705 aim_ssi_aliasbuddy(sess, group->name, buddy->name, buddy->alias); |
4759 | 4706 free(alias); |
4707 } else { | |
4708 debug_printf("ssi: adding buddy %s from local list to server list\n", buddy->name); | |
4889 | 4709 aim_ssi_addbuddy(sess, buddy->name, group->name, gaim_get_buddy_alias_only(buddy), NULL, NULL, 0); |
4759 | 4710 } |
4349 | 4711 } |
4230 | 4712 } |
4292 | 4713 } |
2991 | 4714 /* Permit list */ |
4491 | 4715 if (gc->account->permit) { |
4716 for (cur=gc->account->permit; cur; cur=cur->next) | |
4230 | 4717 if (!aim_ssi_itemlist_finditem(sess->ssi.local, NULL, cur->data, AIM_SSI_TYPE_PERMIT)) { |
4718 debug_printf("ssi: adding permit %s from local list to server list\n", (char *)cur->data); | |
4889 | 4719 aim_ssi_addpermit(sess, cur->data); |
4230 | 4720 } |
2991 | 4721 } |
4722 | |
4723 /* Deny list */ | |
4491 | 4724 if (gc->account->deny) { |
4725 for (cur=gc->account->deny; cur; cur=cur->next) | |
4230 | 4726 if (!aim_ssi_itemlist_finditem(sess->ssi.local, NULL, cur->data, AIM_SSI_TYPE_DENY)) { |
4727 debug_printf("ssi: adding deny %s from local list to server list\n", (char *)cur->data); | |
4889 | 4728 aim_ssi_adddeny(sess, cur->data); |
4230 | 4729 } |
2991 | 4730 } |
3109 | 4731 /* Presence settings (idle time visibility) */ |
4230 | 4732 if ((tmp = aim_ssi_getpresence(sess->ssi.local)) != 0xFFFFFFFF) |
3109 | 4733 if (report_idle && !(tmp & 0x400)) |
4889 | 4734 aim_ssi_setpresence(sess, tmp | 0x400); |
4778 | 4735 } /* end adding buddies from local list to server list */ |
4736 | |
4737 { /* Check for maximum number of buddies */ | |
4785 | 4738 GaimBlistNode *gnode,*bnode; |
4739 tmp = 0; | |
4740 for(gnode = gaim_get_blist()->root; gnode; gnode = gnode->next) { | |
4741 if(!GAIM_BLIST_NODE_IS_GROUP(gnode)) | |
4742 continue; | |
4743 for(bnode = gnode->child; bnode; bnode = bnode->next) { | |
4744 struct buddy *b = (struct buddy *)bnode; | |
4745 if(!GAIM_BLIST_NODE_IS_BUDDY(bnode)) | |
4746 continue; | |
4491 | 4747 if(b->account == gc->account) |
4349 | 4748 tmp++; |
4749 } | |
3214 | 4750 } |
4770 | 4751 |
4230 | 4752 if (tmp > od->rights.maxbuddies) { |
3210 | 4753 char *dialog_msg = g_strdup_printf(_("The maximum number of buddies allowed in your buddy list is %d, and you have %d." |
4754 " Until you are below the limit, some buddies will not show up as online."), | |
4230 | 4755 od->rights.maxbuddies, tmp); |
4642 | 4756 do_error_dialog(_("Maximum buddy list length exceeded."), dialog_msg, GAIM_WARNING); |
3210 | 4757 g_free(dialog_msg); |
4758 } | |
4778 | 4759 } |
4785 | 4760 |
4901 | 4761 /* Set our ICQ status */ |
4762 if (od->icq && !gc->away) { | |
4763 aim_setextstatus(sess, AIM_ICQ_STATE_NORMAL); | |
4764 } | |
4765 | |
4342 | 4766 /* Activate SSI */ |
4767 /* Sending the enable causes other people to be able to see you, and you to see them */ | |
4768 /* Make sure your privacy setting/invisibility is set how you want it before this! */ | |
4769 debug_printf("ssi: activating server-stored buddy list\n"); | |
4642 | 4770 aim_ssi_enable(sess); |
4342 | 4771 |
2991 | 4772 return 1; |
2086 | 4773 } |
4230 | 4774 |
4775 static int gaim_ssi_parseack(aim_session_t *sess, aim_frame_t *fr, ...) { | |
4776 struct gaim_connection *gc = sess->aux_data; | |
4777 va_list ap; | |
4778 struct aim_ssi_tmp *retval; | |
4779 | |
4780 va_start(ap, fr); | |
4781 retval = va_arg(ap, struct aim_ssi_tmp *); | |
4782 va_end(ap); | |
4783 | |
4784 while (retval) { | |
4848 | 4785 debug_printf("ssi: status is 0x%04hx for a 0x%04hx action with name %s\n", retval->ack, retval->action, retval->item ? (retval->item->name ? retval->item->name : "no name") : "no item"); |
4230 | 4786 |
4787 if (retval->ack != 0xffff) | |
4788 switch (retval->ack) { | |
4789 case 0x0000: { /* added successfully */ | |
4790 } break; | |
4791 | |
4829 | 4792 case 0x000c: { /* you are over the limit, the cheat is to the limit, come on fhqwhgads */ |
4793 gchar *buf; | |
4794 buf = g_strdup_printf(_("Could not add the buddy %s because you have too many buddies in your buddy list. Please remove one and try again."), (retval->name ? retval->name : _("(no name)"))); | |
5197 | 4795 do_error_dialog(_("Unable To Add"), buf, GAIM_ERROR); |
4829 | 4796 g_free(buf); |
4797 } | |
4798 | |
4230 | 4799 case 0x000e: { /* contact requires authorization */ |
4828 | 4800 if ((retval->action == AIM_CB_SSI_ADD) && (retval->name)) |
4269 | 4801 gaim_auth_sendrequest(gc, retval->name); |
4230 | 4802 } break; |
4803 | |
4804 default: { /* La la la */ | |
5197 | 4805 gchar *buf; |
4230 | 4806 debug_printf("ssi: Action 0x%04hx was unsuccessful with error 0x%04hx\n", retval->action, retval->ack); |
5197 | 4807 buf = g_strdup_printf(_("Could not add the buddy %s for an unknown reason."), (retval->name ? retval->name : _("(no name)"))); |
4808 do_error_dialog(_("Unable To Add"), buf, GAIM_ERROR); | |
4809 g_free(buf); | |
4810 /* Should remove buddy from local list? */ | |
4230 | 4811 } break; |
4812 } | |
4813 | |
4814 retval = retval->next; | |
4815 } | |
4816 | |
4817 return 1; | |
4818 } | |
4819 | |
4820 static int gaim_ssi_authgiven(aim_session_t *sess, aim_frame_t *fr, ...) { | |
4821 struct gaim_connection *gc = sess->aux_data; | |
4822 va_list ap; | |
4823 char *sn, *msg; | |
4236 | 4824 gchar *dialog_msg, *nombre; |
4230 | 4825 struct name_data *data; |
4236 | 4826 struct buddy *buddy; |
4230 | 4827 |
4828 va_start(ap, fr); | |
4829 sn = va_arg(ap, char *); | |
4830 msg = va_arg(ap, char *); | |
4831 va_end(ap); | |
4832 | |
4833 debug_printf("ssi: %s has given you permission to add him to your buddy list\n", sn); | |
4834 | |
4687 | 4835 buddy = gaim_find_buddy(gc->account, sn); |
4836 if (buddy && (gaim_get_buddy_alias_only(buddy))) | |
4837 nombre = g_strdup_printf("%s (%s)", sn, gaim_get_buddy_alias_only(buddy)); | |
4236 | 4838 else |
4839 nombre = g_strdup(sn); | |
4840 | |
4841 dialog_msg = g_strdup_printf(_("The user %s has given you permission to add you to their buddy list. Do you want to add them?"), nombre); | |
4230 | 4842 data = g_new(struct name_data, 1); |
4843 data->gc = gc; | |
4844 data->name = g_strdup(sn); | |
4845 data->nick = NULL; | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
4846 do_ask_dialog(_("Authorization Given"), dialog_msg, data, _("Yes"), gaim_icq_contactadd, _("No"), gaim_free_name_data, my_protocol->handle, FALSE); |
4236 | 4847 |
4230 | 4848 g_free(dialog_msg); |
4236 | 4849 g_free(nombre); |
4230 | 4850 |
4851 return 1; | |
4852 } | |
4853 | |
4854 static int gaim_ssi_authrequest(aim_session_t *sess, aim_frame_t *fr, ...) { | |
4855 struct gaim_connection *gc = sess->aux_data; | |
4856 va_list ap; | |
4857 char *sn, *msg; | |
4236 | 4858 gchar *dialog_msg, *nombre; |
4230 | 4859 struct name_data *data; |
4236 | 4860 struct buddy *buddy; |
4230 | 4861 |
4862 va_start(ap, fr); | |
4863 sn = va_arg(ap, char *); | |
4864 msg = va_arg(ap, char *); | |
4865 va_end(ap); | |
4866 | |
4867 debug_printf("ssi: received authorization request from %s\n", sn); | |
4868 | |
4687 | 4869 buddy = gaim_find_buddy(gc->account, sn); |
4870 if (buddy && (gaim_get_buddy_alias_only(buddy))) | |
4871 nombre = g_strdup_printf("%s (%s)", sn, gaim_get_buddy_alias_only(buddy)); | |
4236 | 4872 else |
4873 nombre = g_strdup(sn); | |
4874 | |
4337 | 4875 dialog_msg = g_strdup_printf(_("The user %s wants to add you to their buddy list for the following reason:\n%s"), nombre, msg ? msg : _("No reason given.")); |
4230 | 4876 data = g_new(struct name_data, 1); |
4877 data->gc = gc; | |
4878 data->name = g_strdup(sn); | |
4879 data->nick = NULL; | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
4880 do_ask_dialog(_("Authorization Request"), dialog_msg, data, _("Authorize"), gaim_auth_grant, _("Deny"), gaim_auth_dontgrant_msgprompt, my_protocol->handle, FALSE); |
4236 | 4881 |
4230 | 4882 g_free(dialog_msg); |
4236 | 4883 g_free(nombre); |
4230 | 4884 |
4885 return 1; | |
4886 } | |
4887 | |
4888 static int gaim_ssi_authreply(aim_session_t *sess, aim_frame_t *fr, ...) { | |
4236 | 4889 struct gaim_connection *gc = sess->aux_data; |
4230 | 4890 va_list ap; |
4891 char *sn, *msg; | |
4236 | 4892 gchar *dialog_msg, *nombre; |
4230 | 4893 fu8_t reply; |
4236 | 4894 struct buddy *buddy; |
4230 | 4895 |
4896 va_start(ap, fr); | |
4897 sn = va_arg(ap, char *); | |
4898 reply = (fu8_t)va_arg(ap, int); | |
4899 msg = va_arg(ap, char *); | |
4900 va_end(ap); | |
4901 | |
4236 | 4902 debug_printf("ssi: received authorization reply from %s. Reply is 0x%04hhx\n", sn, reply); |
4903 | |
4687 | 4904 buddy = gaim_find_buddy(gc->account, sn); |
4905 if (buddy && (gaim_get_buddy_alias_only(buddy))) | |
4906 nombre = g_strdup_printf("%s (%s)", sn, gaim_get_buddy_alias_only(buddy)); | |
4236 | 4907 else |
4908 nombre = g_strdup(sn); | |
4909 | |
4230 | 4910 if (reply) { |
4911 /* Granted */ | |
4236 | 4912 dialog_msg = g_strdup_printf(_("The user %s has granted your request to add them to your contact list."), nombre); |
4230 | 4913 do_error_dialog(_("Authorization Granted"), dialog_msg, GAIM_INFO); |
4914 } else { | |
4915 /* Denied */ | |
4236 | 4916 dialog_msg = g_strdup_printf(_("The user %s has denied your request to add them to your contact list for the following reason:\n%s"), nombre, msg ? msg : _("No reason given.")); |
4230 | 4917 do_error_dialog(_("Authorization Denied"), dialog_msg, GAIM_INFO); |
4918 } | |
4919 g_free(dialog_msg); | |
4236 | 4920 g_free(nombre); |
4230 | 4921 |
4922 return 1; | |
4923 } | |
4924 | |
4925 static int gaim_ssi_gotadded(aim_session_t *sess, aim_frame_t *fr, ...) { | |
4926 struct gaim_connection *gc = sess->aux_data; | |
4927 va_list ap; | |
4928 char *sn; | |
4236 | 4929 struct buddy *buddy; |
4230 | 4930 |
4931 va_start(ap, fr); | |
4932 sn = va_arg(ap, char *); | |
4933 va_end(ap); | |
4934 | |
4687 | 4935 buddy = gaim_find_buddy(gc->account, sn); |
4230 | 4936 debug_printf("ssi: %s added you to their buddy list\n", sn); |
4687 | 4937 show_got_added(gc, NULL, sn, (buddy ? gaim_get_buddy_alias_only(buddy) : NULL), NULL); |
4230 | 4938 |
4939 return 1; | |
4940 } | |
4269 | 4941 #endif |
2086 | 4942 |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
4943 static GList *oscar_chat_info(struct gaim_connection *gc) { |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
4944 GList *m = NULL; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
4945 struct proto_chat_entry *pce; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
4946 |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
4947 pce = g_new0(struct proto_chat_entry, 1); |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
4948 pce->label = _("Join what group:"); |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
4949 m = g_list_append(m, pce); |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
4950 |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
4951 pce = g_new0(struct proto_chat_entry, 1); |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
4952 pce->label = _("Exchange:"); |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
4953 pce->is_int = TRUE; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
4954 pce->min = 4; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
4955 pce->max = 20; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
4956 m = g_list_append(m, pce); |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
4957 |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
4958 return m; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
4959 } |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
4960 |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
4961 static void oscar_join_chat(struct gaim_connection *g, GList *data) { |
4617 | 4962 struct oscar_data *od = (struct oscar_data *)g->proto_data; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4963 aim_conn_t *cur; |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
4964 char *name; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
4965 int *exchange; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
4966 |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
4967 if (!data || !data->next) |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
4968 return; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
4969 |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
4970 name = data->data; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
4971 exchange = data->next->data; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
4972 |
2086 | 4973 debug_printf("Attempting to join chat room %s.\n", name); |
4617 | 4974 if ((cur = aim_getconn_type(od->sess, AIM_CONN_TYPE_CHATNAV))) { |
2086 | 4975 debug_printf("chatnav exists, creating room\n"); |
4617 | 4976 aim_chatnav_createroom(od->sess, cur, name, *exchange); |
2086 | 4977 } else { |
4978 /* this gets tricky */ | |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
4979 struct create_room *cr = g_new0(struct create_room, 1); |
2086 | 4980 debug_printf("chatnav does not exist, opening chatnav\n"); |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
4981 cr->exchange = *exchange; |
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
4982 cr->name = g_strdup(name); |
4617 | 4983 od->create_rooms = g_slist_append(od->create_rooms, cr); |
4984 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_CHATNAV); | |
2086 | 4985 } |
4986 } | |
4987 | |
3466 | 4988 static void oscar_chat_invite(struct gaim_connection *g, int id, const char *message, const char *name) { |
4617 | 4989 struct oscar_data *od = (struct oscar_data *)g->proto_data; |
2086 | 4990 struct chat_connection *ccon = find_oscar_chat(g, id); |
4991 | |
4992 if (!ccon) | |
4993 return; | |
4994 | |
4617 | 4995 aim_chat_invite(od->sess, od->conn, name, message ? message : "", |
2086 | 4996 ccon->exchange, ccon->name, 0x0); |
4997 } | |
4998 | |
4999 static void oscar_chat_leave(struct gaim_connection *g, int id) { | |
4617 | 5000 struct oscar_data *od = g ? (struct oscar_data *)g->proto_data : NULL; |
2086 | 5001 GSList *bcs = g->buddy_chats; |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4358
diff
changeset
|
5002 struct gaim_conversation *b = NULL; |
2086 | 5003 struct chat_connection *c = NULL; |
5004 int count = 0; | |
5005 | |
5006 while (bcs) { | |
5007 count++; | |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4358
diff
changeset
|
5008 b = (struct gaim_conversation *)bcs->data; |
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4358
diff
changeset
|
5009 if (id == gaim_chat_get_id(GAIM_CHAT(b))) |
2086 | 5010 break; |
5011 bcs = bcs->next; | |
5012 b = NULL; | |
5013 } | |
5014 | |
5015 if (!b) | |
5016 return; | |
5017 | |
5018 debug_printf("Attempting to leave room %s (currently in %d rooms)\n", b->name, count); | |
5019 | |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4358
diff
changeset
|
5020 c = find_oscar_chat(g, gaim_chat_get_id(GAIM_CHAT(b))); |
2086 | 5021 if (c != NULL) { |
4617 | 5022 if (od) |
5023 od->oscar_chats = g_slist_remove(od->oscar_chats, c); | |
2086 | 5024 if (c->inpa > 0) |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
5025 gaim_input_remove(c->inpa); |
4617 | 5026 if (g && od->sess) |
5027 aim_conn_kill(od->sess, &c->conn); | |
2086 | 5028 g_free(c->name); |
5029 g_free(c->show); | |
5030 g_free(c); | |
5031 } | |
5032 /* we do this because with Oscar it doesn't tell us we left */ | |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4358
diff
changeset
|
5033 serv_got_chat_left(g, gaim_chat_get_id(GAIM_CHAT(b))); |
2086 | 5034 } |
5035 | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5036 static int oscar_chat_send(struct gaim_connection *g, int id, char *message) { |
4617 | 5037 struct oscar_data *od = (struct oscar_data *)g->proto_data; |
2086 | 5038 GSList *bcs = g->buddy_chats; |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4358
diff
changeset
|
5039 struct gaim_conversation *b = NULL; |
2086 | 5040 struct chat_connection *c = NULL; |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5041 char *buf, *buf2; |
2086 | 5042 int i, j; |
5043 | |
5044 while (bcs) { | |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4358
diff
changeset
|
5045 b = (struct gaim_conversation *)bcs->data; |
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4358
diff
changeset
|
5046 if (id == gaim_chat_get_id(GAIM_CHAT(b))) |
2086 | 5047 break; |
5048 bcs = bcs->next; | |
5049 b = NULL; | |
5050 } | |
5051 if (!b) | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5052 return -EINVAL; |
2086 | 5053 |
4617 | 5054 bcs = od->oscar_chats; |
2086 | 5055 while (bcs) { |
5056 c = (struct chat_connection *)bcs->data; | |
5057 if (b == c->cnv) | |
5058 break; | |
5059 bcs = bcs->next; | |
5060 c = NULL; | |
5061 } | |
5062 if (!c) | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5063 return -EINVAL; |
2086 | 5064 |
5065 buf = g_malloc(strlen(message) * 4 + 1); | |
5066 for (i = 0, j = 0; i < strlen(message); i++) { | |
5067 if (message[i] == '\n') { | |
5068 buf[j++] = '<'; | |
5069 buf[j++] = 'B'; | |
5070 buf[j++] = 'R'; | |
5071 buf[j++] = '>'; | |
5072 } else { | |
5073 buf[j++] = message[i]; | |
5074 } | |
5075 } | |
5076 buf[j] = '\0'; | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5077 |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5078 if (strlen(buf) > c->maxlen) |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5079 return -E2BIG; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5080 |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5081 buf2 = strip_html(buf); |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5082 if (strlen(buf2) > c->maxvis) { |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5083 g_free(buf2); |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5084 return -E2BIG; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5085 } |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5086 g_free(buf2); |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5087 |
4617 | 5088 aim_chat_send_im(od->sess, c->conn, 0, buf, strlen(buf)); |
2086 | 5089 g_free(buf); |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5090 return 0; |
2086 | 5091 } |
5092 | |
4687 | 5093 static const char *oscar_list_icon(struct gaim_account *a, struct buddy *b) { |
4766 | 5094 if (!b || (b && b->name && b->name[0] == '+')) { |
4687 | 5095 if (isdigit(a->username[0])) |
5096 return "icq"; | |
5097 else | |
5098 return "aim"; | |
5099 } | |
5100 | |
5101 if (isdigit(b->name[0])) | |
5102 return "icq"; | |
5103 return "aim"; | |
5104 } | |
5105 | |
4690 | 5106 static void oscar_list_emblems(struct buddy *b, char **se, char **sw, char **nw, char **ne) |
4687 | 5107 { |
5108 char *emblems[4] = {NULL,NULL,NULL,NULL}; | |
5109 int i = 0; | |
5110 | |
5131 | 5111 if (!GAIM_BUDDY_IS_ONLINE(b)) { |
5112 struct gaim_account *account; | |
5113 struct gaim_connection *gc; | |
5114 struct oscar_data *od; | |
5115 char *gname; | |
5116 if ((b->name) && (account = b->account) && (gc = account->gc) && | |
5117 (od = gc->proto_data) && (od->sess->ssi.received_data) && | |
5118 (gname = aim_ssi_itemlist_findparentname(od->sess->ssi.local, b->name)) && | |
5119 (aim_ssi_waitingforauth(od->sess->ssi.local, gname, b->name))) { | |
5120 emblems[i++] = "notauthorized"; | |
5121 } else { | |
5122 emblems[i++] = "offline"; | |
5123 } | |
5124 } | |
4916 | 5125 |
4766 | 5126 if (b->name && (b->uc & 0xffff0000) && isdigit(b->name[0])) { |
4960 | 5127 int uc = b->uc >> 16; |
4766 | 5128 if (uc & AIM_ICQ_STATE_INVISIBLE) |
4960 | 5129 emblems[i++] = "invisible"; |
4766 | 5130 else if (uc & AIM_ICQ_STATE_CHAT) |
4960 | 5131 emblems[i++] = "freeforchat"; |
4766 | 5132 else if (uc & AIM_ICQ_STATE_DND) |
4960 | 5133 emblems[i++] = "dnd"; |
4766 | 5134 else if (uc & AIM_ICQ_STATE_OUT) |
4960 | 5135 emblems[i++] = "na"; |
4766 | 5136 else if (uc & AIM_ICQ_STATE_BUSY) |
4960 | 5137 emblems[i++] = "occupied"; |
4766 | 5138 else if (uc & AIM_ICQ_STATE_AWAY) |
5139 emblems[i++] = "away"; | |
5140 } else { | |
5141 if (b->uc & UC_UNAVAILABLE) | |
5142 emblems[i++] = "away"; | |
5143 } | |
4687 | 5144 if (b->uc & UC_WIRELESS) |
5145 emblems[i++] = "wireless"; | |
5146 if (b->uc & UC_AOL) | |
5147 emblems[i++] = "aol"; | |
5148 if (b->uc & UC_ADMIN) | |
5149 emblems[i++] = "admin"; | |
5150 if (b->uc & UC_AB && i < 4) | |
5151 emblems[i++] = "activebuddy"; | |
4766 | 5152 /* if (b->uc & UC_UNCONFIRMED && i < 4) |
5153 emblems[i++] = "unconfirmed"; */ | |
4687 | 5154 *se = emblems[0]; |
5155 *sw = emblems[1]; | |
5156 *nw = emblems[2]; | |
5157 *ne = emblems[3]; | |
5158 } | |
5159 | |
5131 | 5160 static char *oscar_tooltip_text(struct buddy *b) { |
5161 struct gaim_connection *gc = b->account->gc; | |
5162 struct oscar_data *od = gc->proto_data; | |
5163 struct buddyinfo *bi = g_hash_table_lookup(od->buddyinfo, normalize(b->name)); | |
5164 gchar *tmp, *yay = g_strdup(""); | |
5165 | |
5166 if (GAIM_BUDDY_IS_ONLINE(b)) { | |
5167 if (isdigit(b->name[0])) { | |
5168 char *tmp, *status; | |
5169 status = gaim_icq_status((b->uc & 0xffff0000) >> 16); | |
5170 tmp = yay; | |
5171 yay = g_strconcat(tmp, _("<b>Status:</b> "), status, "\n", NULL); | |
5172 g_free(tmp); | |
5173 g_free(status); | |
5174 } | |
5175 | |
5176 if (bi) { | |
5177 char *tstr = sec_to_text(time(NULL) - bi->signon + | |
5178 (gc->login_time_official ? gc->login_time_official - gc->login_time : 0)); | |
5179 tmp = yay; | |
5180 yay = g_strconcat(tmp, _("<b>Logged In:</b> "), tstr, "\n", NULL); | |
5181 free(tmp); | |
5182 free(tstr); | |
5183 | |
5184 if (bi->caps) { | |
5185 char *caps = caps_string(bi->caps); | |
5186 tmp = yay; | |
5187 yay = g_strconcat(tmp, _("<b>Capabilities:</b> "), caps, "\n", NULL); | |
5188 free(tmp); | |
5189 } | |
5190 } | |
5191 } else { | |
5192 char *gname = aim_ssi_itemlist_findparentname(od->sess->ssi.local, b->name); | |
5193 if (aim_ssi_waitingforauth(od->sess->ssi.local, gname, b->name)) { | |
5194 tmp = yay; | |
5195 yay = g_strconcat(tmp, _("<b>Status:</b> Not Authorized"), "\n", NULL); | |
5196 g_free(tmp); | |
5197 } else { | |
5198 tmp = yay; | |
5199 yay = g_strconcat(tmp, _("<b>Status:</b> Offline"), "\n", NULL); | |
5200 g_free(tmp); | |
5201 } | |
5202 } | |
5203 | |
5204 /* remove the trailing newline character */ | |
5205 if (yay) | |
5206 yay[strlen(yay)-1] = '\0'; | |
5207 return yay; | |
5208 } | |
5209 | |
5167 | 5210 static char *oscar_status_text(struct buddy *b) { |
5211 struct gaim_connection *gc = b->account->gc; | |
5212 struct oscar_data *od = gc->proto_data; | |
5213 gchar *ret = NULL; | |
5214 | |
5215 if ((b->uc & UC_UNAVAILABLE) || (((b->uc & 0xffff0000) >> 16) & AIM_ICQ_STATE_CHAT)) { | |
5216 if (isdigit(b->name[0])) | |
5217 ret = gaim_icq_status((b->uc & 0xffff0000) >> 16); | |
5218 else | |
5219 ret = g_strdup(_("Away")); | |
5220 } else if (!GAIM_BUDDY_IS_ONLINE(b)) { | |
5221 char *gname = aim_ssi_itemlist_findparentname(od->sess->ssi.local, b->name); | |
5222 if (aim_ssi_waitingforauth(od->sess->ssi.local, gname, b->name)) | |
5223 ret = g_strdup(_("Not Authorized")); | |
5224 else | |
5225 ret = g_strdup(_("Offline")); | |
5226 } | |
5227 | |
5228 return ret; | |
5229 } | |
5230 | |
3952 | 5231 /* |
4617 | 5232 * We have just established a socket with the other dude, so set up some handlers. |
3952 | 5233 */ |
4617 | 5234 static int gaim_odc_initiate(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 5235 struct gaim_connection *gc = sess->aux_data; |
5236 struct oscar_data *od = (struct oscar_data *)gc->proto_data; | |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4358
diff
changeset
|
5237 struct gaim_conversation *cnv; |
2086 | 5238 struct direct_im *dim; |
5239 char buf[256]; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5240 char *sn; |
4617 | 5241 va_list ap; |
5242 aim_conn_t *newconn, *listenerconn; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5243 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5244 va_start(ap, fr); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5245 newconn = va_arg(ap, aim_conn_t *); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5246 listenerconn = va_arg(ap, aim_conn_t *); |
2086 | 5247 va_end(ap); |
5248 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5249 aim_conn_close(listenerconn); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5250 aim_conn_kill(sess, &listenerconn); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5251 |
4617 | 5252 sn = g_strdup(aim_odc_getsn(newconn)); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5253 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5254 debug_printf("DirectIM: initiate success to %s\n", sn); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5255 dim = find_direct_im(od, sn); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5256 |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4358
diff
changeset
|
5257 if (!(cnv = gaim_find_conversation(sn))) |
4491 | 5258 cnv = gaim_conversation_new(GAIM_CONV_IM, dim->gc->account, sn); |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
5259 gaim_input_remove(dim->watcher); |
2086 | 5260 dim->conn = newconn; |
4617 | 5261 dim->watcher = gaim_input_add(dim->conn->fd, GAIM_INPUT_READ, oscar_callback, dim->conn); |
3008 | 5262 dim->connected = TRUE; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5263 g_snprintf(buf, sizeof buf, _("Direct IM with %s established"), sn); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5264 g_free(sn); |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4358
diff
changeset
|
5265 gaim_conversation_write(cnv, NULL, buf, -1, WFLAG_SYSTEM, time(NULL)); |
2086 | 5266 |
4617 | 5267 aim_conn_addhandler(sess, newconn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIMINCOMING, gaim_odc_incoming, 0); |
5268 aim_conn_addhandler(sess, newconn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIMTYPING, gaim_odc_typing, 0); | |
5269 aim_conn_addhandler(sess, newconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_IMAGETRANSFER, gaim_update_ui, 0); | |
5270 | |
2993 | 5271 return 1; |
5272 } | |
5273 | |
5274 static int gaim_update_ui(aim_session_t *sess, aim_frame_t *fr, ...) { | |
5275 va_list ap; | |
5276 char *sn; | |
5277 double percent; | |
5278 struct gaim_connection *gc = sess->aux_data; | |
5279 struct oscar_data *od = (struct oscar_data *)gc->proto_data; | |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4358
diff
changeset
|
5280 struct gaim_conversation *c; |
2993 | 5281 struct direct_im *dim; |
5282 | |
5283 va_start(ap, fr); | |
5284 sn = va_arg(ap, char *); | |
5285 percent = va_arg(ap, double); | |
5286 va_end(ap); | |
5287 | |
2994 | 5288 if (!(dim = find_direct_im(od, sn))) |
5289 return 1; | |
3059 | 5290 if (dim->watcher) { |
5291 gaim_input_remove(dim->watcher); /* Otherwise, the callback will callback */ | |
5292 dim->watcher = 0; | |
5293 } | |
3044 | 5294 while (gtk_events_pending()) |
5295 gtk_main_iteration(); | |
5296 | |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4358
diff
changeset
|
5297 if ((c = gaim_find_conversation(sn))) |
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4358
diff
changeset
|
5298 gaim_conversation_update_progress(c, percent); |
2993 | 5299 dim->watcher = gaim_input_add(dim->conn->fd, GAIM_INPUT_READ, |
5300 oscar_callback, dim->conn); | |
2086 | 5301 |
5302 return 1; | |
5303 } | |
5304 | |
4617 | 5305 static int gaim_odc_incoming(aim_session_t *sess, aim_frame_t *fr, ...) { |
4870 | 5306 struct gaim_connection *gc = sess->aux_data; |
5307 int imflags = 0; | |
2086 | 5308 va_list ap; |
4870 | 5309 char *sn, *msg; |
5310 int len, encoding, isawaymsg; | |
2086 | 5311 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5312 va_start(ap, fr); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5313 sn = va_arg(ap, char *); |
2086 | 5314 msg = va_arg(ap, char *); |
2993 | 5315 len = va_arg(ap, int); |
3952 | 5316 encoding = va_arg(ap, int); |
4870 | 5317 isawaymsg = va_arg(ap, int); |
2086 | 5318 va_end(ap); |
5319 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5320 debug_printf("Got DirectIM message from %s\n", sn); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5321 |
4870 | 5322 if (isawaymsg) |
5323 imflags |= IM_FLAG_AWAY; | |
5324 | |
4617 | 5325 /* XXX - I imagine Paco-Paco will want to do some voodoo with the encoding here */ |
4870 | 5326 serv_got_im(gc, sn, msg, imflags, time(NULL), len); |
2086 | 5327 |
5328 return 1; | |
5329 } | |
5330 | |
4617 | 5331 static int gaim_odc_typing(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 5332 va_list ap; |
5333 char *sn; | |
2993 | 5334 int typing; |
5335 struct gaim_connection *gc = sess->aux_data; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5336 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5337 va_start(ap, fr); |
2086 | 5338 sn = va_arg(ap, char *); |
2993 | 5339 typing = va_arg(ap, int); |
2086 | 5340 va_end(ap); |
5341 | |
4870 | 5342 if (typing == 0x0002) { |
2993 | 5343 /* I had to leave this. It's just too funny. It reminds me of my sister. */ |
5344 debug_printf("ohmigod! %s has started typing (DirectIM). He's going to send you a message! *squeal*\n", sn); | |
4342 | 5345 serv_got_typing(gc, sn, 0, TYPING); |
4870 | 5346 } else if (typing == 0x0001) |
5347 serv_got_typing(gc, sn, 0, TYPED); | |
5348 else | |
4342 | 5349 serv_got_typing_stopped(gc, sn); |
2086 | 5350 return 1; |
5351 } | |
5352 | |
5353 struct ask_do_dir_im { | |
5354 char *who; | |
5355 struct gaim_connection *gc; | |
5356 }; | |
5357 | |
3730 | 5358 static void oscar_cancel_direct_im(struct ask_do_dir_im *data) { |
5136 | 5359 g_free(data->who); |
2086 | 5360 g_free(data); |
5361 } | |
5362 | |
3730 | 5363 static void oscar_direct_im(struct ask_do_dir_im *data) { |
2086 | 5364 struct gaim_connection *gc = data->gc; |
4244 | 5365 struct oscar_data *od; |
2086 | 5366 struct direct_im *dim; |
5367 | |
4244 | 5368 if (!g_slist_find(connections, gc)) { |
5136 | 5369 g_free(data->who); |
4244 | 5370 g_free(data); |
5371 return; | |
5372 } | |
5373 | |
5374 od = (struct oscar_data *)gc->proto_data; | |
5375 | |
2086 | 5376 dim = find_direct_im(od, data->who); |
5377 if (dim) { | |
3008 | 5378 if (!(dim->connected)) { /* We'll free the old, unconnected dim, and start over */ |
5379 od->direct_ims = g_slist_remove(od->direct_ims, dim); | |
5380 gaim_input_remove(dim->watcher); | |
5381 g_free(dim); | |
5382 debug_printf("Gave up on old direct IM, trying again\n"); | |
5383 } else { | |
3427 | 5384 do_error_dialog("DirectIM already open.", NULL, GAIM_ERROR); |
5136 | 5385 g_free(data->who); |
4244 | 5386 g_free(data); |
3008 | 5387 return; |
5388 } | |
2086 | 5389 } |
5390 dim = g_new0(struct direct_im, 1); | |
5391 dim->gc = gc; | |
5392 g_snprintf(dim->name, sizeof dim->name, "%s", data->who); | |
5393 | |
4617 | 5394 dim->conn = aim_odc_initiate(od->sess, data->who); |
2086 | 5395 if (dim->conn != NULL) { |
5396 od->direct_ims = g_slist_append(od->direct_ims, dim); | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
5397 dim->watcher = gaim_input_add(dim->conn->fd, GAIM_INPUT_READ, |
2086 | 5398 oscar_callback, dim->conn); |
4617 | 5399 aim_conn_addhandler(od->sess, dim->conn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIM_ESTABLISHED, |
5400 gaim_odc_initiate, 0); | |
2086 | 5401 } else { |
3427 | 5402 do_error_dialog(_("Unable to open Direct IM"), NULL, GAIM_ERROR); |
2086 | 5403 g_free(dim); |
5404 } | |
4244 | 5405 |
5136 | 5406 g_free(data->who); |
4244 | 5407 g_free(data); |
2086 | 5408 } |
5409 | |
5136 | 5410 static void oscar_ask_direct_im(struct gaim_connection *gc, const char *who) { |
2086 | 5411 char buf[BUF_LONG]; |
5412 struct ask_do_dir_im *data = g_new0(struct ask_do_dir_im, 1); | |
5136 | 5413 data->who = g_strdup(who); |
2170
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
5414 data->gc = gc; |
3730 | 5415 g_snprintf(buf, sizeof(buf), _("You have selected to open a Direct IM connection with %s."), who); |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5416 do_ask_dialog(buf, _("Because this reveals your IP address, it may be considered a privacy risk. Do you wish to continue?"), data, _("Connect"), oscar_direct_im, _("Cancel"), oscar_cancel_direct_im, my_protocol->handle, FALSE); |
2086 | 5417 } |
5418 | |
5419 static void oscar_set_permit_deny(struct gaim_connection *gc) { | |
5420 struct oscar_data *od = (struct oscar_data *)gc->proto_data; | |
4230 | 5421 #ifdef NOSSI |
4770 | 5422 GSList *list, *g = gaim_blist_groups(), *g1; |
4230 | 5423 char buf[MAXMSGLEN]; |
5424 int at; | |
5425 | |
4491 | 5426 switch(gc->account->permdeny) { |
4687 | 5427 case 1: |
4230 | 5428 aim_bos_changevisibility(od->sess, od->conn, AIM_VISIBILITYCHANGE_DENYADD, gc->username); |
5429 break; | |
5430 case 2: | |
5431 aim_bos_changevisibility(od->sess, od->conn, AIM_VISIBILITYCHANGE_PERMITADD, gc->username); | |
5432 break; | |
5433 case 3: | |
4642 | 5434 list = gc->account->permit; |
4230 | 5435 at = 0; |
5436 while (list) { | |
5437 at += g_snprintf(buf + at, sizeof(buf) - at, "%s&", (char *)list->data); | |
5438 list = list->next; | |
5439 } | |
5440 aim_bos_changevisibility(od->sess, od->conn, AIM_VISIBILITYCHANGE_PERMITADD, buf); | |
5441 break; | |
5442 case 4: | |
4642 | 5443 list = gc->account->deny; |
4230 | 5444 at = 0; |
5445 while (list) { | |
5446 at += g_snprintf(buf + at, sizeof(buf) - at, "%s&", (char *)list->data); | |
5447 list = list->next; | |
5448 } | |
5449 aim_bos_changevisibility(od->sess, od->conn, AIM_VISIBILITYCHANGE_DENYADD, buf); | |
5450 break; | |
5451 case 5: | |
4770 | 5452 g1 = g; |
4230 | 5453 at = 0; |
4770 | 5454 while (g1) { |
5455 list = gaim_blist_members((struct group *)g->data); | |
5456 GSList list1 = list; | |
5457 while (list1) { | |
5458 struct buddy *b = list1->data; | |
4491 | 5459 if(b->account == gc->account) |
4349 | 5460 at += g_snprintf(buf + at, sizeof(buf) - at, "%s&", b->name); |
4770 | 5461 list1 = list1->next; |
2995 | 5462 } |
4770 | 5463 g_slist_free(list); |
5464 g1 = g1->next; | |
4349 | 5465 } |
4770 | 5466 g_slist_free(g); |
4230 | 5467 aim_bos_changevisibility(od->sess, od->conn, AIM_VISIBILITYCHANGE_PERMITADD, buf); |
5468 break; | |
5469 default: | |
5470 break; | |
2086 | 5471 } |
4230 | 5472 signoff_blocked(gc); |
5473 #else | |
5474 if (od->sess->ssi.received_data) | |
4889 | 5475 aim_ssi_setpermdeny(od->sess, gc->account->permdeny, 0xffffffff); |
4230 | 5476 #endif |
2086 | 5477 } |
5478 | |
4349 | 5479 static void oscar_add_permit(struct gaim_connection *gc, const char *who) { |
4269 | 5480 #ifdef NOSSI |
4491 | 5481 if (gc->account->permdeny == 3) |
4269 | 5482 oscar_set_permit_deny(gc); |
5483 #else | |
2991 | 5484 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
4230 | 5485 debug_printf("ssi: About to add a permit\n"); |
5486 if (od->sess->ssi.received_data) | |
4889 | 5487 aim_ssi_addpermit(od->sess, who); |
4230 | 5488 #endif |
2086 | 5489 } |
5490 | |
4349 | 5491 static void oscar_add_deny(struct gaim_connection *gc, const char *who) { |
4269 | 5492 #ifdef NOSSI |
4491 | 5493 if (gc->account->permdeny == 4) |
4269 | 5494 oscar_set_permit_deny(gc); |
5495 #else | |
2991 | 5496 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
4230 | 5497 debug_printf("ssi: About to add a deny\n"); |
5498 if (od->sess->ssi.received_data) | |
4889 | 5499 aim_ssi_adddeny(od->sess, who); |
4230 | 5500 #endif |
2086 | 5501 } |
5502 | |
4349 | 5503 static void oscar_rem_permit(struct gaim_connection *gc, const char *who) { |
4269 | 5504 #ifdef NOSSI |
4491 | 5505 if (gc->account->permdeny == 3) |
4269 | 5506 oscar_set_permit_deny(gc); |
5507 #else | |
2991 | 5508 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
4230 | 5509 debug_printf("ssi: About to delete a permit\n"); |
5510 if (od->sess->ssi.received_data) | |
4889 | 5511 aim_ssi_delpermit(od->sess, who); |
4230 | 5512 #endif |
2086 | 5513 } |
5514 | |
4349 | 5515 static void oscar_rem_deny(struct gaim_connection *gc, const char *who) { |
4269 | 5516 #ifdef NOSSI |
4491 | 5517 if (gc->account->permdeny == 4) |
4269 | 5518 oscar_set_permit_deny(gc); |
5519 #else | |
2991 | 5520 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
4230 | 5521 debug_printf("ssi: About to delete a deny\n"); |
5522 if (od->sess->ssi.received_data) | |
4889 | 5523 aim_ssi_deldeny(od->sess, who); |
4230 | 5524 #endif |
2086 | 5525 } |
5526 | |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
5527 static GList *oscar_away_states(struct gaim_connection *gc) |
2086 | 5528 { |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
5529 struct oscar_data *od = gc->proto_data; |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
5530 GList *m = NULL; |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
5531 |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
5532 if (!od->icq) |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
5533 return g_list_append(m, GAIM_AWAY_CUSTOM); |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
5534 |
4333 | 5535 m = g_list_append(m, _("Online")); |
5536 m = g_list_append(m, _("Away")); | |
5537 m = g_list_append(m, _("Do Not Disturb")); | |
5538 m = g_list_append(m, _("Not Available")); | |
5539 m = g_list_append(m, _("Occupied")); | |
5540 m = g_list_append(m, _("Free For Chat")); | |
5541 m = g_list_append(m, _("Invisible")); | |
5542 | |
5543 return m; | |
5544 } | |
5545 | |
5136 | 5546 static GList *oscar_buddy_menu(struct gaim_connection *gc, const char *who) { |
4333 | 5547 struct oscar_data *od = gc->proto_data; |
5548 GList *m = NULL; | |
5549 struct proto_buddy_menu *pbm; | |
5550 | |
5551 if (od->icq) { | |
4624 | 5552 #if 0 |
4333 | 5553 pbm = g_new0(struct proto_buddy_menu, 1); |
5554 pbm->label = _("Get Status Msg"); | |
4969 | 5555 pbm->callback = oscar_get_icqstatusmsg; |
4333 | 5556 pbm->gc = gc; |
5557 m = g_list_append(m, pbm); | |
4624 | 5558 #endif |
4333 | 5559 } else { |
4687 | 5560 struct buddy *b = gaim_find_buddy(gc->account, who); |
4356 | 5561 |
5068 | 5562 if ((aim_sncmp(gc->username, who)) && GAIM_BUDDY_IS_ONLINE(b)) { |
4333 | 5563 pbm = g_new0(struct proto_buddy_menu, 1); |
5564 pbm->label = _("Direct IM"); | |
5565 pbm->callback = oscar_ask_direct_im; | |
5566 pbm->gc = gc; | |
5567 m = g_list_append(m, pbm); | |
4650 | 5568 |
4333 | 5569 pbm = g_new0(struct proto_buddy_menu, 1); |
5570 pbm->label = _("Send File"); | |
4617 | 5571 pbm->callback = oscar_ask_sendfile; |
4333 | 5572 pbm->gc = gc; |
5573 m = g_list_append(m, pbm); | |
4826 | 5574 #if 0 |
5575 pbm = g_new0(struct proto_buddy_menu, 1); | |
5576 pbm->label = _("Get File"); | |
5577 pbm->callback = oscar_ask_getfile; | |
5578 pbm->gc = gc; | |
5579 m = g_list_append(m, pbm); | |
5580 #endif | |
4333 | 5581 } |
5131 | 5582 } |
5197 | 5583 |
5131 | 5584 if (od->sess->ssi.received_data) { |
5585 char *gname = aim_ssi_itemlist_findparentname(od->sess->ssi.local, who); | |
5586 if (gname && aim_ssi_waitingforauth(od->sess->ssi.local, gname, who)) { | |
5587 pbm = g_new0(struct proto_buddy_menu, 1); | |
5588 pbm->label = _("Re-request Authorization"); | |
5589 pbm->callback = gaim_auth_sendrequest; | |
5590 pbm->gc = gc; | |
5591 m = g_list_append(m, pbm); | |
4333 | 5592 } |
4916 | 5593 } |
5594 | |
4333 | 5595 return m; |
5596 } | |
5597 | |
5598 static void oscar_format_screenname(struct gaim_connection *gc, char *nick) { | |
5599 struct oscar_data *od = gc->proto_data; | |
5600 if (!aim_sncmp(gc->username, nick)) { | |
5601 if (!aim_getconn_type(od->sess, AIM_CONN_TYPE_AUTH)) { | |
5602 od->setnick = TRUE; | |
5603 od->newsn = g_strdup(nick); | |
5604 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_AUTH); | |
5605 } else { | |
5606 aim_admin_setnick(od->sess, aim_getconn_type(od->sess, AIM_CONN_TYPE_AUTH), nick); | |
5607 } | |
5608 } else { | |
5609 do_error_dialog(_("The new formatting is invalid."), | |
5610 _("Screenname formatting can change only capitalization and whitespace."), GAIM_ERROR); | |
5611 } | |
5612 } | |
5613 | |
5614 static void oscar_show_format_screenname(struct gaim_connection *gc) | |
5615 { | |
5616 do_prompt_dialog(_("New screenname formatting:"), gc->displayname, gc, oscar_format_screenname, NULL); | |
5617 } | |
5618 | |
5619 static void oscar_confirm_account(struct gaim_connection *gc) | |
5620 { | |
5621 struct oscar_data *od = gc->proto_data; | |
5622 aim_conn_t *conn = aim_getconn_type(od->sess, AIM_CONN_TYPE_AUTH); | |
5623 | |
5624 if (conn) { | |
5625 aim_admin_reqconfirm(od->sess, conn); | |
5626 } else { | |
5627 od->conf = TRUE; | |
5628 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_AUTH); | |
5629 } | |
5630 } | |
5631 | |
5632 static void oscar_show_email(struct gaim_connection *gc) | |
5633 { | |
5634 struct oscar_data *od = gc->proto_data; | |
5635 aim_conn_t *conn = aim_getconn_type(od->sess, AIM_CONN_TYPE_AUTH); | |
5636 | |
5637 if (conn) { | |
5638 aim_admin_getinfo(od->sess, conn, 0x11); | |
5639 } else { | |
5640 od->reqemail = TRUE; | |
5641 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_AUTH); | |
5642 } | |
5643 } | |
5644 | |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
5645 static void oscar_change_email(struct gaim_connection *gc, char *email) |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
5646 { |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
5647 struct oscar_data *od = gc->proto_data; |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
5648 aim_conn_t *conn = aim_getconn_type(od->sess, AIM_CONN_TYPE_AUTH); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
5649 |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
5650 if (conn) { |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
5651 aim_admin_setemail(od->sess, conn, email); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
5652 } else { |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
5653 od->setemail = TRUE; |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
5654 od->email = g_strdup(email); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
5655 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_AUTH); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
5656 } |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
5657 } |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
5658 |
4333 | 5659 static void oscar_show_change_email(struct gaim_connection *gc) |
5660 { | |
5661 do_prompt_dialog(_("Change Address To: "), NULL, gc, oscar_change_email, NULL); | |
5662 } | |
5663 | |
5664 static void oscar_show_awaitingauth(struct gaim_connection *gc) | |
5665 { | |
2979 | 5666 struct oscar_data *od = gc->proto_data; |
4333 | 5667 gchar *nombre, *text, *tmp; |
4785 | 5668 GaimBlistNode *gnode,*bnode; |
4333 | 5669 int num=0; |
5670 | |
5671 text = g_strdup(_("You are awaiting authorization from the following buddies:<BR>")); | |
5672 | |
4785 | 5673 for (gnode = gaim_get_blist()->root; gnode; gnode = gnode->next) { |
5674 struct group *group = (struct group *)gnode; | |
5675 if(!GAIM_BLIST_NODE_IS_GROUP(gnode)) | |
5676 continue; | |
5677 for (bnode = gnode->child; bnode; bnode = bnode->next) { | |
5678 struct buddy *buddy = (struct buddy *)bnode; | |
5679 if(!GAIM_BLIST_NODE_IS_BUDDY(bnode)) | |
5680 continue; | |
4491 | 5681 if (buddy->account == gc->account && aim_ssi_waitingforauth(od->sess->ssi.local, group->name, buddy->name)) { |
4687 | 5682 if (gaim_get_buddy_alias_only(buddy)) |
5683 nombre = g_strdup_printf(" %s (%s)", buddy->name, gaim_get_buddy_alias_only(buddy)); | |
4333 | 5684 else |
4337 | 5685 nombre = g_strdup_printf(" %s", buddy->name); |
4333 | 5686 tmp = g_strdup_printf("%s<BR>%s", text, nombre); |
5687 g_free(text); | |
5688 text = tmp; | |
5689 g_free(nombre); | |
5690 num++; | |
5691 } | |
2979 | 5692 } |
4333 | 5693 } |
5694 | |
5695 if (!num) { | |
5696 tmp = g_strdup_printf("%s<BR>%s", text, _("<i>you are not waiting for authorization</i>")); | |
5697 g_free(text); | |
5698 text = tmp; | |
2979 | 5699 } |
4333 | 5700 |
4959 | 5701 tmp = g_strdup_printf(_("%s<BR><BR>You can re-request authorization from these buddies by right-clicking on them and clicking \"Re-request authorization.\""), text); |
4333 | 5702 g_free(text); |
5703 text = tmp; | |
5704 g_show_info_text(gc, gc->username, 2, text, NULL); | |
5705 g_free(text); | |
2979 | 5706 } |
5707 | |
4333 | 5708 static void oscar_show_chpassurl(struct gaim_connection *gc) |
5709 { | |
5710 struct oscar_data *od = gc->proto_data; | |
5711 open_url(NULL, od->sess->authinfo->chpassurl); | |
5712 } | |
5713 | |
5714 static GList *oscar_actions(struct gaim_connection *gc) | |
2086 | 5715 { |
5716 struct oscar_data *od = gc->proto_data; | |
4333 | 5717 struct proto_actions_menu *pam; |
5718 GList *m = NULL; | |
5719 | |
5720 pam = g_new0(struct proto_actions_menu, 1); | |
5721 pam->label = _("Set User Info"); | |
5722 pam->callback = show_set_info; | |
5723 pam->gc = gc; | |
5724 m = g_list_append(m, pam); | |
5725 | |
4617 | 5726 if ((od->sess->authinfo->regstatus == 0x0003) || (od->icq)) { |
4333 | 5727 pam = g_new0(struct proto_actions_menu, 1); |
5728 pam->label = _("Change Password"); | |
5729 pam->callback = show_change_passwd; | |
5730 pam->gc = gc; | |
5731 m = g_list_append(m, pam); | |
4617 | 5732 } |
5733 | |
5734 if (od->sess->authinfo->chpassurl) { | |
5735 pam = g_new0(struct proto_actions_menu, 1); | |
5736 pam->label = _("Change Password (URL)"); | |
5737 pam->callback = oscar_show_chpassurl; | |
5738 pam->gc = gc; | |
5739 m = g_list_append(m, pam); | |
5740 } | |
5741 | |
5742 if (od->sess->authinfo->regstatus == 0x0003) { | |
5743 /* AIM actions */ | |
5744 m = g_list_append(m, NULL); | |
4333 | 5745 |
5746 pam = g_new0(struct proto_actions_menu, 1); | |
5747 pam->label = _("Format Screenname"); | |
5748 pam->callback = oscar_show_format_screenname; | |
5749 pam->gc = gc; | |
5750 m = g_list_append(m, pam); | |
5751 | |
5752 pam = g_new0(struct proto_actions_menu, 1); | |
5753 pam->label = _("Confirm Account"); | |
5754 pam->callback = oscar_confirm_account; | |
5755 pam->gc = gc; | |
5756 m = g_list_append(m, pam); | |
5757 | |
5758 pam = g_new0(struct proto_actions_menu, 1); | |
5759 pam->label = _("Display Current Registered Address"); | |
5760 pam->callback = oscar_show_email; | |
5761 pam->gc = gc; | |
5762 m = g_list_append(m, pam); | |
5763 | |
5764 pam = g_new0(struct proto_actions_menu, 1); | |
5765 pam->label = _("Change Current Registered Address"); | |
5766 pam->callback = oscar_show_change_email; | |
5767 pam->gc = gc; | |
5768 m = g_list_append(m, pam); | |
2086 | 5769 } |
4333 | 5770 |
5771 m = g_list_append(m, NULL); | |
5772 | |
5773 pam = g_new0(struct proto_actions_menu, 1); | |
5774 pam->label = _("Show Buddies Awaiting Authorization"); | |
5775 pam->callback = oscar_show_awaitingauth; | |
5776 pam->gc = gc; | |
5777 m = g_list_append(m, pam); | |
5778 | |
2086 | 5779 m = g_list_append(m, NULL); |
4333 | 5780 |
5781 pam = g_new0(struct proto_actions_menu, 1); | |
5782 pam->label = _("Search for Buddy by Email"); | |
5783 pam->callback = show_find_email; | |
5784 pam->gc = gc; | |
5785 m = g_list_append(m, pam); | |
5786 | |
4336 | 5787 /* pam = g_new0(struct proto_actions_menu, 1); |
4333 | 5788 pam->label = _("Search for Buddy by Information"); |
5789 pam->callback = show_find_info; | |
5790 pam->gc = gc; | |
4336 | 5791 m = g_list_append(m, pam); */ |
2086 | 5792 |
5793 return m; | |
5794 } | |
5795 | |
3466 | 5796 static void oscar_change_passwd(struct gaim_connection *gc, const char *old, const char *new) |
2086 | 5797 { |
5798 struct oscar_data *od = gc->proto_data; | |
4617 | 5799 |
5800 if (od->icq) { | |
5801 aim_icq_changepasswd(od->sess, new); | |
2086 | 5802 } else { |
4617 | 5803 aim_conn_t *conn = aim_getconn_type(od->sess, AIM_CONN_TYPE_AUTH); |
5804 if (conn) { | |
5805 aim_admin_changepasswd(od->sess, conn, new, old); | |
5806 } else { | |
5807 od->chpass = TRUE; | |
5808 od->oldp = g_strdup(old); | |
5809 od->newp = g_strdup(new); | |
5810 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_AUTH); | |
5811 } | |
2086 | 5812 } |
5813 } | |
5814 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5815 static void oscar_convo_closed(struct gaim_connection *gc, char *who) |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5816 { |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5817 struct oscar_data *od = gc->proto_data; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5818 struct direct_im *dim = find_direct_im(od, who); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5819 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5820 if (!dim) |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5821 return; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5822 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5823 od->direct_ims = g_slist_remove(od->direct_ims, dim); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5824 gaim_input_remove(dim->watcher); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5825 aim_conn_kill(od->sess, &dim->conn); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5826 g_free(dim); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5827 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5828 |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5829 static GaimPluginProtocolInfo prpl_info = |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5830 { |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5831 GAIM_PROTO_OSCAR, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5832 OPT_PROTO_MAIL_CHECK | OPT_PROTO_BUDDY_ICON | OPT_PROTO_IM_IMAGE, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5833 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5834 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5835 oscar_list_icon, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5836 oscar_list_emblems, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5837 oscar_status_text, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5838 oscar_tooltip_text, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5839 oscar_away_states, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5840 oscar_actions, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5841 oscar_buddy_menu, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5842 oscar_chat_info, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5843 oscar_login, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5844 oscar_close, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5845 oscar_send_im, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5846 oscar_set_info, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5847 oscar_send_typing, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5848 oscar_get_info, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5849 oscar_set_away, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5850 oscar_get_away, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5851 oscar_set_dir, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5852 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5853 oscar_dir_search, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5854 oscar_set_idle, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5855 oscar_change_passwd, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5856 oscar_add_buddy, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5857 oscar_add_buddies, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5858 oscar_remove_buddy, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5859 oscar_remove_buddies, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5860 oscar_add_permit, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5861 oscar_add_deny, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5862 oscar_rem_permit, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5863 oscar_rem_deny, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5864 oscar_set_permit_deny, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5865 oscar_warn, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5866 oscar_join_chat, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5867 oscar_chat_invite, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5868 oscar_chat_leave, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5869 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5870 oscar_chat_send, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5871 oscar_keepalive, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5872 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5873 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5874 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5875 #ifndef NOSSI |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5876 oscar_alias_buddy, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5877 oscar_move_buddy, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5878 oscar_rename_group, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5879 #else |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5880 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5881 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5882 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5883 #endif |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5884 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5885 oscar_convo_closed, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5886 NULL |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5887 }; |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5888 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5889 static GaimPluginInfo info = |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5890 { |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5891 2, /**< api_version */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5892 GAIM_PLUGIN_PROTOCOL, /**< type */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5893 NULL, /**< ui_requirement */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5894 0, /**< flags */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5895 NULL, /**< dependencies */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5896 GAIM_PRIORITY_DEFAULT, /**< priority */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5897 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5898 "prpl-oscar", /**< id */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5899 "AIM/ICQ", /**< name */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5900 VERSION, /**< version */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5901 /** summary */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5902 N_("AIM/ICQ Protocol Plugin"), |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5903 /** description */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5904 N_("AIM/ICQ Protocol Plugin"), |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5905 NULL, /**< author */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5906 WEBSITE, /**< homepage */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5907 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5908 NULL, /**< load */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5909 NULL, /**< unload */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5910 NULL, /**< destroy */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5911 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5912 NULL, /**< ui_info */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5913 &prpl_info /**< extra_info */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5914 }; |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5915 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5916 static void |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5917 __init_plugin(GaimPlugin *plugin) |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5918 { |
3572 | 5919 struct proto_user_opt *puo; |
2086 | 5920 |
3572 | 5921 puo = g_new0(struct proto_user_opt, 1); |
5922 puo->label = g_strdup("Auth Host:"); | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5923 puo->def = g_strdup("login.oscar.aol.com"); |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5924 puo->pos = USEROPT_AUTH; |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5925 prpl_info.user_opts = g_list_append(prpl_info.user_opts, puo); |
3572 | 5926 |
5927 puo = g_new0(struct proto_user_opt, 1); | |
5928 puo->label = g_strdup("Auth Port:"); | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5929 puo->def = g_strdup("5190"); |
5208
0a6912730d56
[gaim-migrate @ 5576]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
5930 puo->pos = USEROPT_AUTHPORT; |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5931 prpl_info.user_opts = g_list_append(prpl_info.user_opts, puo); |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5932 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5933 my_protocol = plugin; |
2086 | 5934 } |
5935 | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
5936 GAIM_INIT_PLUGIN(oscar, __init_plugin, info); |