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