Mercurial > pidgin
annotate src/protocols/oscar/oscar.c @ 7210:234178fd9787
[gaim-migrate @ 7779]
Commitinating my NEWS. What else should I be doing at school? Studying? Hah.
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Thu, 09 Oct 2003 20:13:05 +0000 |
parents | 7c43dbbb198c |
children | 03f22e564311 |
rev | line source |
---|---|
2086 | 1 /* |
2 * gaim | |
3 * | |
4 * Some code copyright (C) 1998-1999, Mark Spencer <markster@marko.net> | |
6302 | 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> | |
2086 | 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 */ | |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
27 #include "internal.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
28 |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
29 #include "account.h" |
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5631
diff
changeset
|
30 #include "accountopt.h" |
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6787
diff
changeset
|
31 #include "buddyicon.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
32 #include "conversation.h" |
7083
3100a6e03644
[gaim-migrate @ 7648]
Christian Hammond <chipx86@chipx86.com>
parents:
7082
diff
changeset
|
33 #include "core.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
34 #include "debug.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
35 #include "ft.h" |
6982 | 36 #include "imgstore.h" |
2086 | 37 #include "multi.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
38 #include "notify.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
39 #include "privacy.h" |
2086 | 40 #include "prpl.h" |
4889 | 41 #include "proxy.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
42 #include "request.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
43 #include "util.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
44 |
2086 | 45 #include "aim.h" |
5842 | 46 #include "md5.h" |
2086 | 47 |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
48 #define UC_AOL 0x02 |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
49 #define UC_ADMIN 0x04 |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
50 #define UC_UNCONFIRMED 0x08 |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
51 #define UC_NORMAL 0x10 |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
52 #define UC_AB 0x20 |
3079 | 53 #define UC_WIRELESS 0x40 |
6318 | 54 #define UC_HIPTOP 0x80 |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
55 |
2086 | 56 #define AIMHASHDATA "http://gaim.sourceforge.net/aim_data.php3" |
57 | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
58 static GaimPlugin *my_protocol = NULL; |
4249 | 59 |
6871 | 60 static int caps_aim = AIM_CAPS_CHAT | AIM_CAPS_BUDDYICON | AIM_CAPS_DIRECTIM | AIM_CAPS_SENDFILE | AIM_CAPS_INTEROPERATE; |
61 static int caps_icq = AIM_CAPS_BUDDYICON | AIM_CAPS_DIRECTIM | AIM_CAPS_SENDFILE | AIM_CAPS_ICQUTF8 | AIM_CAPS_INTEROPERATE; | |
3458 | 62 |
4665 | 63 static fu8_t features_aim[] = {0x01, 0x01, 0x01, 0x02}; |
64 static fu8_t features_icq[] = {0x01, 0x06}; | |
2086 | 65 |
66 struct oscar_data { | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
67 aim_session_t *sess; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
68 aim_conn_t *conn; |
2086 | 69 |
70 guint cnpa; | |
71 guint paspa; | |
3694 | 72 guint emlpa; |
4804 | 73 guint icopa; |
2086 | 74 |
4823 | 75 gboolean iconconnecting; |
5842 | 76 gboolean set_icon; |
4823 | 77 |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
78 GSList *create_rooms; |
2086 | 79 |
80 gboolean conf; | |
81 gboolean reqemail; | |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
82 gboolean setemail; |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
83 char *email; |
2979 | 84 gboolean setnick; |
85 char *newsn; | |
2086 | 86 gboolean chpass; |
87 char *oldp; | |
88 char *newp; | |
5842 | 89 |
2086 | 90 GSList *oscar_chats; |
91 GSList *direct_ims; | |
3630 | 92 GSList *file_transfers; |
4738 | 93 GHashTable *buddyinfo; |
4804 | 94 GSList *requesticon; |
2086 | 95 |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
96 gboolean killme; |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
97 gboolean icq; |
4804 | 98 guint icontimer; |
5968 | 99 guint getblisttimer; |
2993 | 100 |
101 struct { | |
4230 | 102 guint maxwatchers; /* max users who can watch you */ |
2993 | 103 guint maxbuddies; /* max users you can watch */ |
4230 | 104 guint maxgroups; /* max groups in server list */ |
2993 | 105 guint maxpermits; /* max users on permit list */ |
106 guint maxdenies; /* max users on deny list */ | |
107 guint maxsiglen; /* max size (bytes) of profile */ | |
108 guint maxawaymsglen; /* max size (bytes) of posted away message */ | |
109 } rights; | |
2086 | 110 }; |
111 | |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
112 struct create_room { |
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
113 char *name; |
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
114 int exchange; |
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
115 }; |
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
116 |
2086 | 117 struct chat_connection { |
118 char *name; | |
119 char *show; /* AOL did something funny to us */ | |
2821
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
120 fu16_t exchange; |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
121 fu16_t instance; |
2086 | 122 int fd; /* this is redundant since we have the conn below */ |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
123 aim_conn_t *conn; |
2086 | 124 int inpa; |
125 int id; | |
5575 | 126 GaimConnection *gc; /* i hate this. */ |
5679 | 127 GaimConversation *cnv; /* bah. */ |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
128 int maxlen; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
129 int maxvis; |
2086 | 130 }; |
131 | |
132 struct direct_im { | |
5575 | 133 GaimConnection *gc; |
2086 | 134 char name[80]; |
135 int watcher; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
136 aim_conn_t *conn; |
3008 | 137 gboolean connected; |
2086 | 138 }; |
139 | |
140 struct ask_direct { | |
5575 | 141 GaimConnection *gc; |
2086 | 142 char *sn; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
143 char ip[64]; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
144 fu8_t cookie[8]; |
2086 | 145 }; |
146 | |
7011 | 147 /* |
148 * Various PRPL-specific buddy info that we want to keep track of | |
149 * Some other info is maintained by locate.c, and I'd like to move | |
150 * the rest of this to libfaim, mostly im.c | |
151 */ | |
4738 | 152 struct buddyinfo { |
153 gboolean typingnot; | |
6292 | 154 gchar *availmsg; |
6857 | 155 fu32_t ipaddr; |
5836 | 156 |
157 unsigned long ico_me_len; | |
158 unsigned long ico_me_csum; | |
159 time_t ico_me_time; | |
160 gboolean ico_informed; | |
4738 | 161 |
162 unsigned long ico_len; | |
163 unsigned long ico_csum; | |
164 time_t ico_time; | |
165 gboolean ico_need; | |
2086 | 166 }; |
167 | |
4230 | 168 struct name_data { |
5575 | 169 GaimConnection *gc; |
4230 | 170 gchar *name; |
3453 | 171 gchar *nick; |
3141 | 172 }; |
173 | |
5129 | 174 static char *msgerrreason[] = { |
175 N_("Invalid error"), | |
176 N_("Invalid SNAC"), | |
177 N_("Rate to host"), | |
178 N_("Rate to client"), | |
179 N_("Not logged in"), | |
180 N_("Service unavailable"), | |
181 N_("Service not defined"), | |
182 N_("Obsolete SNAC"), | |
183 N_("Not supported by host"), | |
184 N_("Not supported by client"), | |
185 N_("Refused by client"), | |
186 N_("Reply too big"), | |
187 N_("Responses lost"), | |
188 N_("Request denied"), | |
189 N_("Busted SNAC payload"), | |
190 N_("Insufficient rights"), | |
191 N_("In local permit/deny"), | |
192 N_("Too evil (sender)"), | |
193 N_("Too evil (receiver)"), | |
194 N_("User temporarily unavailable"), | |
195 N_("No match"), | |
196 N_("List overflow"), | |
197 N_("Request ambiguous"), | |
198 N_("Queue full"), | |
199 N_("Not while on AOL") | |
200 }; | |
201 static int msgerrreasonlen = 25; | |
202 | |
203 /* All the libfaim->gaim callback functions */ | |
204 static int gaim_parse_auth_resp (aim_session_t *, aim_frame_t *, ...); | |
205 static int gaim_parse_login (aim_session_t *, aim_frame_t *, ...); | |
206 static int gaim_handle_redirect (aim_session_t *, aim_frame_t *, ...); | |
207 static int gaim_info_change (aim_session_t *, aim_frame_t *, ...); | |
208 static int gaim_account_confirm (aim_session_t *, aim_frame_t *, ...); | |
209 static int gaim_parse_oncoming (aim_session_t *, aim_frame_t *, ...); | |
210 static int gaim_parse_offgoing (aim_session_t *, aim_frame_t *, ...); | |
211 static int gaim_parse_incoming_im(aim_session_t *, aim_frame_t *, ...); | |
212 static int gaim_parse_misses (aim_session_t *, aim_frame_t *, ...); | |
213 static int gaim_parse_clientauto (aim_session_t *, aim_frame_t *, ...); | |
7011 | 214 static int gaim_parse_userinfo (aim_session_t *, aim_frame_t *, ...); |
5129 | 215 static int gaim_parse_motd (aim_session_t *, aim_frame_t *, ...); |
216 static int gaim_chatnav_info (aim_session_t *, aim_frame_t *, ...); | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
217 static int gaim_conv_chat_join (aim_session_t *, aim_frame_t *, ...); |
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
218 static int gaim_conv_chat_leave (aim_session_t *, aim_frame_t *, ...); |
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
219 static int gaim_conv_chat_info_update (aim_session_t *, aim_frame_t *, ...); |
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
220 static int gaim_conv_chat_incoming_msg(aim_session_t *, aim_frame_t *, ...); |
5129 | 221 static int gaim_email_parseupdate(aim_session_t *, aim_frame_t *, ...); |
222 static int gaim_icon_error (aim_session_t *, aim_frame_t *, ...); | |
223 static int gaim_icon_parseicon (aim_session_t *, aim_frame_t *, ...); | |
5844 | 224 static int oscar_icon_req (aim_session_t *, aim_frame_t *, ...); |
5129 | 225 static int gaim_parse_msgack (aim_session_t *, aim_frame_t *, ...); |
226 static int gaim_parse_ratechange (aim_session_t *, aim_frame_t *, ...); | |
227 static int gaim_parse_evilnotify (aim_session_t *, aim_frame_t *, ...); | |
228 static int gaim_parse_searcherror(aim_session_t *, aim_frame_t *, ...); | |
229 static int gaim_parse_searchreply(aim_session_t *, aim_frame_t *, ...); | |
230 static int gaim_bosrights (aim_session_t *, aim_frame_t *, ...); | |
231 static int gaim_connerr (aim_session_t *, aim_frame_t *, ...); | |
232 static int conninitdone_admin (aim_session_t *, aim_frame_t *, ...); | |
233 static int conninitdone_bos (aim_session_t *, aim_frame_t *, ...); | |
234 static int conninitdone_chatnav (aim_session_t *, aim_frame_t *, ...); | |
235 static int conninitdone_chat (aim_session_t *, aim_frame_t *, ...); | |
236 static int conninitdone_email (aim_session_t *, aim_frame_t *, ...); | |
237 static int conninitdone_icon (aim_session_t *, aim_frame_t *, ...); | |
238 static int gaim_parse_msgerr (aim_session_t *, aim_frame_t *, ...); | |
239 static int gaim_parse_mtn (aim_session_t *, aim_frame_t *, ...); | |
240 static int gaim_parse_locaterights(aim_session_t *, aim_frame_t *, ...); | |
241 static int gaim_parse_buddyrights(aim_session_t *, aim_frame_t *, ...); | |
242 static int gaim_parse_locerr (aim_session_t *, aim_frame_t *, ...); | |
243 static int gaim_icbm_param_info (aim_session_t *, aim_frame_t *, ...); | |
244 static int gaim_parse_genericerr (aim_session_t *, aim_frame_t *, ...); | |
245 static int gaim_memrequest (aim_session_t *, aim_frame_t *, ...); | |
246 static int gaim_selfinfo (aim_session_t *, aim_frame_t *, ...); | |
247 static int gaim_offlinemsg (aim_session_t *, aim_frame_t *, ...); | |
248 static int gaim_offlinemsgdone (aim_session_t *, aim_frame_t *, ...); | |
249 static int gaim_icqalias (aim_session_t *, aim_frame_t *, ...); | |
250 static int gaim_icqinfo (aim_session_t *, aim_frame_t *, ...); | |
251 static int gaim_popup (aim_session_t *, aim_frame_t *, ...); | |
252 #ifndef NOSSI | |
253 static int gaim_ssi_parseerr (aim_session_t *, aim_frame_t *, ...); | |
254 static int gaim_ssi_parserights (aim_session_t *, aim_frame_t *, ...); | |
255 static int gaim_ssi_parselist (aim_session_t *, aim_frame_t *, ...); | |
256 static int gaim_ssi_parseack (aim_session_t *, aim_frame_t *, ...); | |
257 static int gaim_ssi_authgiven (aim_session_t *, aim_frame_t *, ...); | |
258 static int gaim_ssi_authrequest (aim_session_t *, aim_frame_t *, ...); | |
259 static int gaim_ssi_authreply (aim_session_t *, aim_frame_t *, ...); | |
260 static int gaim_ssi_gotadded (aim_session_t *, aim_frame_t *, ...); | |
261 #endif | |
262 | |
263 /* for DirectIM/image transfer */ | |
264 static int gaim_odc_initiate (aim_session_t *, aim_frame_t *, ...); | |
265 static int gaim_odc_incoming (aim_session_t *, aim_frame_t *, ...); | |
266 static int gaim_odc_typing (aim_session_t *, aim_frame_t *, ...); | |
6982 | 267 static int gaim_odc_update_ui (aim_session_t *, aim_frame_t *, ...); |
5129 | 268 |
269 /* for file transfer */ | |
270 static int oscar_sendfile_estblsh(aim_session_t *, aim_frame_t *, ...); | |
271 static int oscar_sendfile_prompt (aim_session_t *, aim_frame_t *, ...); | |
272 static int oscar_sendfile_ack (aim_session_t *, aim_frame_t *, ...); | |
273 static int oscar_sendfile_done (aim_session_t *, aim_frame_t *, ...); | |
274 | |
275 /* for icons */ | |
276 static gboolean gaim_icon_timerfunc(gpointer data); | |
277 | |
5306 | 278 /* prpl actions - remove this at some point */ |
5954 | 279 static void oscar_set_info(GaimConnection *gc, const char *text); |
5306 | 280 |
5836 | 281 static void oscar_free_name_data(struct name_data *data) { |
4230 | 282 g_free(data->name); |
283 g_free(data->nick); | |
284 g_free(data); | |
285 } | |
286 | |
5836 | 287 static void oscar_free_buddyinfo(void *data) { |
288 struct buddyinfo *bi = data; | |
6292 | 289 g_free(bi->availmsg); |
5836 | 290 g_free(bi); |
291 } | |
292 | |
5129 | 293 static fu32_t oscar_encoding_check(const char *utf8) |
294 { | |
295 int i = 0; | |
296 fu32_t encodingflag = 0; | |
297 | |
298 /* Determine how we can send this message. Per the warnings elsewhere | |
299 * in this file, these little checks determine the simplest encoding | |
300 * we can use for a given message send using it. */ | |
301 while (utf8[i]) { | |
302 if ((unsigned char)utf8[i] > 0x7f) { | |
303 /* not ASCII! */ | |
304 encodingflag = AIM_IMFLAGS_ISO_8859_1; | |
305 break; | |
306 } | |
307 i++; | |
308 } | |
309 while (utf8[i]) { | |
310 /* ISO-8859-1 is 0x00-0xbf in the first byte | |
311 * followed by 0xc0-0xc3 in the second */ | |
312 if ((unsigned char)utf8[i] < 0x80) { | |
313 i++; | |
314 continue; | |
315 } else if (((unsigned char)utf8[i] & 0xfc) == 0xc0 && | |
316 ((unsigned char)utf8[i + 1] & 0xc0) == 0x80) { | |
317 i += 2; | |
318 continue; | |
319 } | |
320 encodingflag = AIM_IMFLAGS_UNICODE; | |
321 break; | |
322 } | |
323 | |
324 return encodingflag; | |
325 } | |
326 | |
327 static fu32_t oscar_encoding_parse(const char *enc) | |
328 { | |
329 char *charset; | |
330 | |
331 /* If anything goes wrong, fall back on ASCII and print a message */ | |
332 if (enc == NULL) { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
333 gaim_debug(GAIM_DEBUG_WARNING, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
334 "Encoding was null, that's odd\n"); |
5129 | 335 return 0; |
336 } | |
337 charset = strstr(enc, "charset="); | |
338 if (charset == NULL) { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
339 gaim_debug(GAIM_DEBUG_WARNING, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
340 "No charset specified for info, assuming ASCII\n"); |
5129 | 341 return 0; |
342 } | |
343 charset += 8; | |
344 if (!strcmp(charset, "\"us-ascii\"") || !strcmp(charset, "\"utf-8\"")) { | |
345 /* UTF-8 is our native charset, ASCII is a proper subset */ | |
346 return 0; | |
347 } else if (!strcmp(charset, "\"iso-8859-1\"")) { | |
348 return AIM_IMFLAGS_ISO_8859_1; | |
349 } else if (!strcmp(charset, "\"unicode-2-0\"")) { | |
350 return AIM_IMFLAGS_UNICODE; | |
351 } else { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
352 gaim_debug(GAIM_DEBUG_WARNING, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
353 "Unrecognized character set '%s', using ASCII\n", charset); |
5129 | 354 return 0; |
355 } | |
356 } | |
357 | |
358 gchar *oscar_encoding_to_utf8(const char *encoding, char *text, int textlen) | |
359 { | |
360 gchar *utf8 = NULL; | |
361 int flags = oscar_encoding_parse(encoding); | |
362 | |
363 switch (flags) { | |
364 case 0: | |
365 utf8 = g_strndup(text, textlen); | |
366 break; | |
367 case AIM_IMFLAGS_ISO_8859_1: | |
368 utf8 = g_convert(text, textlen, "UTF-8", "ISO-8859-1", NULL, NULL, NULL); | |
369 break; | |
370 case AIM_IMFLAGS_UNICODE: | |
371 utf8 = g_convert(text, textlen, "UTF-8", "UCS-2BE", NULL, NULL, NULL); | |
372 break; | |
373 } | |
374 | |
375 return utf8; | |
376 } | |
377 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
378 static struct direct_im *find_direct_im(struct oscar_data *od, const char *who) { |
2086 | 379 GSList *d = od->direct_ims; |
380 struct direct_im *m = NULL; | |
381 | |
382 while (d) { | |
383 m = (struct direct_im *)d->data; | |
4355 | 384 if (!aim_sncmp(who, m->name)) |
4269 | 385 return m; |
2086 | 386 d = d->next; |
387 } | |
388 | |
4269 | 389 return NULL; |
2086 | 390 } |
391 | |
2821
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
392 static char *extract_name(const char *name) { |
4121 | 393 char *tmp, *x; |
2086 | 394 int i, j; |
4120 | 395 |
396 if (!name) | |
4121 | 397 return NULL; |
398 | |
4120 | 399 x = strchr(name, '-'); |
4121 | 400 |
2086 | 401 if (!x) return NULL; |
402 x = strchr(++x, '-'); | |
403 if (!x) return NULL; | |
404 tmp = g_strdup(++x); | |
405 | |
406 for (i = 0, j = 0; x[i]; i++) { | |
2361
554b001d7d98
[gaim-migrate @ 2374]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2357
diff
changeset
|
407 char hex[3]; |
554b001d7d98
[gaim-migrate @ 2374]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2357
diff
changeset
|
408 if (x[i] != '%') { |
2086 | 409 tmp[j++] = x[i]; |
2361
554b001d7d98
[gaim-migrate @ 2374]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2357
diff
changeset
|
410 continue; |
2086 | 411 } |
2361
554b001d7d98
[gaim-migrate @ 2374]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2357
diff
changeset
|
412 strncpy(hex, x + ++i, 2); hex[2] = 0; |
554b001d7d98
[gaim-migrate @ 2374]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2357
diff
changeset
|
413 i++; |
554b001d7d98
[gaim-migrate @ 2374]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2357
diff
changeset
|
414 tmp[j++] = strtol(hex, NULL, 16); |
2086 | 415 } |
416 | |
417 tmp[j] = 0; | |
418 return tmp; | |
419 } | |
420 | |
5575 | 421 static struct chat_connection *find_oscar_chat(GaimConnection *gc, int id) { |
2086 | 422 GSList *g = ((struct oscar_data *)gc->proto_data)->oscar_chats; |
423 struct chat_connection *c = NULL; | |
424 | |
425 while (g) { | |
426 c = (struct chat_connection *)g->data; | |
427 if (c->id == id) | |
428 break; | |
429 g = g->next; | |
430 c = NULL; | |
431 } | |
432 | |
433 return c; | |
434 } | |
435 | |
5575 | 436 static struct chat_connection *find_oscar_chat_by_conn(GaimConnection *gc, |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
437 aim_conn_t *conn) { |
2086 | 438 GSList *g = ((struct oscar_data *)gc->proto_data)->oscar_chats; |
439 struct chat_connection *c = NULL; | |
440 | |
441 while (g) { | |
442 c = (struct chat_connection *)g->data; | |
443 if (c->conn == conn) | |
444 break; | |
445 g = g->next; | |
446 c = NULL; | |
447 } | |
448 | |
449 return c; | |
450 } | |
451 | |
4617 | 452 static void gaim_odc_disconnect(aim_session_t *sess, aim_conn_t *conn) { |
5575 | 453 GaimConnection *gc = sess->aux_data; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
454 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
5679 | 455 GaimConversation *cnv; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
456 struct direct_im *dim; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
457 char *sn; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
458 char buf[256]; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
459 |
4617 | 460 sn = g_strdup(aim_odc_getsn(conn)); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
461 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
462 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
463 "%s disconnected Direct IM.\n", sn); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
464 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
465 dim = find_direct_im(od, sn); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
466 od->direct_ims = g_slist_remove(od->direct_ims, dim); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
467 gaim_input_remove(dim->watcher); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
468 |
3008 | 469 if (dim->connected) |
470 g_snprintf(buf, sizeof buf, _("Direct IM with %s closed"), sn); | |
471 else | |
472 g_snprintf(buf, sizeof buf, _("Direct IM with %s failed"), sn); | |
6640
314111e7b601
[gaim-migrate @ 7165]
Christian Hammond <chipx86@chipx86.com>
parents:
6623
diff
changeset
|
473 |
314111e7b601
[gaim-migrate @ 7165]
Christian Hammond <chipx86@chipx86.com>
parents:
6623
diff
changeset
|
474 cnv = gaim_find_conversation_with_account(sn, gaim_connection_get_account(gc)); |
314111e7b601
[gaim-migrate @ 7165]
Christian Hammond <chipx86@chipx86.com>
parents:
6623
diff
changeset
|
475 if (cnv) |
6982 | 476 gaim_conversation_write(cnv, NULL, buf, GAIM_MESSAGE_SYSTEM, time(NULL)); |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4358
diff
changeset
|
477 |
5579 | 478 gaim_conversation_update_progress(cnv, 0); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
479 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
480 g_free(dim); /* I guess? I don't see it anywhere else... -- mid */ |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
481 g_free(sn); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
482 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
483 return; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
484 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
485 |
4617 | 486 static void oscar_callback(gpointer data, gint source, GaimInputCondition condition) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
487 aim_conn_t *conn = (aim_conn_t *)data; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
488 aim_session_t *sess = aim_conn_getsess(conn); |
5575 | 489 GaimConnection *gc = sess ? sess->aux_data : NULL; |
4617 | 490 struct oscar_data *od; |
2086 | 491 |
492 if (!gc) { | |
493 /* gc is null. we return, else we seg SIGSEG on next line. */ | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
494 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
495 "oscar callback for closed connection (1).\n"); |
2086 | 496 return; |
497 } | |
498 | |
4617 | 499 od = (struct oscar_data *)gc->proto_data; |
2086 | 500 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
501 if (!g_list_find(gaim_connections_get_all(), gc)) { |
2086 | 502 /* oh boy. this is probably bad. i guess the only thing we |
503 * can really do is return? */ | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
504 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
505 "oscar callback for closed connection (2).\n"); |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
506 gaim_debug(GAIM_DEBUG_MISC, "oscar", "gc = %p\n", gc); |
2086 | 507 return; |
508 } | |
509 | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
510 if (condition & GAIM_INPUT_READ) { |
4617 | 511 if (conn->type == AIM_CONN_TYPE_LISTENER) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
512 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
513 "got information on rendezvous listener\n"); |
4617 | 514 if (aim_handlerendconnect(od->sess, conn) < 0) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
515 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
516 "connection error (rendezvous listener)\n"); |
4617 | 517 aim_conn_kill(od->sess, &conn); |
2086 | 518 } |
519 } else { | |
4617 | 520 if (aim_get_command(od->sess, conn) >= 0) { |
521 aim_rxdispatch(od->sess); | |
6029 | 522 if (od->killme) { |
523 gaim_debug(GAIM_DEBUG_ERROR, "oscar", "Waiting to be destroyed\n"); | |
524 return; | |
525 } | |
2086 | 526 } else { |
527 if ((conn->type == AIM_CONN_TYPE_BOS) || | |
4617 | 528 !(aim_getconn_type(od->sess, AIM_CONN_TYPE_BOS))) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
529 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
530 "major connection error\n"); |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
531 gaim_connection_error(gc, _("Disconnected.")); |
2086 | 532 } else if (conn->type == AIM_CONN_TYPE_CHAT) { |
533 struct chat_connection *c = find_oscar_chat_by_conn(gc, conn); | |
5420 | 534 char *buf; |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
535 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
536 "disconnected from chat room %s\n", c->name); |
2086 | 537 c->conn = NULL; |
538 if (c->inpa > 0) | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
539 gaim_input_remove(c->inpa); |
2086 | 540 c->inpa = 0; |
541 c->fd = -1; | |
4617 | 542 aim_conn_kill(od->sess, &conn); |
5420 | 543 buf = g_strdup_printf(_("You have been disconnected from chat room %s."), c->name); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
544 gaim_notify_error(gc, NULL, buf, NULL); |
5420 | 545 g_free(buf); |
2086 | 546 } else if (conn->type == AIM_CONN_TYPE_CHATNAV) { |
4617 | 547 if (od->cnpa > 0) |
548 gaim_input_remove(od->cnpa); | |
549 od->cnpa = 0; | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
550 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
551 "removing chatnav input watcher\n"); |
4617 | 552 while (od->create_rooms) { |
553 struct create_room *cr = od->create_rooms->data; | |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
554 g_free(cr->name); |
4617 | 555 od->create_rooms = |
556 g_slist_remove(od->create_rooms, cr); | |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
557 g_free(cr); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
558 gaim_notify_error(gc, NULL, |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
559 _("Chat is currently unavailable"), |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
560 NULL); |
2086 | 561 } |
4617 | 562 aim_conn_kill(od->sess, &conn); |
2086 | 563 } else if (conn->type == AIM_CONN_TYPE_AUTH) { |
4617 | 564 if (od->paspa > 0) |
565 gaim_input_remove(od->paspa); | |
566 od->paspa = 0; | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
567 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
568 "removing authconn input watcher\n"); |
4617 | 569 aim_conn_kill(od->sess, &conn); |
3694 | 570 } else if (conn->type == AIM_CONN_TYPE_EMAIL) { |
4617 | 571 if (od->emlpa > 0) |
572 gaim_input_remove(od->emlpa); | |
573 od->emlpa = 0; | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
574 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
575 "removing email input watcher\n"); |
4617 | 576 aim_conn_kill(od->sess, &conn); |
4804 | 577 } else if (conn->type == AIM_CONN_TYPE_ICON) { |
578 if (od->icopa > 0) | |
579 gaim_input_remove(od->icopa); | |
580 od->icopa = 0; | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
581 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
582 "removing icon input watcher\n"); |
4804 | 583 aim_conn_kill(od->sess, &conn); |
2086 | 584 } else if (conn->type == AIM_CONN_TYPE_RENDEZVOUS) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
585 if (conn->subtype == AIM_CONN_SUBTYPE_OFT_DIRECTIM) |
4617 | 586 gaim_odc_disconnect(od->sess, conn); |
587 aim_conn_kill(od->sess, &conn); | |
2086 | 588 } else { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
589 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
590 "holy crap! generic connection error! %hu\n", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
591 conn->type); |
4617 | 592 aim_conn_kill(od->sess, &conn); |
2086 | 593 } |
594 } | |
595 } | |
596 } | |
597 } | |
598 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
599 static void oscar_debug(aim_session_t *sess, int level, const char *format, va_list va) { |
2086 | 600 char *s = g_strdup_vprintf(format, va); |
601 char buf[256]; | |
602 char *t; | |
5575 | 603 GaimConnection *gc = sess->aux_data; |
604 | |
605 g_snprintf(buf, sizeof(buf), "%s %d: ", gaim_account_get_username(gaim_connection_get_account(gc)), level); | |
2086 | 606 t = g_strconcat(buf, s, NULL); |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
607 gaim_debug(GAIM_DEBUG_INFO, "oscar", t); |
2086 | 608 if (t[strlen(t)-1] != '\n') |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
609 gaim_debug(GAIM_DEBUG_INFO, NULL, "\n"); |
2086 | 610 g_free(t); |
611 g_free(s); | |
612 } | |
613 | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
614 static void oscar_login_connect(gpointer data, gint source, GaimInputCondition cond) |
2086 | 615 { |
5575 | 616 GaimConnection *gc = data; |
4617 | 617 struct oscar_data *od; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
618 aim_session_t *sess; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
619 aim_conn_t *conn; |
2086 | 620 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
621 if (!g_list_find(gaim_connections_get_all(), gc)) { |
2086 | 622 close(source); |
623 return; | |
624 } | |
625 | |
4617 | 626 od = gc->proto_data; |
627 sess = od->sess; | |
2086 | 628 conn = aim_getconn_type_all(sess, AIM_CONN_TYPE_AUTH); |
4366 | 629 |
630 conn->fd = source; | |
2086 | 631 |
632 if (source < 0) { | |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
633 gaim_connection_error(gc, _("Couldn't connect to host")); |
2086 | 634 return; |
635 } | |
636 | |
637 aim_conn_completeconnect(sess, conn); | |
4617 | 638 gc->inpa = gaim_input_add(conn->fd, GAIM_INPUT_READ, oscar_callback, conn); |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
639 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
640 "Password sent, waiting for response\n"); |
2086 | 641 } |
642 | |
5575 | 643 static void oscar_login(GaimAccount *account) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
644 aim_session_t *sess; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
645 aim_conn_t *conn; |
2086 | 646 char buf[256]; |
5575 | 647 GaimConnection *gc = gaim_account_get_connection(account); |
4617 | 648 struct oscar_data *od = gc->proto_data = g_new0(struct oscar_data, 1); |
2086 | 649 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
650 gaim_debug(GAIM_DEBUG_MISC, "oscar", "oscar_login: gc = %p\n", gc); |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
651 |
5575 | 652 if (isdigit(*(gaim_account_get_username(account)))) { |
4617 | 653 od->icq = TRUE; |
2706
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
654 } else { |
6622 | 655 gc->flags |= GAIM_CONNECTION_HTML; |
656 gc->flags |= GAIM_CONNECTION_AUTO_RESP; | |
2706
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
657 } |
5836 | 658 od->buddyinfo = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, oscar_free_buddyinfo); |
2086 | 659 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
660 sess = g_new0(aim_session_t, 1); |
2086 | 661 |
662 aim_session_init(sess, AIM_SESS_FLAGS_NONBLOCKCONNECT, 0); | |
663 aim_setdebuggingcb(sess, oscar_debug); | |
664 | |
665 /* we need an immediate queue because we don't use a while-loop to | |
666 * see if things need to be sent. */ | |
667 aim_tx_setenqueue(sess, AIM_TX_IMMEDIATE, NULL); | |
4617 | 668 od->sess = sess; |
2086 | 669 sess->aux_data = gc; |
670 | |
671 conn = aim_newconn(sess, AIM_CONN_TYPE_AUTH, NULL); | |
672 if (conn == NULL) { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
673 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
674 "internal connection error\n"); |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
675 gaim_connection_error(gc, _("Unable to login to AIM")); |
2086 | 676 return; |
677 } | |
678 | |
5575 | 679 g_snprintf(buf, sizeof(buf), _("Signon: %s"), gaim_account_get_username(account)); |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
680 gaim_connection_update_progress(gc, buf, 2, 5); |
2086 | 681 |
4649 | 682 aim_conn_addhandler(sess, conn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNERR, gaim_connerr, 0); |
2086 | 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; | |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5679
diff
changeset
|
687 if (gaim_proxy_connect(account, gaim_account_get_string(account, "server", FAIM_LOGIN_SERVER), |
5575 | 688 gaim_account_get_int(account, "port", FAIM_LOGIN_PORT), |
689 oscar_login_connect, gc) < 0) { | |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
690 gaim_connection_error(gc, _("Couldn't connect to host")); |
2086 | 691 return; |
692 } | |
5575 | 693 aim_request_login(sess, conn, gaim_account_get_username(account)); |
694 } | |
695 | |
696 static void oscar_close(GaimConnection *gc) { | |
4617 | 697 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
698 | |
699 while (od->oscar_chats) { | |
700 struct chat_connection *n = od->oscar_chats->data; | |
2086 | 701 if (n->inpa > 0) |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
702 gaim_input_remove(n->inpa); |
2086 | 703 g_free(n->name); |
704 g_free(n->show); | |
4617 | 705 od->oscar_chats = g_slist_remove(od->oscar_chats, n); |
2086 | 706 g_free(n); |
707 } | |
4617 | 708 while (od->direct_ims) { |
709 struct direct_im *n = od->direct_ims->data; | |
2086 | 710 if (n->watcher > 0) |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
711 gaim_input_remove(n->watcher); |
4617 | 712 od->direct_ims = g_slist_remove(od->direct_ims, n); |
2086 | 713 g_free(n); |
714 } | |
4617 | 715 /* BBB */ |
716 while (od->file_transfers) { | |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
717 GaimXfer *xfer; |
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
718 xfer = (GaimXfer *)od->file_transfers->data; |
4617 | 719 gaim_xfer_destroy(xfer); |
3630 | 720 } |
4804 | 721 while (od->requesticon) { |
722 char *sn = od->requesticon->data; | |
723 od->requesticon = g_slist_remove(od->requesticon, sn); | |
724 free(sn); | |
725 } | |
4738 | 726 g_hash_table_destroy(od->buddyinfo); |
4617 | 727 while (od->create_rooms) { |
728 struct create_room *cr = od->create_rooms->data; | |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
729 g_free(cr->name); |
4617 | 730 od->create_rooms = g_slist_remove(od->create_rooms, cr); |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
731 g_free(cr); |
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
732 } |
4617 | 733 if (od->email) |
734 g_free(od->email); | |
735 if (od->newp) | |
736 g_free(od->newp); | |
737 if (od->oldp) | |
738 g_free(od->oldp); | |
2086 | 739 if (gc->inpa > 0) |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
740 gaim_input_remove(gc->inpa); |
4617 | 741 if (od->cnpa > 0) |
742 gaim_input_remove(od->cnpa); | |
743 if (od->paspa > 0) | |
744 gaim_input_remove(od->paspa); | |
745 if (od->emlpa > 0) | |
746 gaim_input_remove(od->emlpa); | |
4804 | 747 if (od->icopa > 0) |
748 gaim_input_remove(od->icopa); | |
6907 | 749 if (od->icontimer > 0) |
4832 | 750 g_source_remove(od->icontimer); |
5968 | 751 if (od->getblisttimer) |
752 g_source_remove(od->getblisttimer); | |
4617 | 753 aim_session_kill(od->sess); |
754 g_free(od->sess); | |
755 od->sess = NULL; | |
2086 | 756 g_free(gc->proto_data); |
757 gc->proto_data = NULL; | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
758 gaim_debug(GAIM_DEBUG_INFO, "oscar", "Signed off.\n"); |
2086 | 759 } |
760 | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
761 static void oscar_bos_connect(gpointer data, gint source, GaimInputCondition cond) { |
5575 | 762 GaimConnection *gc = data; |
4617 | 763 struct oscar_data *od; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
764 aim_session_t *sess; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
765 aim_conn_t *bosconn; |
2086 | 766 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
767 if (!g_list_find(gaim_connections_get_all(), gc)) { |
2086 | 768 close(source); |
769 return; | |
770 } | |
771 | |
4617 | 772 od = gc->proto_data; |
773 sess = od->sess; | |
774 bosconn = od->conn; | |
4366 | 775 bosconn->fd = source; |
2086 | 776 |
777 if (source < 0) { | |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
778 gaim_connection_error(gc, _("Could Not Connect")); |
2086 | 779 return; |
780 } | |
781 | |
782 aim_conn_completeconnect(sess, bosconn); | |
4617 | 783 gc->inpa = gaim_input_add(bosconn->fd, GAIM_INPUT_READ, oscar_callback, bosconn); |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
784 gaim_connection_update_progress(gc, |
5577
7ed9999926af
[gaim-migrate @ 5981]
Christian Hammond <chipx86@chipx86.com>
parents:
5576
diff
changeset
|
785 _("Connection established, cookie sent"), 4, 5); |
2086 | 786 } |
787 | |
4617 | 788 /* BBB */ |
4656 | 789 /* |
790 * This little area in oscar.c is the nexus of file transfer code, | |
791 * so I wrote a little explanation of what happens. I am such a | |
792 * ninja. | |
793 * | |
794 * The series of events for a file send is: | |
795 * -Create xfer and call gaim_xfer_request (this happens in oscar_ask_sendfile) | |
796 * -User chooses a file and oscar_xfer_init is called. It establishs a | |
797 * listening socket, then asks the remote user to connect to us (and | |
798 * gives them the file name, port, IP, etc.) | |
799 * -They connect to us and we send them an AIM_CB_OFT_PROMPT (this happens | |
800 * in oscar_sendfile_estblsh) | |
801 * -They send us an AIM_CB_OFT_ACK and then we start sending data | |
802 * -When we finish, they send us an AIM_CB_OFT_DONE and they close the | |
803 * connection. | |
804 * -We get drunk because file transfer kicks ass. | |
805 * | |
806 * The series of events for a file receive is: | |
807 * -Create xfer and call gaim_xfer request (this happens in incomingim_chan2) | |
808 * -Gaim user selects file to name and location to save file to and | |
809 * oscar_xfer_init is called | |
810 * -It connects to the remote user using the IP they gave us earlier | |
811 * -After connecting, they send us an AIM_CB_OFT_PROMPT. In reply, we send | |
812 * them an AIM_CB_OFT_ACK. | |
813 * -They begin to send us lots of raw data. | |
814 * -When they finish sending data we send an AIM_CB_OFT_DONE and then close | |
815 * the connectionn. | |
816 */ | |
817 static void oscar_sendfile_connected(gpointer data, gint source, GaimInputCondition condition); | |
818 | |
819 /* XXX - This function is pretty ugly */ | |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
820 static void oscar_xfer_init(GaimXfer *xfer) |
4656 | 821 { |
5146 | 822 struct aim_oft_info *oft_info = xfer->data; |
5575 | 823 GaimConnection *gc = oft_info->sess->aux_data; |
5146 | 824 struct oscar_data *od = gc->proto_data; |
4656 | 825 |
826 if (gaim_xfer_get_type(xfer) == GAIM_XFER_SEND) { | |
827 int i; | |
828 | |
829 xfer->filename = g_path_get_basename(xfer->local_filename); | |
5146 | 830 strncpy(oft_info->fh.name, xfer->filename, 64); |
831 oft_info->fh.totsize = gaim_xfer_get_size(xfer); | |
832 oft_info->fh.size = gaim_xfer_get_size(xfer); | |
833 oft_info->fh.checksum = aim_oft_checksum_file(xfer->local_filename); | |
4656 | 834 |
835 /* | |
5146 | 836 * First try the port specified earlier (5190). If that fails, |
837 * increment by 1 and try again. | |
4656 | 838 */ |
5146 | 839 aim_sendfile_listen(od->sess, oft_info); |
840 for (i=0; (i<5 && !oft_info->conn); i++) { | |
841 xfer->local_port = oft_info->port = oft_info->port + 1; | |
842 aim_sendfile_listen(od->sess, oft_info); | |
4656 | 843 } |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
844 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
845 "port is %d, ip is %s\n", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
846 xfer->local_port, oft_info->clientip); |
5146 | 847 if (oft_info->conn) { |
848 xfer->watcher = gaim_input_add(oft_info->conn->fd, GAIM_INPUT_READ, oscar_callback, oft_info->conn); | |
849 aim_im_sendch2_sendfile_ask(od->sess, oft_info); | |
850 aim_conn_addhandler(od->sess, oft_info->conn, AIM_CB_FAM_OFT, AIM_CB_OFT_ESTABLISHED, oscar_sendfile_estblsh, 0); | |
4656 | 851 } else { |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
852 gaim_notify_error(gc, NULL, _("File Transfer Aborted"), |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
853 _("Unable to establish listener socket.")); |
4656 | 854 /* XXX - The below line causes a crash because the transfer is canceled before the "Ok" callback on the file selection thing exists, I think */ |
4675
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4666
diff
changeset
|
855 /* gaim_xfer_cancel_remote(xfer); */ |
4656 | 856 } |
857 } else if (gaim_xfer_get_type(xfer) == GAIM_XFER_RECEIVE) { | |
5146 | 858 oft_info->conn = aim_newconn(od->sess, AIM_CONN_TYPE_RENDEZVOUS, NULL); |
859 if (oft_info->conn) { | |
860 oft_info->conn->subtype = AIM_CONN_SUBTYPE_OFT_SENDFILE; | |
861 aim_conn_addhandler(od->sess, oft_info->conn, AIM_CB_FAM_OFT, AIM_CB_OFT_PROMPT, oscar_sendfile_prompt, 0); | |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5679
diff
changeset
|
862 oft_info->conn->fd = xfer->fd = gaim_proxy_connect(gaim_connection_get_account(gc), xfer->remote_ip, xfer->remote_port, |
5575 | 863 oscar_sendfile_connected, xfer); |
4656 | 864 if (xfer->fd == -1) { |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
865 gaim_notify_error(gc, NULL, _("File Transfer Aborted"), |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
866 _("Unable to establish file descriptor.")); |
4675
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4666
diff
changeset
|
867 /* gaim_xfer_cancel_remote(xfer); */ |
4656 | 868 } |
869 } else { | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
870 gaim_notify_error(gc, NULL, _("File Transfer Aborted"), |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
871 _("Unable to create new connection.")); |
4675
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4666
diff
changeset
|
872 /* gaim_xfer_cancel_remote(xfer); */ |
4656 | 873 /* Try a different port? Ask them to connect to us? */ |
874 } | |
875 | |
876 } | |
877 } | |
878 | |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
879 static void oscar_xfer_start(GaimXfer *xfer) |
4656 | 880 { |
5146 | 881 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
882 gaim_debug(GAIM_DEBUG_INFO, "oscar", "AAA - in oscar_xfer_start\n"); |
4656 | 883 /* I'm pretty sure we don't need to do jack here. Nor Jill. */ |
884 } | |
885 | |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
886 static void oscar_xfer_end(GaimXfer *xfer) |
4656 | 887 { |
5146 | 888 struct aim_oft_info *oft_info = xfer->data; |
5575 | 889 GaimConnection *gc = oft_info->sess->aux_data; |
5146 | 890 struct oscar_data *od = gc->proto_data; |
4656 | 891 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
892 gaim_debug(GAIM_DEBUG_INFO, "oscar", "AAA - in oscar_xfer_end\n"); |
5146 | 893 |
894 if (gaim_xfer_get_type(xfer) == GAIM_XFER_RECEIVE) { | |
895 oft_info->fh.nrecvd = gaim_xfer_get_bytes_sent(xfer); | |
896 aim_oft_sendheader(oft_info->sess, AIM_CB_OFT_DONE, oft_info); | |
897 } | |
898 | |
899 aim_conn_kill(oft_info->sess, &oft_info->conn); | |
900 aim_oft_destroyinfo(oft_info); | |
4656 | 901 xfer->data = NULL; |
5146 | 902 od->file_transfers = g_slist_remove(od->file_transfers, xfer); |
4656 | 903 } |
904 | |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
905 static void oscar_xfer_cancel_send(GaimXfer *xfer) |
4675
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4666
diff
changeset
|
906 { |
5146 | 907 struct aim_oft_info *oft_info = xfer->data; |
5575 | 908 GaimConnection *gc = oft_info->sess->aux_data; |
5146 | 909 struct oscar_data *od = gc->proto_data; |
4763 | 910 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
911 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
912 "AAA - in oscar_xfer_cancel_send\n"); |
5146 | 913 |
914 aim_im_sendch2_sendfile_cancel(oft_info->sess, oft_info); | |
915 | |
916 aim_conn_kill(oft_info->sess, &oft_info->conn); | |
917 aim_oft_destroyinfo(oft_info); | |
4763 | 918 xfer->data = NULL; |
5146 | 919 od->file_transfers = g_slist_remove(od->file_transfers, xfer); |
4675
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4666
diff
changeset
|
920 } |
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4666
diff
changeset
|
921 |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
922 static void oscar_xfer_cancel_recv(GaimXfer *xfer) |
4656 | 923 { |
5146 | 924 struct aim_oft_info *oft_info = xfer->data; |
5575 | 925 GaimConnection *gc = oft_info->sess->aux_data; |
5146 | 926 struct oscar_data *od = gc->proto_data; |
4656 | 927 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
928 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
929 "AAA - in oscar_xfer_cancel_recv\n"); |
5146 | 930 |
931 aim_im_sendch2_sendfile_cancel(oft_info->sess, oft_info); | |
932 | |
933 aim_conn_kill(oft_info->sess, &oft_info->conn); | |
934 aim_oft_destroyinfo(oft_info); | |
4656 | 935 xfer->data = NULL; |
5146 | 936 od->file_transfers = g_slist_remove(od->file_transfers, xfer); |
4656 | 937 } |
938 | |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
939 static void oscar_xfer_ack(GaimXfer *xfer, const char *buffer, size_t size) |
4656 | 940 { |
5146 | 941 struct aim_oft_info *oft_info = xfer->data; |
4656 | 942 |
943 if (gaim_xfer_get_type(xfer) == GAIM_XFER_SEND) { | |
944 /* | |
945 * If we're done sending, intercept the socket from the core ft code | |
946 * and wait for the other guy to send the "done" OFT packet. | |
947 */ | |
948 if (gaim_xfer_get_bytes_remaining(xfer) <= 0) { | |
949 gaim_input_remove(xfer->watcher); | |
5146 | 950 xfer->watcher = gaim_input_add(xfer->fd, GAIM_INPUT_READ, oscar_callback, oft_info->conn); |
4656 | 951 xfer->fd = 0; |
952 gaim_xfer_set_completed(xfer, TRUE); | |
953 } | |
954 } else if (gaim_xfer_get_type(xfer) == GAIM_XFER_RECEIVE) { | |
5146 | 955 /* Update our rolling checksum. Like Walmart, yo. */ |
956 oft_info->fh.recvcsum = aim_oft_checksum_chunk(buffer, size, oft_info->fh.recvcsum); | |
4656 | 957 } |
958 } | |
959 | |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
960 static GaimXfer *oscar_find_xfer_by_cookie(GSList *fts, const char *ck) |
4656 | 961 { |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
962 GaimXfer *xfer; |
5146 | 963 struct aim_oft_info *oft_info; |
4656 | 964 |
965 while (fts) { | |
966 xfer = fts->data; | |
5146 | 967 oft_info = xfer->data; |
968 | |
969 if (oft_info && !strcmp(ck, oft_info->cookie)) | |
4656 | 970 return xfer; |
971 | |
972 fts = g_slist_next(fts); | |
973 } | |
974 | |
975 return NULL; | |
976 } | |
977 | |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
978 static GaimXfer *oscar_find_xfer_by_conn(GSList *fts, aim_conn_t *conn) |
4656 | 979 { |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
980 GaimXfer *xfer; |
5146 | 981 struct aim_oft_info *oft_info; |
4656 | 982 |
983 while (fts) { | |
984 xfer = fts->data; | |
5146 | 985 oft_info = xfer->data; |
986 | |
987 if (oft_info && (conn == oft_info->conn)) | |
4656 | 988 return xfer; |
989 | |
990 fts = g_slist_next(fts); | |
991 } | |
992 | |
993 return NULL; | |
994 } | |
995 | |
5575 | 996 static void oscar_ask_sendfile(GaimConnection *gc, const char *destsn) { |
3630 | 997 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
998 GaimXfer *xfer; |
5146 | 999 struct aim_oft_info *oft_info; |
3752 | 1000 |
4617 | 1001 /* You want to send a file to someone else, you're so generous */ |
1002 | |
1003 /* Build the file transfer handle */ | |
5575 | 1004 xfer = gaim_xfer_new(gaim_connection_get_account(gc), GAIM_XFER_SEND, destsn); |
4617 | 1005 xfer->local_port = 5190; |
1006 | |
5146 | 1007 /* Create the oscar-specific data */ |
1008 oft_info = aim_oft_createinfo(od->sess, NULL, destsn, xfer->local_ip, xfer->local_port, 0, 0, NULL); | |
1009 xfer->data = oft_info; | |
1010 | |
4617 | 1011 /* Setup our I/O op functions */ |
1012 gaim_xfer_set_init_fnc(xfer, oscar_xfer_init); | |
1013 gaim_xfer_set_start_fnc(xfer, oscar_xfer_start); | |
1014 gaim_xfer_set_end_fnc(xfer, oscar_xfer_end); | |
4675
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4666
diff
changeset
|
1015 gaim_xfer_set_cancel_send_fnc(xfer, oscar_xfer_cancel_send); |
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4666
diff
changeset
|
1016 gaim_xfer_set_cancel_recv_fnc(xfer, oscar_xfer_cancel_recv); |
4656 | 1017 gaim_xfer_set_ack_fnc(xfer, oscar_xfer_ack); |
4617 | 1018 |
1019 /* Keep track of this transfer for later */ | |
1020 od->file_transfers = g_slist_append(od->file_transfers, xfer); | |
1021 | |
1022 /* Now perform the request */ | |
1023 gaim_xfer_request(xfer); | |
3630 | 1024 } |
1025 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1026 static int gaim_parse_auth_resp(aim_session_t *sess, aim_frame_t *fr, ...) { |
6029 | 1027 GaimConnection *gc = sess->aux_data; |
1028 struct oscar_data *od = gc->proto_data; | |
1029 GaimAccount *account = gc->account; | |
1030 aim_conn_t *bosconn; | |
1031 char *host; int port; | |
1032 int i, rc; | |
2086 | 1033 va_list ap; |
2704 | 1034 struct aim_authresp_info *info; |
6029 | 1035 |
5575 | 1036 port = gaim_account_get_int(account, "port", FAIM_LOGIN_PORT); |
2086 | 1037 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1038 va_start(ap, fr); |
2704 | 1039 info = va_arg(ap, struct aim_authresp_info *); |
2086 | 1040 va_end(ap); |
1041 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1042 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1043 "inside auth_resp (Screen name: %s)\n", info->sn); |
2704 | 1044 |
4293 | 1045 if (info->errorcode || !info->bosip || !info->cookielen || !info->cookie) { |
4056 | 1046 char buf[256]; |
2704 | 1047 switch (info->errorcode) { |
2086 | 1048 case 0x05: |
1049 /* Incorrect nick/password */ | |
6498 | 1050 gc->wants_to_die = TRUE; |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
1051 gaim_connection_error(gc, _("Incorrect nickname or password.")); |
2086 | 1052 break; |
1053 case 0x11: | |
1054 /* Suspended account */ | |
6498 | 1055 gc->wants_to_die = TRUE; |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
1056 gaim_connection_error(gc, _("Your account is currently suspended.")); |
2086 | 1057 break; |
3498 | 1058 case 0x14: |
1059 /* service temporarily unavailable */ | |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
1060 gaim_connection_error(gc, _("The AOL Instant Messenger service is temporarily unavailable.")); |
3498 | 1061 break; |
2086 | 1062 case 0x18: |
1063 /* connecting too frequently */ | |
6498 | 1064 gc->wants_to_die = TRUE; |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
1065 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.")); |
2086 | 1066 break; |
1067 case 0x1c: | |
1068 /* client too old */ | |
6498 | 1069 gc->wants_to_die = TRUE; |
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6350
diff
changeset
|
1070 g_snprintf(buf, sizeof(buf), _("The client version you are using is too old. Please upgrade at %s"), GAIM_WEBSITE); |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
1071 gaim_connection_error(gc, buf); |
2086 | 1072 break; |
1073 default: | |
6623 | 1074 gaim_connection_error(gc, _("Authentication failed")); |
2086 | 1075 break; |
1076 } | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1077 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1078 "Login Error Code 0x%04hx\n", info->errorcode); |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1079 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1080 "Error URL: %s\n", info->errorurl); |
2086 | 1081 od->killme = TRUE; |
1082 return 1; | |
1083 } | |
1084 | |
1085 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1086 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1087 "Reg status: %hu\n", info->regstatus); |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1088 |
2704 | 1089 if (info->email) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1090 gaim_debug(GAIM_DEBUG_MISC, "oscar", "Email: %s\n", info->email); |
2086 | 1091 } else { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1092 gaim_debug(GAIM_DEBUG_MISC, "oscar", "Email is NULL\n"); |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1093 } |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1094 |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1095 gaim_debug(GAIM_DEBUG_MISC, "oscar", "BOSIP: %s\n", info->bosip); |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1096 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1097 "Closing auth connection...\n"); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1098 aim_conn_kill(sess, &fr->conn); |
2086 | 1099 |
1100 bosconn = aim_newconn(sess, AIM_CONN_TYPE_BOS, NULL); | |
1101 if (bosconn == NULL) { | |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
1102 gaim_connection_error(gc, _("Internal Error")); |
2086 | 1103 od->killme = TRUE; |
1104 return 0; | |
1105 } | |
1106 | |
4649 | 1107 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNERR, gaim_connerr, 0); |
2675 | 1108 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNINITDONE, conninitdone_bos, 0); |
2086 | 1109 aim_conn_addhandler(sess, bosconn, 0x0009, 0x0003, gaim_bosrights, 0); |
1110 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_ACK, AIM_CB_ACK_ACK, NULL, 0); | |
1111 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_GEN, AIM_CB_GEN_REDIRECT, gaim_handle_redirect, 0); | |
2993 | 1112 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_LOC, AIM_CB_LOC_RIGHTSINFO, gaim_parse_locaterights, 0); |
2086 | 1113 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_BUD, AIM_CB_BUD_RIGHTSINFO, gaim_parse_buddyrights, 0); |
1114 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_BUD, AIM_CB_BUD_ONCOMING, gaim_parse_oncoming, 0); | |
1115 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_BUD, AIM_CB_BUD_OFFGOING, gaim_parse_offgoing, 0); | |
1116 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_INCOMING, gaim_parse_incoming_im, 0); | |
1117 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_LOC, AIM_CB_LOC_ERROR, gaim_parse_locerr, 0); | |
1118 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_MISSEDCALL, gaim_parse_misses, 0); | |
3212 | 1119 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_CLIENTAUTORESP, gaim_parse_clientauto, 0); |
2086 | 1120 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_GEN, AIM_CB_GEN_RATECHANGE, gaim_parse_ratechange, 0); |
1121 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_GEN, AIM_CB_GEN_EVIL, gaim_parse_evilnotify, 0); | |
1122 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_LOK, AIM_CB_LOK_ERROR, gaim_parse_searcherror, 0); | |
1123 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_LOK, 0x0003, gaim_parse_searchreply, 0); | |
1124 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_ERROR, gaim_parse_msgerr, 0); | |
3595 | 1125 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_MTN, gaim_parse_mtn, 0); |
7011 | 1126 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_LOC, AIM_CB_LOC_USERINFO, gaim_parse_userinfo, 0); |
2086 | 1127 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_ACK, gaim_parse_msgack, 0); |
1128 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_GEN, AIM_CB_GEN_MOTD, gaim_parse_motd, 0); | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
1129 aim_conn_addhandler(sess, bosconn, 0x0004, 0x0005, gaim_icbm_param_info, 0); |
2086 | 1130 aim_conn_addhandler(sess, bosconn, 0x0001, 0x0001, gaim_parse_genericerr, 0); |
1131 aim_conn_addhandler(sess, bosconn, 0x0003, 0x0001, gaim_parse_genericerr, 0); | |
1132 aim_conn_addhandler(sess, bosconn, 0x0009, 0x0001, gaim_parse_genericerr, 0); | |
1133 aim_conn_addhandler(sess, bosconn, 0x0001, 0x001f, gaim_memrequest, 0); | |
2507
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
1134 aim_conn_addhandler(sess, bosconn, 0x0001, 0x000f, gaim_selfinfo, 0); |
5844 | 1135 aim_conn_addhandler(sess, bosconn, 0x0001, 0x0021, oscar_icon_req,0); |
2706
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
1136 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_ICQ, AIM_CB_ICQ_OFFLINEMSG, gaim_offlinemsg, 0); |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
1137 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_ICQ, AIM_CB_ICQ_OFFLINEMSGCOMPLETE, gaim_offlinemsgdone, 0); |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
1138 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_POP, 0x0002, gaim_popup, 0); |
4759 | 1139 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_ICQ, AIM_CB_ICQ_ALIAS, gaim_icqalias, 0); |
4624 | 1140 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_ICQ, AIM_CB_ICQ_INFO, gaim_icqinfo, 0); |
4230 | 1141 #ifndef NOSSI |
4642 | 1142 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_ERROR, gaim_ssi_parseerr, 0); |
2991 | 1143 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_RIGHTSINFO, gaim_ssi_parserights, 0); |
1144 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_LIST, gaim_ssi_parselist, 0); | |
1145 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_NOLIST, gaim_ssi_parselist, 0); | |
4230 | 1146 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_SRVACK, gaim_ssi_parseack, 0); |
1147 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_RECVAUTH, gaim_ssi_authgiven, 0); | |
1148 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_RECVAUTHREQ, gaim_ssi_authrequest, 0); | |
1149 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_RECVAUTHREP, gaim_ssi_authreply, 0); | |
1150 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_ADDED, gaim_ssi_gotadded, 0); | |
1151 #endif | |
4508
4c40fccbd7c9
[gaim-migrate @ 4784]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
1152 |
2086 | 1153 ((struct oscar_data *)gc->proto_data)->conn = bosconn; |
2704 | 1154 for (i = 0; i < (int)strlen(info->bosip); i++) { |
1155 if (info->bosip[i] == ':') { | |
1156 port = atoi(&(info->bosip[i+1])); | |
2086 | 1157 break; |
1158 } | |
1159 } | |
2704 | 1160 host = g_strndup(info->bosip, i); |
2086 | 1161 bosconn->status |= AIM_CONN_STATUS_INPROGRESS; |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5679
diff
changeset
|
1162 rc = gaim_proxy_connect(gc->account, host, port, oscar_bos_connect, gc); |
2086 | 1163 g_free(host); |
4366 | 1164 if (rc < 0) { |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
1165 gaim_connection_error(gc, _("Could Not Connect")); |
2086 | 1166 od->killme = TRUE; |
1167 return 0; | |
1168 } | |
4293 | 1169 aim_sendcookie(sess, bosconn, info->cookielen, info->cookie); |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1170 gaim_input_remove(gc->inpa); |
2704 | 1171 |
2086 | 1172 return 1; |
1173 } | |
1174 | |
1175 struct pieceofcrap { | |
5575 | 1176 GaimConnection *gc; |
2086 | 1177 unsigned long offset; |
1178 unsigned long len; | |
1179 char *modname; | |
1180 int fd; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1181 aim_conn_t *conn; |
2086 | 1182 unsigned int inpa; |
1183 }; | |
1184 | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1185 static void damn_you(gpointer data, gint source, GaimInputCondition c) |
2086 | 1186 { |
1187 struct pieceofcrap *pos = data; | |
1188 struct oscar_data *od = pos->gc->proto_data; | |
1189 char in = '\0'; | |
1190 int x = 0; | |
1191 unsigned char m[17]; | |
1192 | |
1193 while (read(pos->fd, &in, 1) == 1) { | |
1194 if (in == '\n') | |
1195 x++; | |
1196 else if (in != '\r') | |
1197 x = 0; | |
1198 if (x == 2) | |
1199 break; | |
1200 in = '\0'; | |
1201 } | |
1202 if (in != '\n') { | |
4056 | 1203 char buf[256]; |
1204 g_snprintf(buf, sizeof(buf), _("You may be disconnected shortly. You may want to use TOC until " | |
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6350
diff
changeset
|
1205 "this is fixed. Check %s for updates."), GAIM_WEBSITE); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
1206 gaim_notify_warning(pos->gc, NULL, |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
1207 _("Gaim was Unable to get a valid AIM login hash."), |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
1208 buf); |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1209 gaim_input_remove(pos->inpa); |
2086 | 1210 close(pos->fd); |
1211 g_free(pos); | |
1212 return; | |
1213 } | |
1214 read(pos->fd, m, 16); | |
1215 m[16] = '\0'; | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1216 gaim_debug(GAIM_DEBUG_MISC, "oscar", "Sending hash: "); |
2086 | 1217 for (x = 0; x < 16; x++) |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1218 gaim_debug(GAIM_DEBUG_MISC, NULL, "%02hhx ", (unsigned char)m[x]); |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1219 |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1220 gaim_debug(GAIM_DEBUG_MISC, NULL, "\n"); |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1221 gaim_input_remove(pos->inpa); |
2086 | 1222 close(pos->fd); |
1223 aim_sendmemblock(od->sess, pos->conn, 0, 16, m, AIM_SENDMEMBLOCK_FLAG_ISHASH); | |
1224 g_free(pos); | |
1225 } | |
1226 | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1227 static void straight_to_hell(gpointer data, gint source, GaimInputCondition cond) { |
2086 | 1228 struct pieceofcrap *pos = data; |
5420 | 1229 gchar *buf; |
2086 | 1230 |
4366 | 1231 pos->fd = source; |
1232 | |
2086 | 1233 if (source < 0) { |
5420 | 1234 buf = g_strdup_printf(_("You may be disconnected shortly. You may want to use TOC until " |
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6350
diff
changeset
|
1235 "this is fixed. Check %s for updates."), GAIM_WEBSITE); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
1236 gaim_notify_warning(pos->gc, NULL, |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
1237 _("Gaim was Unable to get a valid AIM login hash."), |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
1238 buf); |
5420 | 1239 g_free(buf); |
2086 | 1240 if (pos->modname) |
1241 g_free(pos->modname); | |
1242 g_free(pos); | |
1243 return; | |
1244 } | |
1245 | |
5420 | 1246 buf = g_strdup_printf("GET " AIMHASHDATA "?offset=%ld&len=%ld&modname=%s HTTP/1.0\n\n", |
2086 | 1247 pos->offset, pos->len, pos->modname ? pos->modname : ""); |
1248 write(pos->fd, buf, strlen(buf)); | |
5420 | 1249 g_free(buf); |
2086 | 1250 if (pos->modname) |
1251 g_free(pos->modname); | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1252 pos->inpa = gaim_input_add(pos->fd, GAIM_INPUT_READ, damn_you, pos); |
2086 | 1253 return; |
1254 } | |
1255 | |
1256 /* size of icbmui.ocm, the largest module in AIM 3.5 */ | |
1257 #define AIM_MAX_FILE_SIZE 98304 | |
1258 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1259 int gaim_memrequest(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 1260 va_list ap; |
1261 struct pieceofcrap *pos; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1262 fu32_t offset, len; |
2086 | 1263 char *modname; |
1264 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1265 va_start(ap, fr); |
4200 | 1266 offset = va_arg(ap, fu32_t); |
1267 len = va_arg(ap, fu32_t); | |
2086 | 1268 modname = va_arg(ap, char *); |
1269 va_end(ap); | |
1270 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1271 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
5556 | 1272 "offset: %u, len: %u, file: %s\n", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1273 offset, len, (modname ? modname : "aim.exe")); |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1274 |
2086 | 1275 if (len == 0) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1276 gaim_debug(GAIM_DEBUG_MISC, "oscar", "len is 0, hashing NULL\n"); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1277 aim_sendmemblock(sess, fr->conn, offset, len, NULL, |
2086 | 1278 AIM_SENDMEMBLOCK_FLAG_ISREQUEST); |
1279 return 1; | |
1280 } | |
1281 /* uncomment this when you're convinced it's right. remember, it's been wrong before. | |
1282 if (offset > AIM_MAX_FILE_SIZE || len > AIM_MAX_FILE_SIZE) { | |
1283 char *buf; | |
1284 int i = 8; | |
1285 if (modname) | |
1286 i += strlen(modname); | |
1287 buf = g_malloc(i); | |
1288 i = 0; | |
1289 if (modname) { | |
1290 memcpy(buf, modname, strlen(modname)); | |
1291 i += strlen(modname); | |
1292 } | |
1293 buf[i++] = offset & 0xff; | |
1294 buf[i++] = (offset >> 8) & 0xff; | |
1295 buf[i++] = (offset >> 16) & 0xff; | |
1296 buf[i++] = (offset >> 24) & 0xff; | |
1297 buf[i++] = len & 0xff; | |
1298 buf[i++] = (len >> 8) & 0xff; | |
1299 buf[i++] = (len >> 16) & 0xff; | |
1300 buf[i++] = (len >> 24) & 0xff; | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1301 gaim_debug(GAIM_DEBUG_MISC, "oscar", "len + offset is invalid, " |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1302 "hashing request\n"); |
2086 | 1303 aim_sendmemblock(sess, command->conn, offset, i, buf, AIM_SENDMEMBLOCK_FLAG_ISREQUEST); |
1304 g_free(buf); | |
1305 return 1; | |
1306 } | |
1307 */ | |
1308 | |
1309 pos = g_new0(struct pieceofcrap, 1); | |
1310 pos->gc = sess->aux_data; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1311 pos->conn = fr->conn; |
2086 | 1312 |
1313 pos->offset = offset; | |
1314 pos->len = len; | |
1315 pos->modname = modname ? g_strdup(modname) : NULL; | |
1316 | |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5679
diff
changeset
|
1317 if (gaim_proxy_connect(pos->gc->account, "gaim.sourceforge.net", 80, straight_to_hell, pos) != 0) { |
4056 | 1318 char buf[256]; |
2086 | 1319 if (pos->modname) |
1320 g_free(pos->modname); | |
1321 g_free(pos); | |
4056 | 1322 g_snprintf(buf, sizeof(buf), _("You may be disconnected shortly. You may want to use TOC until " |
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6350
diff
changeset
|
1323 "this is fixed. Check %s for updates."), GAIM_WEBSITE); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
1324 gaim_notify_warning(pos->gc, NULL, |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
1325 _("Gaim was Unable to get a valid login hash."), |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
1326 buf); |
2086 | 1327 } |
1328 | |
1329 return 1; | |
1330 } | |
1331 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1332 static int gaim_parse_login(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 1333 GaimConnection *gc = sess->aux_data; |
5591
74a0e79ad627
[gaim-migrate @ 5995]
Christian Hammond <chipx86@chipx86.com>
parents:
5580
diff
changeset
|
1334 GaimAccount *account = gaim_connection_get_account(gc); |
5575 | 1335 GaimAccount *ac = gaim_connection_get_account(gc); |
4617 | 1336 struct oscar_data *od = gc->proto_data; |
7011 | 1337 va_list ap; |
1338 char *key; | |
2086 | 1339 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1340 va_start(ap, fr); |
2086 | 1341 key = va_arg(ap, char *); |
1342 va_end(ap); | |
1343 | |
4617 | 1344 if (od->icq) { |
3458 | 1345 struct client_info_s info = CLIENTINFO_ICQ_KNOWNGOOD; |
5591
74a0e79ad627
[gaim-migrate @ 5995]
Christian Hammond <chipx86@chipx86.com>
parents:
5580
diff
changeset
|
1346 aim_send_login(sess, fr->conn, gaim_account_get_username(ac), |
74a0e79ad627
[gaim-migrate @ 5995]
Christian Hammond <chipx86@chipx86.com>
parents:
5580
diff
changeset
|
1347 gaim_account_get_password(account), &info, key); |
3458 | 1348 } else { |
1349 #if 0 | |
1350 struct client_info_s info = {"gaim", 4, 1, 2010, "us", "en", 0x0004, 0x0000, 0x04b}; | |
1351 #endif | |
1352 struct client_info_s info = CLIENTINFO_AIM_KNOWNGOOD; | |
5591
74a0e79ad627
[gaim-migrate @ 5995]
Christian Hammond <chipx86@chipx86.com>
parents:
5580
diff
changeset
|
1353 aim_send_login(sess, fr->conn, gaim_account_get_username(ac), |
74a0e79ad627
[gaim-migrate @ 5995]
Christian Hammond <chipx86@chipx86.com>
parents:
5580
diff
changeset
|
1354 gaim_account_get_password(account), &info, key); |
3458 | 1355 } |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1356 |
2086 | 1357 return 1; |
1358 } | |
1359 | |
2675 | 1360 static int conninitdone_chat(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 1361 GaimConnection *gc = sess->aux_data; |
2647 | 1362 struct chat_connection *chatcon; |
1363 static int id = 1; | |
1364 | |
6905 | 1365 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_CHT, 0x0001, gaim_parse_genericerr, 0); |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
1366 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_CHT, AIM_CB_CHT_USERJOIN, gaim_conv_chat_join, 0); |
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
1367 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_CHT, AIM_CB_CHT_USERLEAVE, gaim_conv_chat_leave, 0); |
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
1368 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_CHT, AIM_CB_CHT_ROOMINFOUPDATE, gaim_conv_chat_info_update, 0); |
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
1369 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_CHT, AIM_CB_CHT_INCOMINGMSG, gaim_conv_chat_incoming_msg, 0); |
2675 | 1370 |
2672 | 1371 aim_clientready(sess, fr->conn); |
2675 | 1372 |
2647 | 1373 chatcon = find_oscar_chat_by_conn(gc, fr->conn); |
1374 chatcon->id = id; | |
1375 chatcon->cnv = serv_got_joined_chat(gc, id++, chatcon->show); | |
1376 | |
1377 return 1; | |
1378 } | |
1379 | |
2675 | 1380 static int conninitdone_chatnav(aim_session_t *sess, aim_frame_t *fr, ...) { |
1381 | |
2821
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1382 aim_conn_addhandler(sess, fr->conn, 0x000d, 0x0001, gaim_parse_genericerr, 0); |
2647 | 1383 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_CTN, AIM_CB_CTN_INFO, gaim_chatnav_info, 0); |
2675 | 1384 |
1385 aim_clientready(sess, fr->conn); | |
1386 | |
1387 aim_chatnav_reqrights(sess, fr->conn); | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1388 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1389 return 1; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1390 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1391 |
3694 | 1392 static int conninitdone_email(aim_session_t *sess, aim_frame_t *fr, ...) { |
1393 | |
1394 aim_conn_addhandler(sess, fr->conn, 0x0018, 0x0001, gaim_parse_genericerr, 0); | |
1395 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_EML, AIM_CB_EML_MAILSTATUS, gaim_email_parseupdate, 0); | |
1396 | |
1397 aim_email_sendcookies(sess, fr->conn); | |
1398 aim_email_activate(sess, fr->conn); | |
1399 aim_clientready(sess, fr->conn); | |
1400 | |
1401 return 1; | |
1402 } | |
1403 | |
4804 | 1404 static int conninitdone_icon(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 1405 GaimConnection *gc = sess->aux_data; |
4804 | 1406 struct oscar_data *od = gc->proto_data; |
1407 | |
1408 aim_conn_addhandler(sess, fr->conn, 0x0018, 0x0001, gaim_parse_genericerr, 0); | |
1409 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_ICO, AIM_CB_ICO_ERROR, gaim_icon_error, 0); | |
1410 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_ICO, AIM_CB_ICO_RESPONSE, gaim_icon_parseicon, 0); | |
1411 | |
1412 aim_clientready(sess, fr->conn); | |
1413 | |
4823 | 1414 od->iconconnecting = FALSE; |
1415 | |
4804 | 1416 if (od->icontimer) |
1417 g_source_remove(od->icontimer); | |
1418 od->icontimer = g_timeout_add(100, gaim_icon_timerfunc, gc); | |
1419 | |
1420 return 1; | |
1421 } | |
1422 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1423 static void oscar_chatnav_connect(gpointer data, gint source, GaimInputCondition cond) { |
5575 | 1424 GaimConnection *gc = data; |
4617 | 1425 struct oscar_data *od; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1426 aim_session_t *sess; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1427 aim_conn_t *tstconn; |
2086 | 1428 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
1429 if (!g_list_find(gaim_connections_get_all(), gc)) { |
2086 | 1430 close(source); |
1431 return; | |
1432 } | |
1433 | |
4617 | 1434 od = gc->proto_data; |
1435 sess = od->sess; | |
2086 | 1436 tstconn = aim_getconn_type_all(sess, AIM_CONN_TYPE_CHATNAV); |
4366 | 1437 tstconn->fd = source; |
2086 | 1438 |
1439 if (source < 0) { | |
1440 aim_conn_kill(sess, &tstconn); | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1441 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1442 "unable to connect to chatnav server\n"); |
2086 | 1443 return; |
1444 } | |
1445 | |
1446 aim_conn_completeconnect(sess, tstconn); | |
4617 | 1447 od->cnpa = gaim_input_add(tstconn->fd, GAIM_INPUT_READ, oscar_callback, tstconn); |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1448 gaim_debug(GAIM_DEBUG_INFO, "oscar", "chatnav: connected\n"); |
2086 | 1449 } |
1450 | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1451 static void oscar_auth_connect(gpointer data, gint source, GaimInputCondition cond) |
2086 | 1452 { |
5575 | 1453 GaimConnection *gc = data; |
4617 | 1454 struct oscar_data *od; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1455 aim_session_t *sess; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1456 aim_conn_t *tstconn; |
2086 | 1457 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
1458 if (!g_list_find(gaim_connections_get_all(), gc)) { |
2086 | 1459 close(source); |
1460 return; | |
1461 } | |
1462 | |
4617 | 1463 od = gc->proto_data; |
1464 sess = od->sess; | |
2086 | 1465 tstconn = aim_getconn_type_all(sess, AIM_CONN_TYPE_AUTH); |
4366 | 1466 tstconn->fd = source; |
2086 | 1467 |
1468 if (source < 0) { | |
1469 aim_conn_kill(sess, &tstconn); | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1470 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1471 "unable to connect to authorizer\n"); |
2086 | 1472 return; |
1473 } | |
1474 | |
1475 aim_conn_completeconnect(sess, tstconn); | |
4617 | 1476 od->paspa = gaim_input_add(tstconn->fd, GAIM_INPUT_READ, oscar_callback, tstconn); |
6905 | 1477 gaim_debug(GAIM_DEBUG_INFO, "oscar", "admin: connected\n"); |
2086 | 1478 } |
1479 | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1480 static void oscar_chat_connect(gpointer data, gint source, GaimInputCondition cond) |
2086 | 1481 { |
1482 struct chat_connection *ccon = data; | |
5575 | 1483 GaimConnection *gc = ccon->gc; |
4617 | 1484 struct oscar_data *od; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1485 aim_session_t *sess; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1486 aim_conn_t *tstconn; |
2086 | 1487 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
1488 if (!g_list_find(gaim_connections_get_all(), gc)) { |
2086 | 1489 close(source); |
1490 g_free(ccon->show); | |
1491 g_free(ccon->name); | |
1492 g_free(ccon); | |
1493 return; | |
1494 } | |
1495 | |
4617 | 1496 od = gc->proto_data; |
1497 sess = od->sess; | |
2086 | 1498 tstconn = ccon->conn; |
4366 | 1499 tstconn->fd = source; |
2086 | 1500 |
1501 if (source < 0) { | |
1502 aim_conn_kill(sess, &tstconn); | |
1503 g_free(ccon->show); | |
1504 g_free(ccon->name); | |
1505 g_free(ccon); | |
1506 return; | |
1507 } | |
1508 | |
1509 aim_conn_completeconnect(sess, ccon->conn); | |
4617 | 1510 ccon->inpa = gaim_input_add(tstconn->fd, GAIM_INPUT_READ, oscar_callback, tstconn); |
1511 od->oscar_chats = g_slist_append(od->oscar_chats, ccon); | |
2086 | 1512 } |
1513 | |
3694 | 1514 static void oscar_email_connect(gpointer data, gint source, GaimInputCondition cond) { |
5575 | 1515 GaimConnection *gc = data; |
4617 | 1516 struct oscar_data *od; |
3694 | 1517 aim_session_t *sess; |
1518 aim_conn_t *tstconn; | |
1519 | |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
1520 if (!g_list_find(gaim_connections_get_all(), gc)) { |
3694 | 1521 close(source); |
1522 return; | |
1523 } | |
1524 | |
4617 | 1525 od = gc->proto_data; |
1526 sess = od->sess; | |
3694 | 1527 tstconn = aim_getconn_type_all(sess, AIM_CONN_TYPE_EMAIL); |
4366 | 1528 tstconn->fd = source; |
3694 | 1529 |
1530 if (source < 0) { | |
1531 aim_conn_kill(sess, &tstconn); | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1532 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1533 "unable to connect to email server\n"); |
3694 | 1534 return; |
1535 } | |
1536 | |
1537 aim_conn_completeconnect(sess, tstconn); | |
4617 | 1538 od->emlpa = gaim_input_add(tstconn->fd, GAIM_INPUT_READ, oscar_callback, tstconn); |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1539 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1540 "email: connected\n"); |
3694 | 1541 } |
1542 | |
4804 | 1543 static void oscar_icon_connect(gpointer data, gint source, GaimInputCondition cond) { |
5575 | 1544 GaimConnection *gc = data; |
4804 | 1545 struct oscar_data *od; |
1546 aim_session_t *sess; | |
1547 aim_conn_t *tstconn; | |
1548 | |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
1549 if (!g_list_find(gaim_connections_get_all(), gc)) { |
4804 | 1550 close(source); |
1551 return; | |
1552 } | |
1553 | |
1554 od = gc->proto_data; | |
1555 sess = od->sess; | |
1556 tstconn = aim_getconn_type_all(sess, AIM_CONN_TYPE_ICON); | |
1557 tstconn->fd = source; | |
1558 | |
1559 if (source < 0) { | |
1560 aim_conn_kill(sess, &tstconn); | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1561 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1562 "unable to connect to icon server\n"); |
4804 | 1563 return; |
1564 } | |
1565 | |
1566 aim_conn_completeconnect(sess, tstconn); | |
1567 od->icopa = gaim_input_add(tstconn->fd, GAIM_INPUT_READ, oscar_callback, tstconn); | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1568 gaim_debug(GAIM_DEBUG_INFO, "oscar", "icon: connected\n"); |
4804 | 1569 } |
1570 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1571 /* Hrmph. I don't know how to make this look better. --mid */ |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1572 static int gaim_handle_redirect(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 1573 GaimConnection *gc = sess->aux_data; |
1574 GaimAccount *account = gaim_connection_get_account(gc); | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1575 aim_conn_t *tstconn; |
4452 | 1576 int i; |
2086 | 1577 char *host; |
1578 int port; | |
4821 | 1579 va_list ap; |
1580 struct aim_redirect_data *redir; | |
2086 | 1581 |
5575 | 1582 port = gaim_account_get_int(account, "port", FAIM_LOGIN_PORT); |
2086 | 1583 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1584 va_start(ap, fr); |
2821
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1585 redir = va_arg(ap, struct aim_redirect_data *); |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1586 va_end(ap); |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1587 |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1588 for (i = 0; i < (int)strlen(redir->ip); i++) { |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1589 if (redir->ip[i] == ':') { |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1590 port = atoi(&(redir->ip[i+1])); |
2086 | 1591 break; |
1592 } | |
1593 } | |
2821
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1594 host = g_strndup(redir->ip, i); |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1595 |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1596 switch(redir->group) { |
2086 | 1597 case 0x7: /* Authorizer */ |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1598 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1599 "Reconnecting with authorizor...\n"); |
2086 | 1600 tstconn = aim_newconn(sess, AIM_CONN_TYPE_AUTH, NULL); |
1601 if (tstconn == NULL) { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1602 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1603 "unable to reconnect with authorizer\n"); |
2086 | 1604 g_free(host); |
1605 return 1; | |
1606 } | |
4649 | 1607 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNERR, gaim_connerr, 0); |
2675 | 1608 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNINITDONE, conninitdone_admin, 0); |
2086 | 1609 |
1610 tstconn->status |= AIM_CONN_STATUS_INPROGRESS; | |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5679
diff
changeset
|
1611 if (gaim_proxy_connect(account, host, port, oscar_auth_connect, gc) != 0) { |
2086 | 1612 aim_conn_kill(sess, &tstconn); |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1613 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1614 "unable to reconnect with authorizer\n"); |
2086 | 1615 g_free(host); |
1616 return 1; | |
1617 } | |
4293 | 1618 aim_sendcookie(sess, tstconn, redir->cookielen, redir->cookie); |
4194 | 1619 break; |
1620 | |
2086 | 1621 case 0xd: /* ChatNav */ |
1622 tstconn = aim_newconn(sess, AIM_CONN_TYPE_CHATNAV, NULL); | |
1623 if (tstconn == NULL) { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1624 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1625 "unable to connect to chatnav server\n"); |
2086 | 1626 g_free(host); |
1627 return 1; | |
1628 } | |
4649 | 1629 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNERR, gaim_connerr, 0); |
2675 | 1630 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNINITDONE, conninitdone_chatnav, 0); |
2086 | 1631 |
1632 tstconn->status |= AIM_CONN_STATUS_INPROGRESS; | |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5679
diff
changeset
|
1633 if (gaim_proxy_connect(account, host, port, oscar_chatnav_connect, gc) != 0) { |
2086 | 1634 aim_conn_kill(sess, &tstconn); |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1635 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1636 "unable to connect to chatnav server\n"); |
2086 | 1637 g_free(host); |
1638 return 1; | |
1639 } | |
4293 | 1640 aim_sendcookie(sess, tstconn, redir->cookielen, redir->cookie); |
4194 | 1641 break; |
1642 | |
1643 case 0xe: { /* Chat */ | |
2086 | 1644 struct chat_connection *ccon; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1645 |
2086 | 1646 tstconn = aim_newconn(sess, AIM_CONN_TYPE_CHAT, NULL); |
1647 if (tstconn == NULL) { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1648 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1649 "unable to connect to chat server\n"); |
2086 | 1650 g_free(host); |
1651 return 1; | |
1652 } | |
1653 | |
4649 | 1654 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNERR, gaim_connerr, 0); |
2675 | 1655 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNINITDONE, conninitdone_chat, 0); |
1656 | |
2086 | 1657 ccon = g_new0(struct chat_connection, 1); |
1658 ccon->conn = tstconn; | |
1659 ccon->gc = gc; | |
1660 ccon->fd = -1; | |
2821
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1661 ccon->name = g_strdup(redir->chat.room); |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1662 ccon->exchange = redir->chat.exchange; |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1663 ccon->instance = redir->chat.instance; |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1664 ccon->show = extract_name(redir->chat.room); |
4634 | 1665 |
2086 | 1666 ccon->conn->status |= AIM_CONN_STATUS_INPROGRESS; |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5679
diff
changeset
|
1667 if (gaim_proxy_connect(account, host, port, oscar_chat_connect, ccon) != 0) { |
2086 | 1668 aim_conn_kill(sess, &tstconn); |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1669 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1670 "unable to connect to chat server\n"); |
2086 | 1671 g_free(host); |
1672 g_free(ccon->show); | |
1673 g_free(ccon->name); | |
1674 g_free(ccon); | |
1675 return 1; | |
1676 } | |
4293 | 1677 aim_sendcookie(sess, tstconn, redir->cookielen, redir->cookie); |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1678 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1679 "Connected to chat room %s exchange %hu\n", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1680 ccon->name, ccon->exchange); |
4194 | 1681 } break; |
3694 | 1682 |
4804 | 1683 case 0x0010: { /* icon */ |
1684 if (!(tstconn = aim_newconn(sess, AIM_CONN_TYPE_ICON, NULL))) { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1685 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1686 "unable to connect to icon server\n"); |
4804 | 1687 g_free(host); |
1688 return 1; | |
1689 } | |
1690 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNERR, gaim_connerr, 0); | |
1691 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNINITDONE, conninitdone_icon, 0); | |
1692 | |
1693 tstconn->status |= AIM_CONN_STATUS_INPROGRESS; | |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5679
diff
changeset
|
1694 if (gaim_proxy_connect(account, host, port, oscar_icon_connect, gc) != 0) { |
4804 | 1695 aim_conn_kill(sess, &tstconn); |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1696 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1697 "unable to connect to icon server\n"); |
4804 | 1698 g_free(host); |
1699 return 1; | |
1700 } | |
1701 aim_sendcookie(sess, tstconn, redir->cookielen, redir->cookie); | |
1702 } break; | |
1703 | |
3694 | 1704 case 0x0018: { /* email */ |
1705 if (!(tstconn = aim_newconn(sess, AIM_CONN_TYPE_EMAIL, NULL))) { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1706 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1707 "unable to connect to email server\n"); |
3694 | 1708 g_free(host); |
1709 return 1; | |
1710 } | |
4649 | 1711 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNERR, gaim_connerr, 0); |
3694 | 1712 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNINITDONE, conninitdone_email, 0); |
1713 | |
1714 tstconn->status |= AIM_CONN_STATUS_INPROGRESS; | |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5679
diff
changeset
|
1715 if (gaim_proxy_connect(account, host, port, oscar_email_connect, gc) != 0) { |
3694 | 1716 aim_conn_kill(sess, &tstconn); |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1717 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1718 "unable to connect to email server\n"); |
3694 | 1719 g_free(host); |
1720 return 1; | |
1721 } | |
4293 | 1722 aim_sendcookie(sess, tstconn, redir->cookielen, redir->cookie); |
3694 | 1723 } break; |
1724 | |
2086 | 1725 default: /* huh? */ |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1726 gaim_debug(GAIM_DEBUG_WARNING, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1727 "got redirect for unknown service 0x%04hx\n", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1728 redir->group); |
2086 | 1729 break; |
1730 } | |
1731 | |
1732 g_free(host); | |
1733 return 1; | |
1734 } | |
1735 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1736 static int gaim_parse_oncoming(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 1737 GaimConnection *gc = sess->aux_data; |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
1738 struct oscar_data *od = gc->proto_data; |
4738 | 1739 struct buddyinfo *bi; |
2993 | 1740 time_t time_idle = 0, signon = 0; |
1741 int type = 0; | |
1742 int caps = 0; | |
2086 | 1743 va_list ap; |
4738 | 1744 aim_userinfo_t *info; |
4194 | 1745 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1746 va_start(ap, fr); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
1747 info = va_arg(ap, aim_userinfo_t *); |
2086 | 1748 va_end(ap); |
1749 | |
2993 | 1750 if (info->present & AIM_USERINFO_PRESENT_CAPABILITIES) |
1751 caps = info->capabilities; | |
3267 | 1752 if (info->flags & AIM_FLAG_ACTIVEBUDDY) |
1753 type |= UC_AB; | |
6318 | 1754 if (caps & AIM_CAPS_HIPTOP) |
1755 type |= UC_HIPTOP; | |
3267 | 1756 |
4766 | 1757 if (info->present & AIM_USERINFO_PRESENT_FLAGS) { |
1758 if (info->flags & AIM_FLAG_UNCONFIRMED) | |
1759 type |= UC_UNCONFIRMED; | |
1760 if (info->flags & AIM_FLAG_ADMINISTRATOR) | |
1761 type |= UC_ADMIN; | |
1762 if (info->flags & AIM_FLAG_AOL) | |
1763 type |= UC_AOL; | |
1764 if (info->flags & AIM_FLAG_FREE) | |
1765 type |= UC_NORMAL; | |
1766 if (info->flags & AIM_FLAG_AWAY) | |
1767 type |= UC_UNAVAILABLE; | |
1768 if (info->flags & AIM_FLAG_WIRELESS) | |
1769 type |= UC_WIRELESS; | |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
1770 } |
2993 | 1771 if (info->present & AIM_USERINFO_PRESENT_ICQEXTSTATUS) { |
3595 | 1772 type = (info->icqinfo.status << 16); |
3013 | 1773 if (!(info->icqinfo.status & AIM_ICQ_STATE_CHAT) && |
1774 (info->icqinfo.status != AIM_ICQ_STATE_NORMAL)) { | |
2993 | 1775 type |= UC_UNAVAILABLE; |
3013 | 1776 } |
2993 | 1777 } |
1778 | |
7141 | 1779 if (caps & AIM_CAPS_ICQ_DIRECT) |
1780 caps ^= AIM_CAPS_ICQ_DIRECT; | |
2993 | 1781 |
1782 if (info->present & AIM_USERINFO_PRESENT_IDLE) { | |
2086 | 1783 time(&time_idle); |
1784 time_idle -= info->idletime*60; | |
2993 | 1785 } |
1786 | |
5836 | 1787 if (info->present & AIM_USERINFO_PRESENT_ONLINESINCE) |
1788 signon = info->onlinesince; | |
1789 else if (info->present & AIM_USERINFO_PRESENT_SESSIONLEN) | |
2993 | 1790 signon = time(NULL) - info->sessionlen; |
2086 | 1791 |
5575 | 1792 if (!aim_sncmp(gaim_account_get_username(gaim_connection_get_account(gc)), info->sn)) |
1793 gaim_connection_set_display_name(gc, info->sn); | |
2305
0371b905baef
[gaim-migrate @ 2315]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2303
diff
changeset
|
1794 |
7107
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7106
diff
changeset
|
1795 bi = g_hash_table_lookup(od->buddyinfo, gaim_normalize(info->sn)); |
4738 | 1796 if (!bi) { |
1797 bi = g_new0(struct buddyinfo, 1); | |
7107
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7106
diff
changeset
|
1798 g_hash_table_insert(od->buddyinfo, g_strdup(gaim_normalize(info->sn)), bi); |
4738 | 1799 } |
4739 | 1800 bi->typingnot = FALSE; |
1801 bi->ico_informed = FALSE; | |
6857 | 1802 bi->ipaddr = info->icqinfo.ipaddr; |
1803 | |
1804 /* Available message stuff */ | |
6292 | 1805 free(bi->availmsg); |
7011 | 1806 if (info->avail != NULL) |
1807 if (info->avail_encoding) { | |
1808 gchar *enc = g_strdup_printf("charset=\"%s\"", info->avail_encoding); | |
1809 bi->availmsg = oscar_encoding_to_utf8(enc, info->avail, info->avail_len); | |
6292 | 1810 g_free(enc); |
1811 } else { | |
1812 /* No explicit encoding means utf8. Yay. */ | |
7011 | 1813 bi->availmsg = g_strdup(info->avail); |
6292 | 1814 } |
5837 | 1815 else |
6292 | 1816 bi->availmsg = NULL; |
4732 | 1817 |
4804 | 1818 /* Server stored icon stuff */ |
4853 | 1819 if (info->iconcsumlen) { |
7125 | 1820 const char *filename = NULL, *saved_b16 = NULL; |
1821 char *b16 = NULL; | |
7093 | 1822 GaimBuddy *b = NULL; |
4853 | 1823 |
7106
db6bd3e794d8
[gaim-migrate @ 7671]
Christian Hammond <chipx86@chipx86.com>
parents:
7098
diff
changeset
|
1824 b16 = gaim_base16_encode(info->iconcsum, info->iconcsumlen); |
4853 | 1825 b = gaim_find_buddy(gc->account, info->sn); |
7093 | 1826 /* |
1827 * If for some reason the checksum is valid, but cached file is not.. | |
1828 * we want to know. | |
1829 */ | |
1830 filename = gaim_buddy_get_setting(b, "buddy_icon"); | |
1831 if (filename != NULL) { | |
1832 if (g_file_test(filename, G_FILE_TEST_EXISTS)) | |
1833 saved_b16 = gaim_buddy_get_setting(b, "icon_checksum"); | |
1834 } else | |
1835 saved_b16 = NULL; | |
7054
7c04a0775918
[gaim-migrate @ 7617]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7045
diff
changeset
|
1836 |
4853 | 1837 if (!b16 || !saved_b16 || strcmp(b16, saved_b16)) { |
1838 GSList *cur = od->requesticon; | |
1839 while (cur && aim_sncmp((char *)cur->data, info->sn)) | |
1840 cur = cur->next; | |
1841 if (!cur) { | |
7107
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7106
diff
changeset
|
1842 od->requesticon = g_slist_append(od->requesticon, strdup(gaim_normalize(info->sn))); |
4853 | 1843 if (od->icontimer) |
1844 g_source_remove(od->icontimer); | |
1845 od->icontimer = g_timeout_add(500, gaim_icon_timerfunc, gc); | |
1846 } | |
1847 } | |
6053 | 1848 g_free(b16); |
4853 | 1849 } |
1850 | |
5628 | 1851 serv_got_update(gc, info->sn, 1, (info->warnlevel/10.0) + 0.5, signon, time_idle, type); |
2086 | 1852 |
1853 return 1; | |
1854 } | |
1855 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1856 static int gaim_parse_offgoing(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 1857 GaimConnection *gc = sess->aux_data; |
5837 | 1858 struct oscar_data *od = gc->proto_data; |
2086 | 1859 va_list ap; |
4739 | 1860 aim_userinfo_t *info; |
2086 | 1861 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1862 va_start(ap, fr); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
1863 info = va_arg(ap, aim_userinfo_t *); |
2086 | 1864 va_end(ap); |
1865 | |
4732 | 1866 serv_got_update(gc, info->sn, 0, 0, 0, 0, 0); |
2086 | 1867 |
7107
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7106
diff
changeset
|
1868 g_hash_table_remove(od->buddyinfo, gaim_normalize(info->sn)); |
5837 | 1869 |
2086 | 1870 return 1; |
1871 } | |
1872 | |
3730 | 1873 static void cancel_direct_im(struct ask_direct *d) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1874 gaim_debug(GAIM_DEBUG_INFO, "oscar", "Freeing DirectIM prompts.\n"); |
2086 | 1875 |
1876 g_free(d->sn); | |
1877 g_free(d); | |
1878 } | |
1879 | |
4617 | 1880 static void oscar_odc_callback(gpointer data, gint source, GaimInputCondition condition) { |
2086 | 1881 struct direct_im *dim = data; |
5575 | 1882 GaimConnection *gc = dim->gc; |
2086 | 1883 struct oscar_data *od = gc->proto_data; |
5679 | 1884 GaimConversation *cnv; |
2086 | 1885 char buf[256]; |
3008 | 1886 struct sockaddr name; |
1887 socklen_t name_len = 1; | |
1888 | |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
1889 if (!g_list_find(gaim_connections_get_all(), gc)) { |
2086 | 1890 g_free(dim); |
1891 return; | |
1892 } | |
1893 | |
1894 if (source < 0) { | |
1895 g_free(dim); | |
1896 return; | |
1897 } | |
1898 | |
4366 | 1899 dim->conn->fd = source; |
2086 | 1900 aim_conn_completeconnect(od->sess, dim->conn); |
6640
314111e7b601
[gaim-migrate @ 7165]
Christian Hammond <chipx86@chipx86.com>
parents:
6623
diff
changeset
|
1901 cnv = gaim_conversation_new(GAIM_CONV_IM, dim->gc->account, dim->name); |
3008 | 1902 |
1903 /* This is the best way to see if we're connected or not */ | |
1904 if (getpeername(source, &name, &name_len) == 0) { | |
1905 g_snprintf(buf, sizeof buf, _("Direct IM with %s established"), dim->name); | |
1906 dim->connected = TRUE; | |
6982 | 1907 gaim_conversation_write(cnv, NULL, buf, GAIM_MESSAGE_SYSTEM, time(NULL)); |
3008 | 1908 } |
2086 | 1909 od->direct_ims = g_slist_append(od->direct_ims, dim); |
3008 | 1910 |
4617 | 1911 dim->watcher = gaim_input_add(dim->conn->fd, GAIM_INPUT_READ, oscar_callback, dim->conn); |
2086 | 1912 } |
1913 | |
4617 | 1914 /* BBB */ |
3952 | 1915 /* |
4617 | 1916 * This is called after a remote AIM user has connected to us. We |
1917 * want to do some voodoo with the socket file descriptors, add a | |
1918 * callback or two, and then send the AIM_CB_OFT_PROMPT. | |
3952 | 1919 */ |
4656 | 1920 static int oscar_sendfile_estblsh(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 1921 GaimConnection *gc = sess->aux_data; |
3630 | 1922 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
1923 GaimXfer *xfer; |
5146 | 1924 struct aim_oft_info *oft_info; |
3630 | 1925 va_list ap; |
1926 aim_conn_t *conn, *listenerconn; | |
4656 | 1927 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1928 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1929 "AAA - in oscar_sendfile_estblsh\n"); |
3630 | 1930 va_start(ap, fr); |
1931 conn = va_arg(ap, aim_conn_t *); | |
1932 listenerconn = va_arg(ap, aim_conn_t *); | |
1933 va_end(ap); | |
1934 | |
4617 | 1935 if (!(xfer = oscar_find_xfer_by_conn(od->file_transfers, listenerconn))) |
1936 return 1; | |
1937 | |
5146 | 1938 if (!(oft_info = xfer->data)) |
4617 | 1939 return 1; |
1940 | |
3630 | 1941 /* Stop watching listener conn; watch transfer conn instead */ |
4617 | 1942 gaim_input_remove(xfer->watcher); |
3630 | 1943 aim_conn_kill(sess, &listenerconn); |
1944 | |
5146 | 1945 oft_info->conn = conn; |
1946 xfer->fd = oft_info->conn->fd; | |
1947 | |
1948 aim_conn_addhandler(sess, oft_info->conn, AIM_CB_FAM_OFT, AIM_CB_OFT_ACK, oscar_sendfile_ack, 0); | |
1949 aim_conn_addhandler(sess, oft_info->conn, AIM_CB_FAM_OFT, AIM_CB_OFT_DONE, oscar_sendfile_done, 0); | |
1950 xfer->watcher = gaim_input_add(oft_info->conn->fd, GAIM_INPUT_READ, oscar_callback, oft_info->conn); | |
4617 | 1951 |
1952 /* Inform the other user that we are connected and ready to transfer */ | |
5146 | 1953 aim_oft_sendheader(sess, AIM_CB_OFT_PROMPT, oft_info); |
3630 | 1954 |
1955 return 0; | |
1956 } | |
1957 | |
3952 | 1958 /* |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5679
diff
changeset
|
1959 * This is the gaim callback passed to gaim_proxy_connect when connecting to another AIM |
4617 | 1960 * user in order to transfer a file. |
3952 | 1961 */ |
4617 | 1962 static void oscar_sendfile_connected(gpointer data, gint source, GaimInputCondition condition) { |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
1963 GaimXfer *xfer; |
5146 | 1964 struct aim_oft_info *oft_info; |
4656 | 1965 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1966 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1967 "AAA - in oscar_sendfile_connected\n"); |
4617 | 1968 if (!(xfer = data)) |
1969 return; | |
5146 | 1970 if (!(oft_info = xfer->data)) |
3630 | 1971 return; |
4617 | 1972 if (source < 0) |
1973 return; | |
1974 | |
1975 xfer->fd = source; | |
5146 | 1976 oft_info->conn->fd = source; |
1977 | |
1978 aim_conn_completeconnect(oft_info->sess, oft_info->conn); | |
1979 xfer->watcher = gaim_input_add(xfer->fd, GAIM_INPUT_READ, oscar_callback, oft_info->conn); | |
4617 | 1980 |
1981 /* Inform the other user that we are connected and ready to transfer */ | |
5146 | 1982 aim_im_sendch2_sendfile_accept(oft_info->sess, oft_info); |
4617 | 1983 |
1984 return; | |
3630 | 1985 } |
1986 | |
3952 | 1987 /* |
4617 | 1988 * This is called when a buddy sends us some file info. This happens when they |
1989 * are sending a file to you, and you have just established a connection to them. | |
4650 | 1990 * You should send them the exact same info except use the real cookie. We also |
4617 | 1991 * get like totally ready to like, receive the file, kay? |
3952 | 1992 */ |
4617 | 1993 static int oscar_sendfile_prompt(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 1994 GaimConnection *gc = sess->aux_data; |
4617 | 1995 struct oscar_data *od = gc->proto_data; |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
1996 GaimXfer *xfer; |
5146 | 1997 struct aim_oft_info *oft_info; |
4617 | 1998 va_list ap; |
1999 aim_conn_t *conn; | |
2000 fu8_t *cookie; | |
2001 struct aim_fileheader_t *fh; | |
4656 | 2002 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2003 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2004 "AAA - in oscar_sendfile_prompt\n"); |
4617 | 2005 va_start(ap, fr); |
2006 conn = va_arg(ap, aim_conn_t *); | |
2007 cookie = va_arg(ap, fu8_t *); | |
2008 fh = va_arg(ap, struct aim_fileheader_t *); | |
2009 va_end(ap); | |
2010 | |
2011 if (!(xfer = oscar_find_xfer_by_conn(od->file_transfers, conn))) | |
2012 return 1; | |
2013 | |
5146 | 2014 if (!(oft_info = xfer->data)) |
4617 | 2015 return 1; |
2016 | |
2017 /* We want to stop listening with a normal thingy */ | |
2018 gaim_input_remove(xfer->watcher); | |
2019 xfer->watcher = 0; | |
2020 | |
5146 | 2021 /* They sent us some information about the file they're sending */ |
2022 memcpy(&oft_info->fh, fh, sizeof(*fh)); | |
2023 | |
2024 /* Fill in the cookie */ | |
2025 memcpy(&oft_info->fh.bcookie, oft_info->cookie, 8); | |
2026 | |
4617 | 2027 /* XXX - convert the name from UTF-8 to UCS-2 if necessary, and pass the encoding to the call below */ |
5146 | 2028 aim_oft_sendheader(oft_info->sess, AIM_CB_OFT_ACK, oft_info); |
4617 | 2029 gaim_xfer_start(xfer, xfer->fd, NULL, 0); |
2030 | |
2031 return 0; | |
3630 | 2032 } |
2033 | |
3952 | 2034 /* |
4657 | 2035 * We are sending a file to someone else. They have just acknowledged our |
4617 | 2036 * prompt, so we want to start sending data like there's no tomorrow. |
3952 | 2037 */ |
4617 | 2038 static int oscar_sendfile_ack(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 2039 GaimConnection *gc = sess->aux_data; |
4617 | 2040 struct oscar_data *od = gc->proto_data; |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
2041 GaimXfer *xfer; |
4617 | 2042 va_list ap; |
2043 aim_conn_t *conn; | |
2044 fu8_t *cookie; | |
2045 struct aim_fileheader_t *fh; | |
4656 | 2046 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2047 gaim_debug(GAIM_DEBUG_INFO, "oscar", "AAA - in oscar_sendfile_ack\n"); |
4617 | 2048 va_start(ap, fr); |
2049 conn = va_arg(ap, aim_conn_t *); | |
2050 cookie = va_arg(ap, fu8_t *); | |
2051 fh = va_arg(ap, struct aim_fileheader_t *); | |
2052 va_end(ap); | |
2053 | |
2054 if (!(xfer = oscar_find_xfer_by_cookie(od->file_transfers, cookie))) | |
2055 return 1; | |
2056 | |
4656 | 2057 /* We want to stop listening with a normal thingy */ |
2058 gaim_input_remove(xfer->watcher); | |
2059 xfer->watcher = 0; | |
2060 | |
4617 | 2061 gaim_xfer_start(xfer, xfer->fd, NULL, 0); |
2062 | |
2063 return 0; | |
3630 | 2064 } |
4617 | 2065 |
2066 /* | |
2067 * We just sent a file to someone. They said they got it and everything, | |
2068 * so we can close our direct connection and what not. | |
2069 */ | |
2070 static int oscar_sendfile_done(aim_session_t *sess, aim_frame_t *fr, ...) { | |
5575 | 2071 GaimConnection *gc = sess->aux_data; |
4617 | 2072 struct oscar_data *od = gc->proto_data; |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
2073 GaimXfer *xfer; |
4617 | 2074 va_list ap; |
2075 aim_conn_t *conn; | |
2076 fu8_t *cookie; | |
2077 struct aim_fileheader_t *fh; | |
4656 | 2078 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2079 gaim_debug(GAIM_DEBUG_INFO, "oscar", "AAA - in oscar_sendfile_done\n"); |
4617 | 2080 va_start(ap, fr); |
2081 conn = va_arg(ap, aim_conn_t *); | |
2082 cookie = va_arg(ap, fu8_t *); | |
2083 fh = va_arg(ap, struct aim_fileheader_t *); | |
2084 va_end(ap); | |
2085 | |
2086 if (!(xfer = oscar_find_xfer_by_conn(od->file_transfers, conn))) | |
2087 return 1; | |
2088 | |
4656 | 2089 xfer->fd = conn->fd; |
4617 | 2090 gaim_xfer_end(xfer); |
2091 | |
2092 return 0; | |
2093 } | |
3630 | 2094 |
4244 | 2095 static void accept_direct_im(struct ask_direct *d) { |
5575 | 2096 GaimConnection *gc = d->gc; |
4244 | 2097 struct oscar_data *od; |
2086 | 2098 struct direct_im *dim; |
2945 | 2099 char *host; int port = 4443; |
4366 | 2100 int i, rc; |
2086 | 2101 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
2102 if (!g_list_find(gaim_connections_get_all(), gc)) { |
4244 | 2103 cancel_direct_im(d); |
2104 return; | |
2105 } | |
2106 | |
2107 od = (struct oscar_data *)gc->proto_data; | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2108 gaim_debug(GAIM_DEBUG_INFO, "oscar", "Accepted DirectIM.\n"); |
2086 | 2109 |
2110 dim = find_direct_im(od, d->sn); | |
2111 if (dim) { | |
3730 | 2112 cancel_direct_im(d); /* 40 */ |
4244 | 2113 return; |
2086 | 2114 } |
2115 dim = g_new0(struct direct_im, 1); | |
2116 dim->gc = d->gc; | |
2117 g_snprintf(dim->name, sizeof dim->name, "%s", d->sn); | |
2118 | |
4617 | 2119 dim->conn = aim_odc_connect(od->sess, d->sn, NULL, d->cookie); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2120 if (!dim->conn) { |
2086 | 2121 g_free(dim); |
3730 | 2122 cancel_direct_im(d); |
4244 | 2123 return; |
2086 | 2124 } |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2125 |
2086 | 2126 aim_conn_addhandler(od->sess, dim->conn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIMINCOMING, |
4617 | 2127 gaim_odc_incoming, 0); |
2086 | 2128 aim_conn_addhandler(od->sess, dim->conn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIMTYPING, |
4617 | 2129 gaim_odc_typing, 0); |
3033 | 2130 aim_conn_addhandler(od->sess, dim->conn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_IMAGETRANSFER, |
6982 | 2131 gaim_odc_update_ui, 0); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2132 for (i = 0; i < (int)strlen(d->ip); i++) { |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2133 if (d->ip[i] == ':') { |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2134 port = atoi(&(d->ip[i+1])); |
2086 | 2135 break; |
2136 } | |
2137 } | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2138 host = g_strndup(d->ip, i); |
2086 | 2139 dim->conn->status |= AIM_CONN_STATUS_INPROGRESS; |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5679
diff
changeset
|
2140 rc = gaim_proxy_connect(gc->account, host, port, oscar_odc_callback, dim); |
2086 | 2141 g_free(host); |
4366 | 2142 if (rc < 0) { |
2086 | 2143 aim_conn_kill(od->sess, &dim->conn); |
2144 g_free(dim); | |
3730 | 2145 cancel_direct_im(d); |
4244 | 2146 return; |
2086 | 2147 } |
2148 | |
3730 | 2149 cancel_direct_im(d); |
2086 | 2150 |
4244 | 2151 return; |
2086 | 2152 } |
2153 | |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
2154 static int incomingim_chan1(aim_session_t *sess, aim_conn_t *conn, aim_userinfo_t *userinfo, struct aim_incomingim_ch1_args *args) { |
5575 | 2155 GaimConnection *gc = sess->aux_data; |
3600 | 2156 struct oscar_data *od = gc->proto_data; |
4738 | 2157 char *tmp; |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
2158 GaimConvImFlags flags = 0; |
6478
338147ea6896
[gaim-migrate @ 6991]
Christian Hammond <chipx86@chipx86.com>
parents:
6465
diff
changeset
|
2159 gsize convlen; |
3659 | 2160 GError *err = NULL; |
4738 | 2161 struct buddyinfo *bi; |
5575 | 2162 const char *iconfile; |
4738 | 2163 |
7107
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7106
diff
changeset
|
2164 bi = g_hash_table_lookup(od->buddyinfo, gaim_normalize(userinfo->sn)); |
4738 | 2165 if (!bi) { |
2166 bi = g_new0(struct buddyinfo, 1); | |
7107
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7106
diff
changeset
|
2167 g_hash_table_insert(od->buddyinfo, g_strdup(gaim_normalize(userinfo->sn)), bi); |
4738 | 2168 } |
2273
0b5c3338fa3d
[gaim-migrate @ 2283]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2249
diff
changeset
|
2169 |
0b5c3338fa3d
[gaim-migrate @ 2283]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2249
diff
changeset
|
2170 if (args->icbmflags & AIM_IMFLAGS_AWAY) |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
2171 flags |= GAIM_CONV_IM_AUTO_RESP; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2172 |
4738 | 2173 if (args->icbmflags & AIM_IMFLAGS_TYPINGNOT) |
2174 bi->typingnot = TRUE; | |
2175 else | |
2176 bi->typingnot = FALSE; | |
2177 | |
4380 | 2178 if ((args->icbmflags & AIM_IMFLAGS_HASICON) && (args->iconlen) && (args->iconsum) && (args->iconstamp)) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2179 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2180 "%s has an icon\n", userinfo->sn); |
4738 | 2181 if ((args->iconlen != bi->ico_len) || (args->iconsum != bi->ico_csum) || (args->iconstamp != bi->ico_time)) { |
2182 bi->ico_need = TRUE; | |
2183 bi->ico_len = args->iconlen; | |
2184 bi->ico_csum = args->iconsum; | |
2185 bi->ico_time = args->iconstamp; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2186 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2187 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2188 |
5575 | 2189 if ((iconfile = gaim_account_get_buddy_icon(gaim_connection_get_account(gc))) && |
2190 (args->icbmflags & AIM_IMFLAGS_BUDDYREQ)) { | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2191 FILE *file; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2192 struct stat st; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2193 |
5575 | 2194 if (!stat(iconfile, &st)) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2195 char *buf = g_malloc(st.st_size); |
5575 | 2196 file = fopen(iconfile, "rb"); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2197 if (file) { |
2603
24664768a739
[gaim-migrate @ 2616]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2597
diff
changeset
|
2198 int len = fread(buf, 1, st.st_size, file); |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2199 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2200 "Sending buddy icon to %s (%d bytes, " |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2201 "%lu reported)\n", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2202 userinfo->sn, len, st.st_size); |
4617 | 2203 aim_im_sendch2_icon(sess, userinfo->sn, buf, st.st_size, |
2204 st.st_mtime, aimutil_iconsum(buf, st.st_size)); | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2205 fclose(file); |
2336
c6c5eaf69188
[gaim-migrate @ 2349]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2315
diff
changeset
|
2206 } else |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2207 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2208 "Can't open buddy icon file!\n"); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2209 g_free(buf); |
2336
c6c5eaf69188
[gaim-migrate @ 2349]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2315
diff
changeset
|
2210 } else |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2211 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2212 "Can't stat buddy icon file!\n"); |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2213 } |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2214 |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2215 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2216 "Character set is %hu %hu\n", args->charset, args->charsubset); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2217 if (args->icbmflags & AIM_IMFLAGS_UNICODE) { |
3722 | 2218 /* This message is marked as UNICODE, so we have to |
2219 * convert it to utf-8 before handing it to the gaim core. | |
2220 * This conversion should *never* fail, if it does it | |
2221 * means that either the incoming ICBM is corrupted or | |
4662 | 2222 * there is something we don't understand about it. |
2223 * For the record, AIM Unicode is big-endian UCS-2 */ | |
2224 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2225 gaim_debug(GAIM_DEBUG_INFO, "oscar", "Received UNICODE IM\n"); |
4121 | 2226 |
2227 if (!args->msg || !args->msglen) | |
2228 return 1; | |
4641 | 2229 |
3659 | 2230 tmp = g_convert(args->msg, args->msglen, "UTF-8", "UCS-2BE", NULL, &convlen, &err); |
2231 if (err) { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2232 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2233 "Unicode IM conversion: %s\n", err->message); |
3659 | 2234 tmp = strdup(_("(There was an error receiving this message)")); |
4800 | 2235 g_error_free(err); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2236 } |
3722 | 2237 } else { |
3850 | 2238 /* This will get executed for both AIM_IMFLAGS_ISO_8859_1 and |
3722 | 2239 * unflagged messages, which are ASCII. That's OK because |
2240 * ASCII is a strict subset of ISO-8859-1; this should | |
2241 * help with compatibility with old, broken versions of | |
2242 * gaim (everything before 0.60) and other broken clients | |
2243 * that will happily send ISO-8859-1 without marking it as | |
2244 * such */ | |
4662 | 2245 if (args->icbmflags & AIM_IMFLAGS_ISO_8859_1) |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2246 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2247 "Received ISO-8859-1 IM\n"); |
4121 | 2248 |
2249 if (!args->msg || !args->msglen) | |
2250 return 1; | |
2251 | |
3659 | 2252 tmp = g_convert(args->msg, args->msglen, "UTF-8", "ISO-8859-1", NULL, &convlen, &err); |
2253 if (err) { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2254 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2255 "ISO-8859-1 IM conversion: %s\n", err->message); |
3659 | 2256 tmp = strdup(_("(There was an error receiving this message)")); |
4800 | 2257 g_error_free(err); |
3659 | 2258 } |
3642 | 2259 } |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2260 |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
2261 /* gaim_str_strip_linefeed(tmp); */ |
6982 | 2262 serv_got_im(gc, userinfo->sn, tmp, flags, time(NULL)); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2263 g_free(tmp); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2264 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2265 return 1; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2266 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2267 |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
2268 static int incomingim_chan2(aim_session_t *sess, aim_conn_t *conn, aim_userinfo_t *userinfo, struct aim_incomingim_ch2_args *args) { |
5575 | 2269 GaimConnection *gc = sess->aux_data; |
4617 | 2270 struct oscar_data *od = gc->proto_data; |
5575 | 2271 const char *username = gaim_account_get_username(gaim_connection_get_account(gc)); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2272 |
4121 | 2273 if (!args) |
2274 return 0; | |
4194 | 2275 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2276 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2277 "rendezvous with %s, status is %hu\n", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2278 userinfo->sn, args->status); |
2869 | 2279 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2280 if (args->reqclass & AIM_CAPS_CHAT) { |
4121 | 2281 char *name; |
5234 | 2282 GHashTable *components; |
2283 | |
4121 | 2284 if (!args->info.chat.roominfo.name || !args->info.chat.roominfo.exchange || !args->msg) |
2285 return 1; | |
5234 | 2286 components = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, |
2287 g_free); | |
4121 | 2288 name = extract_name(args->info.chat.roominfo.name); |
5234 | 2289 g_hash_table_replace(components, g_strdup("room"), g_strdup(name ? name : args->info.chat.roominfo.name)); |
2290 g_hash_table_replace(components, g_strdup("exchange"), g_strdup_printf("%d", args->info.chat.roominfo.exchange)); | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2291 serv_got_chat_invite(gc, |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2292 name ? name : args->info.chat.roominfo.name, |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2293 userinfo->sn, |
6059 | 2294 args->msg, |
5234 | 2295 components); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2296 if (name) |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2297 g_free(name); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2298 } else if (args->reqclass & AIM_CAPS_SENDFILE) { |
4617 | 2299 /* BBB */ |
2300 if (args->status == AIM_RENDEZVOUS_PROPOSE) { | |
2301 /* Someone wants to send a file (or files) to us */ | |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
2302 GaimXfer *xfer; |
5146 | 2303 struct aim_oft_info *oft_info; |
2304 | |
2305 if (!args->cookie || !args->port || !args->verifiedip || | |
2306 !args->info.sendfile.filename || !args->info.sendfile.totsize || | |
4656 | 2307 !args->info.sendfile.totfiles || !args->reqclass) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2308 gaim_debug(GAIM_DEBUG_WARNING, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2309 "%s tried to send you a file with incomplete " |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2310 "information.\n", userinfo->sn); |
5146 | 2311 if (args->proxyip) |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2312 gaim_debug(GAIM_DEBUG_WARNING, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2313 "IP for a proxy server was given. Gaim " |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2314 "does not support this yet.\n"); |
4617 | 2315 return 1; |
4656 | 2316 } |
4617 | 2317 |
2318 if (args->info.sendfile.subtype == AIM_OFT_SUBTYPE_SEND_DIR) { | |
2319 /* last char of the ft req is a star, they are sending us a | |
2320 * directory -- remove the star and trailing slash so we dont save | |
2321 * directories that look like 'dirname\*' -- arl */ | |
2322 char *tmp = strrchr(args->info.sendfile.filename, '\\'); | |
2323 if (tmp && (tmp[1] == '*')) { | |
2324 tmp[0] = '\0'; | |
2325 } | |
2326 } | |
2327 | |
2328 /* Build the file transfer handle */ | |
2329 xfer = gaim_xfer_new(gc->account, GAIM_XFER_RECEIVE, userinfo->sn); | |
5163 | 2330 xfer->remote_ip = g_strdup(args->verifiedip); |
5146 | 2331 xfer->remote_port = args->port; |
4617 | 2332 gaim_xfer_set_filename(xfer, args->info.sendfile.filename); |
2333 gaim_xfer_set_size(xfer, args->info.sendfile.totsize); | |
5146 | 2334 |
2335 /* Create the oscar-specific data */ | |
5163 | 2336 oft_info = aim_oft_createinfo(od->sess, args->cookie, userinfo->sn, args->clientip, xfer->remote_port, 0, 0, NULL); |
4898 | 2337 if (args->proxyip) |
5146 | 2338 oft_info->proxyip = g_strdup(args->proxyip); |
4898 | 2339 if (args->verifiedip) |
5146 | 2340 oft_info->verifiedip = g_strdup(args->verifiedip); |
2341 xfer->data = oft_info; | |
4617 | 2342 |
2343 /* Setup our I/O op functions */ | |
2344 gaim_xfer_set_init_fnc(xfer, oscar_xfer_init); | |
2345 gaim_xfer_set_start_fnc(xfer, oscar_xfer_start); | |
2346 gaim_xfer_set_end_fnc(xfer, oscar_xfer_end); | |
4675
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4666
diff
changeset
|
2347 gaim_xfer_set_cancel_send_fnc(xfer, oscar_xfer_cancel_send); |
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4666
diff
changeset
|
2348 gaim_xfer_set_cancel_recv_fnc(xfer, oscar_xfer_cancel_recv); |
4617 | 2349 gaim_xfer_set_ack_fnc(xfer, oscar_xfer_ack); |
2350 | |
2351 /* | |
2352 * XXX - Should do something with args->msg, args->encoding, and args->language | |
2353 * probably make it apply to all ch2 messages. | |
3752 | 2354 */ |
4617 | 2355 |
2356 /* Keep track of this transfer for later */ | |
2357 od->file_transfers = g_slist_append(od->file_transfers, xfer); | |
2358 | |
2359 /* Now perform the request */ | |
2360 gaim_xfer_request(xfer); | |
2361 } else if (args->status == AIM_RENDEZVOUS_CANCEL) { | |
2362 /* The other user wants to cancel a file transfer */ | |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
2363 GaimXfer *xfer; |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2364 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2365 "AAA - File transfer canceled by remote user\n"); |
4617 | 2366 if ((xfer = oscar_find_xfer_by_cookie(od->file_transfers, args->cookie))) |
4675
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4666
diff
changeset
|
2367 gaim_xfer_cancel_remote(xfer); |
4617 | 2368 } else if (args->status == AIM_RENDEZVOUS_ACCEPT) { |
2369 /* | |
2370 * This gets sent by the receiver of a file | |
2371 * as they connect directly to us. If we don't | |
2372 * get this, then maybe a third party connected | |
2373 * to us, and we shouldn't send them anything. | |
2374 */ | |
2375 } else { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2376 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2377 "unknown rendezvous status!\n"); |
3630 | 2378 } |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2379 } else if (args->reqclass & AIM_CAPS_GETFILE) { |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2380 } else if (args->reqclass & AIM_CAPS_VOICE) { |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2381 } else if (args->reqclass & AIM_CAPS_BUDDYICON) { |
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6787
diff
changeset
|
2382 gaim_buddy_icons_set_for_user(gaim_connection_get_account(gc), |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6787
diff
changeset
|
2383 userinfo->sn, args->info.icon.icon, |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6787
diff
changeset
|
2384 args->info.icon.length); |
6871 | 2385 } else if (args->reqclass & AIM_CAPS_DIRECTIM) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2386 struct ask_direct *d = g_new0(struct ask_direct, 1); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2387 char buf[256]; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2388 |
4212 | 2389 if (!args->verifiedip) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2390 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2391 "directim kill blocked (%s)\n", userinfo->sn); |
4650 | 2392 return 1; |
4212 | 2393 } |
2394 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2395 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2396 "%s received direct im request from %s (%s)\n", |
5575 | 2397 username, userinfo->sn, args->verifiedip); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2398 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2399 d->gc = gc; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2400 d->sn = g_strdup(userinfo->sn); |
2869 | 2401 strncpy(d->ip, args->verifiedip, sizeof(d->ip)); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2402 memcpy(d->cookie, args->cookie, 8); |
5575 | 2403 g_snprintf(buf, sizeof buf, _("%s has just asked to directly connect to %s"), userinfo->sn, username); |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2404 |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2405 gaim_request_action(gc, NULL, buf, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2406 _("This requires a direct connection between " |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2407 "the two computers and is necessary for IM " |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2408 "Images. Because your IP address will be " |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2409 "revealed, this may be considered a privacy " |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2410 "risk."), 0, d, 2, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2411 _("Connect"), G_CALLBACK(accept_direct_im), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2412 _("Cancel"), G_CALLBACK(cancel_direct_im)); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2413 } else { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2414 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2415 "Unknown reqclass %hu\n", args->reqclass); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2416 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2417 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2418 return 1; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2419 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2420 |
3453 | 2421 /* |
4230 | 2422 * Authorization Functions |
2423 * Most of these are callbacks from dialogs. They're used by both | |
2424 * methods of authorization (SSI and old-school channel 4 ICBM) | |
3453 | 2425 */ |
4269 | 2426 /* When you ask other people for authorization */ |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2427 static void gaim_auth_request(struct name_data *data, char *msg) { |
5575 | 2428 GaimConnection *gc = data->gc; |
4244 | 2429 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
2430 if (g_list_find(gaim_connections_get_all(), gc)) { |
4244 | 2431 struct oscar_data *od = gc->proto_data; |
6695 | 2432 GaimBuddy *buddy = gaim_find_buddy(gc->account, data->name); |
2433 GaimGroup *group = gaim_find_buddys_group(buddy); | |
4244 | 2434 if (buddy && group) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2435 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2436 "ssi: adding buddy %s to group %s\n", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2437 buddy->name, group->name); |
4889 | 2438 aim_ssi_sendauthrequest(od->sess, data->name, msg ? msg : _("Please authorize me so I can add you to my buddy list.")); |
4269 | 2439 if (!aim_ssi_itemlist_finditem(od->sess->ssi.local, group->name, buddy->name, AIM_SSI_TYPE_BUDDY)) |
4889 | 2440 aim_ssi_addbuddy(od->sess, buddy->name, group->name, gaim_get_buddy_alias_only(buddy), NULL, NULL, 1); |
4244 | 2441 } |
4230 | 2442 } |
4337 | 2443 } |
2444 | |
2445 static void gaim_auth_request_msgprompt(struct name_data *data) { | |
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
2446 gaim_request_input(data->gc, NULL, _("Authorization Request Message:"), |
6035
8c44020a958e
[gaim-migrate @ 6485]
Christian Hammond <chipx86@chipx86.com>
parents:
6029
diff
changeset
|
2447 NULL, _("Please authorize me!"), TRUE, FALSE, |
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
2448 _("OK"), G_CALLBACK(gaim_auth_request), |
5836 | 2449 _("Cancel"), G_CALLBACK(oscar_free_name_data), |
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
2450 data); |
4230 | 2451 } |
2452 | |
2453 static void gaim_auth_dontrequest(struct name_data *data) { | |
5575 | 2454 GaimConnection *gc = data->gc; |
4244 | 2455 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
2456 if (g_list_find(gaim_connections_get_all(), gc)) { |
4244 | 2457 /* struct oscar_data *od = gc->proto_data; */ |
2458 /* XXX - Take the buddy out of our buddy list */ | |
2459 } | |
2460 | |
5836 | 2461 oscar_free_name_data(data); |
4230 | 2462 } |
2463 | |
5575 | 2464 static void gaim_auth_sendrequest(GaimConnection *gc, const char *name) { |
4269 | 2465 struct name_data *data = g_new(struct name_data, 1); |
6695 | 2466 GaimBuddy *buddy; |
4269 | 2467 gchar *dialog_msg, *nombre; |
2468 | |
4687 | 2469 buddy = gaim_find_buddy(gc->account, name); |
2470 if (buddy && (gaim_get_buddy_alias_only(buddy))) | |
2471 nombre = g_strdup_printf("%s (%s)", name, gaim_get_buddy_alias_only(buddy)); | |
4269 | 2472 else |
4830 | 2473 nombre = NULL; |
2474 | |
2475 dialog_msg = g_strdup_printf(_("The user %s requires authorization before being added to a buddy list. Do you want to send an authorization request?"), (nombre ? nombre : name)); | |
4269 | 2476 data->gc = gc; |
2477 data->name = g_strdup(name); | |
2478 data->nick = NULL; | |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2479 |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2480 gaim_request_action(gc, NULL, _("Request Authorization"), dialog_msg, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2481 0, data, 2, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2482 _("Request Authorization"), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2483 G_CALLBACK(gaim_auth_request_msgprompt), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2484 _("Cancel"), G_CALLBACK(gaim_auth_dontrequest)); |
4269 | 2485 |
2486 g_free(dialog_msg); | |
2487 g_free(nombre); | |
2488 } | |
2489 | |
4230 | 2490 /* When other people ask you for authorization */ |
2491 static void gaim_auth_grant(struct name_data *data) { | |
5575 | 2492 GaimConnection *gc = data->gc; |
4244 | 2493 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
2494 if (g_list_find(gaim_connections_get_all(), gc)) { |
4244 | 2495 struct oscar_data *od = gc->proto_data; |
4236 | 2496 #ifdef NOSSI |
6695 | 2497 GaimBuddy *buddy; |
4244 | 2498 gchar message; |
2499 message = 0; | |
4687 | 2500 buddy = gaim_find_buddy(gc->account, data->name); |
4617 | 2501 aim_im_sendch4(od->sess, data->name, AIM_ICQMSG_AUTHGRANTED, &message); |
7015
dece74f05509
[gaim-migrate @ 7578]
Christian Hammond <chipx86@chipx86.com>
parents:
7011
diff
changeset
|
2502 gaim_account_notify_added(gc->account, NULL, data->name, (buddy ? gaim_get_buddy_alias_only(buddy) : NULL), NULL); |
4230 | 2503 #else |
4889 | 2504 aim_ssi_sendauthreply(od->sess, data->name, 0x01, NULL); |
4230 | 2505 #endif |
4244 | 2506 } |
2507 | |
5836 | 2508 oscar_free_name_data(data); |
3141 | 2509 } |
2510 | |
4230 | 2511 /* When other people ask you for authorization */ |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2512 static void gaim_auth_dontgrant(struct name_data *data, char *msg) { |
5575 | 2513 GaimConnection *gc = data->gc; |
4244 | 2514 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
2515 if (g_list_find(gaim_connections_get_all(), gc)) { |
4244 | 2516 struct oscar_data *od = gc->proto_data; |
4230 | 2517 #ifdef NOSSI |
4617 | 2518 aim_im_sendch4(od->sess, data->name, AIM_ICQMSG_AUTHDENIED, msg ? msg : _("No reason given.")); |
4230 | 2519 #else |
4889 | 2520 aim_ssi_sendauthreply(od->sess, data->name, 0x00, msg ? msg : _("No reason given.")); |
4230 | 2521 #endif |
4244 | 2522 } |
4337 | 2523 } |
2524 | |
2525 static void gaim_auth_dontgrant_msgprompt(struct name_data *data) { | |
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
2526 gaim_request_input(data->gc, NULL, _("Authorization Denied Message:"), |
6035
8c44020a958e
[gaim-migrate @ 6485]
Christian Hammond <chipx86@chipx86.com>
parents:
6029
diff
changeset
|
2527 NULL, _("No reason given."), TRUE, FALSE, |
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
2528 _("OK"), G_CALLBACK(gaim_auth_dontgrant), |
5836 | 2529 _("Cancel"), G_CALLBACK(oscar_free_name_data), |
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
2530 data); |
3141 | 2531 } |
2532 | |
7023 | 2533 /* When someone sends you buddies */ |
2534 static void gaim_icq_buddyadd(struct name_data *data) { | |
5575 | 2535 GaimConnection *gc = data->gc; |
4244 | 2536 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
2537 if (g_list_find(gaim_connections_get_all(), gc)) { |
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
2538 gaim_blist_request_add_buddy(gaim_connection_get_account(gc), data->name, NULL, data->nick); |
4244 | 2539 } |
2540 | |
5836 | 2541 oscar_free_name_data(data); |
3453 | 2542 } |
2543 | |
4075 | 2544 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) { |
5575 | 2545 GaimConnection *gc = sess->aux_data; |
4076 | 2546 gchar **msg1, **msg2; |
2547 GError *err = NULL; | |
6051 | 2548 int i, numtoks; |
4076 | 2549 |
4121 | 2550 if (!args->type || !args->msg || !args->uin) |
2551 return 1; | |
4194 | 2552 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2553 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2554 "Received a channel 4 message of type 0x%02hhx.\n", args->type); |
4076 | 2555 |
2556 /* Split up the message at the delimeter character, then convert each string to UTF-8 */ | |
4173 | 2557 msg1 = g_strsplit(args->msg, "\376", 0); |
6051 | 2558 for (numtoks=0; msg1[numtoks]; numtoks++); |
2559 msg2 = (gchar **)g_malloc((numtoks+1)*sizeof(gchar *)); | |
4076 | 2560 for (i=0; msg1[i]; i++) { |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
2561 gaim_str_strip_linefeed(msg1[i]); |
4076 | 2562 msg2[i] = g_convert(msg1[i], strlen(msg1[i]), "UTF-8", "ISO-8859-1", NULL, NULL, &err); |
4800 | 2563 if (err) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2564 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2565 "Error converting a string from ISO-8859-1 to " |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2566 "UTF-8 in oscar ICBM channel 4 parsing\n"); |
4800 | 2567 g_error_free(err); |
2568 } | |
4076 | 2569 } |
2570 msg2[i] = NULL; | |
2571 | |
3952 | 2572 switch (args->type) { |
4173 | 2573 case 0x01: { /* MacICQ message or basic offline message */ |
4076 | 2574 if (i >= 1) { |
5556 | 2575 gchar *uin = g_strdup_printf("%u", args->uin); |
4076 | 2576 if (t) { /* This is an offline message */ |
2577 /* I think this timestamp is in UTC, or something */ | |
6982 | 2578 serv_got_im(gc, uin, msg2[0], 0, t); |
4076 | 2579 } else { /* This is a message from MacICQ/Miranda */ |
6982 | 2580 serv_got_im(gc, uin, msg2[0], 0, time(NULL)); |
4076 | 2581 } |
2582 g_free(uin); | |
4075 | 2583 } |
3316 | 2584 } break; |
2585 | |
4173 | 2586 case 0x04: { /* Someone sent you a URL */ |
4076 | 2587 if (i >= 2) { |
5556 | 2588 gchar *uin = g_strdup_printf("%u", args->uin); |
4076 | 2589 gchar *message = g_strdup_printf("<A HREF=\"%s\">%s</A>", msg2[1], msg2[0]); |
6982 | 2590 serv_got_im(gc, uin, message, 0, time(NULL)); |
3453 | 2591 g_free(uin); |
2592 g_free(message); | |
2593 } | |
2594 } break; | |
2595 | |
4173 | 2596 case 0x06: { /* Someone requested authorization */ |
4076 | 2597 if (i >= 6) { |
4230 | 2598 struct name_data *data = g_new(struct name_data, 1); |
5556 | 2599 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.")); |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2600 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
5556 | 2601 "Received an authorization request from UIN %u\n", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2602 args->uin); |
4076 | 2603 data->gc = gc; |
5556 | 2604 data->name = g_strdup_printf("%u", args->uin); |
4230 | 2605 data->nick = NULL; |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2606 |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2607 gaim_request_action(gc, NULL, _("Authorization Request"), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2608 dialog_msg, 0, data, 2, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2609 _("Authorize"), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2610 G_CALLBACK(gaim_auth_grant), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2611 _("Deny"), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2612 G_CALLBACK(gaim_auth_dontgrant_msgprompt)); |
4076 | 2613 g_free(dialog_msg); |
2614 } | |
3141 | 2615 } break; |
2616 | |
4173 | 2617 case 0x07: { /* Someone has denied you authorization */ |
4076 | 2618 if (i >= 1) { |
7023 | 2619 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.")); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2620 gaim_notify_info(gc, NULL, _("ICQ authorization denied."), |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2621 dialog_msg); |
4076 | 2622 g_free(dialog_msg); |
2623 } | |
3141 | 2624 } break; |
2625 | |
4173 | 2626 case 0x08: { /* Someone has granted you authorization */ |
7023 | 2627 gchar *dialog_msg = g_strdup_printf(_("The user %u has granted your request to add them to your buddy list."), args->uin); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2628 gaim_notify_info(gc, NULL, "ICQ authorization accepted.", |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2629 dialog_msg); |
3141 | 2630 g_free(dialog_msg); |
2631 } break; | |
2632 | |
4333 | 2633 case 0x09: { /* Message from the Godly ICQ server itself, I think */ |
2634 if (i >= 5) { | |
2635 gchar *dialog_msg = g_strdup_printf(_("You have received a special message\n\nFrom: %s [%s]\n%s"), msg2[0], msg2[3], msg2[5]); | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2636 gaim_notify_info(gc, NULL, "ICQ Server Message", dialog_msg); |
4333 | 2637 g_free(dialog_msg); |
2638 } | |
2639 } break; | |
2640 | |
4173 | 2641 case 0x0d: { /* Someone has sent you a pager message from http://www.icq.com/your_uin */ |
4076 | 2642 if (i >= 6) { |
4194 | 2643 gchar *dialog_msg = g_strdup_printf(_("You have received an ICQ page\n\nFrom: %s [%s]\n%s"), msg2[0], msg2[3], msg2[5]); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2644 gaim_notify_info(gc, NULL, "ICQ Page", dialog_msg); |
4076 | 2645 g_free(dialog_msg); |
2646 } | |
4075 | 2647 } break; |
2648 | |
4173 | 2649 case 0x0e: { /* Someone has emailed you at your_uin@pager.icq.com */ |
4076 | 2650 if (i >= 6) { |
4308 | 2651 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]); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2652 gaim_notify_info(gc, NULL, "ICQ Email", dialog_msg); |
4076 | 2653 g_free(dialog_msg); |
2654 } | |
4075 | 2655 } break; |
2656 | |
4173 | 2657 case 0x12: { |
3141 | 2658 /* Ack for authorizing/denying someone. Or possibly an ack for sending any system notice */ |
7023 | 2659 /* Someone added you to their buddy list? */ |
3141 | 2660 } break; |
2661 | |
7023 | 2662 case 0x13: { /* Someone has sent you some ICQ buddies */ |
3453 | 2663 int i, num; |
2664 gchar **text; | |
4173 | 2665 text = g_strsplit(args->msg, "\376", 0); |
3453 | 2666 if (text) { |
2667 num = 0; | |
2668 for (i=0; i<strlen(text[0]); i++) | |
2669 num = num*10 + text[0][i]-48; | |
2670 for (i=0; i<num; i++) { | |
4230 | 2671 struct name_data *data = g_new(struct name_data, 1); |
7023 | 2672 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]); |
3453 | 2673 data->gc = gc; |
4790 | 2674 data->name = g_strdup(text[i*2+1]); |
2675 data->nick = g_strdup(text[i*2+2]); | |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2676 |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2677 gaim_request_action(gc, NULL, message, |
7023 | 2678 _("Do you want to add this buddy " |
2679 "to your buddy list?"), | |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2680 0, data, 2, |
7023 | 2681 _("Add"), G_CALLBACK(gaim_icq_buddyadd), |
5836 | 2682 _("Decline"), G_CALLBACK(oscar_free_name_data)); |
3453 | 2683 g_free(message); |
2684 } | |
2685 g_strfreev(text); | |
2686 } | |
2687 } break; | |
2688 | |
7023 | 2689 case 0x1a: { /* Someone has sent you a greeting card or requested buddies? */ |
3453 | 2690 /* This is boring and silly. */ |
2691 } break; | |
2692 | |
3141 | 2693 default: { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2694 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2695 "Received a channel 4 message of unknown type " |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2696 "(type 0x%02hhx).\n", args->type); |
3141 | 2697 } break; |
2698 } | |
2699 | |
4076 | 2700 g_strfreev(msg1); |
2701 g_strfreev(msg2); | |
2702 | |
3141 | 2703 return 1; |
2704 } | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2705 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2706 static int gaim_parse_incoming_im(aim_session_t *sess, aim_frame_t *fr, ...) { |
4200 | 2707 fu16_t channel; |
2708 int ret = 0; | |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
2709 aim_userinfo_t *userinfo; |
2086 | 2710 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2711 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2712 va_start(ap, fr); |
4200 | 2713 channel = (fu16_t)va_arg(ap, unsigned int); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
2714 userinfo = va_arg(ap, aim_userinfo_t *); |
2086 | 2715 |
3141 | 2716 switch (channel) { |
2717 case 1: { /* standard message */ | |
2718 struct aim_incomingim_ch1_args *args; | |
2719 args = va_arg(ap, struct aim_incomingim_ch1_args *); | |
2720 ret = incomingim_chan1(sess, fr->conn, userinfo, args); | |
2721 } break; | |
2722 | |
2723 case 2: { /* rendevous */ | |
2724 struct aim_incomingim_ch2_args *args; | |
2725 args = va_arg(ap, struct aim_incomingim_ch2_args *); | |
2726 ret = incomingim_chan2(sess, fr->conn, userinfo, args); | |
2727 } break; | |
2728 | |
2729 case 4: { /* ICQ */ | |
2730 struct aim_incomingim_ch4_args *args; | |
2731 args = va_arg(ap, struct aim_incomingim_ch4_args *); | |
4075 | 2732 ret = incomingim_chan4(sess, fr->conn, userinfo, args, 0); |
3141 | 2733 } break; |
2734 | |
2735 default: { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2736 gaim_debug(GAIM_DEBUG_WARNING, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2737 "ICBM received on unsupported channel (channel " |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2738 "0x%04hx).", channel); |
3141 | 2739 } break; |
2086 | 2740 } |
2741 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2742 va_end(ap); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2743 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2744 return ret; |
2086 | 2745 } |
2746 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2747 static int gaim_parse_misses(aim_session_t *sess, aim_frame_t *fr, ...) { |
5420 | 2748 char *buf; |
2086 | 2749 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2750 fu16_t chan, nummissed, reason; |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
2751 aim_userinfo_t *userinfo; |
2086 | 2752 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2753 va_start(ap, fr); |
4200 | 2754 chan = (fu16_t)va_arg(ap, unsigned int); |
2755 userinfo = va_arg(ap, aim_userinfo_t *); | |
2756 nummissed = (fu16_t)va_arg(ap, unsigned int); | |
2757 reason = (fu16_t)va_arg(ap, unsigned int); | |
2086 | 2758 va_end(ap); |
2759 | |
2760 switch(reason) { | |
5420 | 2761 case 0: /* Invalid (0) */ |
2762 buf = g_strdup_printf( | |
2763 ngettext( | |
4276 | 2764 "You missed %hu message from %s because it was invalid.", |
2765 "You missed %hu messages from %s because they were invalid.", | |
2766 nummissed), | |
4282 | 2767 nummissed, |
2768 userinfo->sn); | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2769 break; |
5420 | 2770 case 1: /* Message too large */ |
2771 buf = g_strdup_printf( | |
2772 ngettext( | |
4276 | 2773 "You missed %hu message from %s because it was too large.", |
2774 "You missed %hu messages from %s because they were too large.", | |
2775 nummissed), | |
4282 | 2776 nummissed, |
2777 userinfo->sn); | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2778 break; |
5420 | 2779 case 2: /* Rate exceeded */ |
2780 buf = g_strdup_printf( | |
2781 ngettext( | |
4276 | 2782 "You missed %hu message from %s because the rate limit has been exceeded.", |
2783 "You missed %hu messages from %s because the rate limit has been exceeded.", | |
2784 nummissed), | |
4282 | 2785 nummissed, |
2786 userinfo->sn); | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2787 break; |
5420 | 2788 case 3: /* Evil Sender */ |
2789 buf = g_strdup_printf( | |
2790 ngettext( | |
4276 | 2791 "You missed %hu message from %s because he/she was too evil.", |
2792 "You missed %hu messages from %s because he/she was too evil.", | |
2793 nummissed), | |
4282 | 2794 nummissed, |
2795 userinfo->sn); | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2796 break; |
5420 | 2797 case 4: /* Evil Receiver */ |
2798 buf = g_strdup_printf( | |
2799 ngettext( | |
4276 | 2800 "You missed %hu message from %s because you are too evil.", |
2801 "You missed %hu messages from %s because you are too evil.", | |
2802 nummissed), | |
4282 | 2803 nummissed, |
2804 userinfo->sn); | |
2086 | 2805 break; |
2806 default: | |
5420 | 2807 buf = g_strdup_printf( |
2808 ngettext( | |
4276 | 2809 "You missed %hu message from %s for an unknown reason.", |
2810 "You missed %hu messages from %s for an unknown reason.", | |
2811 nummissed), | |
4282 | 2812 nummissed, |
2813 userinfo->sn); | |
2086 | 2814 break; |
2815 } | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2816 gaim_notify_error(sess->aux_data, NULL, buf, NULL); |
5420 | 2817 g_free(buf); |
2086 | 2818 |
2819 return 1; | |
2820 } | |
2821 | |
3212 | 2822 static char *gaim_icq_status(int state) { |
2823 /* Make a cute little string that shows the status of the dude or dudet */ | |
2824 if (state & AIM_ICQ_STATE_CHAT) | |
4342 | 2825 return g_strdup_printf(_("Free For Chat")); |
3212 | 2826 else if (state & AIM_ICQ_STATE_DND) |
4342 | 2827 return g_strdup_printf(_("Do Not Disturb")); |
3212 | 2828 else if (state & AIM_ICQ_STATE_OUT) |
4342 | 2829 return g_strdup_printf(_("Not Available")); |
3212 | 2830 else if (state & AIM_ICQ_STATE_BUSY) |
4342 | 2831 return g_strdup_printf(_("Occupied")); |
3212 | 2832 else if (state & AIM_ICQ_STATE_AWAY) |
4342 | 2833 return g_strdup_printf(_("Away")); |
3212 | 2834 else if (state & AIM_ICQ_STATE_WEBAWARE) |
4342 | 2835 return g_strdup_printf(_("Web Aware")); |
3212 | 2836 else if (state & AIM_ICQ_STATE_INVISIBLE) |
4342 | 2837 return g_strdup_printf(_("Invisible")); |
3212 | 2838 else |
4342 | 2839 return g_strdup_printf(_("Online")); |
3212 | 2840 } |
2841 | |
4194 | 2842 static int gaim_parse_clientauto_ch2(aim_session_t *sess, const char *who, fu16_t reason, const char *cookie) { |
5575 | 2843 GaimConnection *gc = sess->aux_data; |
4617 | 2844 struct oscar_data *od = gc->proto_data; |
2845 | |
2846 /* BBB */ | |
3630 | 2847 switch (reason) { |
4151 | 2848 case 3: { /* Decline sendfile. */ |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
2849 GaimXfer *xfer; |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2850 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2851 "AAA - Other user declined file transfer\n"); |
4617 | 2852 if ((xfer = oscar_find_xfer_by_cookie(od->file_transfers, cookie))) |
4675
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4666
diff
changeset
|
2853 gaim_xfer_cancel_remote(xfer); |
4151 | 2854 } break; |
2855 | |
2856 default: { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2857 gaim_debug(GAIM_DEBUG_WARNING, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2858 "Received an unknown rendezvous client auto-response " |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2859 "from %s. Type 0x%04hx\n", who, reason); |
4151 | 2860 } |
3630 | 2861 |
2862 } | |
2863 | |
2864 return 0; | |
2865 } | |
2866 | |
4194 | 2867 static int gaim_parse_clientauto_ch4(aim_session_t *sess, char *who, fu16_t reason, fu32_t state, char *msg) { |
5575 | 2868 GaimConnection *gc = sess->aux_data; |
4151 | 2869 |
2870 switch(reason) { | |
2871 case 0x0003: { /* Reply from an ICQ status message request */ | |
2872 char *status_msg = gaim_icq_status(state); | |
2873 char *dialog_msg, **splitmsg; | |
2874 | |
2875 /* Split at (carriage return/newline)'s, then rejoin later with BRs between. */ | |
2876 splitmsg = g_strsplit(msg, "\r\n", 0); | |
2877 | |
7011 | 2878 dialog_msg = g_strdup_printf(_("<B>UIN:</B> %s<BR><B>Status:</B> %s<HR>%s"), who, status_msg, g_strjoinv("<BR>", splitmsg)); |
7032 | 2879 gaim_notify_formatted(gc, NULL, _("Buddy Information"), NULL, dialog_msg, NULL, NULL); |
4151 | 2880 |
2881 g_free(status_msg); | |
2882 g_free(dialog_msg); | |
2883 g_strfreev(splitmsg); | |
2884 } break; | |
2885 | |
2886 default: { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2887 gaim_debug(GAIM_DEBUG_WARNING, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2888 "Received an unknown client auto-response from %s. " |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2889 "Type 0x%04hx\n", who, reason); |
4151 | 2890 } break; |
2891 } /* end of switch */ | |
2892 | |
2893 return 0; | |
2894 } | |
2895 | |
3212 | 2896 static int gaim_parse_clientauto(aim_session_t *sess, aim_frame_t *fr, ...) { |
2897 va_list ap; | |
2898 fu16_t chan, reason; | |
2899 char *who; | |
2900 | |
2901 va_start(ap, fr); | |
4200 | 2902 chan = (fu16_t)va_arg(ap, unsigned int); |
3212 | 2903 who = va_arg(ap, char *); |
4200 | 2904 reason = (fu16_t)va_arg(ap, unsigned int); |
3212 | 2905 |
3952 | 2906 if (chan == 0x0002) { /* File transfer declined */ |
3630 | 2907 char *cookie = va_arg(ap, char *); |
4151 | 2908 return gaim_parse_clientauto_ch2(sess, who, reason, cookie); |
3952 | 2909 } else if (chan == 0x0004) { /* ICQ message */ |
4200 | 2910 fu32_t state = 0; |
4151 | 2911 char *msg = NULL; |
2912 if (reason == 0x0003) { | |
4200 | 2913 state = va_arg(ap, fu32_t); |
4151 | 2914 msg = va_arg(ap, char *); |
2915 } | |
2916 return gaim_parse_clientauto_ch4(sess, who, reason, state, msg); | |
2917 } | |
3952 | 2918 |
3212 | 2919 va_end(ap); |
2920 | |
2921 return 1; | |
2922 } | |
2923 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2924 static int gaim_parse_genericerr(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 2925 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2926 fu16_t reason; |
2865
88dc3623a2ae
[gaim-migrate @ 2878]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2864
diff
changeset
|
2927 char *m; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2928 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2929 va_start(ap, fr); |
4199 | 2930 reason = (fu16_t) va_arg(ap, unsigned int); |
2086 | 2931 va_end(ap); |
2932 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2933 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2934 "snac threw error (reason 0x%04hx: %s)\n", reason, |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2935 (reason < msgerrreasonlen) ? msgerrreason[reason] : "unknown"); |
2086 | 2936 |
2865
88dc3623a2ae
[gaim-migrate @ 2878]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2864
diff
changeset
|
2937 m = g_strdup_printf(_("SNAC threw error: %s\n"), |
5411 | 2938 reason < msgerrreasonlen ? _(msgerrreason[reason]) : _("Unknown error")); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2939 gaim_notify_error(sess->aux_data, NULL, m, NULL); |
2865
88dc3623a2ae
[gaim-migrate @ 2878]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2864
diff
changeset
|
2940 g_free(m); |
88dc3623a2ae
[gaim-migrate @ 2878]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2864
diff
changeset
|
2941 |
2086 | 2942 return 1; |
2943 } | |
2944 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2945 static int gaim_parse_msgerr(aim_session_t *sess, aim_frame_t *fr, ...) { |
4617 | 2946 #if 0 |
5575 | 2947 GaimConnection *gc = sess->aux_data; |
4617 | 2948 struct oscar_data *od = gc->proto_data; |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
2949 GaimXfer *xfer; |
4508
4c40fccbd7c9
[gaim-migrate @ 4784]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
2950 #endif |
4617 | 2951 va_list ap; |
2952 fu16_t reason; | |
2953 char *data, *buf; | |
4508
4c40fccbd7c9
[gaim-migrate @ 4784]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
2954 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2955 va_start(ap, fr); |
4617 | 2956 reason = (fu16_t)va_arg(ap, unsigned int); |
3752 | 2957 data = va_arg(ap, char *); |
2086 | 2958 va_end(ap); |
2959 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2960 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2961 "Message error with data %s and reason %hu\n", data, reason); |
4617 | 2962 |
2963 /* BBB */ | |
4508
4c40fccbd7c9
[gaim-migrate @ 4784]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
2964 #if 0 |
4617 | 2965 /* If this was a file transfer request, data is a cookie */ |
2966 if ((xfer = oscar_find_xfer_by_cookie(od->file_transfers, data))) { | |
4675
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4666
diff
changeset
|
2967 gaim_xfer_cancel_remote(xfer); |
3630 | 2968 return 1; |
2969 } | |
4508
4c40fccbd7c9
[gaim-migrate @ 4784]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
2970 #endif |
3630 | 2971 |
4617 | 2972 /* Data is assumed to be the destination sn */ |
2973 buf = g_strdup_printf(_("Your message to %s did not get sent:"), data); | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2974 gaim_notify_error(sess->aux_data, NULL, buf, |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2975 (reason < msgerrreasonlen) ? _(msgerrreason[reason]) : _("No reason given.")); |
4617 | 2976 g_free(buf); |
2086 | 2977 |
2978 return 1; | |
2979 } | |
2980 | |
3595 | 2981 static int gaim_parse_mtn(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 2982 GaimConnection *gc = sess->aux_data; |
3595 | 2983 va_list ap; |
2984 fu16_t type1, type2; | |
2985 char *sn; | |
2986 | |
2987 va_start(ap, fr); | |
4199 | 2988 type1 = (fu16_t) va_arg(ap, unsigned int); |
3595 | 2989 sn = va_arg(ap, char *); |
4199 | 2990 type2 = (fu16_t) va_arg(ap, unsigned int); |
3595 | 2991 va_end(ap); |
2992 | |
2993 switch (type2) { | |
2994 case 0x0000: { /* Text has been cleared */ | |
2995 serv_got_typing_stopped(gc, sn); | |
2996 } break; | |
2997 | |
2998 case 0x0001: { /* Paused typing */ | |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
2999 serv_got_typing(gc, sn, 0, GAIM_TYPED); |
3595 | 3000 } break; |
3001 | |
3002 case 0x0002: { /* Typing */ | |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
3003 serv_got_typing(gc, sn, 0, GAIM_TYPING); |
3595 | 3004 } break; |
3005 | |
3006 default: { | |
5435 | 3007 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); |
3595 | 3008 } break; |
3009 } | |
3010 | |
3011 return 1; | |
3012 } | |
3013 | |
7141 | 3014 /* |
3015 * We get this error when there was an error in the locate family. This | |
3016 * usually happens because libfaim couldn't get info for someone when it | |
3017 * tried automatically. Seeing the message gets annoying... | |
3018 */ | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3019 static int gaim_parse_locerr(aim_session_t *sess, aim_frame_t *fr, ...) { |
7141 | 3020 /* char *buf; */ |
2086 | 3021 va_list ap; |
5420 | 3022 fu16_t reason; |
2086 | 3023 char *destn; |
3024 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3025 va_start(ap, fr); |
4199 | 3026 reason = (fu16_t) va_arg(ap, unsigned int); |
2086 | 3027 destn = va_arg(ap, char *); |
3028 va_end(ap); | |
3029 | |
7141 | 3030 /* |
5420 | 3031 buf = g_strdup_printf(_("User information for %s unavailable:"), destn); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
3032 gaim_notify_error(sess->aux_data, NULL, buf, |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
3033 (reason < msgerrreasonlen) ? _(msgerrreason[reason]) : _("No reason given.")); |
5420 | 3034 g_free(buf); |
7141 | 3035 */ |
2086 | 3036 |
3037 return 1; | |
3038 } | |
3039 | |
6982 | 3040 #if 0 |
2086 | 3041 static char *images(int flags) { |
3042 static char buf[1024]; | |
3101 | 3043 g_snprintf(buf, sizeof(buf), "%s%s%s%s%s%s%s", |
2679 | 3044 (flags & AIM_FLAG_ACTIVEBUDDY) ? "<IMG SRC=\"ab_icon.gif\">" : "", |
2086 | 3045 (flags & AIM_FLAG_UNCONFIRMED) ? "<IMG SRC=\"dt_icon.gif\">" : "", |
3046 (flags & AIM_FLAG_AOL) ? "<IMG SRC=\"aol_icon.gif\">" : "", | |
3101 | 3047 (flags & AIM_FLAG_ICQ) ? "<IMG SRC=\"icq_icon.gif\">" : "", |
2086 | 3048 (flags & AIM_FLAG_ADMINISTRATOR) ? "<IMG SRC=\"admin_icon.gif\">" : "", |
3079 | 3049 (flags & AIM_FLAG_FREE) ? "<IMG SRC=\"free_icon.gif\">" : "", |
3050 (flags & AIM_FLAG_WIRELESS) ? "<IMG SRC=\"wireless_icon.gif\">" : ""); | |
2086 | 3051 return buf; |
3052 } | |
6982 | 3053 #endif |
3101 | 3054 |
2920 | 3055 static char *caps_string(guint caps) |
3056 { | |
3057 static char buf[512], *tmp; | |
3058 int count = 0, i = 0; | |
3059 guint bit = 1; | |
4742 | 3060 |
3061 if (!caps) { | |
4744 | 3062 return NULL; |
6318 | 3063 } else while (bit <= AIM_CAPS_LAST) { |
2920 | 3064 if (bit & caps) { |
3065 switch (bit) { | |
6871 | 3066 case AIM_CAPS_BUDDYICON: |
2920 | 3067 tmp = _("Buddy Icon"); |
3068 break; | |
6871 | 3069 case AIM_CAPS_VOICE: |
2920 | 3070 tmp = _("Voice"); |
3071 break; | |
6871 | 3072 case AIM_CAPS_DIRECTIM: |
7141 | 3073 tmp = _("AIM Direct IM"); |
2920 | 3074 break; |
6871 | 3075 case AIM_CAPS_CHAT: |
2920 | 3076 tmp = _("Chat"); |
3077 break; | |
6871 | 3078 case AIM_CAPS_GETFILE: |
2920 | 3079 tmp = _("Get File"); |
3080 break; | |
6871 | 3081 case AIM_CAPS_SENDFILE: |
2920 | 3082 tmp = _("Send File"); |
3083 break; | |
6871 | 3084 case AIM_CAPS_GAMES: |
3085 case AIM_CAPS_GAMES2: | |
2920 | 3086 tmp = _("Games"); |
3087 break; | |
6871 | 3088 case AIM_CAPS_SAVESTOCKS: |
4898 | 3089 tmp = _("Add-Ins"); |
2920 | 3090 break; |
6871 | 3091 case AIM_CAPS_SENDBUDDYLIST: |
2920 | 3092 tmp = _("Send Buddy List"); |
3093 break; | |
7141 | 3094 case AIM_CAPS_ICQ_DIRECT: |
3095 tmp = _("ICQ Direct Connect"); | |
2920 | 3096 break; |
6871 | 3097 case AIM_CAPS_APINFO: |
2920 | 3098 tmp = _("AP User"); |
3099 break; | |
6871 | 3100 case AIM_CAPS_ICQRTF: |
2920 | 3101 tmp = _("ICQ RTF"); |
3102 break; | |
6871 | 3103 case AIM_CAPS_EMPTY: |
2920 | 3104 tmp = _("Nihilist"); |
3105 break; | |
6871 | 3106 case AIM_CAPS_ICQSERVERRELAY: |
2920 | 3107 tmp = _("ICQ Server Relay"); |
3108 break; | |
6871 | 3109 case AIM_CAPS_ICQUTF8OLD: |
3110 tmp = _("Old ICQ UTF8"); | |
2920 | 3111 break; |
6871 | 3112 case AIM_CAPS_TRILLIANCRYPT: |
2920 | 3113 tmp = _("Trillian Encryption"); |
3114 break; | |
6871 | 3115 case AIM_CAPS_ICQUTF8: |
4742 | 3116 tmp = _("ICQ UTF8"); |
3117 break; | |
6318 | 3118 case AIM_CAPS_HIPTOP: |
3119 tmp = _("Hiptop"); | |
3120 break; | |
6871 | 3121 case AIM_CAPS_SECUREIM: |
3122 tmp = _("Secure IM"); | |
3123 break; | |
2920 | 3124 default: |
3125 tmp = NULL; | |
3126 break; | |
3127 } | |
3128 if (tmp) | |
3129 i += g_snprintf(buf + i, sizeof(buf) - i, "%s%s", (count ? ", " : ""), | |
3130 tmp); | |
3131 count++; | |
3132 } | |
3133 bit <<= 1; | |
3134 } | |
4744 | 3135 return buf; |
2920 | 3136 } |
3137 | |
7011 | 3138 static int gaim_parse_userinfo(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 3139 GaimConnection *gc = sess->aux_data; |
7011 | 3140 GString *text; |
7162 | 3141 gchar *info_utf8 = NULL, *away_utf8 = NULL; |
3142 const char *final = NULL; | |
4791 | 3143 va_list ap; |
7011 | 3144 aim_userinfo_t *userinfo; |
2086 | 3145 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3146 va_start(ap, fr); |
7011 | 3147 userinfo = va_arg(ap, aim_userinfo_t *); |
2086 | 3148 va_end(ap); |
3149 | |
7011 | 3150 text = g_string_new(""); |
3151 g_string_append_printf(text, _("Username: <b>%s</b><br>\n"), userinfo->sn); | |
3152 g_string_append_printf(text, _("Warning Level: <b>%d%%</b><br>\n"), (int)((userinfo->warnlevel/10.0) + 0.5)); | |
3153 | |
3154 if (userinfo->present & AIM_USERINFO_PRESENT_ONLINESINCE) | |
3155 g_string_append_printf(text, _("Online Since: <b>%s</b><br>\n"), | |
3156 asctime(localtime((time_t *)&userinfo->onlinesince))); | |
3157 | |
3158 if (userinfo->present & AIM_USERINFO_PRESENT_MEMBERSINCE) | |
3159 g_string_append_printf(text, _("Member Since: <b>%s</b><br>\n"), | |
3160 asctime(localtime((time_t *)&userinfo->membersince))); | |
3161 | |
3162 if (userinfo->present & AIM_USERINFO_PRESENT_IDLE) { | |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
3163 gchar *itime = gaim_str_seconds_to_string(userinfo->idletime*60); |
7011 | 3164 g_string_append_printf(text, _("Idle: <b>%s</b>"), itime); |
4426 | 3165 g_free(itime); |
2993 | 3166 } else |
7011 | 3167 g_string_append_printf(text, _("Idle: <b>Active</b>")); |
3168 | |
3169 if ((userinfo->flags & AIM_FLAG_AWAY) && (userinfo->away_len > 0) && (userinfo->away != NULL) && (userinfo->away_encoding != NULL)) { | |
3170 away_utf8 = oscar_encoding_to_utf8(userinfo->away_encoding, userinfo->away, userinfo->away_len); | |
3171 if (away_utf8 != NULL) { | |
7129 | 3172 g_string_append_printf(text, "<hr>%s", away_utf8); |
7011 | 3173 g_free(away_utf8); |
2791
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
3174 } |
7011 | 3175 } |
3176 | |
3177 if ((userinfo->info_len > 0) && (userinfo->info != NULL) && (userinfo->info_encoding != NULL)) { | |
3178 info_utf8 = oscar_encoding_to_utf8(userinfo->info_encoding, userinfo->info, userinfo->info_len); | |
3179 if (info_utf8 != NULL) { | |
7129 | 3180 g_string_append_printf(text, "<hr>%s", info_utf8); |
7011 | 3181 g_free(info_utf8); |
2791
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
3182 } |
7011 | 3183 } |
3184 | |
7164 | 3185 final = gaim_str_sub_away_formatters(text->str, gaim_account_get_username(gaim_connection_get_account(gc))); |
7011 | 3186 g_string_free(text, TRUE); |
7091 | 3187 gaim_notify_formatted(gc, NULL, _("Buddy Information"), NULL, final, NULL, NULL); |
4151 | 3188 |
2086 | 3189 return 1; |
3190 } | |
3191 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3192 static int gaim_parse_motd(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 3193 char *msg; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3194 fu16_t id; |
2086 | 3195 va_list ap; |
3196 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3197 va_start(ap, fr); |
4199 | 3198 id = (fu16_t) va_arg(ap, unsigned int); |
2086 | 3199 msg = va_arg(ap, char *); |
3200 va_end(ap); | |
3201 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3202 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3203 "MOTD: %s (%hu)\n", msg ? msg : "Unknown", id); |
2092
59b0377d18aa
[gaim-migrate @ 2102]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2090
diff
changeset
|
3204 if (id < 4) |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
3205 gaim_notify_warning(sess->aux_data, NULL, |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
3206 _("Your AIM connection may be lost."), NULL); |
2086 | 3207 |
3208 return 1; | |
3209 } | |
3210 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3211 static int gaim_chatnav_info(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 3212 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3213 fu16_t type; |
5575 | 3214 GaimConnection *gc = sess->aux_data; |
4617 | 3215 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
2086 | 3216 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3217 va_start(ap, fr); |
4199 | 3218 type = (fu16_t) va_arg(ap, unsigned int); |
2086 | 3219 |
3220 switch(type) { | |
3221 case 0x0002: { | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3222 fu8_t maxrooms; |
2086 | 3223 struct aim_chat_exchangeinfo *exchanges; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3224 int exchangecount, i; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3225 |
4199 | 3226 maxrooms = (fu8_t) va_arg(ap, unsigned int); |
2086 | 3227 exchangecount = va_arg(ap, int); |
3228 exchanges = va_arg(ap, struct aim_chat_exchangeinfo *); | |
3229 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3230 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3231 "chat info: Chat Rights:\n"); |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3232 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3233 "chat info: \tMax Concurrent Rooms: %hhd\n", maxrooms); |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3234 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3235 "chat info: \tExchange List: (%d total)\n", exchangecount); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3236 for (i = 0; i < exchangecount; i++) |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3237 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3238 "chat info: \t\t%hu %s\n", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3239 exchanges[i].number, exchanges[i].name ? exchanges[i].name : ""); |
4617 | 3240 while (od->create_rooms) { |
3241 struct create_room *cr = od->create_rooms->data; | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3242 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3243 "creating room %s\n", cr->name); |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
3244 aim_chatnav_createroom(sess, fr->conn, cr->name, cr->exchange); |
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
3245 g_free(cr->name); |
4617 | 3246 od->create_rooms = g_slist_remove(od->create_rooms, cr); |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
3247 g_free(cr); |
2086 | 3248 } |
3249 } | |
3250 break; | |
3251 case 0x0008: { | |
3252 char *fqcn, *name, *ck; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3253 fu16_t instance, flags, maxmsglen, maxoccupancy, unknown, exchange; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3254 fu8_t createperms; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3255 fu32_t createtime; |
2086 | 3256 |
3257 fqcn = va_arg(ap, char *); | |
4200 | 3258 instance = (fu16_t)va_arg(ap, unsigned int); |
3259 exchange = (fu16_t)va_arg(ap, unsigned int); | |
3260 flags = (fu16_t)va_arg(ap, unsigned int); | |
3261 createtime = va_arg(ap, fu32_t); | |
3262 maxmsglen = (fu16_t)va_arg(ap, unsigned int); | |
3263 maxoccupancy = (fu16_t)va_arg(ap, unsigned int); | |
3264 createperms = (fu8_t)va_arg(ap, unsigned int); | |
3265 unknown = (fu16_t)va_arg(ap, unsigned int); | |
3266 name = va_arg(ap, char *); | |
3267 ck = va_arg(ap, char *); | |
4194 | 3268 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3269 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
5556 | 3270 "created room: %s %hu %hu %hu %u %hu %hu %hhu %hu %s %s\n", |
2086 | 3271 fqcn, |
3272 exchange, instance, flags, | |
3273 createtime, | |
3274 maxmsglen, maxoccupancy, createperms, unknown, | |
3275 name, ck); | |
4617 | 3276 aim_chat_join(od->sess, od->conn, exchange, ck, instance); |
2086 | 3277 } |
3278 break; | |
3279 default: | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3280 gaim_debug(GAIM_DEBUG_WARNING, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3281 "chatnav info: unknown type (%04hx)\n", type); |
2086 | 3282 break; |
3283 } | |
4194 | 3284 |
3285 va_end(ap); | |
3286 | |
2086 | 3287 return 1; |
3288 } | |
3289 | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
3290 static int gaim_conv_chat_join(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 3291 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3292 int count, i; |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3293 aim_userinfo_t *info; |
5575 | 3294 GaimConnection *g = sess->aux_data; |
2086 | 3295 |
3296 struct chat_connection *c = NULL; | |
3297 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3298 va_start(ap, fr); |
2086 | 3299 count = va_arg(ap, int); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3300 info = va_arg(ap, aim_userinfo_t *); |
2086 | 3301 va_end(ap); |
3302 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3303 c = find_oscar_chat_by_conn(g, fr->conn); |
2086 | 3304 if (!c) |
3305 return 1; | |
3306 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3307 for (i = 0; i < count; i++) |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
3308 gaim_conv_chat_add_user(GAIM_CONV_CHAT(c->cnv), info[i].sn, NULL); |
2086 | 3309 |
3310 return 1; | |
3311 } | |
3312 | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
3313 static int gaim_conv_chat_leave(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 3314 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3315 int count, i; |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3316 aim_userinfo_t *info; |
5575 | 3317 GaimConnection *g = sess->aux_data; |
2086 | 3318 |
3319 struct chat_connection *c = NULL; | |
3320 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3321 va_start(ap, fr); |
2086 | 3322 count = va_arg(ap, int); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3323 info = va_arg(ap, aim_userinfo_t *); |
2086 | 3324 va_end(ap); |
3325 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3326 c = find_oscar_chat_by_conn(g, fr->conn); |
2086 | 3327 if (!c) |
3328 return 1; | |
3329 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3330 for (i = 0; i < count; i++) |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
3331 gaim_conv_chat_remove_user(GAIM_CONV_CHAT(c->cnv), info[i].sn, NULL); |
2086 | 3332 |
3333 return 1; | |
3334 } | |
3335 | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
3336 static int gaim_conv_chat_info_update(aim_session_t *sess, aim_frame_t *fr, ...) { |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3337 va_list ap; |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3338 aim_userinfo_t *userinfo; |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3339 struct aim_chat_roominfo *roominfo; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3340 char *roomname; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3341 int usercount; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3342 char *roomdesc; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3343 fu16_t unknown_c9, unknown_d2, unknown_d5, maxmsglen, maxvisiblemsglen; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3344 fu32_t creationtime; |
5575 | 3345 GaimConnection *gc = sess->aux_data; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3346 struct chat_connection *ccon = find_oscar_chat_by_conn(gc, fr->conn); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3347 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3348 va_start(ap, fr); |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3349 roominfo = va_arg(ap, struct aim_chat_roominfo *); |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3350 roomname = va_arg(ap, char *); |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3351 usercount= va_arg(ap, int); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3352 userinfo = va_arg(ap, aim_userinfo_t *); |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3353 roomdesc = va_arg(ap, char *); |
4200 | 3354 unknown_c9 = (fu16_t)va_arg(ap, unsigned int); |
3355 creationtime = va_arg(ap, fu32_t); | |
3356 maxmsglen = (fu16_t)va_arg(ap, unsigned int); | |
3357 unknown_d2 = (fu16_t)va_arg(ap, unsigned int); | |
3358 unknown_d5 = (fu16_t)va_arg(ap, unsigned int); | |
3359 maxvisiblemsglen = (fu16_t)va_arg(ap, unsigned int); | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3360 va_end(ap); |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3361 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3362 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3363 "inside chat_info_update (maxmsglen = %hu, maxvislen = %hu)\n", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3364 maxmsglen, maxvisiblemsglen); |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3365 |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3366 ccon->maxlen = maxmsglen; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3367 ccon->maxvis = maxvisiblemsglen; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3368 |
2086 | 3369 return 1; |
3370 } | |
3371 | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
3372 static int gaim_conv_chat_incoming_msg(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 3373 GaimConnection *gc = sess->aux_data; |
2086 | 3374 va_list ap; |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3375 aim_userinfo_t *info; |
2086 | 3376 char *msg; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3377 struct chat_connection *ccon = find_oscar_chat_by_conn(gc, fr->conn); |
2086 | 3378 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3379 va_start(ap, fr); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3380 info = va_arg(ap, aim_userinfo_t *); |
4194 | 3381 msg = va_arg(ap, char *); |
3382 va_end(ap); | |
2086 | 3383 |
4269 | 3384 serv_got_chat_in(gc, ccon->id, info->sn, 0, msg, time((time_t)NULL)); |
2086 | 3385 |
3386 return 1; | |
3387 } | |
3388 | |
3694 | 3389 static int gaim_email_parseupdate(aim_session_t *sess, aim_frame_t *fr, ...) { |
3390 va_list ap; | |
5575 | 3391 GaimConnection *gc = sess->aux_data; |
3694 | 3392 struct aim_emailinfo *emailinfo; |
3725 | 3393 int havenewmail; |
3694 | 3394 |
3395 va_start(ap, fr); | |
3396 emailinfo = va_arg(ap, struct aim_emailinfo *); | |
3725 | 3397 havenewmail = va_arg(ap, int); |
3694 | 3398 va_end(ap); |
3399 | |
5628 | 3400 if (emailinfo && gaim_account_get_check_mail(gc->account)) { |
5575 | 3401 gchar *to = g_strdup_printf("%s@%s", gaim_account_get_username(gaim_connection_get_account(gc)), emailinfo->domain); |
5542 | 3402 if (emailinfo->unread && havenewmail) |
3403 gaim_notify_emails(gc, emailinfo->nummsgs, FALSE, NULL, NULL, (const char **)&to, (const char **)&emailinfo->url, NULL, NULL); | |
5537 | 3404 g_free(to); |
3694 | 3405 } |
3406 | |
3407 return 1; | |
3408 } | |
3409 | |
4804 | 3410 static int gaim_icon_error(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 3411 GaimConnection *gc = sess->aux_data; |
4804 | 3412 struct oscar_data *od = gc->proto_data; |
3413 char *sn; | |
3414 | |
3415 sn = od->requesticon->data; | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3416 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3417 "removing %s from hash table\n", sn); |
4804 | 3418 od->requesticon = g_slist_remove(od->requesticon, sn); |
3419 free(sn); | |
3420 | |
3421 if (od->icontimer) | |
3422 g_source_remove(od->icontimer); | |
3423 od->icontimer = g_timeout_add(500, gaim_icon_timerfunc, gc); | |
3424 | |
3425 return 1; | |
3426 } | |
3427 | |
3428 static int gaim_icon_parseicon(aim_session_t *sess, aim_frame_t *fr, ...) { | |
5575 | 3429 GaimConnection *gc = sess->aux_data; |
4804 | 3430 struct oscar_data *od = gc->proto_data; |
3431 GSList *cur; | |
3432 va_list ap; | |
3433 char *sn; | |
4853 | 3434 fu8_t *iconcsum, *icon; |
3435 fu16_t iconcsumlen, iconlen; | |
4804 | 3436 |
3437 va_start(ap, fr); | |
3438 sn = va_arg(ap, char *); | |
4853 | 3439 iconcsum = va_arg(ap, fu8_t *); |
3440 iconcsumlen = va_arg(ap, int); | |
4804 | 3441 icon = va_arg(ap, fu8_t *); |
3442 iconlen = va_arg(ap, int); | |
3443 va_end(ap); | |
3444 | |
4853 | 3445 if (iconlen > 0) { |
3446 char *b16; | |
6695 | 3447 GaimBuddy *b = gaim_find_buddy(gc->account, sn); |
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6787
diff
changeset
|
3448 gaim_buddy_icons_set_for_user(gaim_connection_get_account(gc), |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6787
diff
changeset
|
3449 sn, icon, iconlen); |
7106
db6bd3e794d8
[gaim-migrate @ 7671]
Christian Hammond <chipx86@chipx86.com>
parents:
7098
diff
changeset
|
3450 b16 = gaim_base16_encode(iconcsum, iconcsumlen); |
5129 | 3451 if (b16) { |
3452 gaim_buddy_set_setting(b, "icon_checksum", b16); | |
3453 gaim_blist_save(); | |
7162 | 3454 g_free(b16); |
5129 | 3455 } |
4853 | 3456 } |
4804 | 3457 |
3458 cur = od->requesticon; | |
3459 while (cur) { | |
3460 char *cursn = cur->data; | |
3461 if (!aim_sncmp(cursn, sn)) { | |
3462 od->requesticon = g_slist_remove(od->requesticon, cursn); | |
3463 free(cursn); | |
3464 cur = od->requesticon; | |
3465 } else | |
3466 cur = cur->next; | |
3467 } | |
3468 | |
3469 if (od->icontimer) | |
3470 g_source_remove(od->icontimer); | |
3471 od->icontimer = g_timeout_add(250, gaim_icon_timerfunc, gc); | |
3472 | |
3473 return 1; | |
3474 } | |
3475 | |
3476 static gboolean gaim_icon_timerfunc(gpointer data) { | |
5575 | 3477 GaimConnection *gc = data; |
4804 | 3478 struct oscar_data *od = gc->proto_data; |
7011 | 3479 aim_userinfo_t *userinfo; |
4804 | 3480 aim_conn_t *conn; |
3481 | |
3482 conn = aim_getconn_type(od->sess, AIM_CONN_TYPE_ICON); | |
5892 | 3483 if (!conn) { |
3484 if (!od->iconconnecting) { | |
3485 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_ICON); | |
3486 od->iconconnecting = TRUE; | |
3487 } | |
4804 | 3488 return FALSE; |
3489 } | |
3490 | |
5842 | 3491 if (od->set_icon) { |
6039 | 3492 struct stat st; |
3493 const char *iconfile = gaim_account_get_buddy_icon(gaim_connection_get_account(gc)); | |
3494 if (iconfile == NULL) { | |
3495 /* Set an empty icon, or something */ | |
3496 } else if (!stat(iconfile, &st)) { | |
3497 char *buf = g_malloc(st.st_size); | |
3498 FILE *file = fopen(iconfile, "rb"); | |
3499 if (file) { | |
3500 fread(buf, 1, st.st_size, file); | |
3501 fclose(file); | |
3502 gaim_debug(GAIM_DEBUG_INFO, "oscar", | |
3503 "Uploading icon to icon server\n"); | |
6879 | 3504 aim_bart_upload(od->sess, buf, st.st_size); |
5842 | 3505 } else |
3506 gaim_debug(GAIM_DEBUG_ERROR, "oscar", | |
6039 | 3507 "Can't open buddy icon file!\n"); |
3508 g_free(buf); | |
3509 } else { | |
3510 gaim_debug(GAIM_DEBUG_ERROR, "oscar", | |
3511 "Can't stat buddy icon file!\n"); | |
5842 | 3512 } |
3513 od->set_icon = FALSE; | |
3514 } | |
3515 | |
3516 if (!od->requesticon) { | |
3517 gaim_debug(GAIM_DEBUG_MISC, "oscar", | |
3518 "no more icons to request\n"); | |
3519 return FALSE; | |
3520 } | |
3521 | |
7045 | 3522 userinfo = aim_locate_finduserinfo(od->sess, (char *)od->requesticon->data); |
7011 | 3523 if ((userinfo != NULL) && (userinfo->iconcsumlen > 0)) { |
3524 aim_bart_request(od->sess, od->requesticon->data, userinfo->iconcsum, userinfo->iconcsumlen); | |
4804 | 3525 return FALSE; |
3526 } else { | |
3527 char *sn = od->requesticon->data; | |
3528 od->requesticon = g_slist_remove(od->requesticon, sn); | |
3529 free(sn); | |
3530 } | |
3531 | |
3532 return TRUE; | |
3533 } | |
3534 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3535 /* |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3536 * Recieved in response to an IM sent with the AIM_IMFLAGS_ACK option. |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3537 */ |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3538 static int gaim_parse_msgack(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 3539 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3540 fu16_t type; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3541 char *sn; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3542 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3543 va_start(ap, fr); |
4199 | 3544 type = (fu16_t) va_arg(ap, unsigned int); |
2086 | 3545 sn = va_arg(ap, char *); |
3546 va_end(ap); | |
3547 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3548 gaim_debug(GAIM_DEBUG_INFO, "oscar", "Sent message to %s.\n", sn); |
2086 | 3549 |
3550 return 1; | |
3551 } | |
3552 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3553 static int gaim_parse_ratechange(aim_session_t *sess, aim_frame_t *fr, ...) { |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3554 static const char *codes[5] = { |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3555 "invalid", |
4194 | 3556 "change", |
3557 "warning", | |
3558 "limit", | |
3559 "limit cleared", | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3560 }; |
2086 | 3561 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3562 fu16_t code, rateclass; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3563 fu32_t windowsize, clear, alert, limit, disconnect, currentavg, maxavg; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3564 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3565 va_start(ap, fr); |
4200 | 3566 code = (fu16_t)va_arg(ap, unsigned int); |
3567 rateclass= (fu16_t)va_arg(ap, unsigned int); | |
3568 windowsize = va_arg(ap, fu32_t); | |
3569 clear = va_arg(ap, fu32_t); | |
3570 alert = va_arg(ap, fu32_t); | |
3571 limit = va_arg(ap, fu32_t); | |
3572 disconnect = va_arg(ap, fu32_t); | |
3573 currentavg = va_arg(ap, fu32_t); | |
3574 maxavg = va_arg(ap, fu32_t); | |
2086 | 3575 va_end(ap); |
3576 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3577 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
5556 | 3578 "rate %s (param ID 0x%04hx): curavg = %u, maxavg = %u, alert at %u, " |
3579 "clear warning at %u, limit at %u, disconnect at %u (window size = %u)\n", | |
2086 | 3580 (code < 5) ? codes[code] : codes[0], |
3581 rateclass, | |
3582 currentavg, maxavg, | |
3583 alert, clear, | |
3584 limit, disconnect, | |
3585 windowsize); | |
3586 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3587 /* XXX fix these values */ |
2086 | 3588 if (code == AIM_RATE_CODE_CHANGE) { |
3589 if (currentavg >= clear) | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3590 aim_conn_setlatency(fr->conn, 0); |
2086 | 3591 } else if (code == AIM_RATE_CODE_WARNING) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3592 aim_conn_setlatency(fr->conn, windowsize/4); |
2909
48ec70928d7f
[gaim-migrate @ 2922]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2906
diff
changeset
|
3593 } else if (code == AIM_RATE_CODE_LIMIT) { |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
3594 gaim_notify_error(sess->aux_data, NULL, _("Rate limiting error."), |
6040 | 3595 _("The last action you attempted could not be " |
3596 "performed because you are over the rate limit. " | |
3597 "Please wait 10 seconds and try again.")); | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3598 aim_conn_setlatency(fr->conn, windowsize/2); |
2086 | 3599 } else if (code == AIM_RATE_CODE_CLEARLIMIT) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3600 aim_conn_setlatency(fr->conn, 0); |
2086 | 3601 } |
3602 | |
3603 return 1; | |
3604 } | |
3605 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3606 static int gaim_parse_evilnotify(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 3607 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3608 fu16_t newevil; |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3609 aim_userinfo_t *userinfo; |
5575 | 3610 GaimConnection *gc = sess->aux_data; |
2086 | 3611 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3612 va_start(ap, fr); |
4199 | 3613 newevil = (fu16_t) va_arg(ap, unsigned int); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3614 userinfo = va_arg(ap, aim_userinfo_t *); |
2086 | 3615 va_end(ap); |
3616 | |
7111 | 3617 serv_got_eviled(gc, (userinfo && userinfo->sn) ? userinfo->sn : NULL, (newevil/10.0) + 0.5); |
2086 | 3618 |
3619 return 1; | |
3620 } | |
3621 | |
2507
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3622 static int gaim_selfinfo(aim_session_t *sess, aim_frame_t *fr, ...) { |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3623 va_list ap; |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3624 aim_userinfo_t *info; |
5575 | 3625 GaimConnection *gc = sess->aux_data; |
2507
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3626 |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3627 va_start(ap, fr); |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3628 info = va_arg(ap, aim_userinfo_t *); |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3629 va_end(ap); |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3630 |
5628 | 3631 gc->evil = (info->warnlevel/10.0) + 0.5; |
4841 | 3632 |
3633 if (info->onlinesince) | |
3634 gc->login_time_official = info->onlinesince; | |
2507
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3635 |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3636 return 1; |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3637 } |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3638 |
4649 | 3639 static int gaim_connerr(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 3640 GaimConnection *gc = sess->aux_data; |
4666 | 3641 struct oscar_data *od = gc->proto_data; |
4649 | 3642 va_list ap; |
3643 fu16_t code; | |
3644 char *msg; | |
3645 | |
3646 va_start(ap, fr); | |
3647 code = (fu16_t)va_arg(ap, int); | |
3648 msg = va_arg(ap, char *); | |
3649 va_end(ap); | |
3650 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3651 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3652 "Disconnected. Code is 0x%04x and msg is %s\n", code, msg); |
4649 | 3653 if ((fr) && (fr->conn) && (fr->conn->type == AIM_CONN_TYPE_BOS)) { |
4651 | 3654 if (code == 0x0001) { |
6113 | 3655 gc->wants_to_die = TRUE; |
5579 | 3656 gaim_connection_error(gc, _("You have been disconnected because you have signed on with this screen name at another location.")); |
4651 | 3657 } else { |
5579 | 3658 gaim_connection_error(gc, _("You have been signed off for an unknown reason.")); |
4651 | 3659 } |
4666 | 3660 od->killme = TRUE; |
4649 | 3661 } |
3662 | |
3663 return 1; | |
3664 } | |
3665 | |
2675 | 3666 static int conninitdone_bos(aim_session_t *sess, aim_frame_t *fr, ...) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3667 |
2703
441b84ab7f4e
[gaim-migrate @ 2716]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2698
diff
changeset
|
3668 aim_reqpersonalinfo(sess, fr->conn); |
4230 | 3669 |
3670 #ifndef NOSSI | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3671 gaim_debug(GAIM_DEBUG_INFO, "oscar", "ssi: requesting ssi list\n"); |
4889 | 3672 aim_ssi_reqrights(sess); |
6350 | 3673 aim_ssi_reqdata(sess); |
4230 | 3674 #endif |
3675 | |
7011 | 3676 aim_locate_reqrights(sess); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3677 aim_bos_reqbuddyrights(sess, fr->conn); |
4617 | 3678 aim_im_reqparams(sess); |
5948 | 3679 aim_bos_reqrights(sess, fr->conn); /* XXX - Don't call this with ssi? */ |
4230 | 3680 |
3681 #ifdef NOSSI | |
3682 aim_bos_setgroupperm(sess, fr->conn, AIM_FLAG_ALLUSERS); | |
3683 aim_bos_setprivacyflags(sess, fr->conn, AIM_PRIVFLAGS_ALLOWIDLE | AIM_PRIVFLAGS_ALLOWMEMBERSINCE); | |
3684 #endif | |
2086 | 3685 |
3686 return 1; | |
3687 } | |
3688 | |
2675 | 3689 static int conninitdone_admin(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 3690 GaimConnection *gc = sess->aux_data; |
2647 | 3691 struct oscar_data *od = gc->proto_data; |
3692 | |
6905 | 3693 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_ADM, 0x0003, gaim_info_change, 0); |
3694 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_ADM, 0x0005, gaim_info_change, 0); | |
3695 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_ADM, 0x0007, gaim_account_confirm, 0); | |
3696 | |
2672 | 3697 aim_clientready(sess, fr->conn); |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3698 gaim_debug(GAIM_DEBUG_INFO, "oscar", "connected to admin\n"); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3699 |
2647 | 3700 if (od->chpass) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3701 gaim_debug(GAIM_DEBUG_INFO, "oscar", "changing password\n"); |
2703
441b84ab7f4e
[gaim-migrate @ 2716]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2698
diff
changeset
|
3702 aim_admin_changepasswd(sess, fr->conn, od->newp, od->oldp); |
2647 | 3703 g_free(od->oldp); |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3704 od->oldp = NULL; |
2647 | 3705 g_free(od->newp); |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3706 od->newp = NULL; |
2647 | 3707 od->chpass = FALSE; |
3708 } | |
2979 | 3709 if (od->setnick) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3710 gaim_debug(GAIM_DEBUG_INFO, "oscar", "formatting screenname\n"); |
2979 | 3711 aim_admin_setnick(sess, fr->conn, od->newsn); |
3712 g_free(od->newsn); | |
3713 od->newsn = NULL; | |
3714 od->setnick = FALSE; | |
3715 } | |
2647 | 3716 if (od->conf) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3717 gaim_debug(GAIM_DEBUG_INFO, "oscar", "confirming account\n"); |
2703
441b84ab7f4e
[gaim-migrate @ 2716]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2698
diff
changeset
|
3718 aim_admin_reqconfirm(sess, fr->conn); |
2647 | 3719 od->conf = FALSE; |
3720 } | |
3721 if (od->reqemail) { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3722 gaim_debug(GAIM_DEBUG_INFO, "oscar", "requesting email\n"); |
2703
441b84ab7f4e
[gaim-migrate @ 2716]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2698
diff
changeset
|
3723 aim_admin_getinfo(sess, fr->conn, 0x0011); |
2647 | 3724 od->reqemail = FALSE; |
3725 } | |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3726 if (od->setemail) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3727 gaim_debug(GAIM_DEBUG_INFO, "oscar", "setting email\n"); |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3728 aim_admin_setemail(sess, fr->conn, od->email); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3729 g_free(od->email); |
5497 | 3730 od->email = NULL; |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3731 od->setemail = FALSE; |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3732 } |
2647 | 3733 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3734 return 1; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3735 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3736 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3737 static int gaim_icbm_param_info(aim_session_t *sess, aim_frame_t *fr, ...) { |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3738 struct aim_icbmparameters *params; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3739 va_list ap; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3740 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3741 va_start(ap, fr); |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3742 params = va_arg(ap, struct aim_icbmparameters *); |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3743 va_end(ap); |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3744 |
4194 | 3745 /* XXX - evidently this crashes on solaris. i have no clue why |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3746 gaim_debug(GAIM_DEBUG_MISC, "oscar", "ICBM Parameters: maxchannel = %hu, default flags = 0x%08lx, max msg len = %hu, " |
5556 | 3747 "max sender evil = %f, max receiver evil = %f, min msg interval = %u\n", |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3748 params->maxchan, params->flags, params->maxmsglen, |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3749 ((float)params->maxsenderwarn)/10.0, ((float)params->maxrecverwarn)/10.0, |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3750 params->minmsginterval); |
2427
5bc3b39fc0a5
[gaim-migrate @ 2440]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2421
diff
changeset
|
3751 */ |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3752 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3753 /* Maybe senderwarn and recverwarn should be user preferences... */ |
3595 | 3754 params->flags = 0x0000000b; |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3755 params->maxmsglen = 8000; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3756 params->minmsginterval = 0; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3757 |
4617 | 3758 aim_im_setparams(sess, params); |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3759 |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3760 return 1; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3761 } |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3762 |
2993 | 3763 static int gaim_parse_locaterights(aim_session_t *sess, aim_frame_t *fr, ...) |
3764 { | |
5575 | 3765 GaimConnection *gc = sess->aux_data; |
4617 | 3766 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
5306 | 3767 va_list ap; |
3768 fu16_t maxsiglen; | |
2993 | 3769 |
3770 va_start(ap, fr); | |
4199 | 3771 maxsiglen = (fu16_t) va_arg(ap, int); |
2993 | 3772 va_end(ap); |
3773 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3774 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3775 "locate rights: max sig len = %d\n", maxsiglen); |
2993 | 3776 |
4617 | 3777 od->rights.maxsiglen = od->rights.maxawaymsglen = (guint)maxsiglen; |
3778 | |
3779 if (od->icq) | |
7011 | 3780 aim_locate_setprofile(sess, NULL, NULL, 0, NULL, NULL, 0, caps_icq); |
5301 | 3781 else |
5954 | 3782 oscar_set_info(gc, gc->account->user_info); |
2993 | 3783 |
3784 return 1; | |
3785 } | |
3786 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3787 static int gaim_parse_buddyrights(aim_session_t *sess, aim_frame_t *fr, ...) { |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3788 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3789 fu16_t maxbuddies, maxwatchers; |
5575 | 3790 GaimConnection *gc = sess->aux_data; |
4617 | 3791 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3792 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3793 va_start(ap, fr); |
4199 | 3794 maxbuddies = (fu16_t) va_arg(ap, unsigned int); |
3795 maxwatchers = (fu16_t) va_arg(ap, unsigned int); | |
2086 | 3796 va_end(ap); |
3797 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3798 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3799 "buddy list rights: Max buddies = %hu / Max watchers = %hu\n", maxbuddies, maxwatchers); |
2086 | 3800 |
4617 | 3801 od->rights.maxbuddies = (guint)maxbuddies; |
3802 od->rights.maxwatchers = (guint)maxwatchers; | |
2993 | 3803 |
2086 | 3804 return 1; |
3805 } | |
3806 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3807 static int gaim_bosrights(aim_session_t *sess, aim_frame_t *fr, ...) { |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3808 fu16_t maxpermits, maxdenies; |
2086 | 3809 va_list ap; |
5575 | 3810 GaimConnection *gc = sess->aux_data; |
4617 | 3811 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
2086 | 3812 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3813 va_start(ap, fr); |
4199 | 3814 maxpermits = (fu16_t) va_arg(ap, unsigned int); |
3815 maxdenies = (fu16_t) va_arg(ap, unsigned int); | |
2086 | 3816 va_end(ap); |
3817 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3818 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3819 "BOS rights: Max permit = %hu / Max deny = %hu\n", maxpermits, maxdenies); |
2086 | 3820 |
4617 | 3821 od->rights.maxpermits = (guint)maxpermits; |
3822 od->rights.maxdenies = (guint)maxdenies; | |
2993 | 3823 |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
3824 gaim_connection_set_state(gc, GAIM_CONNECTED); |
2993 | 3825 serv_finish_login(gc); |
3826 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3827 gaim_debug(GAIM_DEBUG_INFO, "oscar", "buddy list loaded\n"); |
2993 | 3828 |
2672 | 3829 aim_clientready(sess, fr->conn); |
5948 | 3830 aim_srv_setavailmsg(sess, NULL); |
5917 | 3831 aim_bos_setidle(sess, fr->conn, 0); |
4617 | 3832 |
4664 | 3833 if (od->icq) { |
3834 aim_icq_reqofflinemsgs(sess); | |
3835 aim_icq_hideip(sess); | |
3836 } | |
2706
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3837 |
2703
441b84ab7f4e
[gaim-migrate @ 2716]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2698
diff
changeset
|
3838 aim_reqservice(sess, fr->conn, AIM_CONN_TYPE_CHATNAV); |
4102 | 3839 if (sess->authinfo->email) |
3840 aim_reqservice(sess, fr->conn, AIM_CONN_TYPE_EMAIL); | |
2086 | 3841 |
3842 return 1; | |
3843 } | |
3844 | |
2706
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3845 static int gaim_offlinemsg(aim_session_t *sess, aim_frame_t *fr, ...) { |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3846 va_list ap; |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3847 struct aim_icq_offlinemsg *msg; |
4075 | 3848 struct aim_incomingim_ch4_args args; |
3849 time_t t; | |
2706
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3850 |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3851 va_start(ap, fr); |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3852 msg = va_arg(ap, struct aim_icq_offlinemsg *); |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3853 va_end(ap); |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3854 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3855 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3856 "Received offline message. Converting to channel 4 ICBM...\n"); |
4075 | 3857 args.uin = msg->sender; |
3858 args.type = msg->type; | |
4173 | 3859 args.flags = msg->flags; |
4076 | 3860 args.msglen = msg->msglen; |
4075 | 3861 args.msg = msg->msg; |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
3862 t = gaim_time_build(msg->year, msg->month, msg->day, msg->hour, msg->minute, 0); |
4075 | 3863 incomingim_chan4(sess, fr->conn, NULL, &args, t); |
2706
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3864 |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3865 return 1; |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3866 } |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3867 |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3868 static int gaim_offlinemsgdone(aim_session_t *sess, aim_frame_t *fr, ...) |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3869 { |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3870 aim_icq_ackofflinemsgs(sess); |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3871 return 1; |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3872 } |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
3873 |
4624 | 3874 static int gaim_icqinfo(aim_session_t *sess, aim_frame_t *fr, ...) |
2742
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
3875 { |
5575 | 3876 GaimConnection *gc = sess->aux_data; |
4819 | 3877 gchar *buf, *tmp, *utf8; |
4624 | 3878 gchar who[16]; |
6873 | 3879 GaimBuddy *buddy; |
3880 gchar *primary; | |
2742
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
3881 va_list ap; |
4151 | 3882 struct aim_icq_info *info; |
2742
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
3883 |
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
3884 va_start(ap, fr); |
4151 | 3885 info = va_arg(ap, struct aim_icq_info *); |
2742
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
3886 va_end(ap); |
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
3887 |
4664 | 3888 if (!info->uin) |
3889 return 0; | |
3890 | |
5556 | 3891 g_snprintf(who, sizeof(who), "%u", info->uin); |
6623 | 3892 buf = g_strdup_printf("<b>%s:</b> %s", _("UIN"), who); |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
3893 if (info->nick && info->nick[0] && (utf8 = gaim_utf8_try_convert(info->nick))) { |
6623 | 3894 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Nick"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4819 | 3895 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
3896 if (info->first && info->first[0] && (utf8 = gaim_utf8_try_convert(info->first))) { |
6623 | 3897 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("First Name"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4819 | 3898 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
3899 if (info->last && info->last[0] && (utf8 = gaim_utf8_try_convert(info->last))) { |
6623 | 3900 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Last Name"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4819 | 3901 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
3902 if (info->email && info->email[0] && (utf8 = gaim_utf8_try_convert(info->email))) { |
6623 | 3903 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Email Address"), ":</b> <a href=\"mailto:", utf8, "\">", utf8, "</a>", NULL); g_free(tmp); g_free(utf8); |
4625 | 3904 } |
3905 if (info->numaddresses && info->email2) { | |
3906 int i; | |
3907 for (i = 0; i < info->numaddresses; i++) { | |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
3908 if (info->email2[i] && info->email2[i][0] && (utf8 = gaim_utf8_try_convert(info->email2[i]))) { |
6623 | 3909 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Email Address"), ":</b> <a href=\"mailto:", utf8, "\">", utf8, "</a>", NULL); g_free(tmp); g_free(utf8); |
4643 | 3910 } |
4625 | 3911 } |
4624 | 3912 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
3913 if (info->mobile && info->mobile[0] && (utf8 = gaim_utf8_try_convert(info->mobile))) { |
6623 | 3914 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Mobile Phone"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4625 | 3915 } |
3916 if (info->gender) { | |
6623 | 3917 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Gender"), ":</b> ", info->gender==1 ? _("Female") : _("Male"), NULL); g_free(tmp); |
4151 | 3918 } |
4624 | 3919 if (info->birthyear || info->birthmonth || info->birthday) { |
4627 | 3920 char date[30]; |
3921 struct tm tm; | |
3922 tm.tm_mday = (int)info->birthday; | |
3923 tm.tm_mon = (int)info->birthmonth-1; | |
3924 tm.tm_year = (int)info->birthyear-1900; | |
4628 | 3925 strftime(date, sizeof(date), "%x", &tm); |
6623 | 3926 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Birthday"), ":</b> ", date, NULL); g_free(tmp); |
4151 | 3927 } |
4624 | 3928 if (info->age) { |
3929 char age[5]; | |
3930 snprintf(age, sizeof(age), "%hhd", info->age); | |
6623 | 3931 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Age"), ":</b> ", age, NULL); g_free(tmp); |
4819 | 3932 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
3933 if (info->personalwebpage && info->personalwebpage[0] && (utf8 = gaim_utf8_try_convert(info->personalwebpage))) { |
6623 | 3934 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); |
4819 | 3935 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
3936 if (info->info && info->info[0] && (utf8 = gaim_utf8_try_convert(info->info))) { |
6623 | 3937 tmp = buf; buf = g_strconcat(tmp, "<hr><b>", _("Additional Information"), ":</b><br>", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 3938 } |
3939 tmp = buf; buf = g_strconcat(tmp, "<hr>\n", NULL); g_free(tmp); | |
4641 | 3940 if ((info->homeaddr && (info->homeaddr[0])) || (info->homecity && info->homecity[0]) || (info->homestate && info->homestate[0]) || (info->homezip && info->homezip[0])) { |
6623 | 3941 tmp = buf; buf = g_strconcat(tmp, "<b>", _("Home Address"), ":</b>", NULL); g_free(tmp); |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
3942 if (info->homeaddr && info->homeaddr[0] && (utf8 = gaim_utf8_try_convert(info->homeaddr))) { |
6623 | 3943 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Address"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 3944 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
3945 if (info->homecity && info->homecity[0] && (utf8 = gaim_utf8_try_convert(info->homecity))) { |
6623 | 3946 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("City"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 3947 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
3948 if (info->homestate && info->homestate[0] && (utf8 = gaim_utf8_try_convert(info->homestate))) { |
6623 | 3949 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("State"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 3950 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
3951 if (info->homezip && info->homezip[0] && (utf8 = gaim_utf8_try_convert(info->homezip))) { |
6623 | 3952 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Zip Code"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 3953 } |
3954 tmp = buf; buf = g_strconcat(tmp, "\n<hr>\n", NULL); g_free(tmp); | |
4151 | 3955 } |
4641 | 3956 if ((info->workaddr && info->workaddr[0]) || (info->workcity && info->workcity[0]) || (info->workstate && info->workstate[0]) || (info->workzip && info->workzip[0])) { |
6623 | 3957 tmp = buf; buf = g_strconcat(tmp, "<b>", _("Work Address"), ":</b>", NULL); g_free(tmp); |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
3958 if (info->workaddr && info->workaddr[0] && (utf8 = gaim_utf8_try_convert(info->workaddr))) { |
6623 | 3959 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Address"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 3960 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
3961 if (info->workcity && info->workcity[0] && (utf8 = gaim_utf8_try_convert(info->workcity))) { |
6623 | 3962 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("City"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 3963 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
3964 if (info->workstate && info->workstate[0] && (utf8 = gaim_utf8_try_convert(info->workstate))) { |
6623 | 3965 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("State"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 3966 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
3967 if (info->workzip && info->workzip[0] && (utf8 = gaim_utf8_try_convert(info->workzip))) { |
6623 | 3968 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Zip Code"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 3969 } |
3970 tmp = buf; buf = g_strconcat(tmp, "\n<hr>\n", NULL); g_free(tmp); | |
3971 } | |
4641 | 3972 if ((info->workcompany && info->workcompany[0]) || (info->workdivision && info->workdivision[0]) || (info->workposition && info->workposition[0]) || (info->workwebpage && info->workwebpage[0])) { |
6623 | 3973 tmp = buf; buf = g_strconcat(tmp, "<b>", _("Work Information"), ":</b>", NULL); g_free(tmp); |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
3974 if (info->workcompany && info->workcompany[0] && (utf8 = gaim_utf8_try_convert(info->workcompany))) { |
6623 | 3975 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Company"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 3976 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
3977 if (info->workdivision && info->workdivision[0] && (utf8 = gaim_utf8_try_convert(info->workdivision))) { |
6623 | 3978 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Division"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 3979 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
3980 if (info->workposition && info->workposition[0] && (utf8 = gaim_utf8_try_convert(info->workposition))) { |
6623 | 3981 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Position"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 3982 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
3983 if (info->workwebpage && info->workwebpage[0] && (utf8 = gaim_utf8_try_convert(info->workwebpage))) { |
6623 | 3984 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Web Page"), ":</b> <a href=\"", utf8, "\">", utf8, "</a>", NULL); g_free(tmp); g_free(utf8); |
4624 | 3985 } |
3986 tmp = buf; buf = g_strconcat(tmp, "\n<hr>\n", NULL); g_free(tmp); | |
4151 | 3987 } |
3988 | |
6873 | 3989 buddy = gaim_find_buddy(gaim_connection_get_account(gc), who); |
3990 primary = g_strdup_printf(_("ICQ Info for %s"), gaim_get_buddy_alias(buddy)); | |
3991 gaim_notify_formatted(gc, NULL, primary, NULL, buf, NULL, NULL); | |
3992 g_free(primary); | |
4151 | 3993 g_free(buf); |
3994 | |
2742
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
3995 return 1; |
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
3996 } |
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
3997 |
4759 | 3998 static int gaim_icqalias(aim_session_t *sess, aim_frame_t *fr, ...) |
3999 { | |
5575 | 4000 GaimConnection *gc = sess->aux_data; |
4820 | 4001 gchar who[16], *utf8; |
6695 | 4002 GaimBuddy *b; |
4759 | 4003 va_list ap; |
4004 struct aim_icq_info *info; | |
4005 | |
4006 va_start(ap, fr); | |
4007 info = va_arg(ap, struct aim_icq_info *); | |
4008 va_end(ap); | |
4009 | |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4010 if (info->uin && info->nick && info->nick[0] && (utf8 = gaim_utf8_try_convert(info->nick))) { |
5556 | 4011 g_snprintf(who, sizeof(who), "%u", info->uin); |
4820 | 4012 serv_got_alias(gc, who, utf8); |
4759 | 4013 if ((b = gaim_find_buddy(gc->account, who))) { |
4820 | 4014 gaim_buddy_set_setting(b, "servernick", utf8); |
4759 | 4015 gaim_blist_save(); |
4016 } | |
4820 | 4017 g_free(utf8); |
4759 | 4018 } |
4019 | |
4020 return 1; | |
4021 } | |
4022 | |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4023 static int gaim_popup(aim_session_t *sess, aim_frame_t *fr, ...) |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4024 { |
7032 | 4025 GaimConnection *gc = sess->aux_data; |
4026 gchar *text; | |
4027 va_list ap; | |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4028 char *msg, *url; |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4029 fu16_t wid, hei, delay; |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4030 |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4031 va_start(ap, fr); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4032 msg = va_arg(ap, char *); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4033 url = va_arg(ap, char *); |
4199 | 4034 wid = (fu16_t) va_arg(ap, int); |
4035 hei = (fu16_t) va_arg(ap, int); | |
4036 delay = (fu16_t) va_arg(ap, int); | |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4037 va_end(ap); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4038 |
7032 | 4039 text = g_strdup_printf("%s<br><a href=\"%s\">%s</a>", msg, url, url); |
4040 gaim_notify_formatted(gc, NULL, _("Pop-Up Message"), NULL, text, NULL, NULL); | |
4041 g_free(text); | |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4042 |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4043 return 1; |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4044 } |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4045 |
7032 | 4046 static int gaim_parse_searchreply(aim_session_t *sess, aim_frame_t *fr, ...) |
4047 { | |
6873 | 4048 GaimConnection *gc = sess->aux_data; |
4049 gchar *secondary; | |
4050 GString *text; | |
4051 int i, num; | |
2086 | 4052 va_list ap; |
6873 | 4053 char *email, *SNs; |
2086 | 4054 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4055 va_start(ap, fr); |
6873 | 4056 email = va_arg(ap, char *); |
2086 | 4057 num = va_arg(ap, int); |
4058 SNs = va_arg(ap, char *); | |
4059 va_end(ap); | |
4060 | |
6873 | 4061 secondary = g_strdup_printf(_("The following screennames are associated with %s"), email); |
4062 text = g_string_new(""); | |
2086 | 4063 for (i = 0; i < num; i++) |
6873 | 4064 g_string_append_printf(text, "%s<br>", &SNs[i * (MAXSNLEN + 1)]); |
4065 gaim_notify_formatted(gc, NULL, _("Search Results"), secondary, text->str, NULL, NULL); | |
4066 | |
4067 g_free(secondary); | |
4068 g_string_free(text, TRUE); | |
2086 | 4069 |
4070 return 1; | |
4071 } | |
4072 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4073 static int gaim_parse_searcherror(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 4074 va_list ap; |
6873 | 4075 char *email; |
5420 | 4076 char *buf; |
2086 | 4077 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4078 va_start(ap, fr); |
6873 | 4079 email = va_arg(ap, char *); |
2086 | 4080 va_end(ap); |
4081 | |
6873 | 4082 buf = g_strdup_printf(_("No results found for email address %s"), email); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4083 gaim_notify_error(sess->aux_data, NULL, buf, NULL); |
5420 | 4084 g_free(buf); |
2086 | 4085 |
4086 return 1; | |
4087 } | |
4088 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4089 static int gaim_account_confirm(aim_session_t *sess, aim_frame_t *fr, ...) { |
6873 | 4090 GaimConnection *gc = sess->aux_data; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4091 fu16_t status; |
2086 | 4092 va_list ap; |
4093 char msg[256]; | |
4094 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4095 va_start(ap, fr); |
4199 | 4096 status = (fu16_t) va_arg(ap, unsigned int); /* status code of confirmation request */ |
2086 | 4097 va_end(ap); |
4098 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4099 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4100 "account confirmation returned status 0x%04x (%s)\n", status, |
3912 | 4101 status ? "unknown" : "email sent"); |
4102 if (!status) { | |
5302 | 4103 g_snprintf(msg, sizeof(msg), _("You should receive an email asking to confirm %s."), |
5575 | 4104 gaim_account_get_username(gaim_connection_get_account(gc))); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4105 gaim_notify_info(gc, NULL, _("Account Confirmation Requested"), msg); |
2086 | 4106 } |
4107 | |
4108 return 1; | |
4109 } | |
4110 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4111 static int gaim_info_change(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 4112 GaimConnection *gc = sess->aux_data; |
2086 | 4113 va_list ap; |
3912 | 4114 fu16_t perms, err; |
4115 char *url, *sn, *email; | |
4116 int change; | |
2086 | 4117 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4118 va_start(ap, fr); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4119 change = va_arg(ap, int); |
4199 | 4120 perms = (fu16_t) va_arg(ap, unsigned int); |
4121 err = (fu16_t) va_arg(ap, unsigned int); | |
3912 | 4122 url = va_arg(ap, char *); |
4123 sn = va_arg(ap, char *); | |
4124 email = va_arg(ap, char *); | |
2086 | 4125 va_end(ap); |
4126 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4127 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4128 "account info: because of %s, perms=0x%04x, err=0x%04x, url=%s, sn=%s, email=%s\n", |
3912 | 4129 change ? "change" : "request", perms, err, url, sn, email); |
4130 | |
4131 if (err && url) { | |
4132 char *dialog_msg; | |
4133 char *dialog_top = g_strdup_printf(_("Error Changing Account Info")); | |
4134 switch (err) { | |
4135 case 0x0001: { | |
4136 dialog_msg = g_strdup_printf(_("Error 0x%04x: Unable to format screen name because the requested screen name differs from the original."), err); | |
4137 } break; | |
4138 case 0x0006: { | |
4139 dialog_msg = g_strdup_printf(_("Error 0x%04x: Unable to format screen name because the requested screen name ends in a space."), err); | |
4140 } break; | |
4141 case 0x000b: { | |
4142 dialog_msg = g_strdup_printf(_("Error 0x%04x: Unable to format screen name because the requested screen name is too long."), err); | |
4143 } break; | |
4144 case 0x001d: { | |
4145 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); | |
4146 } break; | |
4147 case 0x0021: { | |
4148 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); | |
4149 } break; | |
4150 case 0x0023: { | |
4151 dialog_msg = g_strdup_printf(_("Error 0x%04x: Unable to change email address because the given address is invalid."), err); | |
4152 } break; | |
4153 default: { | |
4154 dialog_msg = g_strdup_printf(_("Error 0x%04x: Unknown error."), err); | |
4155 } break; | |
4156 } | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4157 gaim_notify_error(gc, NULL, dialog_top, dialog_msg); |
3912 | 4158 g_free(dialog_top); |
4159 g_free(dialog_msg); | |
4160 return 1; | |
4161 } | |
4162 | |
4163 if (sn) { | |
4585 | 4164 char *dialog_msg = g_strdup_printf(_("Your screen name is currently formatted as follows:\n%s"), sn); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4165 gaim_notify_info(gc, NULL, _("Account Info"), dialog_msg); |
3912 | 4166 g_free(dialog_msg); |
4167 } | |
4168 | |
4169 if (email) { | |
5575 | 4170 char *dialog_msg = g_strdup_printf(_("The email address for %s is %s"), |
4171 gaim_account_get_username(gaim_connection_get_account(gc)), email); | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4172 gaim_notify_info(gc, NULL, _("Account Info"), dialog_msg); |
3912 | 4173 g_free(dialog_msg); |
2086 | 4174 } |
4175 | |
4176 return 1; | |
4177 } | |
4178 | |
5575 | 4179 static void oscar_keepalive(GaimConnection *gc) { |
4617 | 4180 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
4181 aim_flap_nop(od->sess, od->conn); | |
2086 | 4182 } |
4183 | |
6059 | 4184 static int oscar_send_typing(GaimConnection *gc, const char *name, int typing) { |
4617 | 4185 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
4186 struct direct_im *dim = find_direct_im(od, name); | |
3595 | 4187 if (dim) |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
4188 if (typing == GAIM_TYPING) |
4870 | 4189 aim_odc_send_typing(od->sess, dim->conn, 0x0002); |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
4190 else if (typing == GAIM_TYPED) |
4870 | 4191 aim_odc_send_typing(od->sess, dim->conn, 0x0001); |
4192 else | |
4193 aim_odc_send_typing(od->sess, dim->conn, 0x0000); | |
3595 | 4194 else { |
5300 | 4195 /* Don't send if this turkey is in our deny list */ |
4196 GSList *list; | |
4197 for (list=gc->account->deny; (list && aim_sncmp(name, list->data)); list=list->next); | |
4198 if (!list) { | |
7107
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7106
diff
changeset
|
4199 struct buddyinfo *bi = g_hash_table_lookup(od->buddyinfo, gaim_normalize(name)); |
5300 | 4200 if (bi && bi->typingnot) { |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
4201 if (typing == GAIM_TYPING) |
5300 | 4202 aim_im_sendmtn(od->sess, 0x0001, name, 0x0002); |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
4203 else if (typing == GAIM_TYPED) |
5300 | 4204 aim_im_sendmtn(od->sess, 0x0001, name, 0x0001); |
4205 else | |
4206 aim_im_sendmtn(od->sess, 0x0001, name, 0x0000); | |
4207 } | |
3595 | 4208 } |
4209 } | |
2993 | 4210 return 0; |
4211 } | |
5575 | 4212 static void oscar_ask_direct_im(GaimConnection *gc, const char *name); |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
4213 static int gaim_odc_send_im(aim_session_t *, aim_conn_t *, const char *, GaimConvImFlags); |
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
4214 |
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
4215 static int oscar_send_im(GaimConnection *gc, const char *name, const char *message, GaimConvImFlags imflags) { |
4617 | 4216 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
4217 struct direct_im *dim = find_direct_im(od, name); | |
2303
f5bf315e6104
[gaim-migrate @ 2313]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2297
diff
changeset
|
4218 int ret = 0; |
3659 | 4219 GError *err = NULL; |
5575 | 4220 const char *iconfile = gaim_account_get_buddy_icon(gaim_connection_get_account(gc)); |
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6350
diff
changeset
|
4221 char *tmpmsg = NULL; |
3458 | 4222 |
4838 | 4223 if (dim && dim->connected) { |
4224 /* If we're directly connected, send a direct IM */ | |
6982 | 4225 ret = gaim_odc_send_im(od->sess, dim->conn, message, imflags); |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
4226 } else if (imflags & GAIM_CONV_IM_IMAGES) { |
3044 | 4227 /* Trying to send an IM image outside of a direct connection. */ |
4228 oscar_ask_direct_im(gc, name); | |
4838 | 4229 ret = -ENOTCONN; |
2086 | 4230 } else { |
4738 | 4231 struct buddyinfo *bi; |
3008 | 4232 struct aim_sendimext_args args; |
4233 struct stat st; | |
6478
338147ea6896
[gaim-migrate @ 6991]
Christian Hammond <chipx86@chipx86.com>
parents:
6465
diff
changeset
|
4234 gsize len; |
4269 | 4235 |
7107
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7106
diff
changeset
|
4236 bi = g_hash_table_lookup(od->buddyinfo, gaim_normalize(name)); |
4738 | 4237 if (!bi) { |
4238 bi = g_new0(struct buddyinfo, 1); | |
7107
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7106
diff
changeset
|
4239 g_hash_table_insert(od->buddyinfo, g_strdup(gaim_normalize(name)), bi); |
4738 | 4240 } |
4241 | |
3008 | 4242 args.flags = AIM_IMFLAGS_ACK | AIM_IMFLAGS_CUSTOMFEATURES; |
4665 | 4243 if (od->icq) { |
4244 args.features = features_icq; | |
4245 args.featureslen = sizeof(features_icq); | |
3008 | 4246 args.flags |= AIM_IMFLAGS_OFFLINE; |
4665 | 4247 } else { |
4248 args.features = features_aim; | |
4249 args.featureslen = sizeof(features_aim); | |
4972 | 4250 |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
4251 if (imflags & GAIM_CONV_IM_AUTO_RESP) |
4972 | 4252 args.flags |= AIM_IMFLAGS_AWAY; |
4665 | 4253 } |
4269 | 4254 |
4738 | 4255 if (bi->ico_need) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4256 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4257 "Sending buddy icon request with message\n"); |
3008 | 4258 args.flags |= AIM_IMFLAGS_BUDDYREQ; |
4738 | 4259 bi->ico_need = FALSE; |
3008 | 4260 } |
4269 | 4261 |
5575 | 4262 if (iconfile && !stat(iconfile, &st)) { |
4263 FILE *file = fopen(iconfile, "r"); | |
3008 | 4264 if (file) { |
4265 char *buf = g_malloc(st.st_size); | |
4266 fread(buf, 1, st.st_size, file); | |
6039 | 4267 fclose(file); |
4269 | 4268 |
3008 | 4269 args.iconlen = st.st_size; |
4617 | 4270 args.iconsum = aimutil_iconsum(buf, st.st_size); |
3008 | 4271 args.iconstamp = st.st_mtime; |
4272 | |
4738 | 4273 if ((args.iconlen != bi->ico_me_len) || (args.iconsum != bi->ico_me_csum) || (args.iconstamp != bi->ico_me_time)) |
4274 bi->ico_informed = FALSE; | |
4275 | |
4276 if (!bi->ico_informed) { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4277 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4278 "Claiming to have a buddy icon\n"); |
4738 | 4279 args.flags |= AIM_IMFLAGS_HASICON; |
4280 bi->ico_me_len = args.iconlen; | |
4281 bi->ico_me_csum = args.iconsum; | |
4282 bi->ico_me_time = args.iconstamp; | |
4283 bi->ico_informed = TRUE; | |
4284 } | |
4285 | |
3008 | 4286 g_free(buf); |
2086 | 4287 } |
4288 } | |
4269 | 4289 |
3008 | 4290 args.destsn = name; |
4269 | 4291 |
6310 | 4292 /* For ICQ send newlines as CR/LF, for AIM send newlines as <BR> */ |
4293 if (isdigit(name[0])) | |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4294 tmpmsg = gaim_str_add_cr(message); |
6310 | 4295 else |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4296 tmpmsg = gaim_strdup_withhtml(message); |
6310 | 4297 len = strlen(tmpmsg); |
4298 | |
4299 args.flags |= oscar_encoding_check(tmpmsg); | |
3642 | 4300 if (args.flags & AIM_IMFLAGS_UNICODE) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4301 gaim_debug(GAIM_DEBUG_INFO, "oscar", "Sending Unicode IM\n"); |
4662 | 4302 args.charset = 0x0002; |
4665 | 4303 args.charsubset = 0x0000; |
6310 | 4304 args.msg = g_convert(tmpmsg, len, "UCS-2BE", "UTF-8", NULL, &len, &err); |
3659 | 4305 if (err) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4306 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4307 "Error converting a unicode message: %s\n", err->message); |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4308 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4309 "This really shouldn't happen!\n"); |
3659 | 4310 /* We really shouldn't try to send the |
4311 * IM now, but I'm not sure what to do */ | |
4800 | 4312 g_error_free(err); |
3659 | 4313 } |
3850 | 4314 } else if (args.flags & AIM_IMFLAGS_ISO_8859_1) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4315 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4316 "Sending ISO-8859-1 IM\n"); |
4662 | 4317 args.charset = 0x0003; |
4665 | 4318 args.charsubset = 0x0000; |
6310 | 4319 args.msg = g_convert(tmpmsg, len, "ISO-8859-1", "UTF-8", NULL, &len, &err); |
3659 | 4320 if (err) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4321 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4322 "conversion error: %s\n", err->message); |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4323 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4324 "Someone tell Ethan his 8859-1 detection is wrong\n"); |
3642 | 4325 args.flags ^= AIM_IMFLAGS_ISO_8859_1 | AIM_IMFLAGS_UNICODE; |
6310 | 4326 len = strlen(tmpmsg); |
4800 | 4327 g_error_free(err); |
6310 | 4328 args.msg = g_convert(tmpmsg, len, "UCS-2BE", "UTF8", NULL, &len, &err); |
3659 | 4329 if (err) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4330 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4331 "Error in unicode fallback: %s\n", err->message); |
4800 | 4332 g_error_free(err); |
3659 | 4333 } |
3642 | 4334 } |
4335 } else { | |
4662 | 4336 args.charset = 0x0000; |
4337 args.charsubset = 0x0000; | |
6310 | 4338 args.msg = tmpmsg; |
3642 | 4339 } |
4340 args.msglen = len; | |
4269 | 4341 |
4617 | 4342 ret = aim_im_sendch1_ext(od->sess, &args); |
2086 | 4343 } |
4838 | 4344 |
6310 | 4345 g_free(tmpmsg); |
4346 | |
2303
f5bf315e6104
[gaim-migrate @ 2313]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2297
diff
changeset
|
4347 if (ret >= 0) |
f5bf315e6104
[gaim-migrate @ 2313]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2297
diff
changeset
|
4348 return 1; |
6310 | 4349 |
2303
f5bf315e6104
[gaim-migrate @ 2313]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2297
diff
changeset
|
4350 return ret; |
2086 | 4351 } |
4352 | |
7011 | 4353 static void oscar_get_info(GaimConnection *gc, const char *name) { |
4354 struct oscar_data *od = (struct oscar_data *)gc->proto_data; | |
4355 | |
7173 | 4356 if (od->icq && isdigit(name[0])) |
4624 | 4357 aim_icq_getallinfo(od->sess, name); |
2742
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
4358 else |
7011 | 4359 aim_locate_getinfoshort(od->sess, name, 0x00000007); |
4360 } | |
4361 | |
4362 static void oscar_get_away(GaimConnection *gc, const char *who) { | |
4363 struct oscar_data *od = (struct oscar_data *)gc->proto_data; | |
4617 | 4364 if (od->icq) { |
7011 | 4365 GaimBuddy *budlight = gaim_find_buddy(gc->account, who); |
3212 | 4366 if (budlight) |
3595 | 4367 if ((budlight->uc & 0xffff0000) >> 16) |
4687 | 4368 aim_im_sendch2_geticqaway(od->sess, who, (budlight->uc & 0xffff0000) >> 16); |
3212 | 4369 else |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4370 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4371 "Error: The user %s has no status message, therefore not requesting.\n", who); |
3212 | 4372 else |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4373 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
7023 | 4374 "Error: Could not find %s in local buddy list, therefore unable to request status message.\n", who); |
3212 | 4375 } else |
7011 | 4376 aim_locate_getinfoshort(od->sess, who, 0x00000002); |
4377 } | |
4378 | |
4379 static void oscar_set_dir(GaimConnection *gc, const char *first, const char *middle, const char *last, | |
3466 | 4380 const char *maiden, const char *city, const char *state, const char *country, int web) { |
4617 | 4381 /* XXX - some of these things are wrong, but i'm lazy */ |
7011 | 4382 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
4383 aim_locate_setdirinfo(od->sess, first, middle, last, | |
2086 | 4384 maiden, NULL, NULL, city, state, NULL, 0, web); |
4385 } | |
4386 | |
5575 | 4387 static void oscar_set_idle(GaimConnection *gc, int time) { |
5129 | 4388 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
4617 | 4389 aim_bos_setidle(od->sess, od->conn, time); |
2086 | 4390 } |
4391 | |
5954 | 4392 static void oscar_set_info(GaimConnection *gc, const char *text) { |
5129 | 4393 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
4394 fu32_t flags = 0; | |
6019 | 4395 char *text_html = NULL; |
5129 | 4396 char *msg = NULL; |
6478
338147ea6896
[gaim-migrate @ 6991]
Christian Hammond <chipx86@chipx86.com>
parents:
6465
diff
changeset
|
4397 gsize msglen = 0; |
2993 | 4398 |
4617 | 4399 if (od->rights.maxsiglen == 0) |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4400 gaim_notify_warning(gc, NULL, _("Unable to set AIM profile."), |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4401 _("You have probably requested to set your " |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4402 "profile before the login procedure completed. " |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4403 "Your profile remains unset; try setting it " |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4404 "again when you are fully connected.")); |
4617 | 4405 |
4406 if (od->icq) | |
7011 | 4407 aim_locate_setprofile(od->sess, NULL, NULL, 0, NULL, NULL, 0, caps_icq); |
4151 | 4408 else { |
5129 | 4409 if (!text) { |
7011 | 4410 aim_locate_setprofile(od->sess, NULL, NULL, 0, NULL, NULL, 0, caps_aim); |
5129 | 4411 return; |
4412 } | |
6019 | 4413 |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4414 text_html = gaim_strdup_withhtml(text); |
6019 | 4415 flags = oscar_encoding_check(text_html); |
5129 | 4416 if (flags & AIM_IMFLAGS_UNICODE) { |
6019 | 4417 msg = g_convert(text_html, strlen(text_html), "UCS-2BE", "UTF-8", NULL, &msglen, NULL); |
7011 | 4418 aim_locate_setprofile(od->sess, "unicode-2-0", msg, (msglen > od->rights.maxsiglen ? od->rights.maxsiglen : msglen), NULL, NULL, 0, caps_aim); |
5129 | 4419 g_free(msg); |
4420 } else if (flags & AIM_IMFLAGS_ISO_8859_1) { | |
6019 | 4421 msg = g_convert(text_html, strlen(text_html), "ISO-8859-1", "UTF-8", NULL, &msglen, NULL); |
7011 | 4422 aim_locate_setprofile(od->sess, "iso-8859-1", msg, (msglen > od->rights.maxsiglen ? od->rights.maxsiglen : msglen), NULL, NULL, 0, caps_aim); |
5129 | 4423 g_free(msg); |
4151 | 4424 } else { |
6019 | 4425 msglen = strlen(text_html); |
7011 | 4426 aim_locate_setprofile(od->sess, "us-ascii", text_html, (msglen > od->rights.maxsiglen ? od->rights.maxsiglen : msglen), NULL, NULL, 0, caps_aim); |
4151 | 4427 } |
5129 | 4428 |
4429 if (msglen > od->rights.maxsiglen) { | |
4430 gchar *errstr; | |
6308 | 4431 errstr = g_strdup_printf(ngettext("The maximum profile length of %d byte " |
4432 "has been exceeded. Gaim has truncated it for you.", | |
4433 "The maximum profile length of %d bytes " | |
4434 "has been exceeded. Gaim has truncated it for you.", | |
4435 od->rights.maxsiglen), od->rights.maxsiglen); | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4436 gaim_notify_warning(gc, NULL, _("Profile too long."), errstr); |
5129 | 4437 g_free(errstr); |
4438 } | |
4439 | |
6019 | 4440 g_free(text_html); |
4441 | |
5129 | 4442 } |
2993 | 4443 |
4444 return; | |
2086 | 4445 } |
4446 | |
5575 | 4447 static void oscar_set_away_aim(GaimConnection *gc, struct oscar_data *od, const char *text) |
2993 | 4448 { |
5129 | 4449 fu32_t flags = 0; |
6019 | 4450 gchar *text_html = NULL; |
5129 | 4451 char *msg = NULL; |
6478
338147ea6896
[gaim-migrate @ 6991]
Christian Hammond <chipx86@chipx86.com>
parents:
6465
diff
changeset
|
4452 gsize msglen = 0; |
2993 | 4453 |
4454 if (od->rights.maxawaymsglen == 0) | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4455 gaim_notify_warning(gc, NULL, _("Unable to set AIM away message."), |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4456 _("You have probably requested to set your " |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4457 "away message before the login procedure " |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4458 "completed. You remain in a \"present\" " |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4459 "state; try setting it again when you are " |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4460 "fully connected.")); |
5129 | 4461 |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4462 if (gc->away) { |
2993 | 4463 g_free(gc->away); |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4464 gc->away = NULL; |
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4465 } |
2993 | 4466 |
5129 | 4467 if (!text) { |
7011 | 4468 aim_locate_setprofile(od->sess, NULL, NULL, 0, NULL, "", 0, caps_aim); |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
4469 return; |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
4470 } |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
4471 |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4472 text_html = gaim_strdup_withhtml(text); |
6019 | 4473 flags = oscar_encoding_check(text_html); |
5129 | 4474 if (flags & AIM_IMFLAGS_UNICODE) { |
6019 | 4475 msg = g_convert(text_html, strlen(text_html), "UCS-2BE", "UTF-8", NULL, &msglen, NULL); |
7011 | 4476 aim_locate_setprofile(od->sess, NULL, NULL, 0, "unicode-2-0", msg, |
5129 | 4477 (msglen > od->rights.maxawaymsglen ? od->rights.maxawaymsglen : msglen), caps_aim); |
4478 g_free(msg); | |
4479 gc->away = g_strndup(text, od->rights.maxawaymsglen/2); | |
4480 } else if (flags & AIM_IMFLAGS_ISO_8859_1) { | |
6019 | 4481 msg = g_convert(text_html, strlen(text_html), "ISO-8859-1", "UTF-8", NULL, &msglen, NULL); |
7011 | 4482 aim_locate_setprofile(od->sess, NULL, NULL, 0, "iso-8859-1", msg, |
5129 | 4483 (msglen > od->rights.maxawaymsglen ? od->rights.maxawaymsglen : msglen), caps_aim); |
4484 g_free(msg); | |
6019 | 4485 gc->away = g_strndup(text_html, od->rights.maxawaymsglen); |
5129 | 4486 } else { |
6019 | 4487 msglen = strlen(text_html); |
7011 | 4488 aim_locate_setprofile(od->sess, NULL, NULL, 0, "us-ascii", text_html, |
5129 | 4489 (msglen > od->rights.maxawaymsglen ? od->rights.maxawaymsglen : msglen), caps_aim); |
6019 | 4490 gc->away = g_strndup(text_html, od->rights.maxawaymsglen); |
5129 | 4491 } |
4492 | |
4493 if (msglen > od->rights.maxawaymsglen) { | |
2993 | 4494 gchar *errstr; |
4495 | |
6308 | 4496 errstr = g_strdup_printf(ngettext("The maximum away message length of %d byte " |
4497 "has been exceeded. Gaim has truncated it for you.", | |
4498 "The maximum away message length of %d bytes " | |
4499 "has been exceeded. Gaim has truncated it for you.", | |
4500 od->rights.maxawaymsglen), od->rights.maxawaymsglen); | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4501 gaim_notify_warning(gc, NULL, _("Away message too long."), errstr); |
2993 | 4502 g_free(errstr); |
4503 } | |
6019 | 4504 |
4505 g_free(text_html); | |
2993 | 4506 return; |
4507 } | |
4508 | |
5575 | 4509 static void oscar_set_away_icq(GaimConnection *gc, struct oscar_data *od, const char *state, const char *message) |
2993 | 4510 { |
5575 | 4511 GaimAccount *account = gaim_connection_get_account(gc); |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4512 if (gc->away) { |
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4513 g_free(gc->away); |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
4514 gc->away = NULL; |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4515 } |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
4516 |
4342 | 4517 if (strcmp(state, _("Invisible"))) { |
5575 | 4518 if ((od->sess->ssi.received_data) && (aim_ssi_getpermdeny(od->sess->ssi.local) != account->perm_deny)) |
4519 aim_ssi_setpermdeny(od->sess, account->perm_deny, 0xffffffff); | |
4520 account->perm_deny = 4; | |
4342 | 4521 } else { |
5542 | 4522 if ((od->sess->ssi.received_data) && (aim_ssi_getpermdeny(od->sess->ssi.local) != 0x03)) |
4889 | 4523 aim_ssi_setpermdeny(od->sess, 0x03, 0xffffffff); |
5575 | 4524 account->perm_deny = 3; |
4342 | 4525 } |
4526 | |
4527 if (!strcmp(state, _("Online"))) | |
4901 | 4528 aim_setextstatus(od->sess, AIM_ICQ_STATE_NORMAL); |
4342 | 4529 else if (!strcmp(state, _("Away"))) { |
4901 | 4530 aim_setextstatus(od->sess, AIM_ICQ_STATE_AWAY); |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4531 gc->away = g_strdup(""); |
4342 | 4532 } else if (!strcmp(state, _("Do Not Disturb"))) { |
4901 | 4533 aim_setextstatus(od->sess, AIM_ICQ_STATE_AWAY | AIM_ICQ_STATE_DND | AIM_ICQ_STATE_BUSY); |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4534 gc->away = g_strdup(""); |
4342 | 4535 } else if (!strcmp(state, _("Not Available"))) { |
4901 | 4536 aim_setextstatus(od->sess, AIM_ICQ_STATE_OUT | AIM_ICQ_STATE_AWAY); |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4537 gc->away = g_strdup(""); |
4342 | 4538 } else if (!strcmp(state, _("Occupied"))) { |
4901 | 4539 aim_setextstatus(od->sess, AIM_ICQ_STATE_AWAY | AIM_ICQ_STATE_BUSY); |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4540 gc->away = g_strdup(""); |
4342 | 4541 } else if (!strcmp(state, _("Free For Chat"))) { |
4901 | 4542 aim_setextstatus(od->sess, AIM_ICQ_STATE_CHAT); |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4543 gc->away = g_strdup(""); |
4342 | 4544 } else if (!strcmp(state, _("Invisible"))) { |
4901 | 4545 aim_setextstatus(od->sess, AIM_ICQ_STATE_INVISIBLE); |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4546 gc->away = g_strdup(""); |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
4547 } else if (!strcmp(state, GAIM_AWAY_CUSTOM)) { |
2998 | 4548 if (message) { |
4901 | 4549 aim_setextstatus(od->sess, AIM_ICQ_STATE_OUT | AIM_ICQ_STATE_AWAY); |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4550 gc->away = g_strdup(""); |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
4551 } else { |
4901 | 4552 aim_setextstatus(od->sess, AIM_ICQ_STATE_NORMAL); |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
4553 } |
2086 | 4554 } |
2993 | 4555 |
4556 return; | |
4557 } | |
4558 | |
6059 | 4559 static void oscar_set_away(GaimConnection *gc, const char *state, const char *message) |
2993 | 4560 { |
4561 struct oscar_data *od = (struct oscar_data *)gc->proto_data; | |
4562 | |
4563 if (od->icq) | |
4564 oscar_set_away_icq(gc, od, state, message); | |
4565 else | |
4566 oscar_set_away_aim(gc, od, message); | |
4567 | |
4568 return; | |
2086 | 4569 } |
4570 | |
6059 | 4571 static void oscar_warn(GaimConnection *gc, const char *name, int anon) { |
4617 | 4572 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
4573 aim_im_warn(od->sess, od->conn, name, anon ? AIM_WARN_ANON : 0); | |
2086 | 4574 } |
4575 | |
5575 | 4576 static void oscar_dir_search(GaimConnection *gc, const char *first, const char *middle, const char *last, |
3466 | 4577 const char *maiden, const char *city, const char *state, const char *country, const char *email) { |
4617 | 4578 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
2086 | 4579 if (strlen(email)) |
6879 | 4580 aim_search_address(od->sess, od->conn, email); |
2086 | 4581 } |
4582 | |
6787
faa491042c66
[gaim-migrate @ 7326]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
4583 static void oscar_add_buddy(GaimConnection *gc, const char *name, GaimGroup *g) { |
4230 | 4584 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
4585 #ifdef NOSSI | |
4586 aim_add_buddy(od->sess, od->conn, name); | |
4587 #else | |
4588 if ((od->sess->ssi.received_data) && !(aim_ssi_itemlist_exists(od->sess->ssi.local, name))) { | |
6695 | 4589 GaimBuddy *buddy = gaim_find_buddy(gc->account, name); |
4590 GaimGroup *group = gaim_find_buddys_group(buddy); | |
4230 | 4591 if (buddy && group) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4592 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4593 "ssi: adding buddy %s to group %s\n", name, group->name); |
4889 | 4594 aim_ssi_addbuddy(od->sess, buddy->name, group->name, gaim_get_buddy_alias_only(buddy), NULL, NULL, 0); |
4230 | 4595 } |
4596 } | |
4597 #endif | |
4759 | 4598 if (od->icq) |
4599 aim_icq_getalias(od->sess, name); | |
4230 | 4600 } |
4601 | |
5575 | 4602 static void oscar_add_buddies(GaimConnection *gc, GList *buddies) { |
4230 | 4603 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
4604 #ifdef NOSSI | |
4605 char buf[MSG_LEN]; | |
4606 int n=0; | |
4607 while (buddies) { | |
4608 if (n > MSG_LEN - 18) { | |
4609 aim_bos_setbuddylist(od->sess, od->conn, buf); | |
4610 n = 0; | |
3092 | 4611 } |
4230 | 4612 n += g_snprintf(buf + n, sizeof(buf) - n, "%s&", (char *)buddies->data); |
4613 buddies = buddies->next; | |
4614 } | |
4615 aim_bos_setbuddylist(od->sess, od->conn, buf); | |
4616 #else | |
4617 if (od->sess->ssi.received_data) { | |
4618 while (buddies) { | |
6695 | 4619 GaimBuddy *buddy = gaim_find_buddy(gc->account, (const char *)buddies->data); |
4620 GaimGroup *group = gaim_find_buddys_group(buddy); | |
4230 | 4621 if (buddy && group) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4622 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4623 "ssi: adding buddy %s to group %s\n", (const char *)buddies->data, group->name); |
4889 | 4624 aim_ssi_addbuddy(od->sess, buddy->name, group->name, gaim_get_buddy_alias_only(buddy), NULL, NULL, 0); |
4230 | 4625 } |
4626 buddies = buddies->next; | |
4627 } | |
4628 } | |
4629 #endif | |
4630 } | |
4631 | |
6059 | 4632 static void oscar_remove_buddy(GaimConnection *gc, const char *name, const char *group) { |
4230 | 4633 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
4634 #ifdef NOSSI | |
4635 aim_remove_buddy(od->sess, od->conn, name); | |
4636 #else | |
4637 if (od->sess->ssi.received_data) { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4638 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4639 "ssi: deleting buddy %s from group %s\n", name, group); |
4889 | 4640 aim_ssi_delbuddy(od->sess, name, group); |
4230 | 4641 } |
4642 #endif | |
4643 } | |
4644 | |
5575 | 4645 static void oscar_remove_buddies(GaimConnection *gc, GList *buddies, const char *group) { |
4230 | 4646 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
4647 #ifdef NOSSI | |
4648 GList *cur; | |
4649 for (cur=buddies; cur; cur=cur->next) | |
4650 aim_remove_buddy(od->sess, od->conn, cur->data); | |
4651 #else | |
4652 if (od->sess->ssi.received_data) { | |
3092 | 4653 while (buddies) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4654 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4655 "ssi: deleting buddy %s from group %s\n", (char *)buddies->data, group); |
4889 | 4656 aim_ssi_delbuddy(od->sess, buddies->data, group); |
3092 | 4657 buddies = buddies->next; |
4658 } | |
4230 | 4659 } |
4660 #endif | |
4661 } | |
4662 | |
4663 #ifndef NOSSI | |
5575 | 4664 static void oscar_move_buddy(GaimConnection *gc, const char *name, const char *old_group, const char *new_group) { |
4269 | 4665 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
4303 | 4666 if (od->sess->ssi.received_data && strcmp(old_group, new_group)) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4667 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4668 "ssi: moving buddy %s from group %s to group %s\n", name, old_group, new_group); |
4889 | 4669 aim_ssi_movebuddy(od->sess, old_group, new_group, name); |
4269 | 4670 } |
4671 } | |
4672 | |
5575 | 4673 static void oscar_alias_buddy(GaimConnection *gc, const char *name, const char *alias) { |
4269 | 4674 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
4675 if (od->sess->ssi.received_data) { | |
4676 char *gname = aim_ssi_itemlist_findparentname(od->sess->ssi.local, name); | |
4677 if (gname) { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4678 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4679 "ssi: changing the alias for buddy %s to %s\n", name, alias); |
4889 | 4680 aim_ssi_aliasbuddy(od->sess, gname, name, alias); |
4269 | 4681 } |
4682 } | |
4683 } | |
4684 | |
5575 | 4685 static void oscar_rename_group(GaimConnection *g, const char *old_group, const char *new_group, GList *members) { |
4230 | 4686 struct oscar_data *od = (struct oscar_data *)g->proto_data; |
4687 | |
4688 if (od->sess->ssi.received_data) { | |
4689 if (aim_ssi_itemlist_finditem(od->sess->ssi.local, new_group, NULL, AIM_SSI_TYPE_GROUP)) { | |
4690 oscar_remove_buddies(g, members, old_group); | |
4691 oscar_add_buddies(g, members); | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4692 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4693 "ssi: moved all buddies from group %s to %s\n", old_group, new_group); |
4230 | 4694 } else { |
4889 | 4695 aim_ssi_rename_group(od->sess, old_group, new_group); |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4696 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4697 "ssi: renamed group %s to %s\n", old_group, new_group); |
2995 | 4698 } |
4699 } | |
4700 } | |
4701 | |
5968 | 4702 static gboolean gaim_ssi_rerequestdata(gpointer data) { |
4703 aim_session_t *sess = data; | |
6350 | 4704 aim_ssi_reqdata(sess); |
5968 | 4705 return FALSE; |
4706 } | |
4707 | |
4642 | 4708 static int gaim_ssi_parseerr(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 4709 GaimConnection *gc = sess->aux_data; |
4642 | 4710 struct oscar_data *od = gc->proto_data; |
4711 va_list ap; | |
4712 fu16_t reason; | |
4713 | |
4714 va_start(ap, fr); | |
4715 reason = (fu16_t)va_arg(ap, unsigned int); | |
4716 va_end(ap); | |
4717 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4718 gaim_debug(GAIM_DEBUG_ERROR, "oscar", "ssi: SNAC error %hu\n", reason); |
4642 | 4719 |
4720 if (reason == 0x0005) { | |
5892 | 4721 gaim_notify_error(gc, NULL, _("Unable To Retrieve Buddy List"), |
5828 | 4722 _("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.")); |
5968 | 4723 od->getblisttimer = g_timeout_add(300000, gaim_ssi_rerequestdata, od->sess); |
4642 | 4724 } |
4725 | |
4726 /* Activate SSI */ | |
4727 /* Sending the enable causes other people to be able to see you, and you to see them */ | |
4728 /* Make sure your privacy setting/invisibility is set how you want it before this! */ | |
5968 | 4729 gaim_debug(GAIM_DEBUG_INFO, "oscar", "ssi: activating server-stored buddy list\n"); |
4642 | 4730 aim_ssi_enable(od->sess); |
4731 | |
4732 return 1; | |
4733 } | |
4734 | |
2991 | 4735 static int gaim_ssi_parserights(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 4736 GaimConnection *gc = sess->aux_data; |
4230 | 4737 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
4738 int numtypes, i; | |
4739 fu16_t *maxitems; | |
2991 | 4740 va_list ap; |
4741 | |
4742 va_start(ap, fr); | |
4230 | 4743 numtypes = va_arg(ap, int); |
4744 maxitems = va_arg(ap, fu16_t *); | |
2991 | 4745 va_end(ap); |
4746 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4747 gaim_debug(GAIM_DEBUG_MISC, "oscar", "ssi rights:"); |
5211
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5208
diff
changeset
|
4748 |
4230 | 4749 for (i=0; i<numtypes; i++) |
5211
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5208
diff
changeset
|
4750 gaim_debug(GAIM_DEBUG_MISC, NULL, " max type 0x%04x=%hd,", |
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5208
diff
changeset
|
4751 i, maxitems[i]); |
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5208
diff
changeset
|
4752 |
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5208
diff
changeset
|
4753 gaim_debug(GAIM_DEBUG_MISC, NULL, "\n"); |
4230 | 4754 |
4755 if (numtypes >= 0) | |
4756 od->rights.maxbuddies = maxitems[0]; | |
4757 if (numtypes >= 1) | |
4758 od->rights.maxgroups = maxitems[1]; | |
4759 if (numtypes >= 2) | |
4760 od->rights.maxpermits = maxitems[2]; | |
4761 if (numtypes >= 3) | |
4762 od->rights.maxdenies = maxitems[3]; | |
2991 | 4763 |
4764 return 1; | |
4765 } | |
4766 | |
4767 static int gaim_ssi_parselist(aim_session_t *sess, aim_frame_t *fr, ...) { | |
5575 | 4768 GaimConnection *gc = sess->aux_data; |
4769 GaimAccount *account = gaim_connection_get_account(gc); | |
4230 | 4770 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
2995 | 4771 struct aim_ssi_item *curitem; |
2991 | 4772 int tmp; |
4778 | 4773 gboolean export = FALSE; |
4617 | 4774 /* XXX - use these? |
4230 | 4775 va_list ap; |
4776 | |
4777 va_start(ap, fr); | |
4778 fmtver = (fu16_t)va_arg(ap, int); | |
4779 numitems = (fu16_t)va_arg(ap, int); | |
4780 items = va_arg(ap, struct aim_ssi_item); | |
4781 timestamp = va_arg(ap, fu32_t); | |
4782 va_end(ap); */ | |
2991 | 4783 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4784 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4785 "ssi: syncing local list and server list\n"); |
2991 | 4786 |
4787 /* Clean the buddy list */ | |
4889 | 4788 aim_ssi_cleanlist(sess); |
2991 | 4789 |
4790 /* Add from server list to local list */ | |
4230 | 4791 for (curitem=sess->ssi.local; curitem; curitem=curitem->next) { |
2991 | 4792 switch (curitem->type) { |
4230 | 4793 case 0x0000: { /* Buddy */ |
4251 | 4794 if (curitem->name) { |
4292 | 4795 char *gname = aim_ssi_itemlist_findparentname(sess->ssi.local, curitem->name); |
7166 | 4796 char *gname_utf8 = gname ? gaim_utf8_try_convert(gname) : NULL; |
4282 | 4797 char *alias = aim_ssi_getalias(sess->ssi.local, gname, curitem->name); |
7166 | 4798 char *alias_utf8 = alias ? gaim_utf8_try_convert(alias) : NULL; |
6695 | 4799 GaimBuddy *buddy = gaim_find_buddy(gc->account, curitem->name); |
4458 | 4800 /* Should gname be freed here? -- elb */ |
4754 | 4801 /* Not with the current code, but that might be cleaner -- med */ |
4458 | 4802 free(alias); |
4282 | 4803 if (buddy) { |
4292 | 4804 /* Get server stored alias */ |
4705 | 4805 if (alias_utf8) { |
4806 g_free(buddy->alias); | |
4807 buddy->alias = g_strdup(alias_utf8); | |
4808 } | |
4282 | 4809 } else { |
6695 | 4810 GaimGroup *g; |
4687 | 4811 buddy = gaim_buddy_new(gc->account, curitem->name, alias_utf8); |
5146 | 4812 |
4754 | 4813 if (!(g = gaim_find_group(gname_utf8 ? gname_utf8 : _("Orphans")))) { |
4687 | 4814 g = gaim_group_new(gname_utf8 ? gname_utf8 : _("Orphans")); |
4754 | 4815 gaim_blist_add_group(g, NULL); |
4816 } | |
5146 | 4817 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4818 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4819 "ssi: adding buddy %s to group %s to local list\n", curitem->name, gname_utf8 ? gname_utf8 : _("Orphans")); |
6695 | 4820 gaim_blist_add_buddy(buddy, NULL, g, NULL); |
4778 | 4821 export = TRUE; |
4251 | 4822 } |
7162 | 4823 g_free(gname_utf8); |
4824 g_free(alias_utf8); | |
2991 | 4825 } |
4230 | 4826 } break; |
4827 | |
4828 case 0x0001: { /* Group */ | |
4282 | 4829 /* Shouldn't add empty groups */ |
4230 | 4830 } break; |
4831 | |
4832 case 0x0002: { /* Permit buddy */ | |
2991 | 4833 if (curitem->name) { |
4230 | 4834 /* if (!find_permdeny_by_name(gc->permit, curitem->name)) { AAA */ |
2991 | 4835 GSList *list; |
5575 | 4836 for (list=account->permit; (list && aim_sncmp(curitem->name, list->data)); list=list->next); |
2991 | 4837 if (!list) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4838 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4839 "ssi: adding permit buddy %s to local list\n", curitem->name); |
6400
588e88bcdac5
[gaim-migrate @ 6905]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
4840 gaim_privacy_permit_add(account, curitem->name, TRUE); |
4778 | 4841 export = TRUE; |
2991 | 4842 } |
4843 } | |
4230 | 4844 } break; |
4845 | |
4846 case 0x0003: { /* Deny buddy */ | |
2991 | 4847 if (curitem->name) { |
4848 GSList *list; | |
5575 | 4849 for (list=account->deny; (list && aim_sncmp(curitem->name, list->data)); list=list->next); |
2991 | 4850 if (!list) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4851 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4852 "ssi: adding deny buddy %s to local list\n", curitem->name); |
6400
588e88bcdac5
[gaim-migrate @ 6905]
Christian Hammond <chipx86@chipx86.com>
parents:
6378
diff
changeset
|
4853 gaim_privacy_deny_add(account, curitem->name, TRUE); |
4778 | 4854 export = TRUE; |
2991 | 4855 } |
4856 } | |
4230 | 4857 } break; |
4858 | |
4859 case 0x0004: { /* Permit/deny setting */ | |
2991 | 4860 if (curitem->data) { |
4861 fu8_t permdeny; | |
5575 | 4862 if ((permdeny = aim_ssi_getpermdeny(sess->ssi.local)) && (permdeny != account->perm_deny)) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4863 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
5575 | 4864 "ssi: changing permdeny from %d to %hhu\n", account->perm_deny, permdeny); |
4865 account->perm_deny = permdeny; | |
4866 if (od->icq && account->perm_deny == 0x03) { | |
4342 | 4867 serv_set_away(gc, "Invisible", ""); |
4868 } | |
4778 | 4869 export = TRUE; |
2991 | 4870 } |
4871 } | |
4230 | 4872 } break; |
4873 | |
4874 case 0x0005: { /* Presence setting */ | |
3109 | 4875 /* We don't want to change Gaim's setting because it applies to all accounts */ |
4230 | 4876 } break; |
2991 | 4877 } /* End of switch on curitem->type */ |
4878 } /* End of for loop */ | |
4230 | 4879 |
4880 /* If changes were made, then flush buddy list to file */ | |
4778 | 4881 if (export) |
4349 | 4882 gaim_blist_save(); |
2991 | 4883 |
4759 | 4884 { /* Add from local list to server list */ |
6695 | 4885 GaimBlistNode *gnode, *cnode, *bnode; |
4886 GaimGroup *group; | |
4887 GaimBuddy *buddy; | |
7098
770233dad86c
[gaim-migrate @ 7663]
Christian Hammond <chipx86@chipx86.com>
parents:
7095
diff
changeset
|
4888 GaimBuddyList *blist; |
3017 | 4889 GSList *cur; |
4890 | |
2991 | 4891 /* Buddies */ |
4759 | 4892 if ((blist = gaim_get_blist())) |
4893 for (gnode = blist->root; gnode; gnode = gnode->next) { | |
5234 | 4894 if(!GAIM_BLIST_NODE_IS_GROUP(gnode)) |
4895 continue; | |
6695 | 4896 group = (GaimGroup *)gnode; |
4897 for (cnode = gnode->child; cnode; cnode = cnode->next) { | |
4898 if(!GAIM_BLIST_NODE_IS_CONTACT(cnode)) | |
5234 | 4899 continue; |
6695 | 4900 for (bnode = cnode->child; bnode; bnode = bnode->next) { |
4901 if(!GAIM_BLIST_NODE_IS_BUDDY(bnode)) | |
4902 continue; | |
4903 buddy = (GaimBuddy *)bnode; | |
4904 if (buddy->account == gc->account) { | |
7125 | 4905 const char *servernick = gaim_buddy_get_setting(buddy, "servernick"); |
4906 if (servernick) | |
6695 | 4907 serv_got_alias(gc, buddy->name, servernick); |
7125 | 4908 |
6695 | 4909 if (aim_ssi_itemlist_exists(sess->ssi.local, buddy->name)) { |
4910 /* Store local alias on server */ | |
4911 char *alias = aim_ssi_getalias(sess->ssi.local, group->name, buddy->name); | |
4912 if (!alias && buddy->alias && strlen(buddy->alias)) | |
4913 aim_ssi_aliasbuddy(sess, group->name, buddy->name, buddy->alias); | |
4914 free(alias); | |
4915 } else { | |
4916 gaim_debug(GAIM_DEBUG_INFO, "oscar", | |
4917 "ssi: adding buddy %s from local list to server list\n", buddy->name); | |
4918 aim_ssi_addbuddy(sess, buddy->name, group->name, gaim_get_buddy_alias_only(buddy), NULL, NULL, 0); | |
4919 } | |
4759 | 4920 } |
4349 | 4921 } |
4230 | 4922 } |
4292 | 4923 } |
6695 | 4924 |
2991 | 4925 /* Permit list */ |
4491 | 4926 if (gc->account->permit) { |
4927 for (cur=gc->account->permit; cur; cur=cur->next) | |
4230 | 4928 if (!aim_ssi_itemlist_finditem(sess->ssi.local, NULL, cur->data, AIM_SSI_TYPE_PERMIT)) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4929 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
6695 | 4930 "ssi: adding permit %s from local list to server list\n", (char *)cur->data); |
4889 | 4931 aim_ssi_addpermit(sess, cur->data); |
4230 | 4932 } |
2991 | 4933 } |
4934 | |
4935 /* Deny list */ | |
4491 | 4936 if (gc->account->deny) { |
4937 for (cur=gc->account->deny; cur; cur=cur->next) | |
4230 | 4938 if (!aim_ssi_itemlist_finditem(sess->ssi.local, NULL, cur->data, AIM_SSI_TYPE_DENY)) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4939 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
6695 | 4940 "ssi: adding deny %s from local list to server list\n", (char *)cur->data); |
4889 | 4941 aim_ssi_adddeny(sess, cur->data); |
4230 | 4942 } |
2991 | 4943 } |
3109 | 4944 /* Presence settings (idle time visibility) */ |
4230 | 4945 if ((tmp = aim_ssi_getpresence(sess->ssi.local)) != 0xFFFFFFFF) |
5631 | 4946 if (!(tmp & 0x400)) |
4889 | 4947 aim_ssi_setpresence(sess, tmp | 0x400); |
4778 | 4948 } /* end adding buddies from local list to server list */ |
4949 | |
4901 | 4950 /* Set our ICQ status */ |
4951 if (od->icq && !gc->away) { | |
4952 aim_setextstatus(sess, AIM_ICQ_STATE_NORMAL); | |
4953 } | |
4954 | |
4342 | 4955 /* Activate SSI */ |
4956 /* Sending the enable causes other people to be able to see you, and you to see them */ | |
4957 /* Make sure your privacy setting/invisibility is set how you want it before this! */ | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4958 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4959 "ssi: activating server-stored buddy list\n"); |
4642 | 4960 aim_ssi_enable(sess); |
4342 | 4961 |
2991 | 4962 return 1; |
2086 | 4963 } |
4230 | 4964 |
4965 static int gaim_ssi_parseack(aim_session_t *sess, aim_frame_t *fr, ...) { | |
5575 | 4966 GaimConnection *gc = sess->aux_data; |
4230 | 4967 va_list ap; |
4968 struct aim_ssi_tmp *retval; | |
4969 | |
4970 va_start(ap, fr); | |
4971 retval = va_arg(ap, struct aim_ssi_tmp *); | |
4972 va_end(ap); | |
4973 | |
4974 while (retval) { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4975 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4976 "ssi: status is 0x%04hx for a 0x%04hx action with name %s\n", retval->ack, retval->action, retval->item ? (retval->item->name ? retval->item->name : "no name") : "no item"); |
4230 | 4977 |
4978 if (retval->ack != 0xffff) | |
4979 switch (retval->ack) { | |
4980 case 0x0000: { /* added successfully */ | |
4981 } break; | |
4982 | |
4829 | 4983 case 0x000c: { /* you are over the limit, the cheat is to the limit, come on fhqwhgads */ |
4984 gchar *buf; | |
4985 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)"))); | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4986 gaim_notify_error(gc, NULL, _("Unable To Add"), buf); |
4829 | 4987 g_free(buf); |
4988 } | |
4989 | |
7023 | 4990 case 0x000e: { /* buddy requires authorization */ |
4828 | 4991 if ((retval->action == AIM_CB_SSI_ADD) && (retval->name)) |
4269 | 4992 gaim_auth_sendrequest(gc, retval->name); |
4230 | 4993 } break; |
4994 | |
4995 default: { /* La la la */ | |
5197 | 4996 gchar *buf; |
5402 | 4997 gaim_debug(GAIM_DEBUG_ERROR, "oscar", "ssi: Action 0x%04hx was unsuccessful with error 0x%04hx\n", retval->action, retval->ack); |
4998 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)"))); | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4999 gaim_notify_error(gc, NULL, _("Unable To Add"), buf); |
5197 | 5000 g_free(buf); |
5402 | 5001 /* XXX - Should remove buddy from local list */ |
4230 | 5002 } break; |
5003 } | |
5004 | |
5005 retval = retval->next; | |
5006 } | |
5007 | |
5008 return 1; | |
5009 } | |
5010 | |
5011 static int gaim_ssi_authgiven(aim_session_t *sess, aim_frame_t *fr, ...) { | |
5575 | 5012 GaimConnection *gc = sess->aux_data; |
4230 | 5013 va_list ap; |
5014 char *sn, *msg; | |
4236 | 5015 gchar *dialog_msg, *nombre; |
4230 | 5016 struct name_data *data; |
6695 | 5017 GaimBuddy *buddy; |
4230 | 5018 |
5019 va_start(ap, fr); | |
5020 sn = va_arg(ap, char *); | |
5021 msg = va_arg(ap, char *); | |
5022 va_end(ap); | |
5023 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5024 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5025 "ssi: %s has given you permission to add him to your buddy list\n", sn); |
4230 | 5026 |
4687 | 5027 buddy = gaim_find_buddy(gc->account, sn); |
5028 if (buddy && (gaim_get_buddy_alias_only(buddy))) | |
5029 nombre = g_strdup_printf("%s (%s)", sn, gaim_get_buddy_alias_only(buddy)); | |
4236 | 5030 else |
5031 nombre = g_strdup(sn); | |
5032 | |
5033 dialog_msg = g_strdup_printf(_("The user %s has given you permission to add you to their buddy list. Do you want to add them?"), nombre); | |
4230 | 5034 data = g_new(struct name_data, 1); |
5035 data->gc = gc; | |
5036 data->name = g_strdup(sn); | |
5037 data->nick = NULL; | |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
5038 |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
5039 gaim_request_yes_no(gc, NULL, _("Authorization Given"), dialog_msg, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
5040 0, data, |
7023 | 5041 G_CALLBACK(gaim_icq_buddyadd), |
5836 | 5042 G_CALLBACK(oscar_free_name_data)); |
4236 | 5043 |
4230 | 5044 g_free(dialog_msg); |
4236 | 5045 g_free(nombre); |
4230 | 5046 |
5047 return 1; | |
5048 } | |
5049 | |
5050 static int gaim_ssi_authrequest(aim_session_t *sess, aim_frame_t *fr, ...) { | |
5575 | 5051 GaimConnection *gc = sess->aux_data; |
4230 | 5052 va_list ap; |
5053 char *sn, *msg; | |
4236 | 5054 gchar *dialog_msg, *nombre; |
4230 | 5055 struct name_data *data; |
6695 | 5056 GaimBuddy *buddy; |
4230 | 5057 |
5058 va_start(ap, fr); | |
5059 sn = va_arg(ap, char *); | |
5060 msg = va_arg(ap, char *); | |
5061 va_end(ap); | |
5062 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5063 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5064 "ssi: received authorization request from %s\n", sn); |
4230 | 5065 |
4687 | 5066 buddy = gaim_find_buddy(gc->account, sn); |
5067 if (buddy && (gaim_get_buddy_alias_only(buddy))) | |
5068 nombre = g_strdup_printf("%s (%s)", sn, gaim_get_buddy_alias_only(buddy)); | |
4236 | 5069 else |
5070 nombre = g_strdup(sn); | |
5071 | |
4337 | 5072 dialog_msg = g_strdup_printf(_("The user %s wants to add you to their buddy list for the following reason:\n%s"), nombre, msg ? msg : _("No reason given.")); |
4230 | 5073 data = g_new(struct name_data, 1); |
5074 data->gc = gc; | |
5075 data->name = g_strdup(sn); | |
5076 data->nick = NULL; | |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
5077 |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
5078 gaim_request_action(gc, NULL, _("Authorization Request"), dialog_msg, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
5079 0, data, 2, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
5080 _("Authorize"), G_CALLBACK(gaim_auth_grant), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
5081 _("Deny"), G_CALLBACK(gaim_auth_dontgrant_msgprompt)); |
4236 | 5082 |
4230 | 5083 g_free(dialog_msg); |
4236 | 5084 g_free(nombre); |
4230 | 5085 |
5086 return 1; | |
5087 } | |
5088 | |
5089 static int gaim_ssi_authreply(aim_session_t *sess, aim_frame_t *fr, ...) { | |
5575 | 5090 GaimConnection *gc = sess->aux_data; |
4230 | 5091 va_list ap; |
5092 char *sn, *msg; | |
4236 | 5093 gchar *dialog_msg, *nombre; |
4230 | 5094 fu8_t reply; |
6695 | 5095 GaimBuddy *buddy; |
4230 | 5096 |
5097 va_start(ap, fr); | |
5098 sn = va_arg(ap, char *); | |
5099 reply = (fu8_t)va_arg(ap, int); | |
5100 msg = va_arg(ap, char *); | |
5101 va_end(ap); | |
5102 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5103 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5104 "ssi: received authorization reply from %s. Reply is 0x%04hhx\n", sn, reply); |
4236 | 5105 |
4687 | 5106 buddy = gaim_find_buddy(gc->account, sn); |
5107 if (buddy && (gaim_get_buddy_alias_only(buddy))) | |
5108 nombre = g_strdup_printf("%s (%s)", sn, gaim_get_buddy_alias_only(buddy)); | |
4236 | 5109 else |
5110 nombre = g_strdup(sn); | |
5111 | |
4230 | 5112 if (reply) { |
5113 /* Granted */ | |
7023 | 5114 dialog_msg = g_strdup_printf(_("The user %s has granted your request to add them to your buddy list."), nombre); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
5115 gaim_notify_info(gc, NULL, _("Authorization Granted"), dialog_msg); |
4230 | 5116 } else { |
5117 /* Denied */ | |
7023 | 5118 dialog_msg = g_strdup_printf(_("The user %s has denied your request to add them to your buddy list for the following reason:\n%s"), nombre, msg ? msg : _("No reason given.")); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
5119 gaim_notify_info(gc, NULL, _("Authorization Denied"), dialog_msg); |
4230 | 5120 } |
5121 g_free(dialog_msg); | |
4236 | 5122 g_free(nombre); |
4230 | 5123 |
5124 return 1; | |
5125 } | |
5126 | |
5127 static int gaim_ssi_gotadded(aim_session_t *sess, aim_frame_t *fr, ...) { | |
5575 | 5128 GaimConnection *gc = sess->aux_data; |
4230 | 5129 va_list ap; |
5130 char *sn; | |
6695 | 5131 GaimBuddy *buddy; |
4230 | 5132 |
5133 va_start(ap, fr); | |
5134 sn = va_arg(ap, char *); | |
5135 va_end(ap); | |
5136 | |
4687 | 5137 buddy = gaim_find_buddy(gc->account, sn); |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5138 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5139 "ssi: %s added you to their buddy list\n", sn); |
7015
dece74f05509
[gaim-migrate @ 7578]
Christian Hammond <chipx86@chipx86.com>
parents:
7011
diff
changeset
|
5140 gaim_account_notify_added(gc->account, NULL, sn, (buddy ? gaim_get_buddy_alias_only(buddy) : NULL), NULL); |
4230 | 5141 |
5142 return 1; | |
5143 } | |
4269 | 5144 #endif |
2086 | 5145 |
5575 | 5146 static GList *oscar_chat_info(GaimConnection *gc) { |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5147 GList *m = NULL; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5148 struct proto_chat_entry *pce; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5149 |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5150 pce = g_new0(struct proto_chat_entry, 1); |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5151 pce->label = _("Join what group:"); |
5234 | 5152 pce->identifier = "room"; |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5153 m = g_list_append(m, pce); |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5154 |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5155 pce = g_new0(struct proto_chat_entry, 1); |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5156 pce->label = _("Exchange:"); |
5234 | 5157 pce->identifier = "exchange"; |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5158 pce->is_int = TRUE; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5159 pce->min = 4; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5160 pce->max = 20; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5161 m = g_list_append(m, pce); |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5162 |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5163 return m; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5164 } |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5165 |
5575 | 5166 static void oscar_join_chat(GaimConnection *g, GHashTable *data) { |
4617 | 5167 struct oscar_data *od = (struct oscar_data *)g->proto_data; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5168 aim_conn_t *cur; |
5234 | 5169 char *name, *exchange; |
5170 | |
5171 name = g_hash_table_lookup(data, "room"); | |
5172 exchange = g_hash_table_lookup(data, "exchange"); | |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5173 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5174 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5175 "Attempting to join chat room %s.\n", name); |
4617 | 5176 if ((cur = aim_getconn_type(od->sess, AIM_CONN_TYPE_CHATNAV))) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5177 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5178 "chatnav exists, creating room\n"); |
5234 | 5179 aim_chatnav_createroom(od->sess, cur, name, atoi(exchange)); |
2086 | 5180 } else { |
5181 /* this gets tricky */ | |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
5182 struct create_room *cr = g_new0(struct create_room, 1); |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5183 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5184 "chatnav does not exist, opening chatnav\n"); |
5234 | 5185 cr->exchange = atoi(exchange); |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
5186 cr->name = g_strdup(name); |
4617 | 5187 od->create_rooms = g_slist_append(od->create_rooms, cr); |
5188 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_CHATNAV); | |
2086 | 5189 } |
5190 } | |
5191 | |
5575 | 5192 static void oscar_chat_invite(GaimConnection *g, int id, const char *message, const char *name) { |
4617 | 5193 struct oscar_data *od = (struct oscar_data *)g->proto_data; |
2086 | 5194 struct chat_connection *ccon = find_oscar_chat(g, id); |
5195 | |
5196 if (!ccon) | |
5197 return; | |
5198 | |
4617 | 5199 aim_chat_invite(od->sess, od->conn, name, message ? message : "", |
2086 | 5200 ccon->exchange, ccon->name, 0x0); |
5201 } | |
5202 | |
5575 | 5203 static void oscar_chat_leave(GaimConnection *g, int id) { |
4617 | 5204 struct oscar_data *od = g ? (struct oscar_data *)g->proto_data : NULL; |
2086 | 5205 GSList *bcs = g->buddy_chats; |
5679 | 5206 GaimConversation *b = NULL; |
2086 | 5207 struct chat_connection *c = NULL; |
5208 int count = 0; | |
5209 | |
5210 while (bcs) { | |
5211 count++; | |
5679 | 5212 b = (GaimConversation *)bcs->data; |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
5213 if (id == gaim_conv_chat_get_id(GAIM_CONV_CHAT(b))) |
2086 | 5214 break; |
5215 bcs = bcs->next; | |
5216 b = NULL; | |
5217 } | |
5218 | |
5219 if (!b) | |
5220 return; | |
5221 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5222 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5223 "Attempting to leave room %s (currently in %d rooms)\n", b->name, count); |
2086 | 5224 |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
5225 c = find_oscar_chat(g, gaim_conv_chat_get_id(GAIM_CONV_CHAT(b))); |
2086 | 5226 if (c != NULL) { |
4617 | 5227 if (od) |
5228 od->oscar_chats = g_slist_remove(od->oscar_chats, c); | |
2086 | 5229 if (c->inpa > 0) |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
5230 gaim_input_remove(c->inpa); |
4617 | 5231 if (g && od->sess) |
5232 aim_conn_kill(od->sess, &c->conn); | |
2086 | 5233 g_free(c->name); |
5234 g_free(c->show); | |
5235 g_free(c); | |
5236 } | |
5237 /* we do this because with Oscar it doesn't tell us we left */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
5238 serv_got_chat_left(g, gaim_conv_chat_get_id(GAIM_CONV_CHAT(b))); |
2086 | 5239 } |
5240 | |
6059 | 5241 static int oscar_chat_send(GaimConnection *g, int id, const char *message) { |
4617 | 5242 struct oscar_data *od = (struct oscar_data *)g->proto_data; |
2086 | 5243 GSList *bcs = g->buddy_chats; |
5679 | 5244 GaimConversation *b = NULL; |
2086 | 5245 struct chat_connection *c = NULL; |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5246 char *buf, *buf2; |
2086 | 5247 int i, j; |
5248 | |
5249 while (bcs) { | |
5679 | 5250 b = (GaimConversation *)bcs->data; |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
5251 if (id == gaim_conv_chat_get_id(GAIM_CONV_CHAT(b))) |
2086 | 5252 break; |
5253 bcs = bcs->next; | |
5254 b = NULL; | |
5255 } | |
5256 if (!b) | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5257 return -EINVAL; |
2086 | 5258 |
4617 | 5259 bcs = od->oscar_chats; |
2086 | 5260 while (bcs) { |
5261 c = (struct chat_connection *)bcs->data; | |
5262 if (b == c->cnv) | |
5263 break; | |
5264 bcs = bcs->next; | |
5265 c = NULL; | |
5266 } | |
5267 if (!c) | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5268 return -EINVAL; |
2086 | 5269 |
5270 buf = g_malloc(strlen(message) * 4 + 1); | |
5271 for (i = 0, j = 0; i < strlen(message); i++) { | |
5272 if (message[i] == '\n') { | |
5273 buf[j++] = '<'; | |
5274 buf[j++] = 'B'; | |
5275 buf[j++] = 'R'; | |
5276 buf[j++] = '>'; | |
5277 } else { | |
5278 buf[j++] = message[i]; | |
5279 } | |
5280 } | |
5281 buf[j] = '\0'; | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5282 |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5283 if (strlen(buf) > c->maxlen) |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5284 return -E2BIG; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5285 |
7095
c8bf2da398e3
[gaim-migrate @ 7660]
Christian Hammond <chipx86@chipx86.com>
parents:
7093
diff
changeset
|
5286 buf2 = gaim_markup_strip_html(buf); |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5287 if (strlen(buf2) > c->maxvis) { |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5288 g_free(buf2); |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5289 return -E2BIG; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5290 } |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5291 g_free(buf2); |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5292 |
4617 | 5293 aim_chat_send_im(od->sess, c->conn, 0, buf, strlen(buf)); |
2086 | 5294 g_free(buf); |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5295 return 0; |
2086 | 5296 } |
5297 | |
6695 | 5298 static const char *oscar_list_icon(GaimAccount *a, GaimBuddy *b) { |
4766 | 5299 if (!b || (b && b->name && b->name[0] == '+')) { |
5646
48c63ee49961
[gaim-migrate @ 6060]
Christian Hammond <chipx86@chipx86.com>
parents:
5638
diff
changeset
|
5300 if (a != NULL && isdigit(*gaim_account_get_username(a))) |
4687 | 5301 return "icq"; |
5302 else | |
5303 return "aim"; | |
5304 } | |
5646
48c63ee49961
[gaim-migrate @ 6060]
Christian Hammond <chipx86@chipx86.com>
parents:
5638
diff
changeset
|
5305 |
48c63ee49961
[gaim-migrate @ 6060]
Christian Hammond <chipx86@chipx86.com>
parents:
5638
diff
changeset
|
5306 if (b != NULL && isdigit(b->name[0])) |
4687 | 5307 return "icq"; |
5308 return "aim"; | |
5309 } | |
5310 | |
6695 | 5311 static void oscar_list_emblems(GaimBuddy *b, char **se, char **sw, char **nw, char **ne) |
4687 | 5312 { |
5313 char *emblems[4] = {NULL,NULL,NULL,NULL}; | |
5314 int i = 0; | |
5315 | |
5131 | 5316 if (!GAIM_BUDDY_IS_ONLINE(b)) { |
5575 | 5317 GaimAccount *account; |
5318 GaimConnection *gc; | |
5131 | 5319 struct oscar_data *od; |
5320 char *gname; | |
5321 if ((b->name) && (account = b->account) && (gc = account->gc) && | |
5322 (od = gc->proto_data) && (od->sess->ssi.received_data) && | |
5323 (gname = aim_ssi_itemlist_findparentname(od->sess->ssi.local, b->name)) && | |
5324 (aim_ssi_waitingforauth(od->sess->ssi.local, gname, b->name))) { | |
5325 emblems[i++] = "notauthorized"; | |
5326 } else { | |
5327 emblems[i++] = "offline"; | |
5328 } | |
5329 } | |
4916 | 5330 |
4766 | 5331 if (b->name && (b->uc & 0xffff0000) && isdigit(b->name[0])) { |
4960 | 5332 int uc = b->uc >> 16; |
4766 | 5333 if (uc & AIM_ICQ_STATE_INVISIBLE) |
4960 | 5334 emblems[i++] = "invisible"; |
4766 | 5335 else if (uc & AIM_ICQ_STATE_CHAT) |
4960 | 5336 emblems[i++] = "freeforchat"; |
4766 | 5337 else if (uc & AIM_ICQ_STATE_DND) |
4960 | 5338 emblems[i++] = "dnd"; |
4766 | 5339 else if (uc & AIM_ICQ_STATE_OUT) |
4960 | 5340 emblems[i++] = "na"; |
4766 | 5341 else if (uc & AIM_ICQ_STATE_BUSY) |
4960 | 5342 emblems[i++] = "occupied"; |
4766 | 5343 else if (uc & AIM_ICQ_STATE_AWAY) |
5344 emblems[i++] = "away"; | |
5345 } else { | |
5346 if (b->uc & UC_UNAVAILABLE) | |
5347 emblems[i++] = "away"; | |
5348 } | |
4687 | 5349 if (b->uc & UC_WIRELESS) |
5350 emblems[i++] = "wireless"; | |
5351 if (b->uc & UC_AOL) | |
5352 emblems[i++] = "aol"; | |
5353 if (b->uc & UC_ADMIN) | |
5354 emblems[i++] = "admin"; | |
5355 if (b->uc & UC_AB && i < 4) | |
5356 emblems[i++] = "activebuddy"; | |
6318 | 5357 if (b->uc & UC_HIPTOP && i < 4) |
5358 emblems[i++] = "hiptop"; | |
4766 | 5359 /* if (b->uc & UC_UNCONFIRMED && i < 4) |
5360 emblems[i++] = "unconfirmed"; */ | |
4687 | 5361 *se = emblems[0]; |
5362 *sw = emblems[1]; | |
5363 *nw = emblems[2]; | |
5364 *ne = emblems[3]; | |
5365 } | |
5366 | |
6695 | 5367 static char *oscar_tooltip_text(GaimBuddy *b) { |
5575 | 5368 GaimConnection *gc = b->account->gc; |
5131 | 5369 struct oscar_data *od = gc->proto_data; |
7107
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7106
diff
changeset
|
5370 struct buddyinfo *bi = g_hash_table_lookup(od->buddyinfo, gaim_normalize(b->name)); |
7045 | 5371 aim_userinfo_t *userinfo = aim_locate_finduserinfo(od->sess, b->name); |
7011 | 5372 gchar *tmp = NULL, *ret = g_strdup(""); |
5131 | 5373 |
5374 if (GAIM_BUDDY_IS_ONLINE(b)) { | |
5375 if (isdigit(b->name[0])) { | |
7011 | 5376 char *status; |
5131 | 5377 status = gaim_icq_status((b->uc & 0xffff0000) >> 16); |
7011 | 5378 tmp = ret; |
5379 ret = g_strconcat(tmp, _("<b>Status:</b> "), status, "\n", NULL); | |
5131 | 5380 g_free(tmp); |
5381 g_free(status); | |
5382 } | |
5383 | |
7011 | 5384 if (userinfo != NULL) { |
7162 | 5385 char *tstr = gaim_str_seconds_to_string(time(NULL) - userinfo->onlinesince + |
5131 | 5386 (gc->login_time_official ? gc->login_time_official - gc->login_time : 0)); |
7011 | 5387 tmp = ret; |
5388 ret = g_strconcat(tmp, _("<b>Logged In:</b> "), tstr, "\n", NULL); | |
7162 | 5389 g_free(tmp); |
5390 g_free(tstr); | |
7011 | 5391 } |
5392 | |
5393 if ((bi != NULL) && (bi->ipaddr)) { | |
5394 char *tstr = g_strdup_printf("%hhd.%hhd.%hhd.%hhd", | |
5395 (bi->ipaddr & 0xff000000) >> 24, | |
5396 (bi->ipaddr & 0x00ff0000) >> 16, | |
5397 (bi->ipaddr & 0x0000ff00) >> 8, | |
5398 (bi->ipaddr & 0x000000ff)); | |
5399 tmp = ret; | |
5400 ret = g_strconcat(tmp, _("<b>IP Address:</b> "), tstr, "\n", NULL); | |
7162 | 5401 g_free(tmp); |
5402 g_free(tstr); | |
7011 | 5403 } |
5404 | |
5405 if ((userinfo != NULL) && (userinfo->capabilities)) { | |
5406 char *caps = caps_string(userinfo->capabilities); | |
5407 tmp = ret; | |
5408 ret = g_strconcat(tmp, _("<b>Capabilities:</b> "), caps, "\n", NULL); | |
7162 | 5409 g_free(tmp); |
7011 | 5410 } |
5411 | |
5412 if ((bi != NULL) && (bi->availmsg != NULL) && !(b->uc & UC_UNAVAILABLE)) { | |
5413 gchar *escaped = g_markup_escape_text(bi->availmsg, strlen(bi->availmsg)); | |
5414 tmp = ret; | |
5415 ret = g_strconcat(tmp, _("<b>Available:</b> "), escaped, "\n", NULL); | |
7162 | 5416 g_free(tmp); |
7011 | 5417 g_free(escaped); |
5418 } | |
5419 | |
5420 if ((userinfo != NULL) && (userinfo->flags & AIM_FLAG_AWAY) && (userinfo->away_len > 0) && (userinfo->away != NULL) && (userinfo->away_encoding != NULL)) { | |
5421 gchar *away_utf8 = oscar_encoding_to_utf8(userinfo->away_encoding, userinfo->away, userinfo->away_len); | |
5422 if (away_utf8 != NULL) { | |
7091 | 5423 gchar *tmp1, *tmp2; |
7162 | 5424 const char *tmp3; |
7091 | 5425 tmp1 = gaim_strreplace(away_utf8, "<BR>", "\n"); |
7095
c8bf2da398e3
[gaim-migrate @ 7660]
Christian Hammond <chipx86@chipx86.com>
parents:
7093
diff
changeset
|
5426 tmp2 = gaim_markup_strip_html(tmp1); |
7091 | 5427 g_free(tmp1); |
7164 | 5428 tmp3 = gaim_str_sub_away_formatters(tmp2, gaim_account_get_username(gaim_connection_get_account(gc))); |
7091 | 5429 g_free(tmp2); |
7011 | 5430 tmp = ret; |
7162 | 5431 ret = g_strconcat(tmp, _("<b>Away Message:</b> "), tmp3, "\n", NULL); |
5432 g_free(tmp); | |
7011 | 5433 g_free(away_utf8); |
5836 | 5434 } |
5131 | 5435 } |
5436 } else { | |
5437 char *gname = aim_ssi_itemlist_findparentname(od->sess->ssi.local, b->name); | |
5438 if (aim_ssi_waitingforauth(od->sess->ssi.local, gname, b->name)) { | |
7011 | 5439 tmp = ret; |
5440 ret = g_strconcat(tmp, _("<b>Status:</b> Not Authorized"), "\n", NULL); | |
5131 | 5441 g_free(tmp); |
5442 } else { | |
7011 | 5443 tmp = ret; |
5444 ret = g_strconcat(tmp, _("<b>Status:</b> Offline"), "\n", NULL); | |
5131 | 5445 g_free(tmp); |
5446 } | |
5447 } | |
5448 | |
5449 /* remove the trailing newline character */ | |
7011 | 5450 if (ret) |
5451 ret[strlen(ret)-1] = '\0'; | |
5452 return ret; | |
5131 | 5453 } |
5454 | |
6695 | 5455 static char *oscar_status_text(GaimBuddy *b) { |
5575 | 5456 GaimConnection *gc = b->account->gc; |
5167 | 5457 struct oscar_data *od = gc->proto_data; |
5458 gchar *ret = NULL; | |
5459 | |
5460 if ((b->uc & UC_UNAVAILABLE) || (((b->uc & 0xffff0000) >> 16) & AIM_ICQ_STATE_CHAT)) { | |
5461 if (isdigit(b->name[0])) | |
5462 ret = gaim_icq_status((b->uc & 0xffff0000) >> 16); | |
7038 | 5463 else |
5464 ret = g_strdup(_("Away")); | |
5836 | 5465 } else if (GAIM_BUDDY_IS_ONLINE(b)) { |
7107
9220c7490cd1
[gaim-migrate @ 7672]
Christian Hammond <chipx86@chipx86.com>
parents:
7106
diff
changeset
|
5466 struct buddyinfo *bi = g_hash_table_lookup(od->buddyinfo, gaim_normalize(b->name)); |
6292 | 5467 if (bi->availmsg) |
5468 ret = g_markup_escape_text(bi->availmsg, strlen(bi->availmsg)); | |
5836 | 5469 } else { |
5167 | 5470 char *gname = aim_ssi_itemlist_findparentname(od->sess->ssi.local, b->name); |
5471 if (aim_ssi_waitingforauth(od->sess->ssi.local, gname, b->name)) | |
5472 ret = g_strdup(_("Not Authorized")); | |
5473 else | |
5474 ret = g_strdup(_("Offline")); | |
5475 } | |
5476 | |
5477 return ret; | |
5478 } | |
5479 | |
5842 | 5480 |
5844 | 5481 static int oscar_icon_req(aim_session_t *sess, aim_frame_t *fr, ...) { |
5842 | 5482 GaimConnection *gc = sess->aux_data; |
5483 struct oscar_data *od = gc->proto_data; | |
5892 | 5484 va_list ap; |
5842 | 5485 fu16_t type; |
5892 | 5486 fu8_t flags = 0, length = 0; |
5487 char *md5 = NULL; | |
5488 | |
5842 | 5489 va_start(ap, fr); |
5490 type = va_arg(ap, int); | |
5892 | 5491 |
5492 switch(type) { | |
5493 case 0x0000: | |
5494 case 0x0001: { | |
5495 flags = va_arg(ap, int); | |
5496 length = va_arg(ap, int); | |
5497 md5 = va_arg(ap, char *); | |
5498 | |
5499 if (flags == 0x41) { | |
5500 if (!aim_getconn_type(od->sess, AIM_CONN_TYPE_ICON) && !od->iconconnecting) { | |
5501 od->iconconnecting = TRUE; | |
5502 od->set_icon = TRUE; | |
5503 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_ICON); | |
5504 } else { | |
6039 | 5505 struct stat st; |
5506 const char *iconfile = gaim_account_get_buddy_icon(gaim_connection_get_account(gc)); | |
5507 if (iconfile == NULL) { | |
5508 /* Set an empty icon, or something */ | |
5509 } else if (!stat(iconfile, &st)) { | |
5510 char *buf = g_malloc(st.st_size); | |
5511 FILE *file = fopen(iconfile, "rb"); | |
5512 if (file) { | |
5513 fread(buf, 1, st.st_size, file); | |
5514 fclose(file); | |
5515 gaim_debug(GAIM_DEBUG_INFO, "oscar", | |
5516 "Uploading icon to icon server\n"); | |
6879 | 5517 aim_bart_upload(od->sess, buf, st.st_size); |
5892 | 5518 } else |
5519 gaim_debug(GAIM_DEBUG_ERROR, "oscar", | |
6039 | 5520 "Can't open buddy icon file!\n"); |
5521 g_free(buf); | |
5522 } else { | |
5523 gaim_debug(GAIM_DEBUG_ERROR, "oscar", | |
5524 "Can't stat buddy icon file!\n"); | |
5892 | 5525 } |
5526 } | |
5893 | 5527 } else if (flags == 0x81) |
5528 aim_ssi_seticon(od->sess, md5, length); | |
5892 | 5529 } break; |
5530 | |
5531 case 0x0002: { /* We just set an "available" message? */ | |
5532 } break; | |
5533 } | |
5534 | |
5842 | 5535 va_end(ap); |
5844 | 5536 |
5537 return 0; | |
5842 | 5538 } |
5892 | 5539 |
3952 | 5540 /* |
4617 | 5541 * We have just established a socket with the other dude, so set up some handlers. |
3952 | 5542 */ |
4617 | 5543 static int gaim_odc_initiate(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 5544 GaimConnection *gc = sess->aux_data; |
2086 | 5545 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
5679 | 5546 GaimConversation *cnv; |
2086 | 5547 struct direct_im *dim; |
5548 char buf[256]; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5549 char *sn; |
4617 | 5550 va_list ap; |
5551 aim_conn_t *newconn, *listenerconn; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5552 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5553 va_start(ap, fr); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5554 newconn = va_arg(ap, aim_conn_t *); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5555 listenerconn = va_arg(ap, aim_conn_t *); |
2086 | 5556 va_end(ap); |
5557 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5558 aim_conn_close(listenerconn); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5559 aim_conn_kill(sess, &listenerconn); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5560 |
4617 | 5561 sn = g_strdup(aim_odc_getsn(newconn)); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5562 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5563 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5564 "DirectIM: initiate success to %s\n", sn); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5565 dim = find_direct_im(od, sn); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5566 |
6640
314111e7b601
[gaim-migrate @ 7165]
Christian Hammond <chipx86@chipx86.com>
parents:
6623
diff
changeset
|
5567 cnv = gaim_conversation_new(GAIM_CONV_IM, dim->gc->account, sn); |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
5568 gaim_input_remove(dim->watcher); |
2086 | 5569 dim->conn = newconn; |
4617 | 5570 dim->watcher = gaim_input_add(dim->conn->fd, GAIM_INPUT_READ, oscar_callback, dim->conn); |
3008 | 5571 dim->connected = TRUE; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5572 g_snprintf(buf, sizeof buf, _("Direct IM with %s established"), sn); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5573 g_free(sn); |
6982 | 5574 gaim_conversation_write(cnv, NULL, buf, GAIM_MESSAGE_SYSTEM, time(NULL)); |
2086 | 5575 |
4617 | 5576 aim_conn_addhandler(sess, newconn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIMINCOMING, gaim_odc_incoming, 0); |
5577 aim_conn_addhandler(sess, newconn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIMTYPING, gaim_odc_typing, 0); | |
6982 | 5578 aim_conn_addhandler(sess, newconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_IMAGETRANSFER, gaim_odc_update_ui, 0); |
4617 | 5579 |
2993 | 5580 return 1; |
5581 } | |
5582 | |
6982 | 5583 /* |
5584 * This is called when each chunk of an image is received. It can be used to | |
5585 * update a progress bar, or to eat lots of dry cat food. Wet cat food is | |
5586 * nasty, you sicko. | |
5587 */ | |
5588 static int gaim_odc_update_ui(aim_session_t *sess, aim_frame_t *fr, ...) { | |
2993 | 5589 va_list ap; |
5590 char *sn; | |
5591 double percent; | |
5575 | 5592 GaimConnection *gc = sess->aux_data; |
2993 | 5593 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
5679 | 5594 GaimConversation *c; |
2993 | 5595 struct direct_im *dim; |
5596 | |
5597 va_start(ap, fr); | |
5598 sn = va_arg(ap, char *); | |
5599 percent = va_arg(ap, double); | |
5600 va_end(ap); | |
6873 | 5601 |
2994 | 5602 if (!(dim = find_direct_im(od, sn))) |
5603 return 1; | |
3059 | 5604 if (dim->watcher) { |
5605 gaim_input_remove(dim->watcher); /* Otherwise, the callback will callback */ | |
5606 dim->watcher = 0; | |
5607 } | |
6982 | 5608 /* XXX is this really necessary? */ |
7082
25a616f16b6c
[gaim-migrate @ 7647]
Christian Hammond <chipx86@chipx86.com>
parents:
7080
diff
changeset
|
5609 gaim_core_mainloop_finish_events(); |
6640
314111e7b601
[gaim-migrate @ 7165]
Christian Hammond <chipx86@chipx86.com>
parents:
6623
diff
changeset
|
5610 |
6982 | 5611 c = gaim_find_conversation_with_account(sn, gaim_connection_get_account(gc)); |
6873 | 5612 if (c != NULL) |
5613 gaim_conversation_update_progress(c, percent); | |
2993 | 5614 dim->watcher = gaim_input_add(dim->conn->fd, GAIM_INPUT_READ, |
5615 oscar_callback, dim->conn); | |
2086 | 5616 |
5617 return 1; | |
5618 } | |
5619 | |
6982 | 5620 /* |
5621 * This is called after a direct IM has been received in its entirety. This | |
5622 * function is passed a long chunk of data which contains the IM with any | |
5623 * data chunks (images) appended to it. | |
5624 * | |
5625 * This function rips out all the data chunks and creates an imgstore for | |
5626 * each one. In order to do this, it first goes through the IM and takes | |
5627 * out all the IMG tags. When doing so, it rewrites the original IMG tag | |
5628 * with one compatable with the imgstore Gaim core code. For each one, we | |
5629 * then read in chunks of data from the end of the message and actually | |
5630 * create the img store using the given data. | |
5631 * | |
5632 * For somewhat easy reference, here's a sample message | |
5633 * (without the whitespace and asterisks): | |
5634 * | |
5635 * <HTML><BODY BGCOLOR="#ffffff"> | |
5636 * <FONT LANG="0"> | |
5637 * This is a really stupid picture:<BR> | |
5638 * <IMG SRC="Sample.jpg" ID="1" WIDTH="283" HEIGHT="212" DATASIZE="9894"><BR> | |
5639 * Yeah it is<BR> | |
5640 * Here is another one:<BR> | |
5641 * <IMG SRC="Soap Bubbles.bmp" ID="2" WIDTH="256" HEIGHT="256" DATASIZE="65978"> | |
5642 * </FONT> | |
5643 * </BODY></HTML> | |
5644 * <BINARY> | |
5645 * <DATA ID="1" SIZE="9894">datadatadatadata</DATA> | |
5646 * <DATA ID="2" SIZE="65978">datadatadatadata</DATA> | |
5647 * </BINARY> | |
5648 */ | |
4617 | 5649 static int gaim_odc_incoming(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 5650 GaimConnection *gc = sess->aux_data; |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
5651 GaimConvImFlags imflags = 0; |
6982 | 5652 GString *newmsg = g_string_new(""); |
5653 GSList *images = NULL; | |
2086 | 5654 va_list ap; |
6982 | 5655 const char *sn, *msg, *msgend, *binary; |
5656 size_t len; | |
5657 int encoding, isawaymsg; | |
2086 | 5658 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5659 va_start(ap, fr); |
6982 | 5660 sn = va_arg(ap, const char *); |
5661 msg = va_arg(ap, const char *); | |
5662 len = va_arg(ap, size_t); | |
3952 | 5663 encoding = va_arg(ap, int); |
4870 | 5664 isawaymsg = va_arg(ap, int); |
2086 | 5665 va_end(ap); |
6982 | 5666 msgend = msg + len; |
2086 | 5667 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5668 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5669 "Got DirectIM message from %s\n", sn); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5670 |
4870 | 5671 if (isawaymsg) |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
5672 imflags |= GAIM_CONV_IM_AUTO_RESP; |
4870 | 5673 |
6982 | 5674 /* message has a binary trailer */ |
5675 if ((binary = gaim_strcasestr(msg, "<binary>"))) { | |
5676 GData *attribs; | |
5677 const char *tmp, *start, *end, *last = NULL; | |
5678 | |
5679 tmp = msg; | |
5680 | |
5681 /* for each valid image tag... */ | |
5682 while (gaim_markup_find_tag("img", tmp, &start, &end, &attribs)) { | |
5683 const char *id, *src, *datasize; | |
5684 const char *tag = NULL, *data = NULL; | |
5685 size_t size; | |
5686 int imgid = 0; | |
5687 | |
5688 /* update the location of the last img tag */ | |
5689 last = end; | |
5690 | |
5691 /* grab attributes */ | |
5692 id = g_datalist_get_data(&attribs, "id"); | |
5693 src = g_datalist_get_data(&attribs, "src"); | |
5694 datasize = g_datalist_get_data(&attribs, "datasize"); | |
5695 | |
5696 /* if we have id & datasize, build the data tag */ | |
5697 if (id && datasize) | |
5698 tag = g_strdup_printf("<data id=\"%s\" size=\"%s\">", id, datasize); | |
5699 | |
5700 /* if we have a tag, find the start of the data */ | |
5701 if (tag && (data = gaim_strcasestr(binary, tag))) | |
5702 data += strlen(tag); | |
5703 | |
5704 /* check the data is here and store it */ | |
5705 if (data + (size = atoi(datasize)) <= msgend) | |
5706 imgid = gaim_imgstore_add(data, size, src); | |
5707 | |
5708 /* if we have a stored image... */ | |
5709 if (imgid) { | |
5710 /* append the message up to the tag */ | |
5711 newmsg = g_string_append_len(newmsg, tmp, start - tmp); | |
5712 | |
5713 /* write the new image tag */ | |
5714 g_string_append_printf(newmsg, "<IMG ID=\"%d\">", imgid); | |
5715 | |
5716 /* and record the image number */ | |
5717 images = g_slist_append(images, GINT_TO_POINTER(imgid)); | |
5718 } else { | |
5719 /* otherwise, copy up to the end of the tag */ | |
5720 newmsg = g_string_append_len(newmsg, tmp, (end + 1) - tmp); | |
5721 } | |
5722 | |
5723 /* clear the attribute list */ | |
5724 g_datalist_clear(&attribs); | |
5725 | |
5726 /* continue from the end of the tag */ | |
5727 tmp = end + 1; | |
5728 } | |
5729 | |
5730 /* append any remaining message data (without the > :-) */ | |
5731 if (last++ && (last < binary)) | |
5732 newmsg = g_string_append_len(newmsg, last, binary - last); | |
5733 | |
5734 /* set the flag if we caught any images */ | |
5735 if (images) | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
5736 imflags |= GAIM_CONV_IM_IMAGES; |
6982 | 5737 } else { |
5738 g_string_append_len(newmsg, msg, len); | |
5739 } | |
5740 | |
4617 | 5741 /* XXX - I imagine Paco-Paco will want to do some voodoo with the encoding here */ |
6982 | 5742 serv_got_im(gc, sn, newmsg->str, imflags, time(NULL)); |
5743 | |
5744 /* free up the message */ | |
5745 g_string_free(newmsg, TRUE); | |
5746 | |
5747 /* unref any images we allocated */ | |
5748 if (images) { | |
5749 GSList *tmp; | |
5750 int id; | |
5751 | |
5752 for (tmp = images; tmp != NULL; tmp = tmp->next) { | |
5753 id = GPOINTER_TO_INT(tmp->data); | |
5754 gaim_imgstore_unref(id); | |
5755 } | |
5756 | |
5757 g_slist_free(images); | |
5758 } | |
2086 | 5759 |
5760 return 1; | |
5761 } | |
5762 | |
4617 | 5763 static int gaim_odc_typing(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 5764 va_list ap; |
5765 char *sn; | |
2993 | 5766 int typing; |
5575 | 5767 GaimConnection *gc = sess->aux_data; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5768 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5769 va_start(ap, fr); |
2086 | 5770 sn = va_arg(ap, char *); |
2993 | 5771 typing = va_arg(ap, int); |
2086 | 5772 va_end(ap); |
5773 | |
4870 | 5774 if (typing == 0x0002) { |
2993 | 5775 /* I had to leave this. It's just too funny. It reminds me of my sister. */ |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5776 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5777 "ohmigod! %s has started typing (DirectIM). He's going to send you a message! *squeal*\n", sn); |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
5778 serv_got_typing(gc, sn, 0, GAIM_TYPING); |
4870 | 5779 } else if (typing == 0x0001) |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
5780 serv_got_typing(gc, sn, 0, GAIM_TYPED); |
4870 | 5781 else |
4342 | 5782 serv_got_typing_stopped(gc, sn); |
2086 | 5783 return 1; |
5784 } | |
5785 | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
5786 static int gaim_odc_send_im(aim_session_t *sess, aim_conn_t *conn, const char *message, GaimConvImFlags imflags) { |
6982 | 5787 char *buf; |
5788 size_t len; | |
5789 int ret; | |
5790 | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
5791 if (imflags & GAIM_CONV_IM_IMAGES) { |
6982 | 5792 GString *msg = g_string_new(""); |
5793 GString *data = g_string_new("<BINARY>"); | |
5794 GData *attribs; | |
5795 const char *tmp, *start, *end, *last = NULL; | |
5796 int oscar_id = 0; | |
5797 | |
5798 tmp = message; | |
5799 | |
5800 /* for each valid IMG tag... */ | |
5801 while (gaim_markup_find_tag("img", tmp, &start, &end, &attribs)) { | |
5802 GaimStoredImage *image = NULL; | |
5803 const char *id; | |
5804 | |
5805 last = end; | |
5806 id = g_datalist_get_data(&attribs, "id"); | |
5807 | |
5808 /* ... if it refers to a valid gaim image ... */ | |
5809 if (id && (image = gaim_imgstore_get(atoi(id)))) { | |
5810 /* ... append the message from start to the tag ... */ | |
5811 msg = g_string_append_len(msg, tmp, start - tmp); | |
5812 oscar_id++; | |
5813 | |
5814 /* ... insert a new img tag with the oscar id ... */ | |
5815 if (image->filename) | |
5816 g_string_append_printf(msg, | |
5817 "<IMG SRC=\"file://%s\" ID=\"%d\" DATASIZE=\"%d\">", | |
5818 image->filename, oscar_id, image->size); | |
5819 else | |
5820 g_string_append_printf(msg, | |
5821 "<IMG ID=\"%d\" DATASIZE=\"%d\">", | |
5822 oscar_id, image->size); | |
5823 | |
5824 /* ... and append the data to the binary section ... */ | |
5825 g_string_append_printf(data, "<DATA ID=\"%d\" SIZE=\"%d\">", | |
5826 oscar_id, image->size); | |
5827 data = g_string_append_len(data, image->data, image->size); | |
5828 data = g_string_append(data, "</DATA>"); | |
5829 } else { | |
5830 /* ... otherwise, allow the possibly invalid img tag through. */ | |
5831 /* should we do something else? */ | |
5832 msg = g_string_append_len(msg, tmp, (end + 1) - tmp); | |
5833 } | |
5834 | |
5835 g_datalist_clear(&attribs); | |
5836 | |
5837 /* continue from the end of the tag */ | |
5838 tmp = end + 1; | |
5839 } | |
5840 | |
5841 /* append any remaining message data (without the > :-) */ | |
5842 if (last++ && *last) | |
5843 msg = g_string_append(msg, last); | |
5844 | |
5845 /* if we inserted any images in the binary section, append it */ | |
5846 if (oscar_id) { | |
5847 msg = g_string_append_len(msg, data->str, data->len); | |
5848 msg = g_string_append(msg, "</BINARY>"); | |
5849 } | |
5850 | |
5851 len = msg->len; | |
5852 buf = msg->str; | |
5853 g_string_free(msg, FALSE); | |
5854 g_string_free(data, TRUE); | |
5855 } else { | |
5856 len = strlen(message); | |
5857 buf = g_memdup(message, len+1); | |
5858 } | |
5859 | |
5860 /* XXX - The last parameter below is the encoding. Let Paco-Paco do something with it. */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
5861 if (imflags & GAIM_CONV_IM_AUTO_RESP) |
6982 | 5862 ret = aim_odc_send_im(sess, conn, buf, len, 0, 1); |
5863 else | |
5864 ret = aim_odc_send_im(sess, conn, buf, len, 0, 0); | |
5865 | |
5866 g_free(buf); | |
5867 | |
5868 return ret; | |
5869 } | |
5870 | |
2086 | 5871 struct ask_do_dir_im { |
5872 char *who; | |
5575 | 5873 GaimConnection *gc; |
2086 | 5874 }; |
5875 | |
3730 | 5876 static void oscar_cancel_direct_im(struct ask_do_dir_im *data) { |
5136 | 5877 g_free(data->who); |
2086 | 5878 g_free(data); |
5879 } | |
5880 | |
3730 | 5881 static void oscar_direct_im(struct ask_do_dir_im *data) { |
5575 | 5882 GaimConnection *gc = data->gc; |
4244 | 5883 struct oscar_data *od; |
2086 | 5884 struct direct_im *dim; |
5885 | |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
5886 if (!g_list_find(gaim_connections_get_all(), gc)) { |
5136 | 5887 g_free(data->who); |
4244 | 5888 g_free(data); |
5889 return; | |
5890 } | |
5891 | |
5892 od = (struct oscar_data *)gc->proto_data; | |
5893 | |
2086 | 5894 dim = find_direct_im(od, data->who); |
5895 if (dim) { | |
3008 | 5896 if (!(dim->connected)) { /* We'll free the old, unconnected dim, and start over */ |
5897 od->direct_ims = g_slist_remove(od->direct_ims, dim); | |
5898 gaim_input_remove(dim->watcher); | |
5899 g_free(dim); | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5900 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5901 "Gave up on old direct IM, trying again\n"); |
3008 | 5902 } else { |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
5903 gaim_notify_error(gc, NULL, "DirectIM already open.", NULL); |
5136 | 5904 g_free(data->who); |
4244 | 5905 g_free(data); |
3008 | 5906 return; |
5907 } | |
2086 | 5908 } |
5909 dim = g_new0(struct direct_im, 1); | |
5910 dim->gc = gc; | |
5911 g_snprintf(dim->name, sizeof dim->name, "%s", data->who); | |
5912 | |
4617 | 5913 dim->conn = aim_odc_initiate(od->sess, data->who); |
2086 | 5914 if (dim->conn != NULL) { |
5915 od->direct_ims = g_slist_append(od->direct_ims, dim); | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
5916 dim->watcher = gaim_input_add(dim->conn->fd, GAIM_INPUT_READ, |
2086 | 5917 oscar_callback, dim->conn); |
4617 | 5918 aim_conn_addhandler(od->sess, dim->conn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIM_ESTABLISHED, |
5919 gaim_odc_initiate, 0); | |
2086 | 5920 } else { |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
5921 gaim_notify_error(gc, NULL, _("Unable to open Direct IM"), NULL); |
2086 | 5922 g_free(dim); |
5923 } | |
4244 | 5924 |
5136 | 5925 g_free(data->who); |
4244 | 5926 g_free(data); |
2086 | 5927 } |
5928 | |
5575 | 5929 static void oscar_ask_direct_im(GaimConnection *gc, const char *who) { |
5420 | 5930 gchar *buf; |
2086 | 5931 struct ask_do_dir_im *data = g_new0(struct ask_do_dir_im, 1); |
5136 | 5932 data->who = g_strdup(who); |
2170
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
5933 data->gc = gc; |
5420 | 5934 buf = g_strdup_printf(_("You have selected to open a Direct IM connection with %s."), who); |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
5935 |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
5936 gaim_request_action(gc, NULL, buf, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
5937 _("Because this reveals your IP address, it " |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
5938 "may be considered a privacy risk. Do you " |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
5939 "wish to continue?"), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
5940 0, data, 2, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
5941 _("Connect"), G_CALLBACK(oscar_direct_im), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
5942 _("Cancel"), G_CALLBACK(oscar_cancel_direct_im)); |
5420 | 5943 g_free(buf); |
2086 | 5944 } |
5945 | |
5575 | 5946 static void oscar_set_permit_deny(GaimConnection *gc) { |
5947 GaimAccount *account = gaim_connection_get_account(gc); | |
2086 | 5948 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
4230 | 5949 #ifdef NOSSI |
4770 | 5950 GSList *list, *g = gaim_blist_groups(), *g1; |
4230 | 5951 char buf[MAXMSGLEN]; |
5952 int at; | |
5953 | |
5575 | 5954 switch(account->perm_deny) { |
4687 | 5955 case 1: |
5575 | 5956 aim_bos_changevisibility(od->sess, od->conn, AIM_VISIBILITYCHANGE_DENYADD, gaim_account_get_username(account)); |
4230 | 5957 break; |
5958 case 2: | |
5575 | 5959 aim_bos_changevisibility(od->sess, od->conn, AIM_VISIBILITYCHANGE_PERMITADD, gaim_account_get_username(account)); |
4230 | 5960 break; |
5961 case 3: | |
5575 | 5962 list = account->permit; |
4230 | 5963 at = 0; |
5964 while (list) { | |
5965 at += g_snprintf(buf + at, sizeof(buf) - at, "%s&", (char *)list->data); | |
5966 list = list->next; | |
5967 } | |
5968 aim_bos_changevisibility(od->sess, od->conn, AIM_VISIBILITYCHANGE_PERMITADD, buf); | |
5969 break; | |
5970 case 4: | |
5575 | 5971 list = account->deny; |
4230 | 5972 at = 0; |
5973 while (list) { | |
5974 at += g_snprintf(buf + at, sizeof(buf) - at, "%s&", (char *)list->data); | |
5975 list = list->next; | |
5976 } | |
5977 aim_bos_changevisibility(od->sess, od->conn, AIM_VISIBILITYCHANGE_DENYADD, buf); | |
5978 break; | |
5979 case 5: | |
4770 | 5980 g1 = g; |
4230 | 5981 at = 0; |
4770 | 5982 while (g1) { |
5983 list = gaim_blist_members((struct group *)g->data); | |
5984 GSList list1 = list; | |
5985 while (list1) { | |
5986 struct buddy *b = list1->data; | |
5575 | 5987 if(b->account == account) |
4349 | 5988 at += g_snprintf(buf + at, sizeof(buf) - at, "%s&", b->name); |
4770 | 5989 list1 = list1->next; |
2995 | 5990 } |
4770 | 5991 g_slist_free(list); |
5992 g1 = g1->next; | |
4349 | 5993 } |
4770 | 5994 g_slist_free(g); |
4230 | 5995 aim_bos_changevisibility(od->sess, od->conn, AIM_VISIBILITYCHANGE_PERMITADD, buf); |
5996 break; | |
5997 default: | |
5998 break; | |
2086 | 5999 } |
4230 | 6000 signoff_blocked(gc); |
6001 #else | |
6002 if (od->sess->ssi.received_data) | |
5575 | 6003 aim_ssi_setpermdeny(od->sess, account->perm_deny, 0xffffffff); |
4230 | 6004 #endif |
2086 | 6005 } |
6006 | |
5575 | 6007 static void oscar_add_permit(GaimConnection *gc, const char *who) { |
4269 | 6008 #ifdef NOSSI |
4491 | 6009 if (gc->account->permdeny == 3) |
4269 | 6010 oscar_set_permit_deny(gc); |
6011 #else | |
2991 | 6012 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
6013 gaim_debug(GAIM_DEBUG_INFO, "oscar", "ssi: About to add a permit\n"); |
4230 | 6014 if (od->sess->ssi.received_data) |
4889 | 6015 aim_ssi_addpermit(od->sess, who); |
4230 | 6016 #endif |
2086 | 6017 } |
6018 | |
5575 | 6019 static void oscar_add_deny(GaimConnection *gc, const char *who) { |
4269 | 6020 #ifdef NOSSI |
4491 | 6021 if (gc->account->permdeny == 4) |
4269 | 6022 oscar_set_permit_deny(gc); |
6023 #else | |
2991 | 6024 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
6025 gaim_debug(GAIM_DEBUG_INFO, "oscar", "ssi: About to add a deny\n"); |
4230 | 6026 if (od->sess->ssi.received_data) |
4889 | 6027 aim_ssi_adddeny(od->sess, who); |
4230 | 6028 #endif |
2086 | 6029 } |
6030 | |
5575 | 6031 static void oscar_rem_permit(GaimConnection *gc, const char *who) { |
4269 | 6032 #ifdef NOSSI |
4491 | 6033 if (gc->account->permdeny == 3) |
4269 | 6034 oscar_set_permit_deny(gc); |
6035 #else | |
2991 | 6036 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
6037 gaim_debug(GAIM_DEBUG_INFO, "oscar", "ssi: About to delete a permit\n"); |
4230 | 6038 if (od->sess->ssi.received_data) |
4889 | 6039 aim_ssi_delpermit(od->sess, who); |
4230 | 6040 #endif |
2086 | 6041 } |
6042 | |
5575 | 6043 static void oscar_rem_deny(GaimConnection *gc, const char *who) { |
4269 | 6044 #ifdef NOSSI |
4491 | 6045 if (gc->account->permdeny == 4) |
4269 | 6046 oscar_set_permit_deny(gc); |
6047 #else | |
2991 | 6048 struct oscar_data *od = (struct oscar_data *)gc->proto_data; |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
6049 gaim_debug(GAIM_DEBUG_INFO, "oscar", "ssi: About to delete a deny\n"); |
4230 | 6050 if (od->sess->ssi.received_data) |
4889 | 6051 aim_ssi_deldeny(od->sess, who); |
4230 | 6052 #endif |
2086 | 6053 } |
6054 | |
5575 | 6055 static GList *oscar_away_states(GaimConnection *gc) |
2086 | 6056 { |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
6057 struct oscar_data *od = gc->proto_data; |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
6058 GList *m = NULL; |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
6059 |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
6060 if (!od->icq) |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
6061 return g_list_append(m, GAIM_AWAY_CUSTOM); |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
6062 |
4333 | 6063 m = g_list_append(m, _("Online")); |
6064 m = g_list_append(m, _("Away")); | |
6065 m = g_list_append(m, _("Do Not Disturb")); | |
6066 m = g_list_append(m, _("Not Available")); | |
6067 m = g_list_append(m, _("Occupied")); | |
6068 m = g_list_append(m, _("Free For Chat")); | |
6069 m = g_list_append(m, _("Invisible")); | |
6070 | |
6071 return m; | |
6072 } | |
6073 | |
7172 | 6074 static void oscar_ssi_editcomment(struct name_data *data, const char *text) { |
6075 struct oscar_data *od = data->gc->proto_data; | |
6076 GaimBuddy *b; | |
6077 GaimGroup *g; | |
6078 | |
6079 if (!(b = gaim_find_buddy(gaim_connection_get_account(data->gc), data->name))) { | |
6080 oscar_free_name_data(data); | |
6081 return; | |
6082 } | |
6083 | |
6084 if (!(g = gaim_find_buddys_group(b))) { | |
6085 oscar_free_name_data(data); | |
6086 return; | |
6087 } | |
6088 | |
6089 aim_ssi_editcomment(od->sess, g->name, data->name, text); | |
6090 oscar_free_name_data(data); | |
6091 } | |
6092 | |
6093 static void oscar_buddycb_edit_comment(GaimConnection *gc, const char *name) { | |
6094 struct oscar_data *od = gc->proto_data; | |
6095 struct name_data *data = g_new(struct name_data, 1); | |
6096 GaimBuddy *b; | |
6097 GaimGroup *g; | |
6098 char *comment; | |
6099 gchar *comment_utf8; | |
6100 | |
6101 if (!(b = gaim_find_buddy(gaim_connection_get_account(gc), name))) | |
6102 return; | |
6103 if (!(g = gaim_find_buddys_group(b))) | |
6104 return; | |
6105 comment = aim_ssi_getcomment(od->sess->ssi.local, g->name, name); | |
6106 comment_utf8 = comment ? gaim_utf8_try_convert(comment) : NULL; | |
6107 | |
6108 data->gc = gc; | |
6109 data->name = g_strdup(name); | |
6110 data->nick = NULL; | |
6111 | |
6112 gaim_request_input(gc, NULL, _("Buddy Comment:"), NULL, | |
6113 comment_utf8, TRUE, FALSE, | |
6114 _("OK"), G_CALLBACK(oscar_ssi_editcomment), | |
6115 _("Cancel"), G_CALLBACK(oscar_free_name_data), | |
6116 data); | |
6117 | |
6118 free(comment); | |
6119 g_free(comment_utf8); | |
6120 } | |
6121 | |
5575 | 6122 static GList *oscar_buddy_menu(GaimConnection *gc, const char *who) { |
4333 | 6123 struct oscar_data *od = gc->proto_data; |
6124 GList *m = NULL; | |
6125 struct proto_buddy_menu *pbm; | |
6126 | |
7172 | 6127 pbm = g_new0(struct proto_buddy_menu, 1); |
6128 pbm->label = _("Edit Buddy Comment"); | |
6129 pbm->callback = oscar_buddycb_edit_comment; | |
6130 pbm->gc = gc; | |
6131 m = g_list_append(m, pbm); | |
6132 | |
4333 | 6133 if (od->icq) { |
4624 | 6134 #if 0 |
4333 | 6135 pbm = g_new0(struct proto_buddy_menu, 1); |
6136 pbm->label = _("Get Status Msg"); | |
4969 | 6137 pbm->callback = oscar_get_icqstatusmsg; |
4333 | 6138 pbm->gc = gc; |
6139 m = g_list_append(m, pbm); | |
4624 | 6140 #endif |
4333 | 6141 } else { |
6695 | 6142 GaimBuddy *b = gaim_find_buddy(gc->account, who); |
7011 | 6143 aim_userinfo_t *userinfo; |
5975 | 6144 |
6145 if (b) | |
7045 | 6146 userinfo = aim_locate_finduserinfo(od->sess, b->name); |
7011 | 6147 |
6148 if (b && userinfo && aim_sncmp(gaim_account_get_username(gaim_connection_get_account(gc)), who) && GAIM_BUDDY_IS_ONLINE(b)) { | |
6149 if (userinfo->capabilities & AIM_CAPS_DIRECTIM) { | |
5917 | 6150 pbm = g_new0(struct proto_buddy_menu, 1); |
6151 pbm->label = _("Direct IM"); | |
6152 pbm->callback = oscar_ask_direct_im; | |
6153 pbm->gc = gc; | |
6154 m = g_list_append(m, pbm); | |
6155 } | |
6156 | |
7011 | 6157 if (userinfo->capabilities & AIM_CAPS_SENDFILE) { |
5917 | 6158 pbm = g_new0(struct proto_buddy_menu, 1); |
6159 pbm->label = _("Send File"); | |
6160 pbm->callback = oscar_ask_sendfile; | |
6161 pbm->gc = gc; | |
6162 m = g_list_append(m, pbm); | |
6163 } | |
4826 | 6164 #if 0 |
7011 | 6165 if (userinfo->capabilities & AIM_CAPS_GETFILE) { |
5917 | 6166 pbm = g_new0(struct proto_buddy_menu, 1); |
6167 pbm->label = _("Get File"); | |
6168 pbm->callback = oscar_ask_getfile; | |
6169 pbm->gc = gc; | |
6170 m = g_list_append(m, pbm); | |
6171 } | |
4826 | 6172 #endif |
4333 | 6173 } |
5131 | 6174 } |
5197 | 6175 |
5131 | 6176 if (od->sess->ssi.received_data) { |
6177 char *gname = aim_ssi_itemlist_findparentname(od->sess->ssi.local, who); | |
6178 if (gname && aim_ssi_waitingforauth(od->sess->ssi.local, gname, who)) { | |
6179 pbm = g_new0(struct proto_buddy_menu, 1); | |
6873 | 6180 pbm->label = _("Re-request Authorization"); |
5131 | 6181 pbm->callback = gaim_auth_sendrequest; |
6182 pbm->gc = gc; | |
6183 m = g_list_append(m, pbm); | |
4333 | 6184 } |
4916 | 6185 } |
6186 | |
4333 | 6187 return m; |
6188 } | |
6189 | |
5575 | 6190 static void oscar_format_screenname(GaimConnection *gc, const char *nick) { |
4333 | 6191 struct oscar_data *od = gc->proto_data; |
5575 | 6192 if (!aim_sncmp(gaim_account_get_username(gaim_connection_get_account(gc)), nick)) { |
4333 | 6193 if (!aim_getconn_type(od->sess, AIM_CONN_TYPE_AUTH)) { |
6194 od->setnick = TRUE; | |
6195 od->newsn = g_strdup(nick); | |
6196 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_AUTH); | |
6197 } else { | |
6198 aim_admin_setnick(od->sess, aim_getconn_type(od->sess, AIM_CONN_TYPE_AUTH), nick); | |
6199 } | |
6200 } else { | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
6201 gaim_notify_error(gc, NULL, _("The new formatting is invalid."), |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
6202 _("Screenname formatting can change only capitalization and whitespace.")); |
4333 | 6203 } |
6204 } | |
6205 | |
5575 | 6206 static void oscar_show_format_screenname(GaimConnection *gc) |
4333 | 6207 { |
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
6208 gaim_request_input(gc, NULL, _("New screenname formatting:"), NULL, |
6035
8c44020a958e
[gaim-migrate @ 6485]
Christian Hammond <chipx86@chipx86.com>
parents:
6029
diff
changeset
|
6209 gaim_connection_get_display_name(gc), FALSE, FALSE, |
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
6210 _("OK"), G_CALLBACK(oscar_format_screenname), |
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
6211 _("Cancel"), NULL, |
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
6212 gc); |
4333 | 6213 } |
6214 | |
5575 | 6215 static void oscar_confirm_account(GaimConnection *gc) |
4333 | 6216 { |
6217 struct oscar_data *od = gc->proto_data; | |
6218 aim_conn_t *conn = aim_getconn_type(od->sess, AIM_CONN_TYPE_AUTH); | |
6219 | |
6220 if (conn) { | |
6221 aim_admin_reqconfirm(od->sess, conn); | |
6222 } else { | |
6223 od->conf = TRUE; | |
6224 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_AUTH); | |
6225 } | |
6226 } | |
6227 | |
5575 | 6228 static void oscar_show_email(GaimConnection *gc) |
4333 | 6229 { |
6230 struct oscar_data *od = gc->proto_data; | |
6231 aim_conn_t *conn = aim_getconn_type(od->sess, AIM_CONN_TYPE_AUTH); | |
6232 | |
6233 if (conn) { | |
6234 aim_admin_getinfo(od->sess, conn, 0x11); | |
6235 } else { | |
6236 od->reqemail = TRUE; | |
6237 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_AUTH); | |
6238 } | |
6239 } | |
6240 | |
5575 | 6241 static void oscar_change_email(GaimConnection *gc, const char *email) |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6242 { |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6243 struct oscar_data *od = gc->proto_data; |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6244 aim_conn_t *conn = aim_getconn_type(od->sess, AIM_CONN_TYPE_AUTH); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6245 |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6246 if (conn) { |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6247 aim_admin_setemail(od->sess, conn, email); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6248 } else { |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6249 od->setemail = TRUE; |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6250 od->email = g_strdup(email); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6251 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_AUTH); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6252 } |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6253 } |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6254 |
5575 | 6255 static void oscar_show_change_email(GaimConnection *gc) |
4333 | 6256 { |
6035
8c44020a958e
[gaim-migrate @ 6485]
Christian Hammond <chipx86@chipx86.com>
parents:
6029
diff
changeset
|
6257 gaim_request_input(gc, NULL, _("Change Address To:"), NULL, NULL, |
8c44020a958e
[gaim-migrate @ 6485]
Christian Hammond <chipx86@chipx86.com>
parents:
6029
diff
changeset
|
6258 FALSE, FALSE, |
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
6259 _("OK"), G_CALLBACK(oscar_change_email), |
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
6260 _("Cancel"), NULL, |
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
6261 gc); |
4333 | 6262 } |
6263 | |
5575 | 6264 static void oscar_show_awaitingauth(GaimConnection *gc) |
4333 | 6265 { |
2979 | 6266 struct oscar_data *od = gc->proto_data; |
4333 | 6267 gchar *nombre, *text, *tmp; |
6695 | 6268 GaimBlistNode *gnode, *cnode, *bnode; |
4333 | 6269 int num=0; |
6270 | |
6873 | 6271 text = g_strdup(""); |
4333 | 6272 |
4785 | 6273 for (gnode = gaim_get_blist()->root; gnode; gnode = gnode->next) { |
6695 | 6274 GaimGroup *group = (GaimGroup *)gnode; |
4785 | 6275 if(!GAIM_BLIST_NODE_IS_GROUP(gnode)) |
6276 continue; | |
6695 | 6277 for (cnode = gnode->child; cnode; cnode = cnode->next) { |
6278 if(!GAIM_BLIST_NODE_IS_CONTACT(cnode)) | |
4785 | 6279 continue; |
6695 | 6280 for (bnode = cnode->child; bnode; bnode = bnode->next) { |
6281 GaimBuddy *buddy = (GaimBuddy *)bnode; | |
6282 if(!GAIM_BLIST_NODE_IS_BUDDY(bnode)) | |
6283 continue; | |
6284 if (buddy->account == gc->account && aim_ssi_waitingforauth(od->sess->ssi.local, group->name, buddy->name)) { | |
6285 if (gaim_get_buddy_alias_only(buddy)) | |
6286 nombre = g_strdup_printf(" %s (%s)", buddy->name, gaim_get_buddy_alias_only(buddy)); | |
6287 else | |
6288 nombre = g_strdup_printf(" %s", buddy->name); | |
6873 | 6289 tmp = g_strdup_printf("%s%s<br>", text, nombre); |
6695 | 6290 g_free(text); |
6291 text = tmp; | |
6292 g_free(nombre); | |
6293 num++; | |
6294 } | |
4333 | 6295 } |
2979 | 6296 } |
4333 | 6297 } |
6298 | |
6299 if (!num) { | |
6300 g_free(text); | |
6873 | 6301 text = g_strdup(_("<i>you are not waiting for authorization</i>")); |
6302 } | |
6303 | |
6304 gaim_notify_formatted(gc, NULL, _("You are awaiting authorization from " | |
6305 "the following buddies"), _("You can re-request " | |
6306 "authorization from these buddies by " | |
6307 "right-clicking on them and selecting " | |
6308 "\"Re-request Authorization.\""), text, NULL, NULL); | |
4333 | 6309 g_free(text); |
2979 | 6310 } |
6311 | |
7080
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6312 static void search_by_email_cb(GaimConnection *gc, const char *email) |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6313 { |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6314 serv_dir_search(gc, "", "", "", "", "", "", "", email); |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6315 } |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6316 |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6317 static void oscar_show_find_email(GaimConnection *gc) |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6318 { |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6319 gaim_request_input(gc, _("Find Buddy by E-mail"), |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6320 _("Search for a buddy by e-mail address"), |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6321 _("Type the e-mail address of the buddy you are " |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6322 "searching for."), |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6323 NULL, FALSE, FALSE, |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6324 _("Search"), G_CALLBACK(search_by_email_cb), |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6325 _("Cancel"), NULL, gc); |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6326 } |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6327 |
5975 | 6328 #if 0 |
5917 | 6329 static void oscar_setavailmsg(GaimConnection *gc, char *text) { |
6330 struct oscar_data *od = (struct oscar_data *)gc->proto_data; | |
6331 | |
6332 aim_srv_setavailmsg(od->sess, text); | |
6333 } | |
6334 | |
6335 static void oscar_show_setavailmsg(GaimConnection *gc) | |
6336 { | |
6337 gaim_request_input(gc, NULL, _("Available Message:"), | |
7032 | 6338 NULL, "Please talk to me, I'm lonely! (and single)", TRUE, FALSE, |
5917 | 6339 _("OK"), G_CALLBACK(oscar_setavailmsg), |
6340 _("Cancel"), NULL, | |
6341 gc); | |
6342 } | |
5975 | 6343 #endif |
5917 | 6344 |
7067
71e0da45abe6
[gaim-migrate @ 7631]
Christian Hammond <chipx86@chipx86.com>
parents:
7063
diff
changeset
|
6345 static void oscar_show_set_info(GaimConnection *gc) |
71e0da45abe6
[gaim-migrate @ 7631]
Christian Hammond <chipx86@chipx86.com>
parents:
7063
diff
changeset
|
6346 { |
71e0da45abe6
[gaim-migrate @ 7631]
Christian Hammond <chipx86@chipx86.com>
parents:
7063
diff
changeset
|
6347 gaim_account_request_change_user_info(gaim_connection_get_account(gc)); |
71e0da45abe6
[gaim-migrate @ 7631]
Christian Hammond <chipx86@chipx86.com>
parents:
7063
diff
changeset
|
6348 } |
71e0da45abe6
[gaim-migrate @ 7631]
Christian Hammond <chipx86@chipx86.com>
parents:
7063
diff
changeset
|
6349 |
7063
7fdac700deb1
[gaim-migrate @ 7627]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
6350 static void oscar_change_pass(GaimConnection *gc) |
7fdac700deb1
[gaim-migrate @ 7627]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
6351 { |
7fdac700deb1
[gaim-migrate @ 7627]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
6352 gaim_account_request_change_password(gaim_connection_get_account(gc)); |
7fdac700deb1
[gaim-migrate @ 7627]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
6353 } |
7fdac700deb1
[gaim-migrate @ 7627]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
6354 |
5575 | 6355 static void oscar_show_chpassurl(GaimConnection *gc) |
4333 | 6356 { |
6357 struct oscar_data *od = gc->proto_data; | |
5575 | 6358 gchar *substituted = gaim_strreplace(od->sess->authinfo->chpassurl, "%s", gaim_account_get_username(gaim_connection_get_account(gc))); |
6465
fb64cc87bc96
[gaim-migrate @ 6974]
Christian Hammond <chipx86@chipx86.com>
parents:
6400
diff
changeset
|
6359 gaim_notify_uri(gc, substituted); |
5517 | 6360 g_free(substituted); |
4333 | 6361 } |
6362 | |
7026 | 6363 static void oscar_show_imforwardingurl(GaimConnection *gc) |
6364 { | |
6365 gaim_notify_uri(gc, "http://mymobile.aol.com/dbreg/register?action=imf&clientID=1"); | |
6366 } | |
6367 | |
5842 | 6368 static void oscar_set_icon(GaimConnection *gc, const char *iconfile) |
6369 { | |
5844 | 6370 struct oscar_data *od = gc->proto_data; |
6371 aim_session_t *sess = od->sess; | |
5842 | 6372 FILE *file; |
6373 struct stat st; | |
5844 | 6374 |
6039 | 6375 if (iconfile == NULL) { |
6376 /* Set an empty icon, or something */ | |
6377 } else if (!stat(iconfile, &st)) { | |
5842 | 6378 char *buf = g_malloc(st.st_size); |
6379 file = fopen(iconfile, "rb"); | |
6380 if (file) { | |
6052 | 6381 md5_state_t *state; |
6039 | 6382 char md5[16]; |
5842 | 6383 int len = fread(buf, 1, st.st_size, file); |
6039 | 6384 fclose(file); |
6052 | 6385 state = g_malloc(sizeof(md5_state_t)); |
5842 | 6386 md5_init(state); |
6387 md5_append(state, buf, len); | |
6388 md5_finish(state, md5); | |
6389 g_free(state); | |
6390 aim_ssi_seticon(sess, md5, 16); | |
6391 } else | |
6392 gaim_debug(GAIM_DEBUG_ERROR, "oscar", | |
6393 "Can't open buddy icon file!\n"); | |
6394 g_free(buf); | |
6395 } else | |
6396 gaim_debug(GAIM_DEBUG_ERROR, "oscar", | |
6397 "Can't stat buddy icon file!\n"); | |
6398 } | |
6399 | |
6400 | |
5575 | 6401 static GList *oscar_actions(GaimConnection *gc) |
2086 | 6402 { |
6403 struct oscar_data *od = gc->proto_data; | |
4333 | 6404 struct proto_actions_menu *pam; |
6405 GList *m = NULL; | |
6406 | |
6407 pam = g_new0(struct proto_actions_menu, 1); | |
6408 pam->label = _("Set User Info"); | |
7067
71e0da45abe6
[gaim-migrate @ 7631]
Christian Hammond <chipx86@chipx86.com>
parents:
7063
diff
changeset
|
6409 pam->callback = oscar_show_set_info; |
4333 | 6410 pam->gc = gc; |
6411 m = g_list_append(m, pam); | |
6412 | |
5917 | 6413 #if 0 |
6414 pam = g_new0(struct proto_actions_menu, 1); | |
6415 pam->label = _("Set Available Message"); | |
6416 pam->callback = oscar_show_setavailmsg; | |
6417 pam->gc = gc; | |
6418 m = g_list_append(m, pam); | |
6419 #endif | |
6420 | |
5238 | 6421 pam = g_new0(struct proto_actions_menu, 1); |
6422 pam->label = _("Change Password"); | |
7063
7fdac700deb1
[gaim-migrate @ 7627]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
6423 pam->callback = oscar_change_pass; |
5238 | 6424 pam->gc = gc; |
6425 m = g_list_append(m, pam); | |
4617 | 6426 |
6427 if (od->sess->authinfo->chpassurl) { | |
6428 pam = g_new0(struct proto_actions_menu, 1); | |
6429 pam->label = _("Change Password (URL)"); | |
6430 pam->callback = oscar_show_chpassurl; | |
6431 pam->gc = gc; | |
6432 m = g_list_append(m, pam); | |
6433 } | |
6434 | |
7026 | 6435 if (od->sess->authinfo->chpassurl) { |
6436 pam = g_new0(struct proto_actions_menu, 1); | |
6437 pam->label = _("Configure IM Forwarding (URL)"); | |
6438 pam->callback = oscar_show_imforwardingurl; | |
6439 pam->gc = gc; | |
6440 m = g_list_append(m, pam); | |
6441 } | |
6442 | |
5238 | 6443 if (!od->icq) { |
4617 | 6444 /* AIM actions */ |
6445 m = g_list_append(m, NULL); | |
4333 | 6446 |
5917 | 6447 pam = g_new0(struct proto_actions_menu, 1); |
4333 | 6448 pam->label = _("Format Screenname"); |
5844 | 6449 pam->callback = oscar_show_format_screenname; |
4333 | 6450 pam->gc = gc; |
6451 m = g_list_append(m, pam); | |
6452 | |
6453 pam = g_new0(struct proto_actions_menu, 1); | |
6454 pam->label = _("Confirm Account"); | |
6455 pam->callback = oscar_confirm_account; | |
6456 pam->gc = gc; | |
6457 m = g_list_append(m, pam); | |
6458 | |
6459 pam = g_new0(struct proto_actions_menu, 1); | |
6460 pam->label = _("Display Current Registered Address"); | |
6461 pam->callback = oscar_show_email; | |
6462 pam->gc = gc; | |
6463 m = g_list_append(m, pam); | |
6464 | |
6465 pam = g_new0(struct proto_actions_menu, 1); | |
6466 pam->label = _("Change Current Registered Address"); | |
6467 pam->callback = oscar_show_change_email; | |
6468 pam->gc = gc; | |
6469 m = g_list_append(m, pam); | |
2086 | 6470 } |
4333 | 6471 |
6472 m = g_list_append(m, NULL); | |
6473 | |
6474 pam = g_new0(struct proto_actions_menu, 1); | |
6475 pam->label = _("Show Buddies Awaiting Authorization"); | |
6476 pam->callback = oscar_show_awaitingauth; | |
6477 pam->gc = gc; | |
6478 m = g_list_append(m, pam); | |
6479 | |
2086 | 6480 m = g_list_append(m, NULL); |
4333 | 6481 |
6482 pam = g_new0(struct proto_actions_menu, 1); | |
6483 pam->label = _("Search for Buddy by Email"); | |
7080
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6484 pam->callback = oscar_show_find_email; |
4333 | 6485 pam->gc = gc; |
6486 m = g_list_append(m, pam); | |
6487 | |
4336 | 6488 /* pam = g_new0(struct proto_actions_menu, 1); |
4333 | 6489 pam->label = _("Search for Buddy by Information"); |
6490 pam->callback = show_find_info; | |
6491 pam->gc = gc; | |
4336 | 6492 m = g_list_append(m, pam); */ |
2086 | 6493 |
6494 return m; | |
6495 } | |
6496 | |
5575 | 6497 static void oscar_change_passwd(GaimConnection *gc, const char *old, const char *new) |
2086 | 6498 { |
6499 struct oscar_data *od = gc->proto_data; | |
4617 | 6500 |
6501 if (od->icq) { | |
6502 aim_icq_changepasswd(od->sess, new); | |
2086 | 6503 } else { |
4617 | 6504 aim_conn_t *conn = aim_getconn_type(od->sess, AIM_CONN_TYPE_AUTH); |
6505 if (conn) { | |
6506 aim_admin_changepasswd(od->sess, conn, new, old); | |
6507 } else { | |
6508 od->chpass = TRUE; | |
6509 od->oldp = g_strdup(old); | |
6510 od->newp = g_strdup(new); | |
6511 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_AUTH); | |
6512 } | |
2086 | 6513 } |
6514 } | |
6515 | |
6059 | 6516 static void oscar_convo_closed(GaimConnection *gc, const char *who) |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6517 { |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6518 struct oscar_data *od = gc->proto_data; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6519 struct direct_im *dim = find_direct_im(od, who); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6520 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6521 if (!dim) |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6522 return; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6523 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6524 od->direct_ims = g_slist_remove(od->direct_ims, dim); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6525 gaim_input_remove(dim->watcher); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6526 aim_conn_kill(od->sess, &dim->conn); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6527 g_free(dim); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6528 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6529 |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6530 static GaimPluginProtocolInfo prpl_info = |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6531 { |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6532 GAIM_PROTO_OSCAR, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6533 OPT_PROTO_MAIL_CHECK | OPT_PROTO_BUDDY_ICON | OPT_PROTO_IM_IMAGE, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6534 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6535 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6536 oscar_list_icon, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6537 oscar_list_emblems, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6538 oscar_status_text, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6539 oscar_tooltip_text, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6540 oscar_away_states, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6541 oscar_actions, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6542 oscar_buddy_menu, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6543 oscar_chat_info, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6544 oscar_login, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6545 oscar_close, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6546 oscar_send_im, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6547 oscar_set_info, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6548 oscar_send_typing, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6549 oscar_get_info, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6550 oscar_set_away, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6551 oscar_get_away, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6552 oscar_set_dir, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6553 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6554 oscar_dir_search, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6555 oscar_set_idle, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6556 oscar_change_passwd, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6557 oscar_add_buddy, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6558 oscar_add_buddies, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6559 oscar_remove_buddy, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6560 oscar_remove_buddies, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6561 oscar_add_permit, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6562 oscar_add_deny, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6563 oscar_rem_permit, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6564 oscar_rem_deny, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6565 oscar_set_permit_deny, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6566 oscar_warn, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6567 oscar_join_chat, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6568 oscar_chat_invite, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6569 oscar_chat_leave, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6570 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6571 oscar_chat_send, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6572 oscar_keepalive, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6573 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6574 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6575 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6576 #ifndef NOSSI |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6577 oscar_alias_buddy, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6578 oscar_move_buddy, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6579 oscar_rename_group, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6580 #else |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6581 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6582 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6583 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6584 #endif |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6585 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6586 oscar_convo_closed, |
5842 | 6587 NULL, |
6588 oscar_set_icon | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6589 }; |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6590 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6591 static GaimPluginInfo info = |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6592 { |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6593 2, /**< api_version */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6594 GAIM_PLUGIN_PROTOCOL, /**< type */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6595 NULL, /**< ui_requirement */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6596 0, /**< flags */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6597 NULL, /**< dependencies */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6598 GAIM_PRIORITY_DEFAULT, /**< priority */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6599 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6600 "prpl-oscar", /**< id */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6601 "AIM/ICQ", /**< name */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6602 VERSION, /**< version */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6603 /** summary */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6604 N_("AIM/ICQ Protocol Plugin"), |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6605 /** description */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6606 N_("AIM/ICQ Protocol Plugin"), |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6607 NULL, /**< author */ |
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6350
diff
changeset
|
6608 GAIM_WEBSITE, /**< homepage */ |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6609 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6610 NULL, /**< load */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6611 NULL, /**< unload */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6612 NULL, /**< destroy */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6613 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6614 NULL, /**< ui_info */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6615 &prpl_info /**< extra_info */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6616 }; |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6617 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6618 static void |
5920
7d385de2f9cd
[gaim-migrate @ 6360]
Christian Hammond <chipx86@chipx86.com>
parents:
5917
diff
changeset
|
6619 init_plugin(GaimPlugin *plugin) |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6620 { |
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5631
diff
changeset
|
6621 GaimAccountOption *option; |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5631
diff
changeset
|
6622 |
5685
43ea75092684
[gaim-migrate @ 6106]
Christian Hammond <chipx86@chipx86.com>
parents:
5681
diff
changeset
|
6623 option = gaim_account_option_string_new(_("Auth host"), "server", |
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5631
diff
changeset
|
6624 "login.oscar.aol.com"); |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5631
diff
changeset
|
6625 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5631
diff
changeset
|
6626 option); |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5631
diff
changeset
|
6627 |
5685
43ea75092684
[gaim-migrate @ 6106]
Christian Hammond <chipx86@chipx86.com>
parents:
5681
diff
changeset
|
6628 option = gaim_account_option_int_new(_("Auth port"), "port", 5190); |
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5631
diff
changeset
|
6629 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5631
diff
changeset
|
6630 option); |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6631 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6632 my_protocol = plugin; |
2086 | 6633 } |
6634 | |
5920
7d385de2f9cd
[gaim-migrate @ 6360]
Christian Hammond <chipx86@chipx86.com>
parents:
5917
diff
changeset
|
6635 GAIM_INIT_PLUGIN(oscar, init_plugin, info); |