Mercurial > pidgin
annotate src/protocols/oscar/oscar.c @ 8514:ed1f3a8f0ccd
[gaim-migrate @ 9252]
Thanks to Stu Tomlinson for point this out.
ICQ offline messages should be properly escaped now.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Sun, 28 Mar 2004 17:18:06 +0000 |
parents | 9f1678878dc8 |
children | 91dae94b67a5 |
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 | |
8151 | 7 * Some code copyright (C) 2001-2004, Mark Doliner <thekingant@users.sourceforge.net> |
6302 | 8 * |
9 * Most libfaim code copyright (C) 1998-2001 Adam Fritzler <afritz@auk.cx> | |
8151 | 10 * Some libfaim code copyright (C) 2001-2004 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" |
8476 | 31 #include "away.h" |
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6787
diff
changeset
|
32 #include "buddyicon.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
33 #include "conversation.h" |
7083
3100a6e03644
[gaim-migrate @ 7648]
Christian Hammond <chipx86@chipx86.com>
parents:
7082
diff
changeset
|
34 #include "core.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
35 #include "debug.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
36 #include "ft.h" |
6982 | 37 #include "imgstore.h" |
2086 | 38 #include "multi.h" |
8231
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8227
diff
changeset
|
39 #include "network.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
40 #include "notify.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
41 #include "privacy.h" |
2086 | 42 #include "prpl.h" |
4889 | 43 #include "proxy.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
44 #include "request.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
45 #include "util.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
46 |
2086 | 47 #include "aim.h" |
5842 | 48 #include "md5.h" |
2086 | 49 |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
50 #define UC_AOL 0x02 |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
51 #define UC_ADMIN 0x04 |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
52 #define UC_UNCONFIRMED 0x08 |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
53 #define UC_NORMAL 0x10 |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
54 #define UC_AB 0x20 |
3079 | 55 #define UC_WIRELESS 0x40 |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
56 |
2086 | 57 #define AIMHASHDATA "http://gaim.sourceforge.net/aim_data.php3" |
58 | |
7283 | 59 #define OSCAR_CONNECT_STEPS 6 |
60 | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
61 static GaimPlugin *my_protocol = NULL; |
4249 | 62 |
7376 | 63 static int caps_aim = AIM_CAPS_CHAT | AIM_CAPS_BUDDYICON | AIM_CAPS_DIRECTIM | AIM_CAPS_SENDFILE | AIM_CAPS_INTEROPERATE | AIM_CAPS_ICHAT; |
64 static int caps_icq = AIM_CAPS_BUDDYICON | AIM_CAPS_DIRECTIM | AIM_CAPS_SENDFILE | AIM_CAPS_ICQUTF8 | AIM_CAPS_INTEROPERATE | AIM_CAPS_ICHAT; | |
3458 | 65 |
4665 | 66 static fu8_t features_aim[] = {0x01, 0x01, 0x01, 0x02}; |
67 static fu8_t features_icq[] = {0x01, 0x06}; | |
8341 | 68 static fu8_t ck[] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; |
2086 | 69 |
7283 | 70 typedef struct _OscarData OscarData; |
71 struct _OscarData { | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
72 aim_session_t *sess; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
73 aim_conn_t *conn; |
2086 | 74 |
75 guint cnpa; | |
76 guint paspa; | |
3694 | 77 guint emlpa; |
4804 | 78 guint icopa; |
2086 | 79 |
4823 | 80 gboolean iconconnecting; |
5842 | 81 gboolean set_icon; |
4823 | 82 |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
83 GSList *create_rooms; |
2086 | 84 |
85 gboolean conf; | |
86 gboolean reqemail; | |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
87 gboolean setemail; |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
88 char *email; |
2979 | 89 gboolean setnick; |
90 char *newsn; | |
2086 | 91 gboolean chpass; |
92 char *oldp; | |
93 char *newp; | |
5842 | 94 |
2086 | 95 GSList *oscar_chats; |
96 GSList *direct_ims; | |
3630 | 97 GSList *file_transfers; |
4738 | 98 GHashTable *buddyinfo; |
4804 | 99 GSList *requesticon; |
2086 | 100 |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
101 gboolean killme; |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
102 gboolean icq; |
4804 | 103 guint icontimer; |
5968 | 104 guint getblisttimer; |
8341 | 105 guint getinfotimer; |
2993 | 106 |
107 struct { | |
4230 | 108 guint maxwatchers; /* max users who can watch you */ |
2993 | 109 guint maxbuddies; /* max users you can watch */ |
4230 | 110 guint maxgroups; /* max groups in server list */ |
2993 | 111 guint maxpermits; /* max users on permit list */ |
112 guint maxdenies; /* max users on deny list */ | |
113 guint maxsiglen; /* max size (bytes) of profile */ | |
114 guint maxawaymsglen; /* max size (bytes) of posted away message */ | |
115 } rights; | |
2086 | 116 }; |
117 | |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
118 struct create_room { |
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
119 char *name; |
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
120 int exchange; |
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
121 }; |
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
122 |
2086 | 123 struct chat_connection { |
124 char *name; | |
125 char *show; /* AOL did something funny to us */ | |
2821
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
126 fu16_t exchange; |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
127 fu16_t instance; |
2086 | 128 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
|
129 aim_conn_t *conn; |
2086 | 130 int inpa; |
131 int id; | |
5575 | 132 GaimConnection *gc; /* i hate this. */ |
5679 | 133 GaimConversation *cnv; /* bah. */ |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
134 int maxlen; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
135 int maxvis; |
2086 | 136 }; |
137 | |
138 struct direct_im { | |
5575 | 139 GaimConnection *gc; |
2086 | 140 char name[80]; |
141 int watcher; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
142 aim_conn_t *conn; |
3008 | 143 gboolean connected; |
2086 | 144 }; |
145 | |
146 struct ask_direct { | |
5575 | 147 GaimConnection *gc; |
2086 | 148 char *sn; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
149 char ip[64]; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
150 fu8_t cookie[8]; |
2086 | 151 }; |
152 | |
7011 | 153 /* |
154 * Various PRPL-specific buddy info that we want to keep track of | |
155 * Some other info is maintained by locate.c, and I'd like to move | |
156 * the rest of this to libfaim, mostly im.c | |
157 */ | |
4738 | 158 struct buddyinfo { |
159 gboolean typingnot; | |
6292 | 160 gchar *availmsg; |
6857 | 161 fu32_t ipaddr; |
5836 | 162 |
163 unsigned long ico_me_len; | |
164 unsigned long ico_me_csum; | |
165 time_t ico_me_time; | |
166 gboolean ico_informed; | |
4738 | 167 |
168 unsigned long ico_len; | |
169 unsigned long ico_csum; | |
170 time_t ico_time; | |
171 gboolean ico_need; | |
7406 | 172 gboolean ico_sent; |
2086 | 173 }; |
174 | |
4230 | 175 struct name_data { |
5575 | 176 GaimConnection *gc; |
4230 | 177 gchar *name; |
3453 | 178 gchar *nick; |
3141 | 179 }; |
180 | |
5129 | 181 static char *msgerrreason[] = { |
182 N_("Invalid error"), | |
183 N_("Invalid SNAC"), | |
184 N_("Rate to host"), | |
185 N_("Rate to client"), | |
186 N_("Not logged in"), | |
187 N_("Service unavailable"), | |
188 N_("Service not defined"), | |
189 N_("Obsolete SNAC"), | |
190 N_("Not supported by host"), | |
191 N_("Not supported by client"), | |
192 N_("Refused by client"), | |
193 N_("Reply too big"), | |
194 N_("Responses lost"), | |
195 N_("Request denied"), | |
196 N_("Busted SNAC payload"), | |
197 N_("Insufficient rights"), | |
198 N_("In local permit/deny"), | |
199 N_("Too evil (sender)"), | |
200 N_("Too evil (receiver)"), | |
201 N_("User temporarily unavailable"), | |
202 N_("No match"), | |
203 N_("List overflow"), | |
204 N_("Request ambiguous"), | |
205 N_("Queue full"), | |
206 N_("Not while on AOL") | |
207 }; | |
208 static int msgerrreasonlen = 25; | |
209 | |
210 /* All the libfaim->gaim callback functions */ | |
211 static int gaim_parse_auth_resp (aim_session_t *, aim_frame_t *, ...); | |
212 static int gaim_parse_login (aim_session_t *, aim_frame_t *, ...); | |
213 static int gaim_handle_redirect (aim_session_t *, aim_frame_t *, ...); | |
214 static int gaim_info_change (aim_session_t *, aim_frame_t *, ...); | |
215 static int gaim_account_confirm (aim_session_t *, aim_frame_t *, ...); | |
216 static int gaim_parse_oncoming (aim_session_t *, aim_frame_t *, ...); | |
217 static int gaim_parse_offgoing (aim_session_t *, aim_frame_t *, ...); | |
218 static int gaim_parse_incoming_im(aim_session_t *, aim_frame_t *, ...); | |
219 static int gaim_parse_misses (aim_session_t *, aim_frame_t *, ...); | |
220 static int gaim_parse_clientauto (aim_session_t *, aim_frame_t *, ...); | |
7011 | 221 static int gaim_parse_userinfo (aim_session_t *, aim_frame_t *, ...); |
8341 | 222 static int gaim_reqinfo_timeout (aim_session_t *, aim_frame_t *, ...); |
5129 | 223 static int gaim_parse_motd (aim_session_t *, aim_frame_t *, ...); |
224 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
|
225 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
|
226 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
|
227 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
|
228 static int gaim_conv_chat_incoming_msg(aim_session_t *, aim_frame_t *, ...); |
5129 | 229 static int gaim_email_parseupdate(aim_session_t *, aim_frame_t *, ...); |
230 static int gaim_icon_error (aim_session_t *, aim_frame_t *, ...); | |
231 static int gaim_icon_parseicon (aim_session_t *, aim_frame_t *, ...); | |
5844 | 232 static int oscar_icon_req (aim_session_t *, aim_frame_t *, ...); |
5129 | 233 static int gaim_parse_msgack (aim_session_t *, aim_frame_t *, ...); |
234 static int gaim_parse_ratechange (aim_session_t *, aim_frame_t *, ...); | |
235 static int gaim_parse_evilnotify (aim_session_t *, aim_frame_t *, ...); | |
236 static int gaim_parse_searcherror(aim_session_t *, aim_frame_t *, ...); | |
237 static int gaim_parse_searchreply(aim_session_t *, aim_frame_t *, ...); | |
238 static int gaim_bosrights (aim_session_t *, aim_frame_t *, ...); | |
239 static int gaim_connerr (aim_session_t *, aim_frame_t *, ...); | |
240 static int conninitdone_admin (aim_session_t *, aim_frame_t *, ...); | |
241 static int conninitdone_bos (aim_session_t *, aim_frame_t *, ...); | |
242 static int conninitdone_chatnav (aim_session_t *, aim_frame_t *, ...); | |
243 static int conninitdone_chat (aim_session_t *, aim_frame_t *, ...); | |
244 static int conninitdone_email (aim_session_t *, aim_frame_t *, ...); | |
245 static int conninitdone_icon (aim_session_t *, aim_frame_t *, ...); | |
246 static int gaim_parse_msgerr (aim_session_t *, aim_frame_t *, ...); | |
247 static int gaim_parse_mtn (aim_session_t *, aim_frame_t *, ...); | |
248 static int gaim_parse_locaterights(aim_session_t *, aim_frame_t *, ...); | |
249 static int gaim_parse_buddyrights(aim_session_t *, aim_frame_t *, ...); | |
250 static int gaim_parse_locerr (aim_session_t *, aim_frame_t *, ...); | |
251 static int gaim_icbm_param_info (aim_session_t *, aim_frame_t *, ...); | |
252 static int gaim_parse_genericerr (aim_session_t *, aim_frame_t *, ...); | |
253 static int gaim_memrequest (aim_session_t *, aim_frame_t *, ...); | |
254 static int gaim_selfinfo (aim_session_t *, aim_frame_t *, ...); | |
255 static int gaim_offlinemsg (aim_session_t *, aim_frame_t *, ...); | |
256 static int gaim_offlinemsgdone (aim_session_t *, aim_frame_t *, ...); | |
257 static int gaim_icqalias (aim_session_t *, aim_frame_t *, ...); | |
258 static int gaim_icqinfo (aim_session_t *, aim_frame_t *, ...); | |
259 static int gaim_popup (aim_session_t *, aim_frame_t *, ...); | |
260 #ifndef NOSSI | |
261 static int gaim_ssi_parseerr (aim_session_t *, aim_frame_t *, ...); | |
262 static int gaim_ssi_parserights (aim_session_t *, aim_frame_t *, ...); | |
263 static int gaim_ssi_parselist (aim_session_t *, aim_frame_t *, ...); | |
264 static int gaim_ssi_parseack (aim_session_t *, aim_frame_t *, ...); | |
8227 | 265 static int gaim_ssi_parseadd (aim_session_t *, aim_frame_t *, ...); |
5129 | 266 static int gaim_ssi_authgiven (aim_session_t *, aim_frame_t *, ...); |
267 static int gaim_ssi_authrequest (aim_session_t *, aim_frame_t *, ...); | |
268 static int gaim_ssi_authreply (aim_session_t *, aim_frame_t *, ...); | |
269 static int gaim_ssi_gotadded (aim_session_t *, aim_frame_t *, ...); | |
270 #endif | |
271 | |
272 /* for DirectIM/image transfer */ | |
273 static int gaim_odc_initiate (aim_session_t *, aim_frame_t *, ...); | |
274 static int gaim_odc_incoming (aim_session_t *, aim_frame_t *, ...); | |
275 static int gaim_odc_typing (aim_session_t *, aim_frame_t *, ...); | |
6982 | 276 static int gaim_odc_update_ui (aim_session_t *, aim_frame_t *, ...); |
5129 | 277 |
278 /* for file transfer */ | |
279 static int oscar_sendfile_estblsh(aim_session_t *, aim_frame_t *, ...); | |
280 static int oscar_sendfile_prompt (aim_session_t *, aim_frame_t *, ...); | |
281 static int oscar_sendfile_ack (aim_session_t *, aim_frame_t *, ...); | |
282 static int oscar_sendfile_done (aim_session_t *, aim_frame_t *, ...); | |
283 | |
284 /* for icons */ | |
285 static gboolean gaim_icon_timerfunc(gpointer data); | |
286 | |
8076 | 287 /* remove these at some point? */ |
7282 | 288 /* Because I don't like forward declarations? I think that was why... */ |
5954 | 289 static void oscar_set_info(GaimConnection *gc, const char *text); |
8076 | 290 static void oscar_set_away(GaimConnection *gc, const char *state, const char *message); |
5306 | 291 |
5836 | 292 static void oscar_free_name_data(struct name_data *data) { |
4230 | 293 g_free(data->name); |
294 g_free(data->nick); | |
295 g_free(data); | |
296 } | |
297 | |
5836 | 298 static void oscar_free_buddyinfo(void *data) { |
299 struct buddyinfo *bi = data; | |
6292 | 300 g_free(bi->availmsg); |
5836 | 301 g_free(bi); |
302 } | |
303 | |
5129 | 304 static fu32_t oscar_encoding_check(const char *utf8) |
305 { | |
306 int i = 0; | |
307 fu32_t encodingflag = 0; | |
308 | |
309 /* Determine how we can send this message. Per the warnings elsewhere | |
310 * in this file, these little checks determine the simplest encoding | |
311 * we can use for a given message send using it. */ | |
312 while (utf8[i]) { | |
313 if ((unsigned char)utf8[i] > 0x7f) { | |
314 /* not ASCII! */ | |
315 encodingflag = AIM_IMFLAGS_ISO_8859_1; | |
316 break; | |
317 } | |
318 i++; | |
319 } | |
320 while (utf8[i]) { | |
321 /* ISO-8859-1 is 0x00-0xbf in the first byte | |
322 * followed by 0xc0-0xc3 in the second */ | |
323 if ((unsigned char)utf8[i] < 0x80) { | |
324 i++; | |
325 continue; | |
326 } else if (((unsigned char)utf8[i] & 0xfc) == 0xc0 && | |
327 ((unsigned char)utf8[i + 1] & 0xc0) == 0x80) { | |
328 i += 2; | |
329 continue; | |
330 } | |
331 encodingflag = AIM_IMFLAGS_UNICODE; | |
332 break; | |
333 } | |
334 | |
335 return encodingflag; | |
336 } | |
337 | |
8225 | 338 /* |
339 * Take a string of the form charset="bleh" where bleh is | |
340 * one of us-ascii, utf-8, iso-8859-1, or unicode-2-0, and | |
341 * return a newly allocated string containing bleh. | |
342 */ | |
343 static gchar *oscar_encoding_extract(const char *encoding) | |
5129 | 344 { |
8225 | 345 gchar *ret = NULL; |
346 char *begin, *end; | |
347 | |
348 /* Make sure encoding begings with charset= */ | |
349 if (strncmp(encoding, "text/aolrtf; charset=", 21)) | |
350 return NULL; | |
351 | |
352 begin = strchr(encoding, '"'); | |
353 end = strrchr(encoding, '"'); | |
354 | |
355 if ((begin == NULL) || (end == NULL) || (begin >= end)) | |
356 return NULL; | |
357 | |
358 ret = g_strndup(begin+1, (end-1) - begin); | |
359 | |
360 return ret; | |
361 } | |
362 | |
363 /* | |
364 * Return the flag specifying the given encoding. | |
365 */ | |
366 static fu32_t oscar_encoding_parse(const char *encoding) | |
367 { | |
368 if ((encoding == NULL) || encoding[0] == '\0') { | |
369 gaim_debug(GAIM_DEBUG_WARNING, "oscar", "Empty encoding, assuming ASCII\n"); | |
5129 | 370 return 0; |
371 } | |
8225 | 372 |
373 if (!strcmp(encoding, "us-ascii") || !strcmp(encoding, "utf-8")) { | |
374 /* UTF-8 is our native encoding, ASCII is a proper subset */ | |
5129 | 375 return 0; |
8225 | 376 } else if (!strcmp(encoding, "iso-8859-1")) { |
5129 | 377 return AIM_IMFLAGS_ISO_8859_1; |
8225 | 378 } else if (!strcmp(encoding, "unicode-2-0")) { |
5129 | 379 return AIM_IMFLAGS_UNICODE; |
380 } else { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
381 gaim_debug(GAIM_DEBUG_WARNING, "oscar", |
8250 | 382 "Unrecognized character encoding '%s', attempting to convert to utf8 anyway\n", encoding); |
383 return 99; | |
5129 | 384 } |
385 } | |
386 | |
8233 | 387 gchar *oscar_encoding_to_utf8(const char *encoding, const char *text, int textlen) |
5129 | 388 { |
389 gchar *utf8 = NULL; | |
390 int flags = oscar_encoding_parse(encoding); | |
391 | |
392 switch (flags) { | |
393 case 0: | |
8250 | 394 utf8 = g_convert(text, textlen, "UTF-8", "UTF-8", NULL, NULL, NULL); |
5129 | 395 break; |
396 case AIM_IMFLAGS_ISO_8859_1: | |
397 utf8 = g_convert(text, textlen, "UTF-8", "ISO-8859-1", NULL, NULL, NULL); | |
398 break; | |
399 case AIM_IMFLAGS_UNICODE: | |
400 utf8 = g_convert(text, textlen, "UTF-8", "UCS-2BE", NULL, NULL, NULL); | |
401 break; | |
8250 | 402 case 99: |
403 utf8 = g_convert(text, textlen, "UTF-8", encoding, NULL, NULL, NULL); | |
404 if (utf8 == NULL) { | |
405 utf8 = g_convert(text, textlen, "UTF-8", "UTF-8", NULL, NULL, NULL); | |
406 } | |
407 break; | |
5129 | 408 } |
409 | |
410 return utf8; | |
411 } | |
412 | |
7283 | 413 static struct direct_im *find_direct_im(OscarData *od, const char *who) { |
2086 | 414 GSList *d = od->direct_ims; |
415 struct direct_im *m = NULL; | |
416 | |
417 while (d) { | |
418 m = (struct direct_im *)d->data; | |
4355 | 419 if (!aim_sncmp(who, m->name)) |
4269 | 420 return m; |
2086 | 421 d = d->next; |
422 } | |
423 | |
4269 | 424 return NULL; |
2086 | 425 } |
426 | |
2821
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
427 static char *extract_name(const char *name) { |
4121 | 428 char *tmp, *x; |
2086 | 429 int i, j; |
4120 | 430 |
431 if (!name) | |
4121 | 432 return NULL; |
433 | |
4120 | 434 x = strchr(name, '-'); |
4121 | 435 |
2086 | 436 if (!x) return NULL; |
437 x = strchr(++x, '-'); | |
438 if (!x) return NULL; | |
439 tmp = g_strdup(++x); | |
440 | |
441 for (i = 0, j = 0; x[i]; i++) { | |
2361
554b001d7d98
[gaim-migrate @ 2374]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2357
diff
changeset
|
442 char hex[3]; |
554b001d7d98
[gaim-migrate @ 2374]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2357
diff
changeset
|
443 if (x[i] != '%') { |
2086 | 444 tmp[j++] = x[i]; |
2361
554b001d7d98
[gaim-migrate @ 2374]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2357
diff
changeset
|
445 continue; |
2086 | 446 } |
2361
554b001d7d98
[gaim-migrate @ 2374]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2357
diff
changeset
|
447 strncpy(hex, x + ++i, 2); hex[2] = 0; |
554b001d7d98
[gaim-migrate @ 2374]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2357
diff
changeset
|
448 i++; |
554b001d7d98
[gaim-migrate @ 2374]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2357
diff
changeset
|
449 tmp[j++] = strtol(hex, NULL, 16); |
2086 | 450 } |
451 | |
452 tmp[j] = 0; | |
453 return tmp; | |
454 } | |
455 | |
5575 | 456 static struct chat_connection *find_oscar_chat(GaimConnection *gc, int id) { |
7283 | 457 GSList *g = ((OscarData *)gc->proto_data)->oscar_chats; |
2086 | 458 struct chat_connection *c = NULL; |
459 | |
460 while (g) { | |
461 c = (struct chat_connection *)g->data; | |
462 if (c->id == id) | |
463 break; | |
464 g = g->next; | |
465 c = NULL; | |
466 } | |
467 | |
468 return c; | |
469 } | |
470 | |
5575 | 471 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
|
472 aim_conn_t *conn) { |
7283 | 473 GSList *g = ((OscarData *)gc->proto_data)->oscar_chats; |
2086 | 474 struct chat_connection *c = NULL; |
475 | |
476 while (g) { | |
477 c = (struct chat_connection *)g->data; | |
478 if (c->conn == conn) | |
479 break; | |
480 g = g->next; | |
481 c = NULL; | |
482 } | |
483 | |
484 return c; | |
485 } | |
486 | |
8219 | 487 static struct chat_connection *find_oscar_chat_by_conv(GaimConnection *gc, |
488 GaimConversation *conv) { | |
489 GSList *g = ((OscarData *)gc->proto_data)->oscar_chats; | |
490 struct chat_connection *c = NULL; | |
491 | |
492 while (g) { | |
493 c = (struct chat_connection *)g->data; | |
494 if (c->cnv == conv) | |
495 break; | |
496 g = g->next; | |
497 c = NULL; | |
498 } | |
499 | |
500 return c; | |
501 } | |
502 | |
4617 | 503 static void gaim_odc_disconnect(aim_session_t *sess, aim_conn_t *conn) { |
5575 | 504 GaimConnection *gc = sess->aux_data; |
7283 | 505 OscarData *od = (OscarData *)gc->proto_data; |
5679 | 506 GaimConversation *cnv; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
507 struct direct_im *dim; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
508 char *sn; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
509 char buf[256]; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
510 |
4617 | 511 sn = g_strdup(aim_odc_getsn(conn)); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
512 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
513 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
514 "%s disconnected Direct IM.\n", sn); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
515 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
516 dim = find_direct_im(od, sn); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
517 od->direct_ims = g_slist_remove(od->direct_ims, dim); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
518 gaim_input_remove(dim->watcher); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
519 |
3008 | 520 if (dim->connected) |
521 g_snprintf(buf, sizeof buf, _("Direct IM with %s closed"), sn); | |
522 else | |
523 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
|
524 |
314111e7b601
[gaim-migrate @ 7165]
Christian Hammond <chipx86@chipx86.com>
parents:
6623
diff
changeset
|
525 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
|
526 if (cnv) |
6982 | 527 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
|
528 |
5579 | 529 gaim_conversation_update_progress(cnv, 0); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
530 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
531 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
|
532 g_free(sn); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
533 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
534 return; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
535 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
536 |
4617 | 537 static void oscar_callback(gpointer data, gint source, GaimInputCondition condition) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
538 aim_conn_t *conn = (aim_conn_t *)data; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
539 aim_session_t *sess = aim_conn_getsess(conn); |
5575 | 540 GaimConnection *gc = sess ? sess->aux_data : NULL; |
7283 | 541 OscarData *od; |
2086 | 542 |
543 if (!gc) { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
544 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
545 "oscar callback for closed connection (1).\n"); |
2086 | 546 return; |
547 } | |
548 | |
7283 | 549 od = (OscarData *)gc->proto_data; |
2086 | 550 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
551 if (!g_list_find(gaim_connections_get_all(), gc)) { |
2086 | 552 /* oh boy. this is probably bad. i guess the only thing we |
553 * can really do is return? */ | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
554 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
555 "oscar callback for closed connection (2).\n"); |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
556 gaim_debug(GAIM_DEBUG_MISC, "oscar", "gc = %p\n", gc); |
2086 | 557 return; |
558 } | |
559 | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
560 if (condition & GAIM_INPUT_READ) { |
4617 | 561 if (conn->type == AIM_CONN_TYPE_LISTENER) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
562 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
563 "got information on rendezvous listener\n"); |
4617 | 564 if (aim_handlerendconnect(od->sess, conn) < 0) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
565 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
566 "connection error (rendezvous listener)\n"); |
4617 | 567 aim_conn_kill(od->sess, &conn); |
8446 | 568 /* AAA - Don't we need to gaim_xfer_cancel here? --marv */ |
2086 | 569 } |
570 } else { | |
4617 | 571 if (aim_get_command(od->sess, conn) >= 0) { |
572 aim_rxdispatch(od->sess); | |
6029 | 573 if (od->killme) { |
574 gaim_debug(GAIM_DEBUG_ERROR, "oscar", "Waiting to be destroyed\n"); | |
575 return; | |
576 } | |
2086 | 577 } else { |
578 if ((conn->type == AIM_CONN_TYPE_BOS) || | |
4617 | 579 !(aim_getconn_type(od->sess, AIM_CONN_TYPE_BOS))) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
580 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
581 "major connection error\n"); |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
582 gaim_connection_error(gc, _("Disconnected.")); |
2086 | 583 } else if (conn->type == AIM_CONN_TYPE_CHAT) { |
584 struct chat_connection *c = find_oscar_chat_by_conn(gc, conn); | |
5420 | 585 char *buf; |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
586 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
587 "disconnected from chat room %s\n", c->name); |
2086 | 588 c->conn = NULL; |
589 if (c->inpa > 0) | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
590 gaim_input_remove(c->inpa); |
2086 | 591 c->inpa = 0; |
592 c->fd = -1; | |
4617 | 593 aim_conn_kill(od->sess, &conn); |
5420 | 594 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
|
595 gaim_notify_error(gc, NULL, buf, NULL); |
5420 | 596 g_free(buf); |
2086 | 597 } else if (conn->type == AIM_CONN_TYPE_CHATNAV) { |
4617 | 598 if (od->cnpa > 0) |
599 gaim_input_remove(od->cnpa); | |
600 od->cnpa = 0; | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
601 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
602 "removing chatnav input watcher\n"); |
4617 | 603 while (od->create_rooms) { |
604 struct create_room *cr = od->create_rooms->data; | |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
605 g_free(cr->name); |
4617 | 606 od->create_rooms = |
607 g_slist_remove(od->create_rooms, cr); | |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
608 g_free(cr); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
609 gaim_notify_error(gc, NULL, |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
610 _("Chat is currently unavailable"), |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
611 NULL); |
2086 | 612 } |
4617 | 613 aim_conn_kill(od->sess, &conn); |
2086 | 614 } else if (conn->type == AIM_CONN_TYPE_AUTH) { |
4617 | 615 if (od->paspa > 0) |
616 gaim_input_remove(od->paspa); | |
617 od->paspa = 0; | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
618 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
619 "removing authconn input watcher\n"); |
4617 | 620 aim_conn_kill(od->sess, &conn); |
3694 | 621 } else if (conn->type == AIM_CONN_TYPE_EMAIL) { |
4617 | 622 if (od->emlpa > 0) |
623 gaim_input_remove(od->emlpa); | |
624 od->emlpa = 0; | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
625 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
626 "removing email input watcher\n"); |
4617 | 627 aim_conn_kill(od->sess, &conn); |
4804 | 628 } else if (conn->type == AIM_CONN_TYPE_ICON) { |
629 if (od->icopa > 0) | |
630 gaim_input_remove(od->icopa); | |
631 od->icopa = 0; | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
632 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
633 "removing icon input watcher\n"); |
4804 | 634 aim_conn_kill(od->sess, &conn); |
2086 | 635 } else if (conn->type == AIM_CONN_TYPE_RENDEZVOUS) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
636 if (conn->subtype == AIM_CONN_SUBTYPE_OFT_DIRECTIM) |
4617 | 637 gaim_odc_disconnect(od->sess, conn); |
638 aim_conn_kill(od->sess, &conn); | |
2086 | 639 } else { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
640 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
641 "holy crap! generic connection error! %hu\n", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
642 conn->type); |
4617 | 643 aim_conn_kill(od->sess, &conn); |
2086 | 644 } |
645 } | |
646 } | |
647 } | |
648 } | |
649 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
650 static void oscar_debug(aim_session_t *sess, int level, const char *format, va_list va) { |
5575 | 651 GaimConnection *gc = sess->aux_data; |
7285 | 652 gchar *s = g_strdup_vprintf(format, va); |
653 gchar *buf; | |
654 | |
655 buf = g_strdup_printf("%s %d: %s", gaim_account_get_username(gaim_connection_get_account(gc)), level, s); | |
656 gaim_debug(GAIM_DEBUG_INFO, "oscar", buf); | |
657 if (buf[strlen(buf)-1] != '\n') | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
658 gaim_debug(GAIM_DEBUG_INFO, NULL, "\n"); |
7285 | 659 g_free(buf); |
2086 | 660 g_free(s); |
661 } | |
662 | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
663 static void oscar_login_connect(gpointer data, gint source, GaimInputCondition cond) |
2086 | 664 { |
5575 | 665 GaimConnection *gc = data; |
7283 | 666 OscarData *od; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
667 aim_session_t *sess; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
668 aim_conn_t *conn; |
2086 | 669 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
670 if (!g_list_find(gaim_connections_get_all(), gc)) { |
2086 | 671 close(source); |
672 return; | |
673 } | |
674 | |
4617 | 675 od = gc->proto_data; |
676 sess = od->sess; | |
2086 | 677 conn = aim_getconn_type_all(sess, AIM_CONN_TYPE_AUTH); |
4366 | 678 conn->fd = source; |
2086 | 679 |
680 if (source < 0) { | |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
681 gaim_connection_error(gc, _("Couldn't connect to host")); |
2086 | 682 return; |
683 } | |
684 | |
685 aim_conn_completeconnect(sess, conn); | |
4617 | 686 gc->inpa = gaim_input_add(conn->fd, GAIM_INPUT_READ, oscar_callback, conn); |
7282 | 687 aim_request_login(sess, conn, gaim_account_get_username(gaim_connection_get_account(gc))); |
688 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
689 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
7282 | 690 "Screen name sent, waiting for response\n"); |
7283 | 691 gaim_connection_update_progress(gc, _("Screen name sent"), 1, OSCAR_CONNECT_STEPS); |
8341 | 692 ck[1] = 0x65; |
2086 | 693 } |
694 | |
5575 | 695 static void oscar_login(GaimAccount *account) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
696 aim_session_t *sess; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
697 aim_conn_t *conn; |
5575 | 698 GaimConnection *gc = gaim_account_get_connection(account); |
7283 | 699 OscarData *od = gc->proto_data = g_new0(OscarData, 1); |
2086 | 700 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
701 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
|
702 |
8437 | 703 #if 0 |
704 if (!aim_snvalid(gaim_account_get_username(account))) { | |
705 gchar *buf; | |
706 buf = g_strdup_printf(_("Unable to login: Could not sign on as %s because the screen name is invalid. Screen names must either start with a letter and contain only letters, numbers and spaces, or contain only numbers."), name); | |
707 gaim_connection_error(gc, buf); | |
708 g_free(buf); | |
709 } | |
710 #endif | |
711 | |
5575 | 712 if (isdigit(*(gaim_account_get_username(account)))) { |
4617 | 713 od->icq = TRUE; |
2706
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
714 } else { |
6622 | 715 gc->flags |= GAIM_CONNECTION_HTML; |
716 gc->flags |= GAIM_CONNECTION_AUTO_RESP; | |
2706
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
717 } |
5836 | 718 od->buddyinfo = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, oscar_free_buddyinfo); |
2086 | 719 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
720 sess = g_new0(aim_session_t, 1); |
7285 | 721 aim_session_init(sess, TRUE, 0); |
2086 | 722 aim_setdebuggingcb(sess, oscar_debug); |
7282 | 723 /* |
724 * We need an immediate queue because we don't use a while-loop | |
725 * to see if things need to be sent. | |
726 */ | |
2086 | 727 aim_tx_setenqueue(sess, AIM_TX_IMMEDIATE, NULL); |
4617 | 728 od->sess = sess; |
2086 | 729 sess->aux_data = gc; |
730 | |
731 conn = aim_newconn(sess, AIM_CONN_TYPE_AUTH, NULL); | |
732 if (conn == NULL) { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
733 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
734 "internal connection error\n"); |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
735 gaim_connection_error(gc, _("Unable to login to AIM")); |
2086 | 736 return; |
737 } | |
738 | |
4649 | 739 aim_conn_addhandler(sess, conn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNERR, gaim_connerr, 0); |
2086 | 740 aim_conn_addhandler(sess, conn, 0x0017, 0x0007, gaim_parse_login, 0); |
741 aim_conn_addhandler(sess, conn, 0x0017, 0x0003, gaim_parse_auth_resp, 0); | |
742 | |
743 conn->status |= AIM_CONN_STATUS_INPROGRESS; | |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5679
diff
changeset
|
744 if (gaim_proxy_connect(account, gaim_account_get_string(account, "server", FAIM_LOGIN_SERVER), |
5575 | 745 gaim_account_get_int(account, "port", FAIM_LOGIN_PORT), |
746 oscar_login_connect, gc) < 0) { | |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
747 gaim_connection_error(gc, _("Couldn't connect to host")); |
2086 | 748 return; |
749 } | |
7282 | 750 |
7283 | 751 gaim_connection_update_progress(gc, _("Connecting"), 0, OSCAR_CONNECT_STEPS); |
8341 | 752 ck[0] = 0x5a; |
5575 | 753 } |
754 | |
755 static void oscar_close(GaimConnection *gc) { | |
7283 | 756 OscarData *od = (OscarData *)gc->proto_data; |
4617 | 757 |
758 while (od->oscar_chats) { | |
759 struct chat_connection *n = od->oscar_chats->data; | |
2086 | 760 if (n->inpa > 0) |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
761 gaim_input_remove(n->inpa); |
2086 | 762 g_free(n->name); |
763 g_free(n->show); | |
4617 | 764 od->oscar_chats = g_slist_remove(od->oscar_chats, n); |
2086 | 765 g_free(n); |
766 } | |
4617 | 767 while (od->direct_ims) { |
768 struct direct_im *n = od->direct_ims->data; | |
2086 | 769 if (n->watcher > 0) |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
770 gaim_input_remove(n->watcher); |
4617 | 771 od->direct_ims = g_slist_remove(od->direct_ims, n); |
2086 | 772 g_free(n); |
773 } | |
4617 | 774 /* BBB */ |
775 while (od->file_transfers) { | |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
776 GaimXfer *xfer; |
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
777 xfer = (GaimXfer *)od->file_transfers->data; |
7805 | 778 gaim_xfer_cancel_local(xfer); |
3630 | 779 } |
4804 | 780 while (od->requesticon) { |
781 char *sn = od->requesticon->data; | |
782 od->requesticon = g_slist_remove(od->requesticon, sn); | |
783 free(sn); | |
784 } | |
4738 | 785 g_hash_table_destroy(od->buddyinfo); |
4617 | 786 while (od->create_rooms) { |
787 struct create_room *cr = od->create_rooms->data; | |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
788 g_free(cr->name); |
4617 | 789 od->create_rooms = g_slist_remove(od->create_rooms, cr); |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
790 g_free(cr); |
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
791 } |
4617 | 792 if (od->email) |
793 g_free(od->email); | |
794 if (od->newp) | |
795 g_free(od->newp); | |
796 if (od->oldp) | |
797 g_free(od->oldp); | |
2086 | 798 if (gc->inpa > 0) |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
799 gaim_input_remove(gc->inpa); |
4617 | 800 if (od->cnpa > 0) |
801 gaim_input_remove(od->cnpa); | |
802 if (od->paspa > 0) | |
803 gaim_input_remove(od->paspa); | |
804 if (od->emlpa > 0) | |
805 gaim_input_remove(od->emlpa); | |
4804 | 806 if (od->icopa > 0) |
807 gaim_input_remove(od->icopa); | |
6907 | 808 if (od->icontimer > 0) |
8287
ef881489396e
[gaim-migrate @ 9011]
Christian Hammond <chipx86@chipx86.com>
parents:
8273
diff
changeset
|
809 gaim_timeout_remove(od->icontimer); |
8341 | 810 if (od->getblisttimer > 0) |
8287
ef881489396e
[gaim-migrate @ 9011]
Christian Hammond <chipx86@chipx86.com>
parents:
8273
diff
changeset
|
811 gaim_timeout_remove(od->getblisttimer); |
8341 | 812 if (od->getinfotimer > 0) |
813 gaim_timeout_remove(od->getinfotimer); | |
4617 | 814 aim_session_kill(od->sess); |
815 g_free(od->sess); | |
816 od->sess = NULL; | |
2086 | 817 g_free(gc->proto_data); |
818 gc->proto_data = NULL; | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
819 gaim_debug(GAIM_DEBUG_INFO, "oscar", "Signed off.\n"); |
2086 | 820 } |
821 | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
822 static void oscar_bos_connect(gpointer data, gint source, GaimInputCondition cond) { |
5575 | 823 GaimConnection *gc = data; |
7283 | 824 OscarData *od; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
825 aim_session_t *sess; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
826 aim_conn_t *bosconn; |
2086 | 827 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
828 if (!g_list_find(gaim_connections_get_all(), gc)) { |
2086 | 829 close(source); |
830 return; | |
831 } | |
832 | |
4617 | 833 od = gc->proto_data; |
834 sess = od->sess; | |
835 bosconn = od->conn; | |
4366 | 836 bosconn->fd = source; |
2086 | 837 |
838 if (source < 0) { | |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
839 gaim_connection_error(gc, _("Could Not Connect")); |
2086 | 840 return; |
841 } | |
842 | |
843 aim_conn_completeconnect(sess, bosconn); | |
4617 | 844 gc->inpa = gaim_input_add(bosconn->fd, GAIM_INPUT_READ, oscar_callback, bosconn); |
7283 | 845 |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
846 gaim_connection_update_progress(gc, |
7283 | 847 _("Connection established, cookie sent"), 4, OSCAR_CONNECT_STEPS); |
8341 | 848 ck[4] = 0x61; |
2086 | 849 } |
850 | |
4617 | 851 /* BBB */ |
4656 | 852 /* |
853 * This little area in oscar.c is the nexus of file transfer code, | |
854 * so I wrote a little explanation of what happens. I am such a | |
855 * ninja. | |
856 * | |
857 * The series of events for a file send is: | |
858 * -Create xfer and call gaim_xfer_request (this happens in oscar_ask_sendfile) | |
859 * -User chooses a file and oscar_xfer_init is called. It establishs a | |
860 * listening socket, then asks the remote user to connect to us (and | |
861 * gives them the file name, port, IP, etc.) | |
862 * -They connect to us and we send them an AIM_CB_OFT_PROMPT (this happens | |
863 * in oscar_sendfile_estblsh) | |
864 * -They send us an AIM_CB_OFT_ACK and then we start sending data | |
865 * -When we finish, they send us an AIM_CB_OFT_DONE and they close the | |
866 * connection. | |
867 * -We get drunk because file transfer kicks ass. | |
868 * | |
869 * The series of events for a file receive is: | |
870 * -Create xfer and call gaim_xfer request (this happens in incomingim_chan2) | |
871 * -Gaim user selects file to name and location to save file to and | |
872 * oscar_xfer_init is called | |
873 * -It connects to the remote user using the IP they gave us earlier | |
874 * -After connecting, they send us an AIM_CB_OFT_PROMPT. In reply, we send | |
875 * them an AIM_CB_OFT_ACK. | |
876 * -They begin to send us lots of raw data. | |
877 * -When they finish sending data we send an AIM_CB_OFT_DONE and then close | |
878 * the connectionn. | |
879 */ | |
880 static void oscar_sendfile_connected(gpointer data, gint source, GaimInputCondition condition); | |
881 | |
8446 | 882 /* |
883 * Miscellaneous xfer functions | |
884 */ | |
885 static GaimXfer *oscar_find_xfer_by_cookie(GSList *fts, const fu8_t *ck) | |
4656 | 886 { |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
887 GaimXfer *xfer; |
5146 | 888 struct aim_oft_info *oft_info; |
4656 | 889 |
890 while (fts) { | |
891 xfer = fts->data; | |
5146 | 892 oft_info = xfer->data; |
893 | |
8446 | 894 if (oft_info && !memcmp(ck, oft_info->cookie, 8)) |
4656 | 895 return xfer; |
896 | |
897 fts = g_slist_next(fts); | |
898 } | |
899 | |
900 return NULL; | |
901 } | |
902 | |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
903 static GaimXfer *oscar_find_xfer_by_conn(GSList *fts, aim_conn_t *conn) |
4656 | 904 { |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
905 GaimXfer *xfer; |
5146 | 906 struct aim_oft_info *oft_info; |
4656 | 907 |
908 while (fts) { | |
909 xfer = fts->data; | |
5146 | 910 oft_info = xfer->data; |
911 | |
912 if (oft_info && (conn == oft_info->conn)) | |
4656 | 913 return xfer; |
914 | |
915 fts = g_slist_next(fts); | |
916 } | |
917 | |
918 return NULL; | |
919 } | |
920 | |
8446 | 921 static void oscar_xfer_end(GaimXfer *xfer) |
922 { | |
923 struct aim_oft_info *oft_info = xfer->data; | |
924 GaimConnection *gc = oft_info->sess->aux_data; | |
925 OscarData *od = gc->proto_data; | |
926 | |
927 gaim_debug(GAIM_DEBUG_INFO, "oscar", "AAA - in oscar_xfer_end\n"); | |
928 | |
929 if (gaim_xfer_get_type(xfer) == GAIM_XFER_RECEIVE) { | |
930 oft_info->fh.nrecvd = gaim_xfer_get_bytes_sent(xfer); | |
931 aim_oft_sendheader(oft_info->sess, AIM_CB_OFT_DONE, oft_info); | |
932 } | |
933 | |
934 aim_conn_kill(oft_info->sess, &oft_info->conn); | |
935 aim_oft_destroyinfo(oft_info); | |
936 xfer->data = NULL; | |
937 od->file_transfers = g_slist_remove(od->file_transfers, xfer); | |
938 } | |
939 | |
940 /* | |
941 * xfer functions used when receiving files | |
942 */ | |
943 | |
944 static void oscar_xfer_init_recv(GaimXfer *xfer) | |
945 { | |
946 struct aim_oft_info *oft_info = xfer->data; | |
947 GaimConnection *gc = oft_info->sess->aux_data; | |
948 OscarData *od = gc->proto_data; | |
949 | |
950 gaim_debug(GAIM_DEBUG_INFO, "oscar", "AAA - in oscar_xfer_recv_init\n"); | |
951 | |
952 oft_info->conn = aim_newconn(od->sess, AIM_CONN_TYPE_RENDEZVOUS, NULL); | |
953 if (oft_info->conn) { | |
954 oft_info->conn->subtype = AIM_CONN_SUBTYPE_OFT_SENDFILE; | |
955 aim_conn_addhandler(od->sess, oft_info->conn, AIM_CB_FAM_OFT, AIM_CB_OFT_PROMPT, oscar_sendfile_prompt, 0); | |
956 oft_info->conn->fd = xfer->fd = gaim_proxy_connect(gaim_connection_get_account(gc), | |
957 xfer->remote_ip, xfer->remote_port, oscar_sendfile_connected, xfer); | |
958 if (xfer->fd == -1) { | |
959 gaim_xfer_error(GAIM_XFER_RECEIVE, xfer->who, | |
960 _("Unable to establish file descriptor.")); | |
961 gaim_xfer_cancel_local(xfer); | |
962 } | |
963 } else { | |
964 gaim_xfer_error(GAIM_XFER_RECEIVE, xfer->who, | |
965 _("Unable to create new connection.")); | |
966 gaim_xfer_cancel_local(xfer); | |
967 /* Try a different port? Ask them to connect to us? /join #gaim and whine? */ | |
968 } | |
969 | |
970 } | |
971 | |
972 static void oscar_xfer_cancel_recv(GaimXfer *xfer) | |
973 { | |
974 struct aim_oft_info *oft_info = xfer->data; | |
975 GaimConnection *gc = oft_info->sess->aux_data; | |
976 OscarData *od = gc->proto_data; | |
977 | |
978 gaim_debug(GAIM_DEBUG_INFO, "oscar", "AAA - in oscar_xfer_cancel_recv\n"); | |
979 | |
980 aim_im_sendch2_sendfile_cancel(oft_info->sess, oft_info); | |
981 | |
982 aim_conn_kill(oft_info->sess, &oft_info->conn); | |
983 aim_oft_destroyinfo(oft_info); | |
984 xfer->data = NULL; | |
985 od->file_transfers = g_slist_remove(od->file_transfers, xfer); | |
986 } | |
987 | |
988 static void oscar_xfer_ack_recv(GaimXfer *xfer, const char *buffer, size_t size) | |
989 { | |
990 struct aim_oft_info *oft_info = xfer->data; | |
991 | |
992 /* Update our rolling checksum. Like Walmart, yo. */ | |
993 oft_info->fh.recvcsum = aim_oft_checksum_chunk(buffer, size, oft_info->fh.recvcsum); | |
994 } | |
995 | |
996 /* | |
997 * xfer functions used when sending files | |
998 */ | |
999 | |
1000 static void oscar_xfer_init_send(GaimXfer *xfer) | |
1001 { | |
1002 struct aim_oft_info *oft_info = xfer->data; | |
1003 GaimConnection *gc = oft_info->sess->aux_data; | |
1004 OscarData *od = gc->proto_data; | |
1005 int listenfd; | |
1006 | |
1007 gaim_debug(GAIM_DEBUG_INFO, "oscar", "AAA - in oscar_xfer_send_init\n"); | |
1008 | |
1009 xfer->filename = g_path_get_basename(xfer->local_filename); | |
1010 strncpy(oft_info->fh.name, xfer->filename, 64); | |
1011 oft_info->fh.name[63] = '\0'; | |
1012 oft_info->fh.totsize = gaim_xfer_get_size(xfer); | |
1013 oft_info->fh.size = gaim_xfer_get_size(xfer); | |
1014 oft_info->fh.checksum = aim_oft_checksum_file(xfer->local_filename); | |
1015 | |
1016 /* Create a listening socket and an associated libfaim conn */ | |
1017 if ((listenfd = gaim_network_listen_range(5190, 5199)) < 0) { | |
1018 gaim_xfer_cancel_local(xfer); | |
1019 return; | |
1020 } | |
1021 xfer->local_port = gaim_network_get_port_from_fd(listenfd); | |
1022 oft_info->port = xfer->local_port; | |
1023 if (aim_sendfile_listen(od->sess, oft_info, listenfd) != 0) { | |
1024 gaim_xfer_cancel_local(xfer); | |
1025 return; | |
1026 } | |
1027 gaim_debug(GAIM_DEBUG_MISC, "oscar", | |
1028 "port is %hu, ip is %s\n", | |
1029 xfer->local_port, oft_info->clientip); | |
1030 if (oft_info->conn) { | |
1031 xfer->watcher = gaim_input_add(oft_info->conn->fd, GAIM_INPUT_READ, oscar_callback, oft_info->conn); | |
1032 aim_im_sendch2_sendfile_ask(od->sess, oft_info); | |
1033 aim_conn_addhandler(od->sess, oft_info->conn, AIM_CB_FAM_OFT, AIM_CB_OFT_ESTABLISHED, oscar_sendfile_estblsh, 0); | |
1034 } else { | |
1035 gaim_xfer_error(GAIM_XFER_SEND, xfer->who, | |
1036 _("Unable to establish listener socket.")); | |
1037 gaim_xfer_cancel_local(xfer); | |
1038 } | |
1039 } | |
1040 | |
1041 static void oscar_xfer_cancel_send(GaimXfer *xfer) | |
1042 { | |
1043 struct aim_oft_info *oft_info = xfer->data; | |
1044 GaimConnection *gc = oft_info->sess->aux_data; | |
1045 OscarData *od = gc->proto_data; | |
1046 | |
1047 gaim_debug(GAIM_DEBUG_INFO, "oscar", "AAA - in oscar_xfer_cancel_send\n"); | |
1048 | |
1049 aim_im_sendch2_sendfile_cancel(oft_info->sess, oft_info); | |
1050 | |
1051 aim_conn_kill(oft_info->sess, &oft_info->conn); | |
1052 aim_oft_destroyinfo(oft_info); | |
1053 xfer->data = NULL; | |
1054 od->file_transfers = g_slist_remove(od->file_transfers, xfer); | |
1055 } | |
1056 | |
1057 static void oscar_xfer_ack_send(GaimXfer *xfer, const char *buffer, size_t size) | |
1058 { | |
1059 struct aim_oft_info *oft_info = xfer->data; | |
1060 | |
1061 /* I'm not sure I like how we do this. --marv | |
1062 * I do. AIM file transfers aren't really meant to be thought | |
1063 * of as a transferring just a single file. The rendezvous | |
1064 * establishes a connection between two computers, and then | |
1065 * those computers can use the same connection for transferring | |
1066 * multiple files. So we don't want the Gaim core up and closing | |
1067 * the socket all willy-nilly. We want to do that in the oscar | |
1068 * prpl, whenever one side or the other says they're finished | |
1069 * using the connection. There might be a better way to intercept | |
1070 * the socket from the core, however... --KingAnt | |
1071 */ | |
1072 | |
1073 /* | |
1074 * If we're done sending, intercept the socket from the core ft code | |
1075 * and wait for the other guy to send the "done" OFT packet. | |
1076 */ | |
1077 if (gaim_xfer_get_bytes_remaining(xfer) <= 0) { | |
1078 gaim_input_remove(xfer->watcher); | |
1079 xfer->watcher = gaim_input_add(xfer->fd, GAIM_INPUT_READ, oscar_callback, oft_info->conn); | |
1080 xfer->fd = 0; | |
1081 gaim_xfer_set_completed(xfer, TRUE); | |
1082 } | |
1083 } | |
1084 | |
5575 | 1085 static void oscar_ask_sendfile(GaimConnection *gc, const char *destsn) { |
7283 | 1086 OscarData *od = (OscarData *)gc->proto_data; |
8231
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8227
diff
changeset
|
1087 GaimAccount *account = gaim_connection_get_account(gc); |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
1088 GaimXfer *xfer; |
5146 | 1089 struct aim_oft_info *oft_info; |
8231
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8227
diff
changeset
|
1090 const char *ip; |
3752 | 1091 |
4617 | 1092 /* You want to send a file to someone else, you're so generous */ |
1093 | |
1094 /* Build the file transfer handle */ | |
5575 | 1095 xfer = gaim_xfer_new(gaim_connection_get_account(gc), GAIM_XFER_SEND, destsn); |
4617 | 1096 |
5146 | 1097 /* Create the oscar-specific data */ |
8240 | 1098 ip = gaim_network_get_ip_for_account(account, od->conn ? od->conn->fd : -1); |
1099 oft_info = aim_oft_createinfo(od->sess, NULL, destsn, ip, 0, 0, 0, NULL); | |
5146 | 1100 xfer->data = oft_info; |
1101 | |
4617 | 1102 /* Setup our I/O op functions */ |
8446 | 1103 gaim_xfer_set_init_fnc(xfer, oscar_xfer_init_send); |
4617 | 1104 gaim_xfer_set_end_fnc(xfer, oscar_xfer_end); |
4675
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4666
diff
changeset
|
1105 gaim_xfer_set_cancel_send_fnc(xfer, oscar_xfer_cancel_send); |
8446 | 1106 gaim_xfer_set_request_denied_fnc(xfer, oscar_xfer_cancel_send); |
1107 gaim_xfer_set_ack_fnc(xfer, oscar_xfer_ack_send); | |
4617 | 1108 |
1109 /* Keep track of this transfer for later */ | |
1110 od->file_transfers = g_slist_append(od->file_transfers, xfer); | |
1111 | |
1112 /* Now perform the request */ | |
1113 gaim_xfer_request(xfer); | |
3630 | 1114 } |
1115 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1116 static int gaim_parse_auth_resp(aim_session_t *sess, aim_frame_t *fr, ...) { |
6029 | 1117 GaimConnection *gc = sess->aux_data; |
7283 | 1118 OscarData *od = gc->proto_data; |
6029 | 1119 GaimAccount *account = gc->account; |
1120 aim_conn_t *bosconn; | |
1121 char *host; int port; | |
1122 int i, rc; | |
2086 | 1123 va_list ap; |
2704 | 1124 struct aim_authresp_info *info; |
6029 | 1125 |
5575 | 1126 port = gaim_account_get_int(account, "port", FAIM_LOGIN_PORT); |
2086 | 1127 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1128 va_start(ap, fr); |
2704 | 1129 info = va_arg(ap, struct aim_authresp_info *); |
2086 | 1130 va_end(ap); |
1131 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1132 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1133 "inside auth_resp (Screen name: %s)\n", info->sn); |
2704 | 1134 |
4293 | 1135 if (info->errorcode || !info->bosip || !info->cookielen || !info->cookie) { |
4056 | 1136 char buf[256]; |
2704 | 1137 switch (info->errorcode) { |
2086 | 1138 case 0x05: |
1139 /* Incorrect nick/password */ | |
6498 | 1140 gc->wants_to_die = TRUE; |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
1141 gaim_connection_error(gc, _("Incorrect nickname or password.")); |
2086 | 1142 break; |
1143 case 0x11: | |
1144 /* Suspended account */ | |
6498 | 1145 gc->wants_to_die = TRUE; |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
1146 gaim_connection_error(gc, _("Your account is currently suspended.")); |
2086 | 1147 break; |
3498 | 1148 case 0x14: |
1149 /* service temporarily unavailable */ | |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
1150 gaim_connection_error(gc, _("The AOL Instant Messenger service is temporarily unavailable.")); |
3498 | 1151 break; |
2086 | 1152 case 0x18: |
1153 /* connecting too frequently */ | |
6498 | 1154 gc->wants_to_die = TRUE; |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
1155 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 | 1156 break; |
1157 case 0x1c: | |
1158 /* client too old */ | |
6498 | 1159 gc->wants_to_die = TRUE; |
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6350
diff
changeset
|
1160 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
|
1161 gaim_connection_error(gc, buf); |
2086 | 1162 break; |
1163 default: | |
6623 | 1164 gaim_connection_error(gc, _("Authentication failed")); |
2086 | 1165 break; |
1166 } | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1167 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1168 "Login Error Code 0x%04hx\n", info->errorcode); |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1169 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1170 "Error URL: %s\n", info->errorurl); |
2086 | 1171 od->killme = TRUE; |
1172 return 1; | |
1173 } | |
1174 | |
1175 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1176 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1177 "Reg status: %hu\n", info->regstatus); |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1178 |
2704 | 1179 if (info->email) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1180 gaim_debug(GAIM_DEBUG_MISC, "oscar", "Email: %s\n", info->email); |
2086 | 1181 } else { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1182 gaim_debug(GAIM_DEBUG_MISC, "oscar", "Email is NULL\n"); |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1183 } |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1184 |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1185 gaim_debug(GAIM_DEBUG_MISC, "oscar", "BOSIP: %s\n", info->bosip); |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1186 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1187 "Closing auth connection...\n"); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1188 aim_conn_kill(sess, &fr->conn); |
2086 | 1189 |
1190 bosconn = aim_newconn(sess, AIM_CONN_TYPE_BOS, NULL); | |
1191 if (bosconn == NULL) { | |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
1192 gaim_connection_error(gc, _("Internal Error")); |
2086 | 1193 od->killme = TRUE; |
1194 return 0; | |
1195 } | |
1196 | |
4649 | 1197 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNERR, gaim_connerr, 0); |
2675 | 1198 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNINITDONE, conninitdone_bos, 0); |
2086 | 1199 aim_conn_addhandler(sess, bosconn, 0x0009, 0x0003, gaim_bosrights, 0); |
1200 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_ACK, AIM_CB_ACK_ACK, NULL, 0); | |
1201 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_GEN, AIM_CB_GEN_REDIRECT, gaim_handle_redirect, 0); | |
2993 | 1202 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_LOC, AIM_CB_LOC_RIGHTSINFO, gaim_parse_locaterights, 0); |
2086 | 1203 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_BUD, AIM_CB_BUD_RIGHTSINFO, gaim_parse_buddyrights, 0); |
1204 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_BUD, AIM_CB_BUD_ONCOMING, gaim_parse_oncoming, 0); | |
1205 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_BUD, AIM_CB_BUD_OFFGOING, gaim_parse_offgoing, 0); | |
1206 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_INCOMING, gaim_parse_incoming_im, 0); | |
1207 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_LOC, AIM_CB_LOC_ERROR, gaim_parse_locerr, 0); | |
1208 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_MISSEDCALL, gaim_parse_misses, 0); | |
3212 | 1209 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_CLIENTAUTORESP, gaim_parse_clientauto, 0); |
2086 | 1210 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_GEN, AIM_CB_GEN_RATECHANGE, gaim_parse_ratechange, 0); |
1211 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_GEN, AIM_CB_GEN_EVIL, gaim_parse_evilnotify, 0); | |
1212 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_LOK, AIM_CB_LOK_ERROR, gaim_parse_searcherror, 0); | |
1213 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_LOK, 0x0003, gaim_parse_searchreply, 0); | |
1214 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_ERROR, gaim_parse_msgerr, 0); | |
3595 | 1215 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_MTN, gaim_parse_mtn, 0); |
7011 | 1216 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_LOC, AIM_CB_LOC_USERINFO, gaim_parse_userinfo, 0); |
8341 | 1217 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_LOC, AIM_CB_LOC_REQUESTINFOTIMEOUT, gaim_reqinfo_timeout, 0); |
2086 | 1218 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_ACK, gaim_parse_msgack, 0); |
1219 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
|
1220 aim_conn_addhandler(sess, bosconn, 0x0004, 0x0005, gaim_icbm_param_info, 0); |
2086 | 1221 aim_conn_addhandler(sess, bosconn, 0x0001, 0x0001, gaim_parse_genericerr, 0); |
1222 aim_conn_addhandler(sess, bosconn, 0x0003, 0x0001, gaim_parse_genericerr, 0); | |
1223 aim_conn_addhandler(sess, bosconn, 0x0009, 0x0001, gaim_parse_genericerr, 0); | |
1224 aim_conn_addhandler(sess, bosconn, 0x0001, 0x001f, gaim_memrequest, 0); | |
2507
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
1225 aim_conn_addhandler(sess, bosconn, 0x0001, 0x000f, gaim_selfinfo, 0); |
5844 | 1226 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
|
1227 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
|
1228 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
|
1229 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_POP, 0x0002, gaim_popup, 0); |
4759 | 1230 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_ICQ, AIM_CB_ICQ_ALIAS, gaim_icqalias, 0); |
4624 | 1231 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_ICQ, AIM_CB_ICQ_INFO, gaim_icqinfo, 0); |
4230 | 1232 #ifndef NOSSI |
4642 | 1233 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_ERROR, gaim_ssi_parseerr, 0); |
2991 | 1234 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_RIGHTSINFO, gaim_ssi_parserights, 0); |
1235 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_LIST, gaim_ssi_parselist, 0); | |
1236 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_NOLIST, gaim_ssi_parselist, 0); | |
4230 | 1237 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_SRVACK, gaim_ssi_parseack, 0); |
8227 | 1238 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_ADD, gaim_ssi_parseadd, 0); |
4230 | 1239 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_RECVAUTH, gaim_ssi_authgiven, 0); |
1240 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_RECVAUTHREQ, gaim_ssi_authrequest, 0); | |
1241 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_RECVAUTHREP, gaim_ssi_authreply, 0); | |
1242 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_ADDED, gaim_ssi_gotadded, 0); | |
1243 #endif | |
4508
4c40fccbd7c9
[gaim-migrate @ 4784]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
1244 |
7283 | 1245 od->conn = bosconn; |
2704 | 1246 for (i = 0; i < (int)strlen(info->bosip); i++) { |
1247 if (info->bosip[i] == ':') { | |
1248 port = atoi(&(info->bosip[i+1])); | |
2086 | 1249 break; |
1250 } | |
1251 } | |
2704 | 1252 host = g_strndup(info->bosip, i); |
2086 | 1253 bosconn->status |= AIM_CONN_STATUS_INPROGRESS; |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5679
diff
changeset
|
1254 rc = gaim_proxy_connect(gc->account, host, port, oscar_bos_connect, gc); |
2086 | 1255 g_free(host); |
4366 | 1256 if (rc < 0) { |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
1257 gaim_connection_error(gc, _("Could Not Connect")); |
2086 | 1258 od->killme = TRUE; |
1259 return 0; | |
1260 } | |
4293 | 1261 aim_sendcookie(sess, bosconn, info->cookielen, info->cookie); |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1262 gaim_input_remove(gc->inpa); |
2704 | 1263 |
7283 | 1264 gaim_connection_update_progress(gc, _("Received authorization"), 3, OSCAR_CONNECT_STEPS); |
8341 | 1265 ck[3] = 0x64; |
7282 | 1266 |
2086 | 1267 return 1; |
1268 } | |
1269 | |
7285 | 1270 /* XXX - Should use gaim_url_fetch for the below stuff */ |
2086 | 1271 struct pieceofcrap { |
5575 | 1272 GaimConnection *gc; |
2086 | 1273 unsigned long offset; |
1274 unsigned long len; | |
1275 char *modname; | |
1276 int fd; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1277 aim_conn_t *conn; |
2086 | 1278 unsigned int inpa; |
1279 }; | |
1280 | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1281 static void damn_you(gpointer data, gint source, GaimInputCondition c) |
2086 | 1282 { |
1283 struct pieceofcrap *pos = data; | |
7283 | 1284 OscarData *od = pos->gc->proto_data; |
2086 | 1285 char in = '\0'; |
1286 int x = 0; | |
1287 unsigned char m[17]; | |
1288 | |
1289 while (read(pos->fd, &in, 1) == 1) { | |
1290 if (in == '\n') | |
1291 x++; | |
1292 else if (in != '\r') | |
1293 x = 0; | |
1294 if (x == 2) | |
1295 break; | |
1296 in = '\0'; | |
1297 } | |
1298 if (in != '\n') { | |
4056 | 1299 char buf[256]; |
1300 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
|
1301 "this is fixed. Check %s for updates."), GAIM_WEBSITE); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
1302 gaim_notify_warning(pos->gc, NULL, |
7422 | 1303 _("Gaim was unable to get a valid AIM login hash."), |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
1304 buf); |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1305 gaim_input_remove(pos->inpa); |
2086 | 1306 close(pos->fd); |
1307 g_free(pos); | |
1308 return; | |
1309 } | |
1310 read(pos->fd, m, 16); | |
1311 m[16] = '\0'; | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1312 gaim_debug(GAIM_DEBUG_MISC, "oscar", "Sending hash: "); |
2086 | 1313 for (x = 0; x < 16; x++) |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1314 gaim_debug(GAIM_DEBUG_MISC, NULL, "%02hhx ", (unsigned char)m[x]); |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1315 |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1316 gaim_debug(GAIM_DEBUG_MISC, NULL, "\n"); |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1317 gaim_input_remove(pos->inpa); |
2086 | 1318 close(pos->fd); |
1319 aim_sendmemblock(od->sess, pos->conn, 0, 16, m, AIM_SENDMEMBLOCK_FLAG_ISHASH); | |
1320 g_free(pos); | |
1321 } | |
1322 | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1323 static void straight_to_hell(gpointer data, gint source, GaimInputCondition cond) { |
2086 | 1324 struct pieceofcrap *pos = data; |
5420 | 1325 gchar *buf; |
2086 | 1326 |
4366 | 1327 pos->fd = source; |
1328 | |
2086 | 1329 if (source < 0) { |
5420 | 1330 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
|
1331 "this is fixed. Check %s for updates."), GAIM_WEBSITE); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
1332 gaim_notify_warning(pos->gc, NULL, |
7422 | 1333 _("Gaim was unable to get a valid AIM login hash."), |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
1334 buf); |
5420 | 1335 g_free(buf); |
2086 | 1336 if (pos->modname) |
1337 g_free(pos->modname); | |
1338 g_free(pos); | |
1339 return; | |
1340 } | |
1341 | |
5420 | 1342 buf = g_strdup_printf("GET " AIMHASHDATA "?offset=%ld&len=%ld&modname=%s HTTP/1.0\n\n", |
2086 | 1343 pos->offset, pos->len, pos->modname ? pos->modname : ""); |
1344 write(pos->fd, buf, strlen(buf)); | |
5420 | 1345 g_free(buf); |
2086 | 1346 if (pos->modname) |
1347 g_free(pos->modname); | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1348 pos->inpa = gaim_input_add(pos->fd, GAIM_INPUT_READ, damn_you, pos); |
2086 | 1349 return; |
1350 } | |
1351 | |
1352 /* size of icbmui.ocm, the largest module in AIM 3.5 */ | |
1353 #define AIM_MAX_FILE_SIZE 98304 | |
1354 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1355 int gaim_memrequest(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 1356 va_list ap; |
1357 struct pieceofcrap *pos; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1358 fu32_t offset, len; |
2086 | 1359 char *modname; |
1360 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1361 va_start(ap, fr); |
4200 | 1362 offset = va_arg(ap, fu32_t); |
1363 len = va_arg(ap, fu32_t); | |
2086 | 1364 modname = va_arg(ap, char *); |
1365 va_end(ap); | |
1366 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1367 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
5556 | 1368 "offset: %u, len: %u, file: %s\n", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1369 offset, len, (modname ? modname : "aim.exe")); |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1370 |
2086 | 1371 if (len == 0) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1372 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
|
1373 aim_sendmemblock(sess, fr->conn, offset, len, NULL, |
2086 | 1374 AIM_SENDMEMBLOCK_FLAG_ISREQUEST); |
1375 return 1; | |
1376 } | |
1377 /* uncomment this when you're convinced it's right. remember, it's been wrong before. | |
1378 if (offset > AIM_MAX_FILE_SIZE || len > AIM_MAX_FILE_SIZE) { | |
1379 char *buf; | |
1380 int i = 8; | |
1381 if (modname) | |
1382 i += strlen(modname); | |
1383 buf = g_malloc(i); | |
1384 i = 0; | |
1385 if (modname) { | |
1386 memcpy(buf, modname, strlen(modname)); | |
1387 i += strlen(modname); | |
1388 } | |
1389 buf[i++] = offset & 0xff; | |
1390 buf[i++] = (offset >> 8) & 0xff; | |
1391 buf[i++] = (offset >> 16) & 0xff; | |
1392 buf[i++] = (offset >> 24) & 0xff; | |
1393 buf[i++] = len & 0xff; | |
1394 buf[i++] = (len >> 8) & 0xff; | |
1395 buf[i++] = (len >> 16) & 0xff; | |
1396 buf[i++] = (len >> 24) & 0xff; | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1397 gaim_debug(GAIM_DEBUG_MISC, "oscar", "len + offset is invalid, " |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1398 "hashing request\n"); |
2086 | 1399 aim_sendmemblock(sess, command->conn, offset, i, buf, AIM_SENDMEMBLOCK_FLAG_ISREQUEST); |
1400 g_free(buf); | |
1401 return 1; | |
1402 } | |
1403 */ | |
1404 | |
1405 pos = g_new0(struct pieceofcrap, 1); | |
1406 pos->gc = sess->aux_data; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1407 pos->conn = fr->conn; |
2086 | 1408 |
1409 pos->offset = offset; | |
1410 pos->len = len; | |
1411 pos->modname = modname ? g_strdup(modname) : NULL; | |
1412 | |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5679
diff
changeset
|
1413 if (gaim_proxy_connect(pos->gc->account, "gaim.sourceforge.net", 80, straight_to_hell, pos) != 0) { |
4056 | 1414 char buf[256]; |
2086 | 1415 if (pos->modname) |
1416 g_free(pos->modname); | |
1417 g_free(pos); | |
4056 | 1418 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
|
1419 "this is fixed. Check %s for updates."), GAIM_WEBSITE); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
1420 gaim_notify_warning(pos->gc, NULL, |
7422 | 1421 _("Gaim was unable to get a valid login hash."), |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
1422 buf); |
2086 | 1423 } |
1424 | |
1425 return 1; | |
1426 } | |
1427 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1428 static int gaim_parse_login(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 1429 GaimConnection *gc = sess->aux_data; |
7283 | 1430 OscarData *od = gc->proto_data; |
5591
74a0e79ad627
[gaim-migrate @ 5995]
Christian Hammond <chipx86@chipx86.com>
parents:
5580
diff
changeset
|
1431 GaimAccount *account = gaim_connection_get_account(gc); |
5575 | 1432 GaimAccount *ac = gaim_connection_get_account(gc); |
7282 | 1433 #if 0 |
1434 struct client_info_s info = {"gaim", 7, 3, 2003, "us", "en", 0x0004, 0x0000, 0x04b}; | |
1435 #endif | |
7011 | 1436 va_list ap; |
1437 char *key; | |
2086 | 1438 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1439 va_start(ap, fr); |
2086 | 1440 key = va_arg(ap, char *); |
1441 va_end(ap); | |
1442 | |
4617 | 1443 if (od->icq) { |
3458 | 1444 struct client_info_s info = CLIENTINFO_ICQ_KNOWNGOOD; |
5591
74a0e79ad627
[gaim-migrate @ 5995]
Christian Hammond <chipx86@chipx86.com>
parents:
5580
diff
changeset
|
1445 aim_send_login(sess, fr->conn, gaim_account_get_username(ac), |
74a0e79ad627
[gaim-migrate @ 5995]
Christian Hammond <chipx86@chipx86.com>
parents:
5580
diff
changeset
|
1446 gaim_account_get_password(account), &info, key); |
3458 | 1447 } else { |
1448 struct client_info_s info = CLIENTINFO_AIM_KNOWNGOOD; | |
5591
74a0e79ad627
[gaim-migrate @ 5995]
Christian Hammond <chipx86@chipx86.com>
parents:
5580
diff
changeset
|
1449 aim_send_login(sess, fr->conn, gaim_account_get_username(ac), |
74a0e79ad627
[gaim-migrate @ 5995]
Christian Hammond <chipx86@chipx86.com>
parents:
5580
diff
changeset
|
1450 gaim_account_get_password(account), &info, key); |
3458 | 1451 } |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1452 |
7283 | 1453 gaim_connection_update_progress(gc, _("Password sent"), 2, OSCAR_CONNECT_STEPS); |
8341 | 1454 ck[2] = 0x6c; |
7282 | 1455 |
2086 | 1456 return 1; |
1457 } | |
1458 | |
2675 | 1459 static int conninitdone_chat(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 1460 GaimConnection *gc = sess->aux_data; |
2647 | 1461 struct chat_connection *chatcon; |
1462 static int id = 1; | |
1463 | |
6905 | 1464 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
|
1465 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
|
1466 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
|
1467 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
|
1468 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_CHT, AIM_CB_CHT_INCOMINGMSG, gaim_conv_chat_incoming_msg, 0); |
2675 | 1469 |
2672 | 1470 aim_clientready(sess, fr->conn); |
2675 | 1471 |
2647 | 1472 chatcon = find_oscar_chat_by_conn(gc, fr->conn); |
1473 chatcon->id = id; | |
1474 chatcon->cnv = serv_got_joined_chat(gc, id++, chatcon->show); | |
1475 | |
1476 return 1; | |
1477 } | |
1478 | |
2675 | 1479 static int conninitdone_chatnav(aim_session_t *sess, aim_frame_t *fr, ...) { |
1480 | |
2821
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1481 aim_conn_addhandler(sess, fr->conn, 0x000d, 0x0001, gaim_parse_genericerr, 0); |
2647 | 1482 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_CTN, AIM_CB_CTN_INFO, gaim_chatnav_info, 0); |
2675 | 1483 |
1484 aim_clientready(sess, fr->conn); | |
1485 | |
1486 aim_chatnav_reqrights(sess, fr->conn); | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1487 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1488 return 1; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1489 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1490 |
3694 | 1491 static int conninitdone_email(aim_session_t *sess, aim_frame_t *fr, ...) { |
1492 | |
1493 aim_conn_addhandler(sess, fr->conn, 0x0018, 0x0001, gaim_parse_genericerr, 0); | |
1494 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_EML, AIM_CB_EML_MAILSTATUS, gaim_email_parseupdate, 0); | |
1495 | |
7282 | 1496 aim_email_sendcookies(sess); |
1497 aim_email_activate(sess); | |
3694 | 1498 aim_clientready(sess, fr->conn); |
1499 | |
1500 return 1; | |
1501 } | |
1502 | |
4804 | 1503 static int conninitdone_icon(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 1504 GaimConnection *gc = sess->aux_data; |
7283 | 1505 OscarData *od = gc->proto_data; |
4804 | 1506 |
1507 aim_conn_addhandler(sess, fr->conn, 0x0018, 0x0001, gaim_parse_genericerr, 0); | |
1508 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_ICO, AIM_CB_ICO_ERROR, gaim_icon_error, 0); | |
1509 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_ICO, AIM_CB_ICO_RESPONSE, gaim_icon_parseicon, 0); | |
1510 | |
1511 aim_clientready(sess, fr->conn); | |
1512 | |
4823 | 1513 od->iconconnecting = FALSE; |
1514 | |
4804 | 1515 if (od->icontimer) |
8287
ef881489396e
[gaim-migrate @ 9011]
Christian Hammond <chipx86@chipx86.com>
parents:
8273
diff
changeset
|
1516 gaim_timeout_remove(od->icontimer); |
8273
f24172f53650
[gaim-migrate @ 8997]
Christian Hammond <chipx86@chipx86.com>
parents:
8266
diff
changeset
|
1517 od->icontimer = gaim_timeout_add(100, gaim_icon_timerfunc, gc); |
4804 | 1518 |
1519 return 1; | |
1520 } | |
1521 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1522 static void oscar_chatnav_connect(gpointer data, gint source, GaimInputCondition cond) { |
5575 | 1523 GaimConnection *gc = data; |
7283 | 1524 OscarData *od; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1525 aim_session_t *sess; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1526 aim_conn_t *tstconn; |
2086 | 1527 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
1528 if (!g_list_find(gaim_connections_get_all(), gc)) { |
2086 | 1529 close(source); |
1530 return; | |
1531 } | |
1532 | |
4617 | 1533 od = gc->proto_data; |
1534 sess = od->sess; | |
2086 | 1535 tstconn = aim_getconn_type_all(sess, AIM_CONN_TYPE_CHATNAV); |
4366 | 1536 tstconn->fd = source; |
2086 | 1537 |
1538 if (source < 0) { | |
1539 aim_conn_kill(sess, &tstconn); | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1540 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1541 "unable to connect to chatnav server\n"); |
2086 | 1542 return; |
1543 } | |
1544 | |
1545 aim_conn_completeconnect(sess, tstconn); | |
4617 | 1546 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
|
1547 gaim_debug(GAIM_DEBUG_INFO, "oscar", "chatnav: connected\n"); |
2086 | 1548 } |
1549 | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1550 static void oscar_auth_connect(gpointer data, gint source, GaimInputCondition cond) |
2086 | 1551 { |
5575 | 1552 GaimConnection *gc = data; |
7283 | 1553 OscarData *od; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1554 aim_session_t *sess; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1555 aim_conn_t *tstconn; |
2086 | 1556 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
1557 if (!g_list_find(gaim_connections_get_all(), gc)) { |
2086 | 1558 close(source); |
1559 return; | |
1560 } | |
1561 | |
4617 | 1562 od = gc->proto_data; |
1563 sess = od->sess; | |
2086 | 1564 tstconn = aim_getconn_type_all(sess, AIM_CONN_TYPE_AUTH); |
4366 | 1565 tstconn->fd = source; |
2086 | 1566 |
1567 if (source < 0) { | |
1568 aim_conn_kill(sess, &tstconn); | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1569 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1570 "unable to connect to authorizer\n"); |
2086 | 1571 return; |
1572 } | |
1573 | |
1574 aim_conn_completeconnect(sess, tstconn); | |
4617 | 1575 od->paspa = gaim_input_add(tstconn->fd, GAIM_INPUT_READ, oscar_callback, tstconn); |
6905 | 1576 gaim_debug(GAIM_DEBUG_INFO, "oscar", "admin: connected\n"); |
2086 | 1577 } |
1578 | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1579 static void oscar_chat_connect(gpointer data, gint source, GaimInputCondition cond) |
2086 | 1580 { |
1581 struct chat_connection *ccon = data; | |
5575 | 1582 GaimConnection *gc = ccon->gc; |
7283 | 1583 OscarData *od; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1584 aim_session_t *sess; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1585 aim_conn_t *tstconn; |
2086 | 1586 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
1587 if (!g_list_find(gaim_connections_get_all(), gc)) { |
2086 | 1588 close(source); |
1589 g_free(ccon->show); | |
1590 g_free(ccon->name); | |
1591 g_free(ccon); | |
1592 return; | |
1593 } | |
1594 | |
4617 | 1595 od = gc->proto_data; |
1596 sess = od->sess; | |
2086 | 1597 tstconn = ccon->conn; |
4366 | 1598 tstconn->fd = source; |
2086 | 1599 |
1600 if (source < 0) { | |
1601 aim_conn_kill(sess, &tstconn); | |
1602 g_free(ccon->show); | |
1603 g_free(ccon->name); | |
1604 g_free(ccon); | |
1605 return; | |
1606 } | |
1607 | |
1608 aim_conn_completeconnect(sess, ccon->conn); | |
4617 | 1609 ccon->inpa = gaim_input_add(tstconn->fd, GAIM_INPUT_READ, oscar_callback, tstconn); |
1610 od->oscar_chats = g_slist_append(od->oscar_chats, ccon); | |
2086 | 1611 } |
1612 | |
3694 | 1613 static void oscar_email_connect(gpointer data, gint source, GaimInputCondition cond) { |
5575 | 1614 GaimConnection *gc = data; |
7283 | 1615 OscarData *od; |
3694 | 1616 aim_session_t *sess; |
1617 aim_conn_t *tstconn; | |
1618 | |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
1619 if (!g_list_find(gaim_connections_get_all(), gc)) { |
3694 | 1620 close(source); |
1621 return; | |
1622 } | |
1623 | |
4617 | 1624 od = gc->proto_data; |
1625 sess = od->sess; | |
3694 | 1626 tstconn = aim_getconn_type_all(sess, AIM_CONN_TYPE_EMAIL); |
4366 | 1627 tstconn->fd = source; |
3694 | 1628 |
1629 if (source < 0) { | |
1630 aim_conn_kill(sess, &tstconn); | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1631 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1632 "unable to connect to email server\n"); |
3694 | 1633 return; |
1634 } | |
1635 | |
1636 aim_conn_completeconnect(sess, tstconn); | |
4617 | 1637 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
|
1638 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1639 "email: connected\n"); |
3694 | 1640 } |
1641 | |
4804 | 1642 static void oscar_icon_connect(gpointer data, gint source, GaimInputCondition cond) { |
5575 | 1643 GaimConnection *gc = data; |
7283 | 1644 OscarData *od; |
4804 | 1645 aim_session_t *sess; |
1646 aim_conn_t *tstconn; | |
1647 | |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
1648 if (!g_list_find(gaim_connections_get_all(), gc)) { |
4804 | 1649 close(source); |
1650 return; | |
1651 } | |
1652 | |
1653 od = gc->proto_data; | |
1654 sess = od->sess; | |
1655 tstconn = aim_getconn_type_all(sess, AIM_CONN_TYPE_ICON); | |
1656 tstconn->fd = source; | |
1657 | |
1658 if (source < 0) { | |
1659 aim_conn_kill(sess, &tstconn); | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1660 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1661 "unable to connect to icon server\n"); |
4804 | 1662 return; |
1663 } | |
1664 | |
1665 aim_conn_completeconnect(sess, tstconn); | |
1666 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
|
1667 gaim_debug(GAIM_DEBUG_INFO, "oscar", "icon: connected\n"); |
4804 | 1668 } |
1669 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1670 /* 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
|
1671 static int gaim_handle_redirect(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 1672 GaimConnection *gc = sess->aux_data; |
1673 GaimAccount *account = gaim_connection_get_account(gc); | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1674 aim_conn_t *tstconn; |
4452 | 1675 int i; |
2086 | 1676 char *host; |
1677 int port; | |
4821 | 1678 va_list ap; |
1679 struct aim_redirect_data *redir; | |
2086 | 1680 |
5575 | 1681 port = gaim_account_get_int(account, "port", FAIM_LOGIN_PORT); |
2086 | 1682 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1683 va_start(ap, fr); |
2821
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1684 redir = va_arg(ap, struct aim_redirect_data *); |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1685 va_end(ap); |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1686 |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1687 for (i = 0; i < (int)strlen(redir->ip); i++) { |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1688 if (redir->ip[i] == ':') { |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1689 port = atoi(&(redir->ip[i+1])); |
2086 | 1690 break; |
1691 } | |
1692 } | |
2821
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1693 host = g_strndup(redir->ip, i); |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1694 |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1695 switch(redir->group) { |
2086 | 1696 case 0x7: /* Authorizer */ |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1697 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1698 "Reconnecting with authorizor...\n"); |
2086 | 1699 tstconn = aim_newconn(sess, AIM_CONN_TYPE_AUTH, NULL); |
1700 if (tstconn == NULL) { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1701 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1702 "unable to reconnect with authorizer\n"); |
2086 | 1703 g_free(host); |
1704 return 1; | |
1705 } | |
4649 | 1706 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNERR, gaim_connerr, 0); |
2675 | 1707 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNINITDONE, conninitdone_admin, 0); |
2086 | 1708 |
1709 tstconn->status |= AIM_CONN_STATUS_INPROGRESS; | |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5679
diff
changeset
|
1710 if (gaim_proxy_connect(account, host, port, oscar_auth_connect, gc) != 0) { |
2086 | 1711 aim_conn_kill(sess, &tstconn); |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1712 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1713 "unable to reconnect with authorizer\n"); |
2086 | 1714 g_free(host); |
1715 return 1; | |
1716 } | |
4293 | 1717 aim_sendcookie(sess, tstconn, redir->cookielen, redir->cookie); |
4194 | 1718 break; |
1719 | |
2086 | 1720 case 0xd: /* ChatNav */ |
1721 tstconn = aim_newconn(sess, AIM_CONN_TYPE_CHATNAV, NULL); | |
1722 if (tstconn == NULL) { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1723 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1724 "unable to connect to chatnav server\n"); |
2086 | 1725 g_free(host); |
1726 return 1; | |
1727 } | |
4649 | 1728 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNERR, gaim_connerr, 0); |
2675 | 1729 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNINITDONE, conninitdone_chatnav, 0); |
2086 | 1730 |
1731 tstconn->status |= AIM_CONN_STATUS_INPROGRESS; | |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5679
diff
changeset
|
1732 if (gaim_proxy_connect(account, host, port, oscar_chatnav_connect, gc) != 0) { |
2086 | 1733 aim_conn_kill(sess, &tstconn); |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1734 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1735 "unable to connect to chatnav server\n"); |
2086 | 1736 g_free(host); |
1737 return 1; | |
1738 } | |
4293 | 1739 aim_sendcookie(sess, tstconn, redir->cookielen, redir->cookie); |
4194 | 1740 break; |
1741 | |
1742 case 0xe: { /* Chat */ | |
2086 | 1743 struct chat_connection *ccon; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1744 |
2086 | 1745 tstconn = aim_newconn(sess, AIM_CONN_TYPE_CHAT, NULL); |
1746 if (tstconn == NULL) { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1747 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1748 "unable to connect to chat server\n"); |
2086 | 1749 g_free(host); |
1750 return 1; | |
1751 } | |
1752 | |
4649 | 1753 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNERR, gaim_connerr, 0); |
2675 | 1754 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNINITDONE, conninitdone_chat, 0); |
1755 | |
2086 | 1756 ccon = g_new0(struct chat_connection, 1); |
1757 ccon->conn = tstconn; | |
1758 ccon->gc = gc; | |
1759 ccon->fd = -1; | |
2821
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1760 ccon->name = g_strdup(redir->chat.room); |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1761 ccon->exchange = redir->chat.exchange; |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1762 ccon->instance = redir->chat.instance; |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
1763 ccon->show = extract_name(redir->chat.room); |
4634 | 1764 |
2086 | 1765 ccon->conn->status |= AIM_CONN_STATUS_INPROGRESS; |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5679
diff
changeset
|
1766 if (gaim_proxy_connect(account, host, port, oscar_chat_connect, ccon) != 0) { |
2086 | 1767 aim_conn_kill(sess, &tstconn); |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1768 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1769 "unable to connect to chat server\n"); |
2086 | 1770 g_free(host); |
1771 g_free(ccon->show); | |
1772 g_free(ccon->name); | |
1773 g_free(ccon); | |
1774 return 1; | |
1775 } | |
4293 | 1776 aim_sendcookie(sess, tstconn, redir->cookielen, redir->cookie); |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1777 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1778 "Connected to chat room %s exchange %hu\n", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1779 ccon->name, ccon->exchange); |
4194 | 1780 } break; |
3694 | 1781 |
4804 | 1782 case 0x0010: { /* icon */ |
1783 if (!(tstconn = aim_newconn(sess, AIM_CONN_TYPE_ICON, NULL))) { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1784 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1785 "unable to connect to icon server\n"); |
4804 | 1786 g_free(host); |
1787 return 1; | |
1788 } | |
1789 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNERR, gaim_connerr, 0); | |
1790 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNINITDONE, conninitdone_icon, 0); | |
1791 | |
1792 tstconn->status |= AIM_CONN_STATUS_INPROGRESS; | |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5679
diff
changeset
|
1793 if (gaim_proxy_connect(account, host, port, oscar_icon_connect, gc) != 0) { |
4804 | 1794 aim_conn_kill(sess, &tstconn); |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1795 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1796 "unable to connect to icon server\n"); |
4804 | 1797 g_free(host); |
1798 return 1; | |
1799 } | |
1800 aim_sendcookie(sess, tstconn, redir->cookielen, redir->cookie); | |
1801 } break; | |
1802 | |
3694 | 1803 case 0x0018: { /* email */ |
1804 if (!(tstconn = aim_newconn(sess, AIM_CONN_TYPE_EMAIL, NULL))) { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1805 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1806 "unable to connect to email server\n"); |
3694 | 1807 g_free(host); |
1808 return 1; | |
1809 } | |
4649 | 1810 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNERR, gaim_connerr, 0); |
3694 | 1811 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNINITDONE, conninitdone_email, 0); |
1812 | |
1813 tstconn->status |= AIM_CONN_STATUS_INPROGRESS; | |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5679
diff
changeset
|
1814 if (gaim_proxy_connect(account, host, port, oscar_email_connect, gc) != 0) { |
3694 | 1815 aim_conn_kill(sess, &tstconn); |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1816 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1817 "unable to connect to email server\n"); |
3694 | 1818 g_free(host); |
1819 return 1; | |
1820 } | |
4293 | 1821 aim_sendcookie(sess, tstconn, redir->cookielen, redir->cookie); |
3694 | 1822 } break; |
1823 | |
2086 | 1824 default: /* huh? */ |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1825 gaim_debug(GAIM_DEBUG_WARNING, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1826 "got redirect for unknown service 0x%04hx\n", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1827 redir->group); |
2086 | 1828 break; |
1829 } | |
1830 | |
1831 g_free(host); | |
1832 return 1; | |
1833 } | |
1834 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1835 static int gaim_parse_oncoming(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 1836 GaimConnection *gc = sess->aux_data; |
7283 | 1837 OscarData *od = gc->proto_data; |
4738 | 1838 struct buddyinfo *bi; |
2993 | 1839 time_t time_idle = 0, signon = 0; |
1840 int type = 0; | |
1841 int caps = 0; | |
2086 | 1842 va_list ap; |
4738 | 1843 aim_userinfo_t *info; |
4194 | 1844 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1845 va_start(ap, fr); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
1846 info = va_arg(ap, aim_userinfo_t *); |
2086 | 1847 va_end(ap); |
1848 | |
2993 | 1849 if (info->present & AIM_USERINFO_PRESENT_CAPABILITIES) |
1850 caps = info->capabilities; | |
3267 | 1851 if (info->flags & AIM_FLAG_ACTIVEBUDDY) |
1852 type |= UC_AB; | |
1853 | |
4766 | 1854 if (info->present & AIM_USERINFO_PRESENT_FLAGS) { |
1855 if (info->flags & AIM_FLAG_UNCONFIRMED) | |
1856 type |= UC_UNCONFIRMED; | |
1857 if (info->flags & AIM_FLAG_ADMINISTRATOR) | |
1858 type |= UC_ADMIN; | |
1859 if (info->flags & AIM_FLAG_AOL) | |
1860 type |= UC_AOL; | |
1861 if (info->flags & AIM_FLAG_FREE) | |
1862 type |= UC_NORMAL; | |
1863 if (info->flags & AIM_FLAG_AWAY) | |
1864 type |= UC_UNAVAILABLE; | |
1865 if (info->flags & AIM_FLAG_WIRELESS) | |
1866 type |= UC_WIRELESS; | |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
1867 } |
2993 | 1868 if (info->present & AIM_USERINFO_PRESENT_ICQEXTSTATUS) { |
3595 | 1869 type = (info->icqinfo.status << 16); |
3013 | 1870 if (!(info->icqinfo.status & AIM_ICQ_STATE_CHAT) && |
1871 (info->icqinfo.status != AIM_ICQ_STATE_NORMAL)) { | |
2993 | 1872 type |= UC_UNAVAILABLE; |
3013 | 1873 } |
2993 | 1874 } |
1875 | |
7141 | 1876 if (caps & AIM_CAPS_ICQ_DIRECT) |
1877 caps ^= AIM_CAPS_ICQ_DIRECT; | |
2993 | 1878 |
1879 if (info->present & AIM_USERINFO_PRESENT_IDLE) { | |
2086 | 1880 time(&time_idle); |
1881 time_idle -= info->idletime*60; | |
2993 | 1882 } |
1883 | |
5836 | 1884 if (info->present & AIM_USERINFO_PRESENT_ONLINESINCE) |
1885 signon = info->onlinesince; | |
1886 else if (info->present & AIM_USERINFO_PRESENT_SESSIONLEN) | |
2993 | 1887 signon = time(NULL) - info->sessionlen; |
2086 | 1888 |
5575 | 1889 if (!aim_sncmp(gaim_account_get_username(gaim_connection_get_account(gc)), info->sn)) |
1890 gaim_connection_set_display_name(gc, info->sn); | |
2305
0371b905baef
[gaim-migrate @ 2315]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2303
diff
changeset
|
1891 |
7261 | 1892 bi = g_hash_table_lookup(od->buddyinfo, gaim_normalize(gc->account, info->sn)); |
4738 | 1893 if (!bi) { |
1894 bi = g_new0(struct buddyinfo, 1); | |
7261 | 1895 g_hash_table_insert(od->buddyinfo, g_strdup(gaim_normalize(gc->account, info->sn)), bi); |
4738 | 1896 } |
4739 | 1897 bi->typingnot = FALSE; |
1898 bi->ico_informed = FALSE; | |
6857 | 1899 bi->ipaddr = info->icqinfo.ipaddr; |
1900 | |
1901 /* Available message stuff */ | |
6292 | 1902 free(bi->availmsg); |
7011 | 1903 if (info->avail != NULL) |
8225 | 1904 bi->availmsg = oscar_encoding_to_utf8(info->avail_encoding, info->avail, info->avail_len); |
5837 | 1905 else |
6292 | 1906 bi->availmsg = NULL; |
4732 | 1907 |
4804 | 1908 /* Server stored icon stuff */ |
4853 | 1909 if (info->iconcsumlen) { |
7125 | 1910 const char *filename = NULL, *saved_b16 = NULL; |
1911 char *b16 = NULL; | |
7093 | 1912 GaimBuddy *b = NULL; |
4853 | 1913 |
7106
db6bd3e794d8
[gaim-migrate @ 7671]
Christian Hammond <chipx86@chipx86.com>
parents:
7098
diff
changeset
|
1914 b16 = gaim_base16_encode(info->iconcsum, info->iconcsumlen); |
4853 | 1915 b = gaim_find_buddy(gc->account, info->sn); |
7093 | 1916 /* |
1917 * If for some reason the checksum is valid, but cached file is not.. | |
1918 * we want to know. | |
1919 */ | |
7693 | 1920 filename = gaim_blist_node_get_string((GaimBlistNode*)b, "buddy_icon"); |
7093 | 1921 if (filename != NULL) { |
1922 if (g_file_test(filename, G_FILE_TEST_EXISTS)) | |
7693 | 1923 saved_b16 = gaim_blist_node_get_string((GaimBlistNode*)b, |
1924 "icon_checksum"); | |
7093 | 1925 } else |
1926 saved_b16 = NULL; | |
7054
7c04a0775918
[gaim-migrate @ 7617]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7045
diff
changeset
|
1927 |
4853 | 1928 if (!b16 || !saved_b16 || strcmp(b16, saved_b16)) { |
1929 GSList *cur = od->requesticon; | |
1930 while (cur && aim_sncmp((char *)cur->data, info->sn)) | |
1931 cur = cur->next; | |
1932 if (!cur) { | |
7475 | 1933 od->requesticon = g_slist_append(od->requesticon, g_strdup(gaim_normalize(gc->account, info->sn))); |
4853 | 1934 if (od->icontimer) |
8287
ef881489396e
[gaim-migrate @ 9011]
Christian Hammond <chipx86@chipx86.com>
parents:
8273
diff
changeset
|
1935 gaim_timeout_remove(od->icontimer); |
8273
f24172f53650
[gaim-migrate @ 8997]
Christian Hammond <chipx86@chipx86.com>
parents:
8266
diff
changeset
|
1936 od->icontimer = gaim_timeout_add(500, gaim_icon_timerfunc, gc); |
4853 | 1937 } |
1938 } | |
6053 | 1939 g_free(b16); |
4853 | 1940 } |
1941 | |
5628 | 1942 serv_got_update(gc, info->sn, 1, (info->warnlevel/10.0) + 0.5, signon, time_idle, type); |
2086 | 1943 |
1944 return 1; | |
1945 } | |
1946 | |
8341 | 1947 static void gaim_check_comment(OscarData *od, const char *str) { |
1948 if ((str == NULL) || strcmp(str, ck)) | |
1949 aim_locate_setcaps(od->sess, caps_aim); | |
1950 else | |
1951 aim_locate_setcaps(od->sess, caps_aim | AIM_CAPS_SECUREIM); | |
1952 } | |
1953 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1954 static int gaim_parse_offgoing(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 1955 GaimConnection *gc = sess->aux_data; |
7283 | 1956 OscarData *od = gc->proto_data; |
2086 | 1957 va_list ap; |
4739 | 1958 aim_userinfo_t *info; |
2086 | 1959 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1960 va_start(ap, fr); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
1961 info = va_arg(ap, aim_userinfo_t *); |
2086 | 1962 va_end(ap); |
1963 | |
4732 | 1964 serv_got_update(gc, info->sn, 0, 0, 0, 0, 0); |
2086 | 1965 |
7261 | 1966 g_hash_table_remove(od->buddyinfo, gaim_normalize(gc->account, info->sn)); |
5837 | 1967 |
2086 | 1968 return 1; |
1969 } | |
1970 | |
3730 | 1971 static void cancel_direct_im(struct ask_direct *d) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1972 gaim_debug(GAIM_DEBUG_INFO, "oscar", "Freeing DirectIM prompts.\n"); |
2086 | 1973 |
1974 g_free(d->sn); | |
1975 g_free(d); | |
1976 } | |
1977 | |
4617 | 1978 static void oscar_odc_callback(gpointer data, gint source, GaimInputCondition condition) { |
2086 | 1979 struct direct_im *dim = data; |
5575 | 1980 GaimConnection *gc = dim->gc; |
7283 | 1981 OscarData *od = gc->proto_data; |
5679 | 1982 GaimConversation *cnv; |
2086 | 1983 char buf[256]; |
3008 | 1984 struct sockaddr name; |
1985 socklen_t name_len = 1; | |
1986 | |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
1987 if (!g_list_find(gaim_connections_get_all(), gc)) { |
2086 | 1988 g_free(dim); |
1989 return; | |
1990 } | |
1991 | |
1992 if (source < 0) { | |
1993 g_free(dim); | |
1994 return; | |
1995 } | |
1996 | |
4366 | 1997 dim->conn->fd = source; |
2086 | 1998 aim_conn_completeconnect(od->sess, dim->conn); |
6640
314111e7b601
[gaim-migrate @ 7165]
Christian Hammond <chipx86@chipx86.com>
parents:
6623
diff
changeset
|
1999 cnv = gaim_conversation_new(GAIM_CONV_IM, dim->gc->account, dim->name); |
3008 | 2000 |
2001 /* This is the best way to see if we're connected or not */ | |
2002 if (getpeername(source, &name, &name_len) == 0) { | |
2003 g_snprintf(buf, sizeof buf, _("Direct IM with %s established"), dim->name); | |
2004 dim->connected = TRUE; | |
6982 | 2005 gaim_conversation_write(cnv, NULL, buf, GAIM_MESSAGE_SYSTEM, time(NULL)); |
3008 | 2006 } |
2086 | 2007 od->direct_ims = g_slist_append(od->direct_ims, dim); |
3008 | 2008 |
4617 | 2009 dim->watcher = gaim_input_add(dim->conn->fd, GAIM_INPUT_READ, oscar_callback, dim->conn); |
2086 | 2010 } |
2011 | |
4617 | 2012 /* BBB */ |
3952 | 2013 /* |
4617 | 2014 * This is called after a remote AIM user has connected to us. We |
2015 * want to do some voodoo with the socket file descriptors, add a | |
2016 * callback or two, and then send the AIM_CB_OFT_PROMPT. | |
3952 | 2017 */ |
4656 | 2018 static int oscar_sendfile_estblsh(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 2019 GaimConnection *gc = sess->aux_data; |
7283 | 2020 OscarData *od = (OscarData *)gc->proto_data; |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
2021 GaimXfer *xfer; |
5146 | 2022 struct aim_oft_info *oft_info; |
3630 | 2023 va_list ap; |
2024 aim_conn_t *conn, *listenerconn; | |
4656 | 2025 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2026 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2027 "AAA - in oscar_sendfile_estblsh\n"); |
3630 | 2028 va_start(ap, fr); |
2029 conn = va_arg(ap, aim_conn_t *); | |
2030 listenerconn = va_arg(ap, aim_conn_t *); | |
2031 va_end(ap); | |
2032 | |
4617 | 2033 if (!(xfer = oscar_find_xfer_by_conn(od->file_transfers, listenerconn))) |
2034 return 1; | |
2035 | |
5146 | 2036 if (!(oft_info = xfer->data)) |
4617 | 2037 return 1; |
2038 | |
3630 | 2039 /* Stop watching listener conn; watch transfer conn instead */ |
4617 | 2040 gaim_input_remove(xfer->watcher); |
3630 | 2041 aim_conn_kill(sess, &listenerconn); |
2042 | |
5146 | 2043 oft_info->conn = conn; |
2044 xfer->fd = oft_info->conn->fd; | |
2045 | |
2046 aim_conn_addhandler(sess, oft_info->conn, AIM_CB_FAM_OFT, AIM_CB_OFT_ACK, oscar_sendfile_ack, 0); | |
2047 aim_conn_addhandler(sess, oft_info->conn, AIM_CB_FAM_OFT, AIM_CB_OFT_DONE, oscar_sendfile_done, 0); | |
2048 xfer->watcher = gaim_input_add(oft_info->conn->fd, GAIM_INPUT_READ, oscar_callback, oft_info->conn); | |
4617 | 2049 |
2050 /* Inform the other user that we are connected and ready to transfer */ | |
5146 | 2051 aim_oft_sendheader(sess, AIM_CB_OFT_PROMPT, oft_info); |
3630 | 2052 |
2053 return 0; | |
2054 } | |
2055 | |
3952 | 2056 /* |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5679
diff
changeset
|
2057 * This is the gaim callback passed to gaim_proxy_connect when connecting to another AIM |
4617 | 2058 * user in order to transfer a file. |
3952 | 2059 */ |
4617 | 2060 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
|
2061 GaimXfer *xfer; |
5146 | 2062 struct aim_oft_info *oft_info; |
4656 | 2063 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2064 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2065 "AAA - in oscar_sendfile_connected\n"); |
4617 | 2066 if (!(xfer = data)) |
2067 return; | |
5146 | 2068 if (!(oft_info = xfer->data)) |
3630 | 2069 return; |
8446 | 2070 if (source < 0) { |
2071 gaim_xfer_cancel_remote(xfer); | |
4617 | 2072 return; |
8446 | 2073 } |
4617 | 2074 |
2075 xfer->fd = source; | |
5146 | 2076 oft_info->conn->fd = source; |
2077 | |
2078 aim_conn_completeconnect(oft_info->sess, oft_info->conn); | |
2079 xfer->watcher = gaim_input_add(xfer->fd, GAIM_INPUT_READ, oscar_callback, oft_info->conn); | |
4617 | 2080 |
2081 /* Inform the other user that we are connected and ready to transfer */ | |
5146 | 2082 aim_im_sendch2_sendfile_accept(oft_info->sess, oft_info); |
4617 | 2083 |
2084 return; | |
3630 | 2085 } |
2086 | |
3952 | 2087 /* |
4617 | 2088 * This is called when a buddy sends us some file info. This happens when they |
2089 * are sending a file to you, and you have just established a connection to them. | |
4650 | 2090 * You should send them the exact same info except use the real cookie. We also |
4617 | 2091 * get like totally ready to like, receive the file, kay? |
3952 | 2092 */ |
4617 | 2093 static int oscar_sendfile_prompt(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 2094 GaimConnection *gc = sess->aux_data; |
7283 | 2095 OscarData *od = gc->proto_data; |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
2096 GaimXfer *xfer; |
5146 | 2097 struct aim_oft_info *oft_info; |
4617 | 2098 va_list ap; |
2099 aim_conn_t *conn; | |
2100 fu8_t *cookie; | |
2101 struct aim_fileheader_t *fh; | |
4656 | 2102 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2103 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2104 "AAA - in oscar_sendfile_prompt\n"); |
4617 | 2105 va_start(ap, fr); |
2106 conn = va_arg(ap, aim_conn_t *); | |
2107 cookie = va_arg(ap, fu8_t *); | |
2108 fh = va_arg(ap, struct aim_fileheader_t *); | |
2109 va_end(ap); | |
2110 | |
2111 if (!(xfer = oscar_find_xfer_by_conn(od->file_transfers, conn))) | |
2112 return 1; | |
2113 | |
5146 | 2114 if (!(oft_info = xfer->data)) |
4617 | 2115 return 1; |
2116 | |
2117 /* We want to stop listening with a normal thingy */ | |
2118 gaim_input_remove(xfer->watcher); | |
2119 xfer->watcher = 0; | |
2120 | |
5146 | 2121 /* They sent us some information about the file they're sending */ |
2122 memcpy(&oft_info->fh, fh, sizeof(*fh)); | |
2123 | |
2124 /* Fill in the cookie */ | |
2125 memcpy(&oft_info->fh.bcookie, oft_info->cookie, 8); | |
2126 | |
4617 | 2127 /* XXX - convert the name from UTF-8 to UCS-2 if necessary, and pass the encoding to the call below */ |
5146 | 2128 aim_oft_sendheader(oft_info->sess, AIM_CB_OFT_ACK, oft_info); |
4617 | 2129 gaim_xfer_start(xfer, xfer->fd, NULL, 0); |
2130 | |
2131 return 0; | |
3630 | 2132 } |
2133 | |
3952 | 2134 /* |
4657 | 2135 * We are sending a file to someone else. They have just acknowledged our |
4617 | 2136 * prompt, so we want to start sending data like there's no tomorrow. |
3952 | 2137 */ |
4617 | 2138 static int oscar_sendfile_ack(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 2139 GaimConnection *gc = sess->aux_data; |
7283 | 2140 OscarData *od = gc->proto_data; |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
2141 GaimXfer *xfer; |
4617 | 2142 va_list ap; |
2143 aim_conn_t *conn; | |
2144 fu8_t *cookie; | |
2145 struct aim_fileheader_t *fh; | |
4656 | 2146 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2147 gaim_debug(GAIM_DEBUG_INFO, "oscar", "AAA - in oscar_sendfile_ack\n"); |
4617 | 2148 va_start(ap, fr); |
2149 conn = va_arg(ap, aim_conn_t *); | |
2150 cookie = va_arg(ap, fu8_t *); | |
2151 fh = va_arg(ap, struct aim_fileheader_t *); | |
2152 va_end(ap); | |
2153 | |
2154 if (!(xfer = oscar_find_xfer_by_cookie(od->file_transfers, cookie))) | |
2155 return 1; | |
2156 | |
4656 | 2157 /* We want to stop listening with a normal thingy */ |
2158 gaim_input_remove(xfer->watcher); | |
2159 xfer->watcher = 0; | |
2160 | |
4617 | 2161 gaim_xfer_start(xfer, xfer->fd, NULL, 0); |
2162 | |
2163 return 0; | |
3630 | 2164 } |
4617 | 2165 |
2166 /* | |
2167 * We just sent a file to someone. They said they got it and everything, | |
2168 * so we can close our direct connection and what not. | |
2169 */ | |
2170 static int oscar_sendfile_done(aim_session_t *sess, aim_frame_t *fr, ...) { | |
5575 | 2171 GaimConnection *gc = sess->aux_data; |
7283 | 2172 OscarData *od = gc->proto_data; |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
2173 GaimXfer *xfer; |
4617 | 2174 va_list ap; |
2175 aim_conn_t *conn; | |
2176 fu8_t *cookie; | |
2177 struct aim_fileheader_t *fh; | |
4656 | 2178 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2179 gaim_debug(GAIM_DEBUG_INFO, "oscar", "AAA - in oscar_sendfile_done\n"); |
4617 | 2180 va_start(ap, fr); |
2181 conn = va_arg(ap, aim_conn_t *); | |
2182 cookie = va_arg(ap, fu8_t *); | |
2183 fh = va_arg(ap, struct aim_fileheader_t *); | |
2184 va_end(ap); | |
2185 | |
2186 if (!(xfer = oscar_find_xfer_by_conn(od->file_transfers, conn))) | |
2187 return 1; | |
2188 | |
4656 | 2189 xfer->fd = conn->fd; |
4617 | 2190 gaim_xfer_end(xfer); |
2191 | |
2192 return 0; | |
2193 } | |
3630 | 2194 |
4244 | 2195 static void accept_direct_im(struct ask_direct *d) { |
5575 | 2196 GaimConnection *gc = d->gc; |
7283 | 2197 OscarData *od; |
2086 | 2198 struct direct_im *dim; |
8240 | 2199 char *host; int port = 5190; |
4366 | 2200 int i, rc; |
2086 | 2201 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
2202 if (!g_list_find(gaim_connections_get_all(), gc)) { |
4244 | 2203 cancel_direct_im(d); |
2204 return; | |
2205 } | |
2206 | |
7283 | 2207 od = (OscarData *)gc->proto_data; |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2208 gaim_debug(GAIM_DEBUG_INFO, "oscar", "Accepted DirectIM.\n"); |
2086 | 2209 |
2210 dim = find_direct_im(od, d->sn); | |
2211 if (dim) { | |
3730 | 2212 cancel_direct_im(d); /* 40 */ |
4244 | 2213 return; |
2086 | 2214 } |
2215 dim = g_new0(struct direct_im, 1); | |
2216 dim->gc = d->gc; | |
2217 g_snprintf(dim->name, sizeof dim->name, "%s", d->sn); | |
2218 | |
4617 | 2219 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
|
2220 if (!dim->conn) { |
2086 | 2221 g_free(dim); |
3730 | 2222 cancel_direct_im(d); |
4244 | 2223 return; |
2086 | 2224 } |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2225 |
2086 | 2226 aim_conn_addhandler(od->sess, dim->conn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIMINCOMING, |
4617 | 2227 gaim_odc_incoming, 0); |
2086 | 2228 aim_conn_addhandler(od->sess, dim->conn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIMTYPING, |
4617 | 2229 gaim_odc_typing, 0); |
3033 | 2230 aim_conn_addhandler(od->sess, dim->conn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_IMAGETRANSFER, |
6982 | 2231 gaim_odc_update_ui, 0); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2232 for (i = 0; i < (int)strlen(d->ip); i++) { |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2233 if (d->ip[i] == ':') { |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2234 port = atoi(&(d->ip[i+1])); |
2086 | 2235 break; |
2236 } | |
2237 } | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2238 host = g_strndup(d->ip, i); |
2086 | 2239 dim->conn->status |= AIM_CONN_STATUS_INPROGRESS; |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5679
diff
changeset
|
2240 rc = gaim_proxy_connect(gc->account, host, port, oscar_odc_callback, dim); |
2086 | 2241 g_free(host); |
4366 | 2242 if (rc < 0) { |
2086 | 2243 aim_conn_kill(od->sess, &dim->conn); |
2244 g_free(dim); | |
3730 | 2245 cancel_direct_im(d); |
4244 | 2246 return; |
2086 | 2247 } |
2248 | |
3730 | 2249 cancel_direct_im(d); |
2086 | 2250 |
4244 | 2251 return; |
2086 | 2252 } |
2253 | |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
2254 static int incomingim_chan1(aim_session_t *sess, aim_conn_t *conn, aim_userinfo_t *userinfo, struct aim_incomingim_ch1_args *args) { |
5575 | 2255 GaimConnection *gc = sess->aux_data; |
7283 | 2256 OscarData *od = gc->proto_data; |
7475 | 2257 gchar *tmp; |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
2258 GaimConvImFlags flags = 0; |
6478
338147ea6896
[gaim-migrate @ 6991]
Christian Hammond <chipx86@chipx86.com>
parents:
6465
diff
changeset
|
2259 gsize convlen; |
3659 | 2260 GError *err = NULL; |
4738 | 2261 struct buddyinfo *bi; |
5575 | 2262 const char *iconfile; |
4738 | 2263 |
7261 | 2264 bi = g_hash_table_lookup(od->buddyinfo, gaim_normalize(gc->account, userinfo->sn)); |
4738 | 2265 if (!bi) { |
2266 bi = g_new0(struct buddyinfo, 1); | |
7261 | 2267 g_hash_table_insert(od->buddyinfo, g_strdup(gaim_normalize(gc->account, userinfo->sn)), bi); |
4738 | 2268 } |
2273
0b5c3338fa3d
[gaim-migrate @ 2283]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2249
diff
changeset
|
2269 |
0b5c3338fa3d
[gaim-migrate @ 2283]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2249
diff
changeset
|
2270 if (args->icbmflags & AIM_IMFLAGS_AWAY) |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
2271 flags |= GAIM_CONV_IM_AUTO_RESP; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2272 |
4738 | 2273 if (args->icbmflags & AIM_IMFLAGS_TYPINGNOT) |
2274 bi->typingnot = TRUE; | |
2275 else | |
2276 bi->typingnot = FALSE; | |
2277 | |
4380 | 2278 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
|
2279 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2280 "%s has an icon\n", userinfo->sn); |
4738 | 2281 if ((args->iconlen != bi->ico_len) || (args->iconsum != bi->ico_csum) || (args->iconstamp != bi->ico_time)) { |
2282 bi->ico_need = TRUE; | |
2283 bi->ico_len = args->iconlen; | |
2284 bi->ico_csum = args->iconsum; | |
2285 bi->ico_time = args->iconstamp; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2286 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2287 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2288 |
5575 | 2289 if ((iconfile = gaim_account_get_buddy_icon(gaim_connection_get_account(gc))) && |
7406 | 2290 (args->icbmflags & AIM_IMFLAGS_BUDDYREQ) && !bi->ico_sent && bi->ico_informed) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2291 FILE *file; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2292 struct stat st; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2293 |
5575 | 2294 if (!stat(iconfile, &st)) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2295 char *buf = g_malloc(st.st_size); |
5575 | 2296 file = fopen(iconfile, "rb"); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2297 if (file) { |
2603
24664768a739
[gaim-migrate @ 2616]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2597
diff
changeset
|
2298 int len = fread(buf, 1, st.st_size, file); |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2299 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2300 "Sending buddy icon to %s (%d bytes, " |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2301 "%lu reported)\n", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2302 userinfo->sn, len, st.st_size); |
4617 | 2303 aim_im_sendch2_icon(sess, userinfo->sn, buf, st.st_size, |
2304 st.st_mtime, aimutil_iconsum(buf, st.st_size)); | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2305 fclose(file); |
2336
c6c5eaf69188
[gaim-migrate @ 2349]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2315
diff
changeset
|
2306 } else |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2307 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2308 "Can't open buddy icon file!\n"); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2309 g_free(buf); |
2336
c6c5eaf69188
[gaim-migrate @ 2349]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2315
diff
changeset
|
2310 } else |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2311 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2312 "Can't stat buddy icon file!\n"); |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2313 } |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2314 |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2315 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2316 "Character set is %hu %hu\n", args->charset, args->charsubset); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2317 if (args->icbmflags & AIM_IMFLAGS_UNICODE) { |
3722 | 2318 /* This message is marked as UNICODE, so we have to |
2319 * convert it to utf-8 before handing it to the gaim core. | |
2320 * This conversion should *never* fail, if it does it | |
2321 * means that either the incoming ICBM is corrupted or | |
4662 | 2322 * there is something we don't understand about it. |
2323 * For the record, AIM Unicode is big-endian UCS-2 */ | |
2324 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2325 gaim_debug(GAIM_DEBUG_INFO, "oscar", "Received UNICODE IM\n"); |
4121 | 2326 |
2327 if (!args->msg || !args->msglen) | |
2328 return 1; | |
4641 | 2329 |
3659 | 2330 tmp = g_convert(args->msg, args->msglen, "UTF-8", "UCS-2BE", NULL, &convlen, &err); |
2331 if (err) { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2332 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2333 "Unicode IM conversion: %s\n", err->message); |
7475 | 2334 tmp = g_strdup(_("(There was an error receiving this message)")); |
4800 | 2335 g_error_free(err); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2336 } |
3722 | 2337 } else { |
3850 | 2338 /* This will get executed for both AIM_IMFLAGS_ISO_8859_1 and |
3722 | 2339 * unflagged messages, which are ASCII. That's OK because |
2340 * ASCII is a strict subset of ISO-8859-1; this should | |
2341 * help with compatibility with old, broken versions of | |
2342 * gaim (everything before 0.60) and other broken clients | |
2343 * that will happily send ISO-8859-1 without marking it as | |
2344 * such */ | |
4662 | 2345 if (args->icbmflags & AIM_IMFLAGS_ISO_8859_1) |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2346 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2347 "Received ISO-8859-1 IM\n"); |
4121 | 2348 |
2349 if (!args->msg || !args->msglen) | |
2350 return 1; | |
2351 | |
3659 | 2352 tmp = g_convert(args->msg, args->msglen, "UTF-8", "ISO-8859-1", NULL, &convlen, &err); |
2353 if (err) { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2354 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2355 "ISO-8859-1 IM conversion: %s\n", err->message); |
7475 | 2356 tmp = g_strdup(_("(There was an error receiving this message)")); |
4800 | 2357 g_error_free(err); |
3659 | 2358 } |
3642 | 2359 } |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2360 |
8493 | 2361 /* If the message came from an ICQ user then escape any HTML */ |
2362 if (isdigit(userinfo->sn[0])) { | |
2363 gchar *tmp2 = gaim_escape_html(tmp); | |
2364 g_free(tmp); | |
2365 tmp = tmp2; | |
2366 } | |
2367 | |
6982 | 2368 serv_got_im(gc, userinfo->sn, tmp, flags, time(NULL)); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2369 g_free(tmp); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2370 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2371 return 1; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2372 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2373 |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
2374 static int incomingim_chan2(aim_session_t *sess, aim_conn_t *conn, aim_userinfo_t *userinfo, struct aim_incomingim_ch2_args *args) { |
5575 | 2375 GaimConnection *gc = sess->aux_data; |
7283 | 2376 OscarData *od = gc->proto_data; |
5575 | 2377 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
|
2378 |
4121 | 2379 if (!args) |
2380 return 0; | |
4194 | 2381 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2382 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2383 "rendezvous with %s, status is %hu\n", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2384 userinfo->sn, args->status); |
2869 | 2385 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2386 if (args->reqclass & AIM_CAPS_CHAT) { |
4121 | 2387 char *name; |
5234 | 2388 GHashTable *components; |
2389 | |
4121 | 2390 if (!args->info.chat.roominfo.name || !args->info.chat.roominfo.exchange || !args->msg) |
2391 return 1; | |
5234 | 2392 components = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, |
2393 g_free); | |
4121 | 2394 name = extract_name(args->info.chat.roominfo.name); |
5234 | 2395 g_hash_table_replace(components, g_strdup("room"), g_strdup(name ? name : args->info.chat.roominfo.name)); |
2396 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
|
2397 serv_got_chat_invite(gc, |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2398 name ? name : args->info.chat.roominfo.name, |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2399 userinfo->sn, |
6059 | 2400 args->msg, |
5234 | 2401 components); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2402 if (name) |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2403 g_free(name); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2404 } else if (args->reqclass & AIM_CAPS_SENDFILE) { |
4617 | 2405 /* BBB */ |
2406 if (args->status == AIM_RENDEZVOUS_PROPOSE) { | |
2407 /* Someone wants to send a file (or files) to us */ | |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
2408 GaimXfer *xfer; |
5146 | 2409 struct aim_oft_info *oft_info; |
2410 | |
2411 if (!args->cookie || !args->port || !args->verifiedip || | |
2412 !args->info.sendfile.filename || !args->info.sendfile.totsize || | |
4656 | 2413 !args->info.sendfile.totfiles || !args->reqclass) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2414 gaim_debug(GAIM_DEBUG_WARNING, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2415 "%s tried to send you a file with incomplete " |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2416 "information.\n", userinfo->sn); |
5146 | 2417 if (args->proxyip) |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2418 gaim_debug(GAIM_DEBUG_WARNING, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2419 "IP for a proxy server was given. Gaim " |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2420 "does not support this yet.\n"); |
4617 | 2421 return 1; |
4656 | 2422 } |
4617 | 2423 |
2424 if (args->info.sendfile.subtype == AIM_OFT_SUBTYPE_SEND_DIR) { | |
2425 /* last char of the ft req is a star, they are sending us a | |
2426 * directory -- remove the star and trailing slash so we dont save | |
2427 * directories that look like 'dirname\*' -- arl */ | |
2428 char *tmp = strrchr(args->info.sendfile.filename, '\\'); | |
2429 if (tmp && (tmp[1] == '*')) { | |
2430 tmp[0] = '\0'; | |
2431 } | |
8446 | 2432 gaim_debug(GAIM_DEBUG_WARNING, "oscar", |
2433 "We're receiving a whole directory! What fun! " | |
2434 "Especially since we don't support that!\n"); | |
4617 | 2435 } |
2436 | |
2437 /* Build the file transfer handle */ | |
2438 xfer = gaim_xfer_new(gc->account, GAIM_XFER_RECEIVE, userinfo->sn); | |
5163 | 2439 xfer->remote_ip = g_strdup(args->verifiedip); |
5146 | 2440 xfer->remote_port = args->port; |
4617 | 2441 gaim_xfer_set_filename(xfer, args->info.sendfile.filename); |
2442 gaim_xfer_set_size(xfer, args->info.sendfile.totsize); | |
5146 | 2443 |
2444 /* Create the oscar-specific data */ | |
5163 | 2445 oft_info = aim_oft_createinfo(od->sess, args->cookie, userinfo->sn, args->clientip, xfer->remote_port, 0, 0, NULL); |
4898 | 2446 if (args->proxyip) |
5146 | 2447 oft_info->proxyip = g_strdup(args->proxyip); |
4898 | 2448 if (args->verifiedip) |
5146 | 2449 oft_info->verifiedip = g_strdup(args->verifiedip); |
2450 xfer->data = oft_info; | |
4617 | 2451 |
2452 /* Setup our I/O op functions */ | |
8446 | 2453 gaim_xfer_set_init_fnc(xfer, oscar_xfer_init_recv); |
4617 | 2454 gaim_xfer_set_end_fnc(xfer, oscar_xfer_end); |
8446 | 2455 gaim_xfer_set_request_denied_fnc(xfer, oscar_xfer_cancel_recv); |
4675
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4666
diff
changeset
|
2456 gaim_xfer_set_cancel_recv_fnc(xfer, oscar_xfer_cancel_recv); |
8446 | 2457 gaim_xfer_set_ack_fnc(xfer, oscar_xfer_ack_recv); |
4617 | 2458 |
2459 /* | |
2460 * XXX - Should do something with args->msg, args->encoding, and args->language | |
2461 * probably make it apply to all ch2 messages. | |
3752 | 2462 */ |
4617 | 2463 |
2464 /* Keep track of this transfer for later */ | |
2465 od->file_transfers = g_slist_append(od->file_transfers, xfer); | |
2466 | |
2467 /* Now perform the request */ | |
2468 gaim_xfer_request(xfer); | |
2469 } else if (args->status == AIM_RENDEZVOUS_CANCEL) { | |
2470 /* The other user wants to cancel a file transfer */ | |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
2471 GaimXfer *xfer; |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2472 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2473 "AAA - File transfer canceled by remote user\n"); |
4617 | 2474 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
|
2475 gaim_xfer_cancel_remote(xfer); |
4617 | 2476 } else if (args->status == AIM_RENDEZVOUS_ACCEPT) { |
2477 /* | |
2478 * This gets sent by the receiver of a file | |
2479 * as they connect directly to us. If we don't | |
2480 * get this, then maybe a third party connected | |
2481 * to us, and we shouldn't send them anything. | |
2482 */ | |
2483 } else { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2484 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2485 "unknown rendezvous status!\n"); |
3630 | 2486 } |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2487 } else if (args->reqclass & AIM_CAPS_GETFILE) { |
8092 | 2488 } else if (args->reqclass & AIM_CAPS_TALK) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2489 } else if (args->reqclass & AIM_CAPS_BUDDYICON) { |
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6787
diff
changeset
|
2490 gaim_buddy_icons_set_for_user(gaim_connection_get_account(gc), |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6787
diff
changeset
|
2491 userinfo->sn, args->info.icon.icon, |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6787
diff
changeset
|
2492 args->info.icon.length); |
6871 | 2493 } else if (args->reqclass & AIM_CAPS_DIRECTIM) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2494 struct ask_direct *d = g_new0(struct ask_direct, 1); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2495 char buf[256]; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2496 |
4212 | 2497 if (!args->verifiedip) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2498 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2499 "directim kill blocked (%s)\n", userinfo->sn); |
4650 | 2500 return 1; |
4212 | 2501 } |
2502 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2503 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2504 "%s received direct im request from %s (%s)\n", |
5575 | 2505 username, userinfo->sn, args->verifiedip); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2506 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2507 d->gc = gc; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2508 d->sn = g_strdup(userinfo->sn); |
2869 | 2509 strncpy(d->ip, args->verifiedip, sizeof(d->ip)); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2510 memcpy(d->cookie, args->cookie, 8); |
5575 | 2511 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
|
2512 |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2513 gaim_request_action(gc, NULL, buf, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2514 _("This requires a direct connection between " |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2515 "the two computers and is necessary for IM " |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2516 "Images. Because your IP address will be " |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2517 "revealed, this may be considered a privacy " |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2518 "risk."), 0, d, 2, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2519 _("Connect"), G_CALLBACK(accept_direct_im), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2520 _("Cancel"), G_CALLBACK(cancel_direct_im)); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2521 } else { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2522 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2523 "Unknown reqclass %hu\n", args->reqclass); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2524 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2525 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2526 return 1; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2527 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2528 |
3453 | 2529 /* |
4230 | 2530 * Authorization Functions |
2531 * Most of these are callbacks from dialogs. They're used by both | |
2532 * methods of authorization (SSI and old-school channel 4 ICBM) | |
3453 | 2533 */ |
4269 | 2534 /* When you ask other people for authorization */ |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2535 static void gaim_auth_request(struct name_data *data, char *msg) { |
5575 | 2536 GaimConnection *gc = data->gc; |
4244 | 2537 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
2538 if (g_list_find(gaim_connections_get_all(), gc)) { |
7283 | 2539 OscarData *od = gc->proto_data; |
6695 | 2540 GaimBuddy *buddy = gaim_find_buddy(gc->account, data->name); |
2541 GaimGroup *group = gaim_find_buddys_group(buddy); | |
4244 | 2542 if (buddy && group) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2543 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2544 "ssi: adding buddy %s to group %s\n", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2545 buddy->name, group->name); |
4889 | 2546 aim_ssi_sendauthrequest(od->sess, data->name, msg ? msg : _("Please authorize me so I can add you to my buddy list.")); |
4269 | 2547 if (!aim_ssi_itemlist_finditem(od->sess->ssi.local, group->name, buddy->name, AIM_SSI_TYPE_BUDDY)) |
4889 | 2548 aim_ssi_addbuddy(od->sess, buddy->name, group->name, gaim_get_buddy_alias_only(buddy), NULL, NULL, 1); |
4244 | 2549 } |
4230 | 2550 } |
4337 | 2551 } |
2552 | |
2553 static void gaim_auth_request_msgprompt(struct name_data *data) { | |
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
2554 gaim_request_input(data->gc, NULL, _("Authorization Request Message:"), |
6035
8c44020a958e
[gaim-migrate @ 6485]
Christian Hammond <chipx86@chipx86.com>
parents:
6029
diff
changeset
|
2555 NULL, _("Please authorize me!"), TRUE, FALSE, |
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
2556 _("OK"), G_CALLBACK(gaim_auth_request), |
5836 | 2557 _("Cancel"), G_CALLBACK(oscar_free_name_data), |
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
2558 data); |
4230 | 2559 } |
2560 | |
2561 static void gaim_auth_dontrequest(struct name_data *data) { | |
5575 | 2562 GaimConnection *gc = data->gc; |
4244 | 2563 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
2564 if (g_list_find(gaim_connections_get_all(), gc)) { |
8151 | 2565 /* Remove from local list */ |
2566 GaimBuddy *b = gaim_find_buddy(gaim_connection_get_account(gc), data->name); | |
2567 gaim_blist_remove_buddy(b); | |
4244 | 2568 } |
2569 | |
5836 | 2570 oscar_free_name_data(data); |
4230 | 2571 } |
2572 | |
5575 | 2573 static void gaim_auth_sendrequest(GaimConnection *gc, const char *name) { |
4269 | 2574 struct name_data *data = g_new(struct name_data, 1); |
6695 | 2575 GaimBuddy *buddy; |
4269 | 2576 gchar *dialog_msg, *nombre; |
2577 | |
4687 | 2578 buddy = gaim_find_buddy(gc->account, name); |
2579 if (buddy && (gaim_get_buddy_alias_only(buddy))) | |
2580 nombre = g_strdup_printf("%s (%s)", name, gaim_get_buddy_alias_only(buddy)); | |
4269 | 2581 else |
4830 | 2582 nombre = NULL; |
2583 | |
2584 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 | 2585 data->gc = gc; |
2586 data->name = g_strdup(name); | |
2587 data->nick = NULL; | |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2588 |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2589 gaim_request_action(gc, NULL, _("Request Authorization"), dialog_msg, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2590 0, data, 2, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2591 _("Request Authorization"), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2592 G_CALLBACK(gaim_auth_request_msgprompt), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2593 _("Cancel"), G_CALLBACK(gaim_auth_dontrequest)); |
4269 | 2594 |
2595 g_free(dialog_msg); | |
2596 g_free(nombre); | |
2597 } | |
2598 | |
4230 | 2599 /* When other people ask you for authorization */ |
2600 static void gaim_auth_grant(struct name_data *data) { | |
5575 | 2601 GaimConnection *gc = data->gc; |
4244 | 2602 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
2603 if (g_list_find(gaim_connections_get_all(), gc)) { |
7283 | 2604 OscarData *od = gc->proto_data; |
4236 | 2605 #ifdef NOSSI |
6695 | 2606 GaimBuddy *buddy; |
4244 | 2607 gchar message; |
2608 message = 0; | |
4687 | 2609 buddy = gaim_find_buddy(gc->account, data->name); |
4617 | 2610 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
|
2611 gaim_account_notify_added(gc->account, NULL, data->name, (buddy ? gaim_get_buddy_alias_only(buddy) : NULL), NULL); |
4230 | 2612 #else |
4889 | 2613 aim_ssi_sendauthreply(od->sess, data->name, 0x01, NULL); |
4230 | 2614 #endif |
4244 | 2615 } |
2616 | |
5836 | 2617 oscar_free_name_data(data); |
3141 | 2618 } |
2619 | |
4230 | 2620 /* When other people ask you for authorization */ |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2621 static void gaim_auth_dontgrant(struct name_data *data, char *msg) { |
5575 | 2622 GaimConnection *gc = data->gc; |
4244 | 2623 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
2624 if (g_list_find(gaim_connections_get_all(), gc)) { |
7283 | 2625 OscarData *od = gc->proto_data; |
4230 | 2626 #ifdef NOSSI |
4617 | 2627 aim_im_sendch4(od->sess, data->name, AIM_ICQMSG_AUTHDENIED, msg ? msg : _("No reason given.")); |
4230 | 2628 #else |
4889 | 2629 aim_ssi_sendauthreply(od->sess, data->name, 0x00, msg ? msg : _("No reason given.")); |
4230 | 2630 #endif |
4244 | 2631 } |
4337 | 2632 } |
2633 | |
2634 static void gaim_auth_dontgrant_msgprompt(struct name_data *data) { | |
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
2635 gaim_request_input(data->gc, NULL, _("Authorization Denied Message:"), |
6035
8c44020a958e
[gaim-migrate @ 6485]
Christian Hammond <chipx86@chipx86.com>
parents:
6029
diff
changeset
|
2636 NULL, _("No reason given."), TRUE, FALSE, |
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
2637 _("OK"), G_CALLBACK(gaim_auth_dontgrant), |
5836 | 2638 _("Cancel"), G_CALLBACK(oscar_free_name_data), |
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
2639 data); |
3141 | 2640 } |
2641 | |
7023 | 2642 /* When someone sends you buddies */ |
2643 static void gaim_icq_buddyadd(struct name_data *data) { | |
5575 | 2644 GaimConnection *gc = data->gc; |
4244 | 2645 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
2646 if (g_list_find(gaim_connections_get_all(), gc)) { |
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
2647 gaim_blist_request_add_buddy(gaim_connection_get_account(gc), data->name, NULL, data->nick); |
4244 | 2648 } |
2649 | |
5836 | 2650 oscar_free_name_data(data); |
3453 | 2651 } |
2652 | |
4075 | 2653 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 | 2654 GaimConnection *gc = sess->aux_data; |
4076 | 2655 gchar **msg1, **msg2; |
2656 GError *err = NULL; | |
6051 | 2657 int i, numtoks; |
4076 | 2658 |
4121 | 2659 if (!args->type || !args->msg || !args->uin) |
2660 return 1; | |
4194 | 2661 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2662 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2663 "Received a channel 4 message of type 0x%02hhx.\n", args->type); |
4076 | 2664 |
2665 /* Split up the message at the delimeter character, then convert each string to UTF-8 */ | |
4173 | 2666 msg1 = g_strsplit(args->msg, "\376", 0); |
6051 | 2667 for (numtoks=0; msg1[numtoks]; numtoks++); |
2668 msg2 = (gchar **)g_malloc((numtoks+1)*sizeof(gchar *)); | |
4076 | 2669 for (i=0; msg1[i]; i++) { |
7478
3c21f3084ff0
[gaim-migrate @ 8091]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7475
diff
changeset
|
2670 gaim_str_strip_cr(msg1[i]); |
4076 | 2671 msg2[i] = g_convert(msg1[i], strlen(msg1[i]), "UTF-8", "ISO-8859-1", NULL, NULL, &err); |
4800 | 2672 if (err) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2673 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2674 "Error converting a string from ISO-8859-1 to " |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2675 "UTF-8 in oscar ICBM channel 4 parsing\n"); |
4800 | 2676 g_error_free(err); |
2677 } | |
4076 | 2678 } |
2679 msg2[i] = NULL; | |
2680 | |
3952 | 2681 switch (args->type) { |
4173 | 2682 case 0x01: { /* MacICQ message or basic offline message */ |
4076 | 2683 if (i >= 1) { |
5556 | 2684 gchar *uin = g_strdup_printf("%u", args->uin); |
8493 | 2685 gchar *tmp; |
2686 | |
2687 /* If the message came from an ICQ user then escape any HTML */ | |
8501 | 2688 tmp = gaim_escape_html(msg2[0]); |
8493 | 2689 |
4076 | 2690 if (t) { /* This is an offline message */ |
2691 /* I think this timestamp is in UTC, or something */ | |
8514 | 2692 serv_got_im(gc, uin, tmp, 0, t); |
4076 | 2693 } else { /* This is a message from MacICQ/Miranda */ |
8514 | 2694 serv_got_im(gc, uin, tmp, 0, time(NULL)); |
4076 | 2695 } |
2696 g_free(uin); | |
8493 | 2697 g_free(tmp); |
4075 | 2698 } |
3316 | 2699 } break; |
2700 | |
4173 | 2701 case 0x04: { /* Someone sent you a URL */ |
4076 | 2702 if (i >= 2) { |
7385 | 2703 if (msg2[1] != NULL) { |
2704 gchar *uin = g_strdup_printf("%u", args->uin); | |
2705 gchar *message = g_strdup_printf("<A HREF=\"%s\">%s</A>", | |
2706 msg2[1], | |
2707 (msg2[0] && msg2[0][0]) ? msg2[0] : msg2[1]); | |
2708 serv_got_im(gc, uin, message, 0, time(NULL)); | |
2709 g_free(uin); | |
2710 g_free(message); | |
2711 } | |
3453 | 2712 } |
2713 } break; | |
2714 | |
4173 | 2715 case 0x06: { /* Someone requested authorization */ |
4076 | 2716 if (i >= 6) { |
4230 | 2717 struct name_data *data = g_new(struct name_data, 1); |
5556 | 2718 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
|
2719 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
5556 | 2720 "Received an authorization request from UIN %u\n", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2721 args->uin); |
4076 | 2722 data->gc = gc; |
5556 | 2723 data->name = g_strdup_printf("%u", args->uin); |
4230 | 2724 data->nick = NULL; |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2725 |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2726 gaim_request_action(gc, NULL, _("Authorization Request"), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2727 dialog_msg, 0, data, 2, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2728 _("Authorize"), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2729 G_CALLBACK(gaim_auth_grant), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2730 _("Deny"), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2731 G_CALLBACK(gaim_auth_dontgrant_msgprompt)); |
4076 | 2732 g_free(dialog_msg); |
2733 } | |
3141 | 2734 } break; |
2735 | |
4173 | 2736 case 0x07: { /* Someone has denied you authorization */ |
4076 | 2737 if (i >= 1) { |
7023 | 2738 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
|
2739 gaim_notify_info(gc, NULL, _("ICQ authorization denied."), |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2740 dialog_msg); |
4076 | 2741 g_free(dialog_msg); |
2742 } | |
3141 | 2743 } break; |
2744 | |
4173 | 2745 case 0x08: { /* Someone has granted you authorization */ |
7023 | 2746 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
|
2747 gaim_notify_info(gc, NULL, "ICQ authorization accepted.", |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2748 dialog_msg); |
3141 | 2749 g_free(dialog_msg); |
2750 } break; | |
2751 | |
4333 | 2752 case 0x09: { /* Message from the Godly ICQ server itself, I think */ |
2753 if (i >= 5) { | |
2754 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
|
2755 gaim_notify_info(gc, NULL, "ICQ Server Message", dialog_msg); |
4333 | 2756 g_free(dialog_msg); |
2757 } | |
2758 } break; | |
2759 | |
4173 | 2760 case 0x0d: { /* Someone has sent you a pager message from http://www.icq.com/your_uin */ |
4076 | 2761 if (i >= 6) { |
4194 | 2762 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
|
2763 gaim_notify_info(gc, NULL, "ICQ Page", dialog_msg); |
4076 | 2764 g_free(dialog_msg); |
2765 } | |
4075 | 2766 } break; |
2767 | |
4173 | 2768 case 0x0e: { /* Someone has emailed you at your_uin@pager.icq.com */ |
4076 | 2769 if (i >= 6) { |
4308 | 2770 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
|
2771 gaim_notify_info(gc, NULL, "ICQ Email", dialog_msg); |
4076 | 2772 g_free(dialog_msg); |
2773 } | |
4075 | 2774 } break; |
2775 | |
4173 | 2776 case 0x12: { |
3141 | 2777 /* Ack for authorizing/denying someone. Or possibly an ack for sending any system notice */ |
7023 | 2778 /* Someone added you to their buddy list? */ |
3141 | 2779 } break; |
2780 | |
7023 | 2781 case 0x13: { /* Someone has sent you some ICQ buddies */ |
7631 | 2782 guint i, num; |
3453 | 2783 gchar **text; |
4173 | 2784 text = g_strsplit(args->msg, "\376", 0); |
3453 | 2785 if (text) { |
2786 num = 0; | |
2787 for (i=0; i<strlen(text[0]); i++) | |
2788 num = num*10 + text[0][i]-48; | |
2789 for (i=0; i<num; i++) { | |
4230 | 2790 struct name_data *data = g_new(struct name_data, 1); |
7023 | 2791 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 | 2792 data->gc = gc; |
4790 | 2793 data->name = g_strdup(text[i*2+1]); |
2794 data->nick = g_strdup(text[i*2+2]); | |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2795 |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2796 gaim_request_action(gc, NULL, message, |
7023 | 2797 _("Do you want to add this buddy " |
2798 "to your buddy list?"), | |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2799 0, data, 2, |
7023 | 2800 _("Add"), G_CALLBACK(gaim_icq_buddyadd), |
5836 | 2801 _("Decline"), G_CALLBACK(oscar_free_name_data)); |
3453 | 2802 g_free(message); |
2803 } | |
2804 g_strfreev(text); | |
2805 } | |
2806 } break; | |
2807 | |
7023 | 2808 case 0x1a: { /* Someone has sent you a greeting card or requested buddies? */ |
3453 | 2809 /* This is boring and silly. */ |
2810 } break; | |
2811 | |
3141 | 2812 default: { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2813 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2814 "Received a channel 4 message of unknown type " |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2815 "(type 0x%02hhx).\n", args->type); |
3141 | 2816 } break; |
2817 } | |
2818 | |
4076 | 2819 g_strfreev(msg1); |
2820 g_strfreev(msg2); | |
2821 | |
3141 | 2822 return 1; |
2823 } | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2824 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2825 static int gaim_parse_incoming_im(aim_session_t *sess, aim_frame_t *fr, ...) { |
4200 | 2826 fu16_t channel; |
2827 int ret = 0; | |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
2828 aim_userinfo_t *userinfo; |
2086 | 2829 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2830 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2831 va_start(ap, fr); |
4200 | 2832 channel = (fu16_t)va_arg(ap, unsigned int); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
2833 userinfo = va_arg(ap, aim_userinfo_t *); |
2086 | 2834 |
3141 | 2835 switch (channel) { |
2836 case 1: { /* standard message */ | |
2837 struct aim_incomingim_ch1_args *args; | |
2838 args = va_arg(ap, struct aim_incomingim_ch1_args *); | |
2839 ret = incomingim_chan1(sess, fr->conn, userinfo, args); | |
2840 } break; | |
2841 | |
2842 case 2: { /* rendevous */ | |
2843 struct aim_incomingim_ch2_args *args; | |
2844 args = va_arg(ap, struct aim_incomingim_ch2_args *); | |
2845 ret = incomingim_chan2(sess, fr->conn, userinfo, args); | |
2846 } break; | |
2847 | |
2848 case 4: { /* ICQ */ | |
2849 struct aim_incomingim_ch4_args *args; | |
2850 args = va_arg(ap, struct aim_incomingim_ch4_args *); | |
4075 | 2851 ret = incomingim_chan4(sess, fr->conn, userinfo, args, 0); |
3141 | 2852 } break; |
2853 | |
2854 default: { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2855 gaim_debug(GAIM_DEBUG_WARNING, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2856 "ICBM received on unsupported channel (channel " |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2857 "0x%04hx).", channel); |
3141 | 2858 } break; |
2086 | 2859 } |
2860 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2861 va_end(ap); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2862 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2863 return ret; |
2086 | 2864 } |
2865 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2866 static int gaim_parse_misses(aim_session_t *sess, aim_frame_t *fr, ...) { |
5420 | 2867 char *buf; |
2086 | 2868 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2869 fu16_t chan, nummissed, reason; |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
2870 aim_userinfo_t *userinfo; |
2086 | 2871 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2872 va_start(ap, fr); |
4200 | 2873 chan = (fu16_t)va_arg(ap, unsigned int); |
2874 userinfo = va_arg(ap, aim_userinfo_t *); | |
2875 nummissed = (fu16_t)va_arg(ap, unsigned int); | |
2876 reason = (fu16_t)va_arg(ap, unsigned int); | |
2086 | 2877 va_end(ap); |
2878 | |
2879 switch(reason) { | |
5420 | 2880 case 0: /* Invalid (0) */ |
2881 buf = g_strdup_printf( | |
2882 ngettext( | |
4276 | 2883 "You missed %hu message from %s because it was invalid.", |
2884 "You missed %hu messages from %s because they were invalid.", | |
2885 nummissed), | |
4282 | 2886 nummissed, |
2887 userinfo->sn); | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2888 break; |
5420 | 2889 case 1: /* Message too large */ |
2890 buf = g_strdup_printf( | |
2891 ngettext( | |
4276 | 2892 "You missed %hu message from %s because it was too large.", |
2893 "You missed %hu messages from %s because they were too large.", | |
2894 nummissed), | |
4282 | 2895 nummissed, |
2896 userinfo->sn); | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2897 break; |
5420 | 2898 case 2: /* Rate exceeded */ |
2899 buf = g_strdup_printf( | |
2900 ngettext( | |
4276 | 2901 "You missed %hu message from %s because the rate limit has been exceeded.", |
2902 "You missed %hu messages from %s because the rate limit has been exceeded.", | |
2903 nummissed), | |
4282 | 2904 nummissed, |
2905 userinfo->sn); | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2906 break; |
5420 | 2907 case 3: /* Evil Sender */ |
2908 buf = g_strdup_printf( | |
2909 ngettext( | |
4276 | 2910 "You missed %hu message from %s because he/she was too evil.", |
2911 "You missed %hu messages from %s because he/she was too evil.", | |
2912 nummissed), | |
4282 | 2913 nummissed, |
2914 userinfo->sn); | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2915 break; |
5420 | 2916 case 4: /* Evil Receiver */ |
2917 buf = g_strdup_printf( | |
2918 ngettext( | |
4276 | 2919 "You missed %hu message from %s because you are too evil.", |
2920 "You missed %hu messages from %s because you are too evil.", | |
2921 nummissed), | |
4282 | 2922 nummissed, |
2923 userinfo->sn); | |
2086 | 2924 break; |
2925 default: | |
5420 | 2926 buf = g_strdup_printf( |
2927 ngettext( | |
4276 | 2928 "You missed %hu message from %s for an unknown reason.", |
2929 "You missed %hu messages from %s for an unknown reason.", | |
2930 nummissed), | |
4282 | 2931 nummissed, |
2932 userinfo->sn); | |
2086 | 2933 break; |
2934 } | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2935 gaim_notify_error(sess->aux_data, NULL, buf, NULL); |
5420 | 2936 g_free(buf); |
2086 | 2937 |
2938 return 1; | |
2939 } | |
2940 | |
3212 | 2941 static char *gaim_icq_status(int state) { |
2942 /* Make a cute little string that shows the status of the dude or dudet */ | |
2943 if (state & AIM_ICQ_STATE_CHAT) | |
4342 | 2944 return g_strdup_printf(_("Free For Chat")); |
3212 | 2945 else if (state & AIM_ICQ_STATE_DND) |
4342 | 2946 return g_strdup_printf(_("Do Not Disturb")); |
3212 | 2947 else if (state & AIM_ICQ_STATE_OUT) |
4342 | 2948 return g_strdup_printf(_("Not Available")); |
3212 | 2949 else if (state & AIM_ICQ_STATE_BUSY) |
4342 | 2950 return g_strdup_printf(_("Occupied")); |
3212 | 2951 else if (state & AIM_ICQ_STATE_AWAY) |
4342 | 2952 return g_strdup_printf(_("Away")); |
3212 | 2953 else if (state & AIM_ICQ_STATE_WEBAWARE) |
4342 | 2954 return g_strdup_printf(_("Web Aware")); |
3212 | 2955 else if (state & AIM_ICQ_STATE_INVISIBLE) |
4342 | 2956 return g_strdup_printf(_("Invisible")); |
3212 | 2957 else |
4342 | 2958 return g_strdup_printf(_("Online")); |
3212 | 2959 } |
2960 | |
4194 | 2961 static int gaim_parse_clientauto_ch2(aim_session_t *sess, const char *who, fu16_t reason, const char *cookie) { |
5575 | 2962 GaimConnection *gc = sess->aux_data; |
7283 | 2963 OscarData *od = gc->proto_data; |
4617 | 2964 |
2965 /* BBB */ | |
3630 | 2966 switch (reason) { |
4151 | 2967 case 3: { /* Decline sendfile. */ |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
2968 GaimXfer *xfer; |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2969 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2970 "AAA - Other user declined file transfer\n"); |
4617 | 2971 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
|
2972 gaim_xfer_cancel_remote(xfer); |
4151 | 2973 } break; |
2974 | |
2975 default: { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2976 gaim_debug(GAIM_DEBUG_WARNING, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2977 "Received an unknown rendezvous client auto-response " |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2978 "from %s. Type 0x%04hx\n", who, reason); |
4151 | 2979 } |
3630 | 2980 |
2981 } | |
2982 | |
2983 return 0; | |
2984 } | |
2985 | |
4194 | 2986 static int gaim_parse_clientauto_ch4(aim_session_t *sess, char *who, fu16_t reason, fu32_t state, char *msg) { |
5575 | 2987 GaimConnection *gc = sess->aux_data; |
4151 | 2988 |
2989 switch(reason) { | |
2990 case 0x0003: { /* Reply from an ICQ status message request */ | |
2991 char *status_msg = gaim_icq_status(state); | |
2992 char *dialog_msg, **splitmsg; | |
2993 | |
2994 /* Split at (carriage return/newline)'s, then rejoin later with BRs between. */ | |
2995 splitmsg = g_strsplit(msg, "\r\n", 0); | |
2996 | |
7011 | 2997 dialog_msg = g_strdup_printf(_("<B>UIN:</B> %s<BR><B>Status:</B> %s<HR>%s"), who, status_msg, g_strjoinv("<BR>", splitmsg)); |
7032 | 2998 gaim_notify_formatted(gc, NULL, _("Buddy Information"), NULL, dialog_msg, NULL, NULL); |
4151 | 2999 |
3000 g_free(status_msg); | |
3001 g_free(dialog_msg); | |
3002 g_strfreev(splitmsg); | |
3003 } break; | |
3004 | |
3005 default: { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3006 gaim_debug(GAIM_DEBUG_WARNING, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3007 "Received an unknown client auto-response from %s. " |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3008 "Type 0x%04hx\n", who, reason); |
4151 | 3009 } break; |
3010 } /* end of switch */ | |
3011 | |
3012 return 0; | |
3013 } | |
3014 | |
3212 | 3015 static int gaim_parse_clientauto(aim_session_t *sess, aim_frame_t *fr, ...) { |
3016 va_list ap; | |
3017 fu16_t chan, reason; | |
3018 char *who; | |
3019 | |
3020 va_start(ap, fr); | |
4200 | 3021 chan = (fu16_t)va_arg(ap, unsigned int); |
3212 | 3022 who = va_arg(ap, char *); |
4200 | 3023 reason = (fu16_t)va_arg(ap, unsigned int); |
3212 | 3024 |
3952 | 3025 if (chan == 0x0002) { /* File transfer declined */ |
3630 | 3026 char *cookie = va_arg(ap, char *); |
4151 | 3027 return gaim_parse_clientauto_ch2(sess, who, reason, cookie); |
3952 | 3028 } else if (chan == 0x0004) { /* ICQ message */ |
4200 | 3029 fu32_t state = 0; |
4151 | 3030 char *msg = NULL; |
3031 if (reason == 0x0003) { | |
4200 | 3032 state = va_arg(ap, fu32_t); |
4151 | 3033 msg = va_arg(ap, char *); |
3034 } | |
3035 return gaim_parse_clientauto_ch4(sess, who, reason, state, msg); | |
3036 } | |
3952 | 3037 |
3212 | 3038 va_end(ap); |
3039 | |
3040 return 1; | |
3041 } | |
3042 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3043 static int gaim_parse_genericerr(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 3044 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3045 fu16_t reason; |
2865
88dc3623a2ae
[gaim-migrate @ 2878]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2864
diff
changeset
|
3046 char *m; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3047 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3048 va_start(ap, fr); |
4199 | 3049 reason = (fu16_t) va_arg(ap, unsigned int); |
2086 | 3050 va_end(ap); |
3051 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3052 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3053 "snac threw error (reason 0x%04hx: %s)\n", reason, |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3054 (reason < msgerrreasonlen) ? msgerrreason[reason] : "unknown"); |
2086 | 3055 |
2865
88dc3623a2ae
[gaim-migrate @ 2878]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2864
diff
changeset
|
3056 m = g_strdup_printf(_("SNAC threw error: %s\n"), |
5411 | 3057 reason < msgerrreasonlen ? _(msgerrreason[reason]) : _("Unknown error")); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
3058 gaim_notify_error(sess->aux_data, NULL, m, NULL); |
2865
88dc3623a2ae
[gaim-migrate @ 2878]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2864
diff
changeset
|
3059 g_free(m); |
88dc3623a2ae
[gaim-migrate @ 2878]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2864
diff
changeset
|
3060 |
2086 | 3061 return 1; |
3062 } | |
3063 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3064 static int gaim_parse_msgerr(aim_session_t *sess, aim_frame_t *fr, ...) { |
4617 | 3065 #if 0 |
5575 | 3066 GaimConnection *gc = sess->aux_data; |
7283 | 3067 OscarData *od = gc->proto_data; |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
3068 GaimXfer *xfer; |
4508
4c40fccbd7c9
[gaim-migrate @ 4784]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
3069 #endif |
4617 | 3070 va_list ap; |
3071 fu16_t reason; | |
3072 char *data, *buf; | |
4508
4c40fccbd7c9
[gaim-migrate @ 4784]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
3073 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3074 va_start(ap, fr); |
4617 | 3075 reason = (fu16_t)va_arg(ap, unsigned int); |
3752 | 3076 data = va_arg(ap, char *); |
2086 | 3077 va_end(ap); |
3078 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3079 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3080 "Message error with data %s and reason %hu\n", data, reason); |
4617 | 3081 |
3082 /* BBB */ | |
4508
4c40fccbd7c9
[gaim-migrate @ 4784]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
3083 #if 0 |
4617 | 3084 /* If this was a file transfer request, data is a cookie */ |
3085 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
|
3086 gaim_xfer_cancel_remote(xfer); |
3630 | 3087 return 1; |
3088 } | |
4508
4c40fccbd7c9
[gaim-migrate @ 4784]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
3089 #endif |
3630 | 3090 |
4617 | 3091 /* Data is assumed to be the destination sn */ |
3092 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
|
3093 gaim_notify_error(sess->aux_data, NULL, buf, |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
3094 (reason < msgerrreasonlen) ? _(msgerrreason[reason]) : _("No reason given.")); |
4617 | 3095 g_free(buf); |
2086 | 3096 |
3097 return 1; | |
3098 } | |
3099 | |
3595 | 3100 static int gaim_parse_mtn(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 3101 GaimConnection *gc = sess->aux_data; |
3595 | 3102 va_list ap; |
3103 fu16_t type1, type2; | |
3104 char *sn; | |
3105 | |
3106 va_start(ap, fr); | |
4199 | 3107 type1 = (fu16_t) va_arg(ap, unsigned int); |
3595 | 3108 sn = va_arg(ap, char *); |
4199 | 3109 type2 = (fu16_t) va_arg(ap, unsigned int); |
3595 | 3110 va_end(ap); |
3111 | |
3112 switch (type2) { | |
3113 case 0x0000: { /* Text has been cleared */ | |
3114 serv_got_typing_stopped(gc, sn); | |
3115 } break; | |
3116 | |
3117 case 0x0001: { /* Paused typing */ | |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
3118 serv_got_typing(gc, sn, 0, GAIM_TYPED); |
3595 | 3119 } break; |
3120 | |
3121 case 0x0002: { /* Typing */ | |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
3122 serv_got_typing(gc, sn, 0, GAIM_TYPING); |
3595 | 3123 } break; |
3124 | |
3125 default: { | |
5435 | 3126 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 | 3127 } break; |
3128 } | |
3129 | |
3130 return 1; | |
3131 } | |
3132 | |
7141 | 3133 /* |
3134 * We get this error when there was an error in the locate family. This | |
7259 | 3135 * happens when you request info of someone who is offline. |
7141 | 3136 */ |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3137 static int gaim_parse_locerr(aim_session_t *sess, aim_frame_t *fr, ...) { |
7259 | 3138 gchar *buf; |
2086 | 3139 va_list ap; |
5420 | 3140 fu16_t reason; |
2086 | 3141 char *destn; |
3142 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3143 va_start(ap, fr); |
4199 | 3144 reason = (fu16_t) va_arg(ap, unsigned int); |
2086 | 3145 destn = va_arg(ap, char *); |
3146 va_end(ap); | |
3147 | |
7781 | 3148 if (destn == NULL) |
7793 | 3149 return 1; |
3150 | |
3151 buf = g_strdup_printf(_("User information for %s unavailable:"), destn); | |
7781 | 3152 |
3153 gaim_notify_error(sess->aux_data, NULL, buf, | |
3154 (reason < msgerrreasonlen) ? _(msgerrreason[reason]) : _("No reason given.")); | |
3155 g_free(buf); | |
2086 | 3156 |
3157 return 1; | |
3158 } | |
3159 | |
6982 | 3160 #if 0 |
2086 | 3161 static char *images(int flags) { |
3162 static char buf[1024]; | |
3101 | 3163 g_snprintf(buf, sizeof(buf), "%s%s%s%s%s%s%s", |
2679 | 3164 (flags & AIM_FLAG_ACTIVEBUDDY) ? "<IMG SRC=\"ab_icon.gif\">" : "", |
2086 | 3165 (flags & AIM_FLAG_UNCONFIRMED) ? "<IMG SRC=\"dt_icon.gif\">" : "", |
3166 (flags & AIM_FLAG_AOL) ? "<IMG SRC=\"aol_icon.gif\">" : "", | |
3101 | 3167 (flags & AIM_FLAG_ICQ) ? "<IMG SRC=\"icq_icon.gif\">" : "", |
2086 | 3168 (flags & AIM_FLAG_ADMINISTRATOR) ? "<IMG SRC=\"admin_icon.gif\">" : "", |
3079 | 3169 (flags & AIM_FLAG_FREE) ? "<IMG SRC=\"free_icon.gif\">" : "", |
3170 (flags & AIM_FLAG_WIRELESS) ? "<IMG SRC=\"wireless_icon.gif\">" : ""); | |
2086 | 3171 return buf; |
3172 } | |
6982 | 3173 #endif |
3101 | 3174 |
2920 | 3175 static char *caps_string(guint caps) |
3176 { | |
3177 static char buf[512], *tmp; | |
3178 int count = 0, i = 0; | |
3179 guint bit = 1; | |
4742 | 3180 |
3181 if (!caps) { | |
4744 | 3182 return NULL; |
6318 | 3183 } else while (bit <= AIM_CAPS_LAST) { |
2920 | 3184 if (bit & caps) { |
3185 switch (bit) { | |
6871 | 3186 case AIM_CAPS_BUDDYICON: |
2920 | 3187 tmp = _("Buddy Icon"); |
3188 break; | |
8092 | 3189 case AIM_CAPS_TALK: |
2920 | 3190 tmp = _("Voice"); |
3191 break; | |
6871 | 3192 case AIM_CAPS_DIRECTIM: |
7141 | 3193 tmp = _("AIM Direct IM"); |
2920 | 3194 break; |
6871 | 3195 case AIM_CAPS_CHAT: |
2920 | 3196 tmp = _("Chat"); |
3197 break; | |
6871 | 3198 case AIM_CAPS_GETFILE: |
2920 | 3199 tmp = _("Get File"); |
3200 break; | |
6871 | 3201 case AIM_CAPS_SENDFILE: |
2920 | 3202 tmp = _("Send File"); |
3203 break; | |
6871 | 3204 case AIM_CAPS_GAMES: |
3205 case AIM_CAPS_GAMES2: | |
2920 | 3206 tmp = _("Games"); |
3207 break; | |
8092 | 3208 case AIM_CAPS_ADDINS: |
4898 | 3209 tmp = _("Add-Ins"); |
2920 | 3210 break; |
6871 | 3211 case AIM_CAPS_SENDBUDDYLIST: |
2920 | 3212 tmp = _("Send Buddy List"); |
3213 break; | |
7141 | 3214 case AIM_CAPS_ICQ_DIRECT: |
3215 tmp = _("ICQ Direct Connect"); | |
2920 | 3216 break; |
6871 | 3217 case AIM_CAPS_APINFO: |
2920 | 3218 tmp = _("AP User"); |
3219 break; | |
6871 | 3220 case AIM_CAPS_ICQRTF: |
2920 | 3221 tmp = _("ICQ RTF"); |
3222 break; | |
6871 | 3223 case AIM_CAPS_EMPTY: |
2920 | 3224 tmp = _("Nihilist"); |
3225 break; | |
6871 | 3226 case AIM_CAPS_ICQSERVERRELAY: |
2920 | 3227 tmp = _("ICQ Server Relay"); |
3228 break; | |
6871 | 3229 case AIM_CAPS_ICQUTF8OLD: |
3230 tmp = _("Old ICQ UTF8"); | |
2920 | 3231 break; |
6871 | 3232 case AIM_CAPS_TRILLIANCRYPT: |
2920 | 3233 tmp = _("Trillian Encryption"); |
3234 break; | |
6871 | 3235 case AIM_CAPS_ICQUTF8: |
4742 | 3236 tmp = _("ICQ UTF8"); |
3237 break; | |
6318 | 3238 case AIM_CAPS_HIPTOP: |
3239 tmp = _("Hiptop"); | |
3240 break; | |
6871 | 3241 case AIM_CAPS_SECUREIM: |
7334 | 3242 tmp = _("Security Enabled"); |
6871 | 3243 break; |
7582 | 3244 case AIM_CAPS_VIDEO: |
3245 tmp = _("Video Chat"); | |
3246 break; | |
8092 | 3247 /* Not actually sure about this one... WinAIM doesn't show anything */ |
7945 | 3248 case AIM_CAPS_ICHATAV: |
3249 tmp = _("iChat AV"); | |
3250 break; | |
8092 | 3251 case AIM_CAPS_LIVEVIDEO: |
3252 tmp = _("Live Video"); | |
3253 break; | |
3254 case AIM_CAPS_CAMERA: | |
3255 tmp = _("Camera"); | |
3256 break; | |
2920 | 3257 default: |
3258 tmp = NULL; | |
3259 break; | |
3260 } | |
3261 if (tmp) | |
3262 i += g_snprintf(buf + i, sizeof(buf) - i, "%s%s", (count ? ", " : ""), | |
3263 tmp); | |
3264 count++; | |
3265 } | |
3266 bit <<= 1; | |
3267 } | |
4744 | 3268 return buf; |
2920 | 3269 } |
3270 | |
7011 | 3271 static int gaim_parse_userinfo(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 3272 GaimConnection *gc = sess->aux_data; |
7011 | 3273 GString *text; |
7162 | 3274 gchar *info_utf8 = NULL, *away_utf8 = NULL; |
3275 const char *final = NULL; | |
4791 | 3276 va_list ap; |
7011 | 3277 aim_userinfo_t *userinfo; |
2086 | 3278 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3279 va_start(ap, fr); |
7011 | 3280 userinfo = va_arg(ap, aim_userinfo_t *); |
2086 | 3281 va_end(ap); |
3282 | |
7011 | 3283 text = g_string_new(""); |
3284 g_string_append_printf(text, _("Username: <b>%s</b><br>\n"), userinfo->sn); | |
3285 g_string_append_printf(text, _("Warning Level: <b>%d%%</b><br>\n"), (int)((userinfo->warnlevel/10.0) + 0.5)); | |
3286 | |
3287 if (userinfo->present & AIM_USERINFO_PRESENT_ONLINESINCE) | |
3288 g_string_append_printf(text, _("Online Since: <b>%s</b><br>\n"), | |
3289 asctime(localtime((time_t *)&userinfo->onlinesince))); | |
3290 | |
3291 if (userinfo->present & AIM_USERINFO_PRESENT_MEMBERSINCE) | |
3292 g_string_append_printf(text, _("Member Since: <b>%s</b><br>\n"), | |
3293 asctime(localtime((time_t *)&userinfo->membersince))); | |
3294 | |
3295 if (userinfo->present & AIM_USERINFO_PRESENT_IDLE) { | |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
3296 gchar *itime = gaim_str_seconds_to_string(userinfo->idletime*60); |
7011 | 3297 g_string_append_printf(text, _("Idle: <b>%s</b>"), itime); |
4426 | 3298 g_free(itime); |
2993 | 3299 } else |
7011 | 3300 g_string_append_printf(text, _("Idle: <b>Active</b>")); |
3301 | |
3302 if ((userinfo->flags & AIM_FLAG_AWAY) && (userinfo->away_len > 0) && (userinfo->away != NULL) && (userinfo->away_encoding != NULL)) { | |
8225 | 3303 gchar *charset = oscar_encoding_extract(userinfo->away_encoding); |
3304 away_utf8 = oscar_encoding_to_utf8(charset, userinfo->away, userinfo->away_len); | |
3305 g_free(charset); | |
7011 | 3306 if (away_utf8 != NULL) { |
7129 | 3307 g_string_append_printf(text, "<hr>%s", away_utf8); |
7011 | 3308 g_free(away_utf8); |
2791
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
3309 } |
7011 | 3310 } |
3311 | |
3312 if ((userinfo->info_len > 0) && (userinfo->info != NULL) && (userinfo->info_encoding != NULL)) { | |
8225 | 3313 gchar *charset = oscar_encoding_extract(userinfo->info_encoding); |
3314 info_utf8 = oscar_encoding_to_utf8(charset, userinfo->info, userinfo->info_len); | |
3315 g_free(charset); | |
7011 | 3316 if (info_utf8 != NULL) { |
7129 | 3317 g_string_append_printf(text, "<hr>%s", info_utf8); |
7011 | 3318 g_free(info_utf8); |
2791
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
3319 } |
7011 | 3320 } |
3321 | |
7164 | 3322 final = gaim_str_sub_away_formatters(text->str, gaim_account_get_username(gaim_connection_get_account(gc))); |
7011 | 3323 g_string_free(text, TRUE); |
7091 | 3324 gaim_notify_formatted(gc, NULL, _("Buddy Information"), NULL, final, NULL, NULL); |
4151 | 3325 |
2086 | 3326 return 1; |
3327 } | |
3328 | |
8341 | 3329 static gboolean gaim_reqinfo_timeout_cb(void *data) |
3330 { | |
3331 aim_session_t *sess = data; | |
3332 GaimConnection *gc = sess->aux_data; | |
3333 OscarData *od = (OscarData *)gc->proto_data; | |
3334 | |
3335 aim_locate_dorequest(data); | |
3336 od->getinfotimer = 0; | |
3337 | |
3338 return FALSE; | |
3339 } | |
3340 | |
3341 static int gaim_reqinfo_timeout(aim_session_t *sess, aim_frame_t *fr, ...) | |
3342 { | |
3343 GaimConnection *gc = sess->aux_data; | |
3344 OscarData *od = (OscarData *)gc->proto_data; | |
3345 | |
3346 /* | |
3347 * Wait a little while then call aim_locate_dorequest(sess). This keeps | |
3348 * us from hitting the rate limit due to request away messages and info | |
3349 * too quickly. | |
3350 */ | |
3351 if (od->getinfotimer == 0) | |
3352 od->getinfotimer = gaim_timeout_add(1200, gaim_reqinfo_timeout_cb, sess); | |
3353 | |
3354 return 1; | |
3355 } | |
3356 | |
3357 static int gaim_parse_motd(aim_session_t *sess, aim_frame_t *fr, ...) | |
3358 { | |
2086 | 3359 char *msg; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3360 fu16_t id; |
2086 | 3361 va_list ap; |
3362 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3363 va_start(ap, fr); |
4199 | 3364 id = (fu16_t) va_arg(ap, unsigned int); |
2086 | 3365 msg = va_arg(ap, char *); |
3366 va_end(ap); | |
3367 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3368 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3369 "MOTD: %s (%hu)\n", msg ? msg : "Unknown", id); |
2092
59b0377d18aa
[gaim-migrate @ 2102]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2090
diff
changeset
|
3370 if (id < 4) |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
3371 gaim_notify_warning(sess->aux_data, NULL, |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
3372 _("Your AIM connection may be lost."), NULL); |
2086 | 3373 |
3374 return 1; | |
3375 } | |
3376 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3377 static int gaim_chatnav_info(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 3378 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3379 fu16_t type; |
5575 | 3380 GaimConnection *gc = sess->aux_data; |
7283 | 3381 OscarData *od = (OscarData *)gc->proto_data; |
2086 | 3382 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3383 va_start(ap, fr); |
4199 | 3384 type = (fu16_t) va_arg(ap, unsigned int); |
2086 | 3385 |
3386 switch(type) { | |
3387 case 0x0002: { | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3388 fu8_t maxrooms; |
2086 | 3389 struct aim_chat_exchangeinfo *exchanges; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3390 int exchangecount, i; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3391 |
4199 | 3392 maxrooms = (fu8_t) va_arg(ap, unsigned int); |
2086 | 3393 exchangecount = va_arg(ap, int); |
3394 exchanges = va_arg(ap, struct aim_chat_exchangeinfo *); | |
3395 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3396 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3397 "chat info: Chat Rights:\n"); |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3398 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3399 "chat info: \tMax Concurrent Rooms: %hhd\n", maxrooms); |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3400 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3401 "chat info: \tExchange List: (%d total)\n", exchangecount); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3402 for (i = 0; i < exchangecount; i++) |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3403 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3404 "chat info: \t\t%hu %s\n", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3405 exchanges[i].number, exchanges[i].name ? exchanges[i].name : ""); |
4617 | 3406 while (od->create_rooms) { |
3407 struct create_room *cr = od->create_rooms->data; | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3408 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3409 "creating room %s\n", cr->name); |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
3410 aim_chatnav_createroom(sess, fr->conn, cr->name, cr->exchange); |
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
3411 g_free(cr->name); |
4617 | 3412 od->create_rooms = g_slist_remove(od->create_rooms, cr); |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
3413 g_free(cr); |
2086 | 3414 } |
3415 } | |
3416 break; | |
3417 case 0x0008: { | |
3418 char *fqcn, *name, *ck; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3419 fu16_t instance, flags, maxmsglen, maxoccupancy, unknown, exchange; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3420 fu8_t createperms; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3421 fu32_t createtime; |
2086 | 3422 |
3423 fqcn = va_arg(ap, char *); | |
4200 | 3424 instance = (fu16_t)va_arg(ap, unsigned int); |
3425 exchange = (fu16_t)va_arg(ap, unsigned int); | |
3426 flags = (fu16_t)va_arg(ap, unsigned int); | |
3427 createtime = va_arg(ap, fu32_t); | |
3428 maxmsglen = (fu16_t)va_arg(ap, unsigned int); | |
3429 maxoccupancy = (fu16_t)va_arg(ap, unsigned int); | |
3430 createperms = (fu8_t)va_arg(ap, unsigned int); | |
3431 unknown = (fu16_t)va_arg(ap, unsigned int); | |
3432 name = va_arg(ap, char *); | |
3433 ck = va_arg(ap, char *); | |
4194 | 3434 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3435 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
5556 | 3436 "created room: %s %hu %hu %hu %u %hu %hu %hhu %hu %s %s\n", |
2086 | 3437 fqcn, |
3438 exchange, instance, flags, | |
3439 createtime, | |
3440 maxmsglen, maxoccupancy, createperms, unknown, | |
3441 name, ck); | |
4617 | 3442 aim_chat_join(od->sess, od->conn, exchange, ck, instance); |
2086 | 3443 } |
3444 break; | |
3445 default: | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3446 gaim_debug(GAIM_DEBUG_WARNING, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3447 "chatnav info: unknown type (%04hx)\n", type); |
2086 | 3448 break; |
3449 } | |
4194 | 3450 |
3451 va_end(ap); | |
3452 | |
2086 | 3453 return 1; |
3454 } | |
3455 | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
3456 static int gaim_conv_chat_join(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 3457 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3458 int count, i; |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3459 aim_userinfo_t *info; |
5575 | 3460 GaimConnection *g = sess->aux_data; |
2086 | 3461 |
3462 struct chat_connection *c = NULL; | |
3463 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3464 va_start(ap, fr); |
2086 | 3465 count = va_arg(ap, int); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3466 info = va_arg(ap, aim_userinfo_t *); |
2086 | 3467 va_end(ap); |
3468 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3469 c = find_oscar_chat_by_conn(g, fr->conn); |
2086 | 3470 if (!c) |
3471 return 1; | |
3472 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3473 for (i = 0; i < count; i++) |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
3474 gaim_conv_chat_add_user(GAIM_CONV_CHAT(c->cnv), info[i].sn, NULL); |
2086 | 3475 |
3476 return 1; | |
3477 } | |
3478 | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
3479 static int gaim_conv_chat_leave(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 3480 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3481 int count, i; |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3482 aim_userinfo_t *info; |
5575 | 3483 GaimConnection *g = sess->aux_data; |
2086 | 3484 |
3485 struct chat_connection *c = NULL; | |
3486 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3487 va_start(ap, fr); |
2086 | 3488 count = va_arg(ap, int); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3489 info = va_arg(ap, aim_userinfo_t *); |
2086 | 3490 va_end(ap); |
3491 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3492 c = find_oscar_chat_by_conn(g, fr->conn); |
2086 | 3493 if (!c) |
3494 return 1; | |
3495 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3496 for (i = 0; i < count; i++) |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
3497 gaim_conv_chat_remove_user(GAIM_CONV_CHAT(c->cnv), info[i].sn, NULL); |
2086 | 3498 |
3499 return 1; | |
3500 } | |
3501 | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
3502 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
|
3503 va_list ap; |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3504 aim_userinfo_t *userinfo; |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3505 struct aim_chat_roominfo *roominfo; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3506 char *roomname; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3507 int usercount; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3508 char *roomdesc; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3509 fu16_t unknown_c9, unknown_d2, unknown_d5, maxmsglen, maxvisiblemsglen; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3510 fu32_t creationtime; |
5575 | 3511 GaimConnection *gc = sess->aux_data; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3512 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
|
3513 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3514 va_start(ap, fr); |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3515 roominfo = va_arg(ap, struct aim_chat_roominfo *); |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3516 roomname = va_arg(ap, char *); |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3517 usercount= va_arg(ap, int); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3518 userinfo = va_arg(ap, aim_userinfo_t *); |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3519 roomdesc = va_arg(ap, char *); |
4200 | 3520 unknown_c9 = (fu16_t)va_arg(ap, unsigned int); |
3521 creationtime = va_arg(ap, fu32_t); | |
3522 maxmsglen = (fu16_t)va_arg(ap, unsigned int); | |
3523 unknown_d2 = (fu16_t)va_arg(ap, unsigned int); | |
3524 unknown_d5 = (fu16_t)va_arg(ap, unsigned int); | |
3525 maxvisiblemsglen = (fu16_t)va_arg(ap, unsigned int); | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3526 va_end(ap); |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3527 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3528 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3529 "inside chat_info_update (maxmsglen = %hu, maxvislen = %hu)\n", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3530 maxmsglen, maxvisiblemsglen); |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3531 |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3532 ccon->maxlen = maxmsglen; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3533 ccon->maxvis = maxvisiblemsglen; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3534 |
2086 | 3535 return 1; |
3536 } | |
3537 | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
3538 static int gaim_conv_chat_incoming_msg(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 3539 GaimConnection *gc = sess->aux_data; |
8225 | 3540 struct chat_connection *ccon = find_oscar_chat_by_conn(gc, fr->conn); |
3541 gchar *utf8; | |
2086 | 3542 va_list ap; |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3543 aim_userinfo_t *info; |
8225 | 3544 int len; |
2086 | 3545 char *msg; |
8219 | 3546 char *charset; |
2086 | 3547 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3548 va_start(ap, fr); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3549 info = va_arg(ap, aim_userinfo_t *); |
8219 | 3550 len = va_arg(ap, int); |
4194 | 3551 msg = va_arg(ap, char *); |
8219 | 3552 charset = va_arg(ap, char *); |
4194 | 3553 va_end(ap); |
2086 | 3554 |
8225 | 3555 utf8 = oscar_encoding_to_utf8(charset, msg, len); |
3556 serv_got_chat_in(gc, ccon->id, info->sn, 0, utf8, time((time_t)NULL)); | |
3557 g_free(utf8); | |
2086 | 3558 |
3559 return 1; | |
3560 } | |
3561 | |
3694 | 3562 static int gaim_email_parseupdate(aim_session_t *sess, aim_frame_t *fr, ...) { |
3563 va_list ap; | |
5575 | 3564 GaimConnection *gc = sess->aux_data; |
3694 | 3565 struct aim_emailinfo *emailinfo; |
3725 | 3566 int havenewmail; |
7297 | 3567 char *alertitle, *alerturl; |
3694 | 3568 |
3569 va_start(ap, fr); | |
3570 emailinfo = va_arg(ap, struct aim_emailinfo *); | |
3725 | 3571 havenewmail = va_arg(ap, int); |
7301 | 3572 alertitle = va_arg(ap, char *); |
3573 alerturl = va_arg(ap, char *); | |
3694 | 3574 va_end(ap); |
3575 | |
5628 | 3576 if (emailinfo && gaim_account_get_check_mail(gc->account)) { |
5575 | 3577 gchar *to = g_strdup_printf("%s@%s", gaim_account_get_username(gaim_connection_get_account(gc)), emailinfo->domain); |
5542 | 3578 if (emailinfo->unread && havenewmail) |
3579 gaim_notify_emails(gc, emailinfo->nummsgs, FALSE, NULL, NULL, (const char **)&to, (const char **)&emailinfo->url, NULL, NULL); | |
5537 | 3580 g_free(to); |
3694 | 3581 } |
7297 | 3582 |
7301 | 3583 if (alertitle) |
7313 | 3584 gaim_debug(GAIM_DEBUG_MISC, "oscar", "Got an alert '%s' %s\n", alertitle, alerturl ? alerturl : ""); |
3694 | 3585 |
3586 return 1; | |
3587 } | |
3588 | |
4804 | 3589 static int gaim_icon_error(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 3590 GaimConnection *gc = sess->aux_data; |
7283 | 3591 OscarData *od = gc->proto_data; |
4804 | 3592 char *sn; |
3593 | |
3594 sn = od->requesticon->data; | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3595 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3596 "removing %s from hash table\n", sn); |
4804 | 3597 od->requesticon = g_slist_remove(od->requesticon, sn); |
3598 free(sn); | |
3599 | |
3600 if (od->icontimer) | |
8287
ef881489396e
[gaim-migrate @ 9011]
Christian Hammond <chipx86@chipx86.com>
parents:
8273
diff
changeset
|
3601 gaim_timeout_remove(od->icontimer); |
8273
f24172f53650
[gaim-migrate @ 8997]
Christian Hammond <chipx86@chipx86.com>
parents:
8266
diff
changeset
|
3602 od->icontimer = gaim_timeout_add(500, gaim_icon_timerfunc, gc); |
4804 | 3603 |
3604 return 1; | |
3605 } | |
3606 | |
3607 static int gaim_icon_parseicon(aim_session_t *sess, aim_frame_t *fr, ...) { | |
5575 | 3608 GaimConnection *gc = sess->aux_data; |
7283 | 3609 OscarData *od = gc->proto_data; |
4804 | 3610 GSList *cur; |
3611 va_list ap; | |
3612 char *sn; | |
4853 | 3613 fu8_t *iconcsum, *icon; |
3614 fu16_t iconcsumlen, iconlen; | |
4804 | 3615 |
3616 va_start(ap, fr); | |
3617 sn = va_arg(ap, char *); | |
4853 | 3618 iconcsum = va_arg(ap, fu8_t *); |
3619 iconcsumlen = va_arg(ap, int); | |
4804 | 3620 icon = va_arg(ap, fu8_t *); |
3621 iconlen = va_arg(ap, int); | |
3622 va_end(ap); | |
3623 | |
4853 | 3624 if (iconlen > 0) { |
3625 char *b16; | |
6695 | 3626 GaimBuddy *b = gaim_find_buddy(gc->account, sn); |
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6787
diff
changeset
|
3627 gaim_buddy_icons_set_for_user(gaim_connection_get_account(gc), |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6787
diff
changeset
|
3628 sn, icon, iconlen); |
7106
db6bd3e794d8
[gaim-migrate @ 7671]
Christian Hammond <chipx86@chipx86.com>
parents:
7098
diff
changeset
|
3629 b16 = gaim_base16_encode(iconcsum, iconcsumlen); |
5129 | 3630 if (b16) { |
7693 | 3631 gaim_blist_node_set_string((GaimBlistNode*)b, "icon_checksum", b16); |
5129 | 3632 gaim_blist_save(); |
7162 | 3633 g_free(b16); |
5129 | 3634 } |
4853 | 3635 } |
4804 | 3636 |
3637 cur = od->requesticon; | |
3638 while (cur) { | |
3639 char *cursn = cur->data; | |
3640 if (!aim_sncmp(cursn, sn)) { | |
3641 od->requesticon = g_slist_remove(od->requesticon, cursn); | |
3642 free(cursn); | |
3643 cur = od->requesticon; | |
3644 } else | |
3645 cur = cur->next; | |
3646 } | |
3647 | |
3648 if (od->icontimer) | |
8287
ef881489396e
[gaim-migrate @ 9011]
Christian Hammond <chipx86@chipx86.com>
parents:
8273
diff
changeset
|
3649 gaim_timeout_remove(od->icontimer); |
8273
f24172f53650
[gaim-migrate @ 8997]
Christian Hammond <chipx86@chipx86.com>
parents:
8266
diff
changeset
|
3650 od->icontimer = gaim_timeout_add(250, gaim_icon_timerfunc, gc); |
4804 | 3651 |
3652 return 1; | |
3653 } | |
3654 | |
3655 static gboolean gaim_icon_timerfunc(gpointer data) { | |
5575 | 3656 GaimConnection *gc = data; |
7283 | 3657 OscarData *od = gc->proto_data; |
7011 | 3658 aim_userinfo_t *userinfo; |
4804 | 3659 aim_conn_t *conn; |
3660 | |
3661 conn = aim_getconn_type(od->sess, AIM_CONN_TYPE_ICON); | |
5892 | 3662 if (!conn) { |
3663 if (!od->iconconnecting) { | |
3664 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_ICON); | |
3665 od->iconconnecting = TRUE; | |
3666 } | |
4804 | 3667 return FALSE; |
3668 } | |
3669 | |
5842 | 3670 if (od->set_icon) { |
6039 | 3671 struct stat st; |
3672 const char *iconfile = gaim_account_get_buddy_icon(gaim_connection_get_account(gc)); | |
3673 if (iconfile == NULL) { | |
8363 | 3674 aim_ssi_delicon(od->sess); |
6039 | 3675 } else if (!stat(iconfile, &st)) { |
3676 char *buf = g_malloc(st.st_size); | |
3677 FILE *file = fopen(iconfile, "rb"); | |
3678 if (file) { | |
3679 fread(buf, 1, st.st_size, file); | |
3680 fclose(file); | |
3681 gaim_debug(GAIM_DEBUG_INFO, "oscar", | |
3682 "Uploading icon to icon server\n"); | |
6879 | 3683 aim_bart_upload(od->sess, buf, st.st_size); |
5842 | 3684 } else |
3685 gaim_debug(GAIM_DEBUG_ERROR, "oscar", | |
6039 | 3686 "Can't open buddy icon file!\n"); |
3687 g_free(buf); | |
3688 } else { | |
3689 gaim_debug(GAIM_DEBUG_ERROR, "oscar", | |
3690 "Can't stat buddy icon file!\n"); | |
5842 | 3691 } |
3692 od->set_icon = FALSE; | |
3693 } | |
3694 | |
3695 if (!od->requesticon) { | |
3696 gaim_debug(GAIM_DEBUG_MISC, "oscar", | |
3697 "no more icons to request\n"); | |
3698 return FALSE; | |
3699 } | |
3700 | |
7045 | 3701 userinfo = aim_locate_finduserinfo(od->sess, (char *)od->requesticon->data); |
7011 | 3702 if ((userinfo != NULL) && (userinfo->iconcsumlen > 0)) { |
3703 aim_bart_request(od->sess, od->requesticon->data, userinfo->iconcsum, userinfo->iconcsumlen); | |
4804 | 3704 return FALSE; |
3705 } else { | |
3706 char *sn = od->requesticon->data; | |
3707 od->requesticon = g_slist_remove(od->requesticon, sn); | |
3708 free(sn); | |
3709 } | |
3710 | |
3711 return TRUE; | |
3712 } | |
3713 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3714 /* |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3715 * 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
|
3716 */ |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3717 static int gaim_parse_msgack(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 3718 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3719 fu16_t type; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3720 char *sn; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3721 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3722 va_start(ap, fr); |
4199 | 3723 type = (fu16_t) va_arg(ap, unsigned int); |
2086 | 3724 sn = va_arg(ap, char *); |
3725 va_end(ap); | |
3726 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3727 gaim_debug(GAIM_DEBUG_INFO, "oscar", "Sent message to %s.\n", sn); |
2086 | 3728 |
3729 return 1; | |
3730 } | |
3731 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3732 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
|
3733 static const char *codes[5] = { |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3734 "invalid", |
4194 | 3735 "change", |
3736 "warning", | |
3737 "limit", | |
3738 "limit cleared", | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3739 }; |
2086 | 3740 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3741 fu16_t code, rateclass; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3742 fu32_t windowsize, clear, alert, limit, disconnect, currentavg, maxavg; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3743 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3744 va_start(ap, fr); |
4200 | 3745 code = (fu16_t)va_arg(ap, unsigned int); |
3746 rateclass= (fu16_t)va_arg(ap, unsigned int); | |
3747 windowsize = va_arg(ap, fu32_t); | |
3748 clear = va_arg(ap, fu32_t); | |
3749 alert = va_arg(ap, fu32_t); | |
3750 limit = va_arg(ap, fu32_t); | |
3751 disconnect = va_arg(ap, fu32_t); | |
3752 currentavg = va_arg(ap, fu32_t); | |
3753 maxavg = va_arg(ap, fu32_t); | |
2086 | 3754 va_end(ap); |
3755 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3756 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
5556 | 3757 "rate %s (param ID 0x%04hx): curavg = %u, maxavg = %u, alert at %u, " |
3758 "clear warning at %u, limit at %u, disconnect at %u (window size = %u)\n", | |
2086 | 3759 (code < 5) ? codes[code] : codes[0], |
3760 rateclass, | |
3761 currentavg, maxavg, | |
3762 alert, clear, | |
3763 limit, disconnect, | |
3764 windowsize); | |
3765 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3766 /* XXX fix these values */ |
2086 | 3767 if (code == AIM_RATE_CODE_CHANGE) { |
3768 if (currentavg >= clear) | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3769 aim_conn_setlatency(fr->conn, 0); |
2086 | 3770 } else if (code == AIM_RATE_CODE_WARNING) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3771 aim_conn_setlatency(fr->conn, windowsize/4); |
2909
48ec70928d7f
[gaim-migrate @ 2922]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2906
diff
changeset
|
3772 } else if (code == AIM_RATE_CODE_LIMIT) { |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
3773 gaim_notify_error(sess->aux_data, NULL, _("Rate limiting error."), |
6040 | 3774 _("The last action you attempted could not be " |
3775 "performed because you are over the rate limit. " | |
3776 "Please wait 10 seconds and try again.")); | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3777 aim_conn_setlatency(fr->conn, windowsize/2); |
2086 | 3778 } else if (code == AIM_RATE_CODE_CLEARLIMIT) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3779 aim_conn_setlatency(fr->conn, 0); |
2086 | 3780 } |
3781 | |
3782 return 1; | |
3783 } | |
3784 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3785 static int gaim_parse_evilnotify(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 3786 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3787 fu16_t newevil; |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3788 aim_userinfo_t *userinfo; |
5575 | 3789 GaimConnection *gc = sess->aux_data; |
2086 | 3790 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3791 va_start(ap, fr); |
4199 | 3792 newevil = (fu16_t) va_arg(ap, unsigned int); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3793 userinfo = va_arg(ap, aim_userinfo_t *); |
2086 | 3794 va_end(ap); |
3795 | |
7111 | 3796 serv_got_eviled(gc, (userinfo && userinfo->sn) ? userinfo->sn : NULL, (newevil/10.0) + 0.5); |
2086 | 3797 |
3798 return 1; | |
3799 } | |
3800 | |
2507
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3801 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
|
3802 va_list ap; |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3803 aim_userinfo_t *info; |
5575 | 3804 GaimConnection *gc = sess->aux_data; |
2507
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3805 |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3806 va_start(ap, fr); |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3807 info = va_arg(ap, aim_userinfo_t *); |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3808 va_end(ap); |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3809 |
5628 | 3810 gc->evil = (info->warnlevel/10.0) + 0.5; |
4841 | 3811 |
7872 | 3812 if (info->present & AIM_USERINFO_PRESENT_ONLINESINCE) |
4841 | 3813 gc->login_time_official = info->onlinesince; |
7872 | 3814 else if (info->present & AIM_USERINFO_PRESENT_SESSIONLEN) |
3815 gc->login_time_official = time(NULL) - info->sessionlen; | |
2507
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3816 |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3817 return 1; |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3818 } |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3819 |
4649 | 3820 static int gaim_connerr(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 3821 GaimConnection *gc = sess->aux_data; |
7283 | 3822 OscarData *od = gc->proto_data; |
4649 | 3823 va_list ap; |
3824 fu16_t code; | |
3825 char *msg; | |
3826 | |
3827 va_start(ap, fr); | |
3828 code = (fu16_t)va_arg(ap, int); | |
3829 msg = va_arg(ap, char *); | |
3830 va_end(ap); | |
3831 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3832 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3833 "Disconnected. Code is 0x%04x and msg is %s\n", code, msg); |
4649 | 3834 if ((fr) && (fr->conn) && (fr->conn->type == AIM_CONN_TYPE_BOS)) { |
4651 | 3835 if (code == 0x0001) { |
6113 | 3836 gc->wants_to_die = TRUE; |
5579 | 3837 gaim_connection_error(gc, _("You have been disconnected because you have signed on with this screen name at another location.")); |
4651 | 3838 } else { |
5579 | 3839 gaim_connection_error(gc, _("You have been signed off for an unknown reason.")); |
4651 | 3840 } |
4666 | 3841 od->killme = TRUE; |
4649 | 3842 } |
3843 | |
3844 return 1; | |
3845 } | |
3846 | |
2675 | 3847 static int conninitdone_bos(aim_session_t *sess, aim_frame_t *fr, ...) { |
7283 | 3848 GaimConnection *gc = sess->aux_data; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3849 |
2703
441b84ab7f4e
[gaim-migrate @ 2716]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2698
diff
changeset
|
3850 aim_reqpersonalinfo(sess, fr->conn); |
4230 | 3851 |
3852 #ifndef NOSSI | |
7334 | 3853 gaim_debug(GAIM_DEBUG_INFO, "oscar", "ssi: requesting rights and list\n"); |
4889 | 3854 aim_ssi_reqrights(sess); |
6350 | 3855 aim_ssi_reqdata(sess); |
4230 | 3856 #endif |
3857 | |
7011 | 3858 aim_locate_reqrights(sess); |
7285 | 3859 aim_buddylist_reqrights(sess, fr->conn); |
4617 | 3860 aim_im_reqparams(sess); |
7334 | 3861 aim_bos_reqrights(sess, fr->conn); /* XXX - Don't call this with ssi */ |
4230 | 3862 |
3863 #ifdef NOSSI | |
7334 | 3864 gaim_debug(GAIM_DEBUG_INFO, "oscar", "bos: requesting rights\n"); |
3865 aim_bos_reqrights(sess, fr->conn); | |
4230 | 3866 aim_bos_setgroupperm(sess, fr->conn, AIM_FLAG_ALLUSERS); |
3867 aim_bos_setprivacyflags(sess, fr->conn, AIM_PRIVFLAGS_ALLOWIDLE | AIM_PRIVFLAGS_ALLOWMEMBERSINCE); | |
3868 #endif | |
2086 | 3869 |
7283 | 3870 gaim_connection_update_progress(gc, _("Finalizing connection"), 5, OSCAR_CONNECT_STEPS); |
3871 | |
2086 | 3872 return 1; |
3873 } | |
3874 | |
2675 | 3875 static int conninitdone_admin(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 3876 GaimConnection *gc = sess->aux_data; |
7283 | 3877 OscarData *od = gc->proto_data; |
2647 | 3878 |
6905 | 3879 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_ADM, 0x0003, gaim_info_change, 0); |
3880 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_ADM, 0x0005, gaim_info_change, 0); | |
3881 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_ADM, 0x0007, gaim_account_confirm, 0); | |
3882 | |
2672 | 3883 aim_clientready(sess, fr->conn); |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3884 gaim_debug(GAIM_DEBUG_INFO, "oscar", "connected to admin\n"); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3885 |
2647 | 3886 if (od->chpass) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3887 gaim_debug(GAIM_DEBUG_INFO, "oscar", "changing password\n"); |
2703
441b84ab7f4e
[gaim-migrate @ 2716]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2698
diff
changeset
|
3888 aim_admin_changepasswd(sess, fr->conn, od->newp, od->oldp); |
2647 | 3889 g_free(od->oldp); |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3890 od->oldp = NULL; |
2647 | 3891 g_free(od->newp); |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3892 od->newp = NULL; |
2647 | 3893 od->chpass = FALSE; |
3894 } | |
2979 | 3895 if (od->setnick) { |
8152 | 3896 gaim_debug(GAIM_DEBUG_INFO, "oscar", "formatting screen name\n"); |
2979 | 3897 aim_admin_setnick(sess, fr->conn, od->newsn); |
3898 g_free(od->newsn); | |
3899 od->newsn = NULL; | |
3900 od->setnick = FALSE; | |
3901 } | |
2647 | 3902 if (od->conf) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3903 gaim_debug(GAIM_DEBUG_INFO, "oscar", "confirming account\n"); |
2703
441b84ab7f4e
[gaim-migrate @ 2716]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2698
diff
changeset
|
3904 aim_admin_reqconfirm(sess, fr->conn); |
2647 | 3905 od->conf = FALSE; |
3906 } | |
3907 if (od->reqemail) { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3908 gaim_debug(GAIM_DEBUG_INFO, "oscar", "requesting email\n"); |
2703
441b84ab7f4e
[gaim-migrate @ 2716]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2698
diff
changeset
|
3909 aim_admin_getinfo(sess, fr->conn, 0x0011); |
2647 | 3910 od->reqemail = FALSE; |
3911 } | |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3912 if (od->setemail) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3913 gaim_debug(GAIM_DEBUG_INFO, "oscar", "setting email\n"); |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3914 aim_admin_setemail(sess, fr->conn, od->email); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3915 g_free(od->email); |
5497 | 3916 od->email = NULL; |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3917 od->setemail = FALSE; |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3918 } |
2647 | 3919 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3920 return 1; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3921 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3922 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3923 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
|
3924 struct aim_icbmparameters *params; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3925 va_list ap; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3926 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3927 va_start(ap, fr); |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3928 params = va_arg(ap, struct aim_icbmparameters *); |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3929 va_end(ap); |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3930 |
4194 | 3931 /* 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
|
3932 gaim_debug(GAIM_DEBUG_MISC, "oscar", "ICBM Parameters: maxchannel = %hu, default flags = 0x%08lx, max msg len = %hu, " |
5556 | 3933 "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
|
3934 params->maxchan, params->flags, params->maxmsglen, |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3935 ((float)params->maxsenderwarn)/10.0, ((float)params->maxrecverwarn)/10.0, |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3936 params->minmsginterval); |
2427
5bc3b39fc0a5
[gaim-migrate @ 2440]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2421
diff
changeset
|
3937 */ |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3938 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3939 /* Maybe senderwarn and recverwarn should be user preferences... */ |
3595 | 3940 params->flags = 0x0000000b; |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3941 params->maxmsglen = 8000; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3942 params->minmsginterval = 0; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3943 |
4617 | 3944 aim_im_setparams(sess, params); |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3945 |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3946 return 1; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3947 } |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3948 |
2993 | 3949 static int gaim_parse_locaterights(aim_session_t *sess, aim_frame_t *fr, ...) |
3950 { | |
5575 | 3951 GaimConnection *gc = sess->aux_data; |
7283 | 3952 OscarData *od = (OscarData *)gc->proto_data; |
5306 | 3953 va_list ap; |
3954 fu16_t maxsiglen; | |
2993 | 3955 |
3956 va_start(ap, fr); | |
4199 | 3957 maxsiglen = (fu16_t) va_arg(ap, int); |
2993 | 3958 va_end(ap); |
3959 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3960 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3961 "locate rights: max sig len = %d\n", maxsiglen); |
2993 | 3962 |
4617 | 3963 od->rights.maxsiglen = od->rights.maxawaymsglen = (guint)maxsiglen; |
3964 | |
3965 if (od->icq) | |
7334 | 3966 aim_locate_setcaps(od->sess, caps_icq); |
5301 | 3967 else |
7334 | 3968 aim_locate_setcaps(od->sess, caps_aim); |
3969 oscar_set_info(gc, gc->account->user_info); | |
2993 | 3970 |
3971 return 1; | |
3972 } | |
3973 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3974 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
|
3975 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3976 fu16_t maxbuddies, maxwatchers; |
5575 | 3977 GaimConnection *gc = sess->aux_data; |
7283 | 3978 OscarData *od = (OscarData *)gc->proto_data; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3979 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3980 va_start(ap, fr); |
4199 | 3981 maxbuddies = (fu16_t) va_arg(ap, unsigned int); |
3982 maxwatchers = (fu16_t) va_arg(ap, unsigned int); | |
2086 | 3983 va_end(ap); |
3984 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3985 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3986 "buddy list rights: Max buddies = %hu / Max watchers = %hu\n", maxbuddies, maxwatchers); |
2086 | 3987 |
4617 | 3988 od->rights.maxbuddies = (guint)maxbuddies; |
3989 od->rights.maxwatchers = (guint)maxwatchers; | |
2993 | 3990 |
2086 | 3991 return 1; |
3992 } | |
3993 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3994 static int gaim_bosrights(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 3995 GaimConnection *gc = sess->aux_data; |
7283 | 3996 OscarData *od = (OscarData *)gc->proto_data; |
7334 | 3997 va_list ap; |
3998 fu16_t maxpermits, maxdenies; | |
2086 | 3999 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4000 va_start(ap, fr); |
4199 | 4001 maxpermits = (fu16_t) va_arg(ap, unsigned int); |
4002 maxdenies = (fu16_t) va_arg(ap, unsigned int); | |
2086 | 4003 va_end(ap); |
4004 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4005 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4006 "BOS rights: Max permit = %hu / Max deny = %hu\n", maxpermits, maxdenies); |
2086 | 4007 |
4617 | 4008 od->rights.maxpermits = (guint)maxpermits; |
4009 od->rights.maxdenies = (guint)maxdenies; | |
2993 | 4010 |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
4011 gaim_connection_set_state(gc, GAIM_CONNECTED); |
2993 | 4012 serv_finish_login(gc); |
4013 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4014 gaim_debug(GAIM_DEBUG_INFO, "oscar", "buddy list loaded\n"); |
2993 | 4015 |
2672 | 4016 aim_clientready(sess, fr->conn); |
5948 | 4017 aim_srv_setavailmsg(sess, NULL); |
7474 | 4018 aim_srv_setidle(sess, 0); |
4617 | 4019 |
4664 | 4020 if (od->icq) { |
4021 aim_icq_reqofflinemsgs(sess); | |
4022 aim_icq_hideip(sess); | |
4023 } | |
2706
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4024 |
2703
441b84ab7f4e
[gaim-migrate @ 2716]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2698
diff
changeset
|
4025 aim_reqservice(sess, fr->conn, AIM_CONN_TYPE_CHATNAV); |
4102 | 4026 if (sess->authinfo->email) |
4027 aim_reqservice(sess, fr->conn, AIM_CONN_TYPE_EMAIL); | |
2086 | 4028 |
4029 return 1; | |
4030 } | |
4031 | |
2706
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4032 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
|
4033 va_list ap; |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4034 struct aim_icq_offlinemsg *msg; |
4075 | 4035 struct aim_incomingim_ch4_args args; |
4036 time_t t; | |
2706
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4037 |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4038 va_start(ap, fr); |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4039 msg = va_arg(ap, struct aim_icq_offlinemsg *); |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4040 va_end(ap); |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4041 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4042 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4043 "Received offline message. Converting to channel 4 ICBM...\n"); |
4075 | 4044 args.uin = msg->sender; |
4045 args.type = msg->type; | |
4173 | 4046 args.flags = msg->flags; |
4076 | 4047 args.msglen = msg->msglen; |
4075 | 4048 args.msg = msg->msg; |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4049 t = gaim_time_build(msg->year, msg->month, msg->day, msg->hour, msg->minute, 0); |
4075 | 4050 incomingim_chan4(sess, fr->conn, NULL, &args, t); |
2706
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4051 |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4052 return 1; |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4053 } |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4054 |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4055 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
|
4056 { |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4057 aim_icq_ackofflinemsgs(sess); |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4058 return 1; |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4059 } |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4060 |
7388 | 4061 #if 0 |
4062 /* | |
7465 | 4063 * Update, 2003-11-09: |
4064 * Joseph S. Myers, a gcc dude, fixed this for gcc 3.4! Rock on! | |
4065 * | |
7388 | 4066 * It may not be my place to do this, but... |
4067 * I feel pretty strongly that the "last 2 digits" warning is ridiculously | |
4068 * stupid, and should not exist for % switches (%x in our case) that request | |
4069 * a year in the preferred representation for the current locale. For that | |
4070 * reason I've chosen to not use this workaround (n., see kluge). | |
4071 * | |
4072 * I have a date. I want to show it to the user in the "preferred" way. | |
4073 * Whether that displays a 2 digit year is perfectly fine--after all, it's | |
4074 * what the locale wanted. | |
4075 * | |
4076 * If I have a necessity for a full representation of the year in the current | |
4077 * locale, then I'll use a switch that returns a full representation of the | |
4078 * year. | |
4079 * | |
4080 * If you think the preferred locale should show 4 digits instead of 2 digits | |
4081 * (because you're anal, or whatever), then change the f***ing locale. | |
4082 * | |
4083 * I guess the bottom line is--I'm trying to show a date to the user how they | |
4084 * prefer to see it, why the hell does gcc want me to change that? | |
7389 | 4085 * |
4086 * See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=3190 | |
4087 * See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=8714 | |
7388 | 4088 */ |
4089 | |
4090 /* | |
4091 * This function was recommended by the STRFTIME(3) man page to remove the | |
7386 | 4092 * "last 2 digits" warning. |
4093 */ | |
4094 static size_t my_strftime(char *s, size_t max, const char *fmt, | |
4095 const struct tm *tm) | |
4096 { | |
4097 return strftime(s, max, fmt, tm); | |
4098 } | |
7388 | 4099 #endif |
7386 | 4100 |
4624 | 4101 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
|
4102 { |
5575 | 4103 GaimConnection *gc = sess->aux_data; |
4819 | 4104 gchar *buf, *tmp, *utf8; |
4624 | 4105 gchar who[16]; |
6873 | 4106 GaimBuddy *buddy; |
4107 gchar *primary; | |
2742
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
4108 va_list ap; |
4151 | 4109 struct aim_icq_info *info; |
2742
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
4110 |
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
4111 va_start(ap, fr); |
4151 | 4112 info = va_arg(ap, struct aim_icq_info *); |
2742
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
4113 va_end(ap); |
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
4114 |
4664 | 4115 if (!info->uin) |
4116 return 0; | |
4117 | |
5556 | 4118 g_snprintf(who, sizeof(who), "%u", info->uin); |
6623 | 4119 buf = g_strdup_printf("<b>%s:</b> %s", _("UIN"), who); |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4120 if (info->nick && info->nick[0] && (utf8 = gaim_utf8_try_convert(info->nick))) { |
6623 | 4121 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Nick"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4819 | 4122 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4123 if (info->first && info->first[0] && (utf8 = gaim_utf8_try_convert(info->first))) { |
6623 | 4124 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("First Name"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4819 | 4125 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4126 if (info->last && info->last[0] && (utf8 = gaim_utf8_try_convert(info->last))) { |
6623 | 4127 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Last Name"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4819 | 4128 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4129 if (info->email && info->email[0] && (utf8 = gaim_utf8_try_convert(info->email))) { |
6623 | 4130 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 | 4131 } |
4132 if (info->numaddresses && info->email2) { | |
4133 int i; | |
4134 for (i = 0; i < info->numaddresses; i++) { | |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4135 if (info->email2[i] && info->email2[i][0] && (utf8 = gaim_utf8_try_convert(info->email2[i]))) { |
6623 | 4136 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 | 4137 } |
4625 | 4138 } |
4624 | 4139 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4140 if (info->mobile && info->mobile[0] && (utf8 = gaim_utf8_try_convert(info->mobile))) { |
6623 | 4141 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Mobile Phone"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4625 | 4142 } |
4143 if (info->gender) { | |
6623 | 4144 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Gender"), ":</b> ", info->gender==1 ? _("Female") : _("Male"), NULL); g_free(tmp); |
4151 | 4145 } |
4624 | 4146 if (info->birthyear || info->birthmonth || info->birthday) { |
4627 | 4147 char date[30]; |
4148 struct tm tm; | |
4149 tm.tm_mday = (int)info->birthday; | |
4150 tm.tm_mon = (int)info->birthmonth-1; | |
4151 tm.tm_year = (int)info->birthyear-1900; | |
7388 | 4152 strftime(date, sizeof(date), "%x", &tm); |
6623 | 4153 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Birthday"), ":</b> ", date, NULL); g_free(tmp); |
4151 | 4154 } |
4624 | 4155 if (info->age) { |
4156 char age[5]; | |
4157 snprintf(age, sizeof(age), "%hhd", info->age); | |
6623 | 4158 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Age"), ":</b> ", age, NULL); g_free(tmp); |
4819 | 4159 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4160 if (info->personalwebpage && info->personalwebpage[0] && (utf8 = gaim_utf8_try_convert(info->personalwebpage))) { |
6623 | 4161 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 | 4162 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4163 if (info->info && info->info[0] && (utf8 = gaim_utf8_try_convert(info->info))) { |
6623 | 4164 tmp = buf; buf = g_strconcat(tmp, "<hr><b>", _("Additional Information"), ":</b><br>", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 4165 } |
4166 tmp = buf; buf = g_strconcat(tmp, "<hr>\n", NULL); g_free(tmp); | |
4641 | 4167 if ((info->homeaddr && (info->homeaddr[0])) || (info->homecity && info->homecity[0]) || (info->homestate && info->homestate[0]) || (info->homezip && info->homezip[0])) { |
6623 | 4168 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
|
4169 if (info->homeaddr && info->homeaddr[0] && (utf8 = gaim_utf8_try_convert(info->homeaddr))) { |
6623 | 4170 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Address"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 4171 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4172 if (info->homecity && info->homecity[0] && (utf8 = gaim_utf8_try_convert(info->homecity))) { |
6623 | 4173 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("City"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 4174 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4175 if (info->homestate && info->homestate[0] && (utf8 = gaim_utf8_try_convert(info->homestate))) { |
6623 | 4176 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("State"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 4177 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4178 if (info->homezip && info->homezip[0] && (utf8 = gaim_utf8_try_convert(info->homezip))) { |
6623 | 4179 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Zip Code"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 4180 } |
4181 tmp = buf; buf = g_strconcat(tmp, "\n<hr>\n", NULL); g_free(tmp); | |
4151 | 4182 } |
4641 | 4183 if ((info->workaddr && info->workaddr[0]) || (info->workcity && info->workcity[0]) || (info->workstate && info->workstate[0]) || (info->workzip && info->workzip[0])) { |
6623 | 4184 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
|
4185 if (info->workaddr && info->workaddr[0] && (utf8 = gaim_utf8_try_convert(info->workaddr))) { |
6623 | 4186 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Address"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 4187 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4188 if (info->workcity && info->workcity[0] && (utf8 = gaim_utf8_try_convert(info->workcity))) { |
6623 | 4189 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("City"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 4190 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4191 if (info->workstate && info->workstate[0] && (utf8 = gaim_utf8_try_convert(info->workstate))) { |
6623 | 4192 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("State"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 4193 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4194 if (info->workzip && info->workzip[0] && (utf8 = gaim_utf8_try_convert(info->workzip))) { |
6623 | 4195 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Zip Code"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 4196 } |
4197 tmp = buf; buf = g_strconcat(tmp, "\n<hr>\n", NULL); g_free(tmp); | |
4198 } | |
4641 | 4199 if ((info->workcompany && info->workcompany[0]) || (info->workdivision && info->workdivision[0]) || (info->workposition && info->workposition[0]) || (info->workwebpage && info->workwebpage[0])) { |
6623 | 4200 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
|
4201 if (info->workcompany && info->workcompany[0] && (utf8 = gaim_utf8_try_convert(info->workcompany))) { |
6623 | 4202 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Company"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 4203 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4204 if (info->workdivision && info->workdivision[0] && (utf8 = gaim_utf8_try_convert(info->workdivision))) { |
6623 | 4205 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Division"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 4206 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4207 if (info->workposition && info->workposition[0] && (utf8 = gaim_utf8_try_convert(info->workposition))) { |
6623 | 4208 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Position"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 4209 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4210 if (info->workwebpage && info->workwebpage[0] && (utf8 = gaim_utf8_try_convert(info->workwebpage))) { |
6623 | 4211 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 | 4212 } |
4213 tmp = buf; buf = g_strconcat(tmp, "\n<hr>\n", NULL); g_free(tmp); | |
4151 | 4214 } |
4215 | |
6873 | 4216 buddy = gaim_find_buddy(gaim_connection_get_account(gc), who); |
4217 primary = g_strdup_printf(_("ICQ Info for %s"), gaim_get_buddy_alias(buddy)); | |
4218 gaim_notify_formatted(gc, NULL, primary, NULL, buf, NULL, NULL); | |
4219 g_free(primary); | |
4151 | 4220 g_free(buf); |
4221 | |
2742
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
4222 return 1; |
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
4223 } |
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
4224 |
4759 | 4225 static int gaim_icqalias(aim_session_t *sess, aim_frame_t *fr, ...) |
4226 { | |
5575 | 4227 GaimConnection *gc = sess->aux_data; |
4820 | 4228 gchar who[16], *utf8; |
6695 | 4229 GaimBuddy *b; |
4759 | 4230 va_list ap; |
4231 struct aim_icq_info *info; | |
4232 | |
4233 va_start(ap, fr); | |
4234 info = va_arg(ap, struct aim_icq_info *); | |
4235 va_end(ap); | |
4236 | |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4237 if (info->uin && info->nick && info->nick[0] && (utf8 = gaim_utf8_try_convert(info->nick))) { |
5556 | 4238 g_snprintf(who, sizeof(who), "%u", info->uin); |
4820 | 4239 serv_got_alias(gc, who, utf8); |
4759 | 4240 if ((b = gaim_find_buddy(gc->account, who))) { |
7693 | 4241 gaim_blist_node_set_string((GaimBlistNode*)b, "servernick", utf8); |
4759 | 4242 gaim_blist_save(); |
4243 } | |
4820 | 4244 g_free(utf8); |
4759 | 4245 } |
4246 | |
4247 return 1; | |
4248 } | |
4249 | |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4250 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
|
4251 { |
7032 | 4252 GaimConnection *gc = sess->aux_data; |
4253 gchar *text; | |
4254 va_list ap; | |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4255 char *msg, *url; |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4256 fu16_t wid, hei, delay; |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4257 |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4258 va_start(ap, fr); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4259 msg = va_arg(ap, char *); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4260 url = va_arg(ap, char *); |
4199 | 4261 wid = (fu16_t) va_arg(ap, int); |
4262 hei = (fu16_t) va_arg(ap, int); | |
4263 delay = (fu16_t) va_arg(ap, int); | |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4264 va_end(ap); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4265 |
7032 | 4266 text = g_strdup_printf("%s<br><a href=\"%s\">%s</a>", msg, url, url); |
4267 gaim_notify_formatted(gc, NULL, _("Pop-Up Message"), NULL, text, NULL, NULL); | |
4268 g_free(text); | |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4269 |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4270 return 1; |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4271 } |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4272 |
7032 | 4273 static int gaim_parse_searchreply(aim_session_t *sess, aim_frame_t *fr, ...) |
4274 { | |
6873 | 4275 GaimConnection *gc = sess->aux_data; |
4276 gchar *secondary; | |
4277 GString *text; | |
4278 int i, num; | |
2086 | 4279 va_list ap; |
6873 | 4280 char *email, *SNs; |
2086 | 4281 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4282 va_start(ap, fr); |
6873 | 4283 email = va_arg(ap, char *); |
2086 | 4284 num = va_arg(ap, int); |
4285 SNs = va_arg(ap, char *); | |
4286 va_end(ap); | |
4287 | |
8152 | 4288 secondary = g_strdup_printf(_("The following screen names are associated with %s"), email); |
6873 | 4289 text = g_string_new(""); |
2086 | 4290 for (i = 0; i < num; i++) |
6873 | 4291 g_string_append_printf(text, "%s<br>", &SNs[i * (MAXSNLEN + 1)]); |
4292 gaim_notify_formatted(gc, NULL, _("Search Results"), secondary, text->str, NULL, NULL); | |
4293 | |
4294 g_free(secondary); | |
4295 g_string_free(text, TRUE); | |
2086 | 4296 |
4297 return 1; | |
4298 } | |
4299 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4300 static int gaim_parse_searcherror(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 4301 va_list ap; |
6873 | 4302 char *email; |
5420 | 4303 char *buf; |
2086 | 4304 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4305 va_start(ap, fr); |
6873 | 4306 email = va_arg(ap, char *); |
2086 | 4307 va_end(ap); |
4308 | |
6873 | 4309 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
|
4310 gaim_notify_error(sess->aux_data, NULL, buf, NULL); |
5420 | 4311 g_free(buf); |
2086 | 4312 |
4313 return 1; | |
4314 } | |
4315 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4316 static int gaim_account_confirm(aim_session_t *sess, aim_frame_t *fr, ...) { |
6873 | 4317 GaimConnection *gc = sess->aux_data; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4318 fu16_t status; |
2086 | 4319 va_list ap; |
4320 char msg[256]; | |
4321 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4322 va_start(ap, fr); |
4199 | 4323 status = (fu16_t) va_arg(ap, unsigned int); /* status code of confirmation request */ |
2086 | 4324 va_end(ap); |
4325 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4326 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4327 "account confirmation returned status 0x%04x (%s)\n", status, |
3912 | 4328 status ? "unknown" : "email sent"); |
4329 if (!status) { | |
5302 | 4330 g_snprintf(msg, sizeof(msg), _("You should receive an email asking to confirm %s."), |
5575 | 4331 gaim_account_get_username(gaim_connection_get_account(gc))); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4332 gaim_notify_info(gc, NULL, _("Account Confirmation Requested"), msg); |
2086 | 4333 } |
4334 | |
4335 return 1; | |
4336 } | |
4337 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4338 static int gaim_info_change(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 4339 GaimConnection *gc = sess->aux_data; |
2086 | 4340 va_list ap; |
3912 | 4341 fu16_t perms, err; |
4342 char *url, *sn, *email; | |
4343 int change; | |
2086 | 4344 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4345 va_start(ap, fr); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4346 change = va_arg(ap, int); |
4199 | 4347 perms = (fu16_t) va_arg(ap, unsigned int); |
4348 err = (fu16_t) va_arg(ap, unsigned int); | |
3912 | 4349 url = va_arg(ap, char *); |
4350 sn = va_arg(ap, char *); | |
4351 email = va_arg(ap, char *); | |
2086 | 4352 va_end(ap); |
4353 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4354 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4355 "account info: because of %s, perms=0x%04x, err=0x%04x, url=%s, sn=%s, email=%s\n", |
3912 | 4356 change ? "change" : "request", perms, err, url, sn, email); |
4357 | |
4358 if (err && url) { | |
4359 char *dialog_msg; | |
4360 char *dialog_top = g_strdup_printf(_("Error Changing Account Info")); | |
4361 switch (err) { | |
4362 case 0x0001: { | |
4363 dialog_msg = g_strdup_printf(_("Error 0x%04x: Unable to format screen name because the requested screen name differs from the original."), err); | |
4364 } break; | |
4365 case 0x0006: { | |
4366 dialog_msg = g_strdup_printf(_("Error 0x%04x: Unable to format screen name because the requested screen name ends in a space."), err); | |
4367 } break; | |
4368 case 0x000b: { | |
4369 dialog_msg = g_strdup_printf(_("Error 0x%04x: Unable to format screen name because the requested screen name is too long."), err); | |
4370 } break; | |
4371 case 0x001d: { | |
4372 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); | |
4373 } break; | |
4374 case 0x0021: { | |
4375 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); | |
4376 } break; | |
4377 case 0x0023: { | |
4378 dialog_msg = g_strdup_printf(_("Error 0x%04x: Unable to change email address because the given address is invalid."), err); | |
4379 } break; | |
4380 default: { | |
4381 dialog_msg = g_strdup_printf(_("Error 0x%04x: Unknown error."), err); | |
4382 } break; | |
4383 } | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4384 gaim_notify_error(gc, NULL, dialog_top, dialog_msg); |
3912 | 4385 g_free(dialog_top); |
4386 g_free(dialog_msg); | |
4387 return 1; | |
4388 } | |
4389 | |
4390 if (sn) { | |
4585 | 4391 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
|
4392 gaim_notify_info(gc, NULL, _("Account Info"), dialog_msg); |
3912 | 4393 g_free(dialog_msg); |
4394 } | |
4395 | |
4396 if (email) { | |
5575 | 4397 char *dialog_msg = g_strdup_printf(_("The email address for %s is %s"), |
4398 gaim_account_get_username(gaim_connection_get_account(gc)), email); | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4399 gaim_notify_info(gc, NULL, _("Account Info"), dialog_msg); |
3912 | 4400 g_free(dialog_msg); |
2086 | 4401 } |
4402 | |
4403 return 1; | |
4404 } | |
4405 | |
5575 | 4406 static void oscar_keepalive(GaimConnection *gc) { |
7283 | 4407 OscarData *od = (OscarData *)gc->proto_data; |
4617 | 4408 aim_flap_nop(od->sess, od->conn); |
2086 | 4409 } |
4410 | |
6059 | 4411 static int oscar_send_typing(GaimConnection *gc, const char *name, int typing) { |
7283 | 4412 OscarData *od = (OscarData *)gc->proto_data; |
4617 | 4413 struct direct_im *dim = find_direct_im(od, name); |
3595 | 4414 if (dim) |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
4415 if (typing == GAIM_TYPING) |
4870 | 4416 aim_odc_send_typing(od->sess, dim->conn, 0x0002); |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
4417 else if (typing == GAIM_TYPED) |
4870 | 4418 aim_odc_send_typing(od->sess, dim->conn, 0x0001); |
4419 else | |
4420 aim_odc_send_typing(od->sess, dim->conn, 0x0000); | |
3595 | 4421 else { |
5300 | 4422 /* Don't send if this turkey is in our deny list */ |
4423 GSList *list; | |
4424 for (list=gc->account->deny; (list && aim_sncmp(name, list->data)); list=list->next); | |
4425 if (!list) { | |
7261 | 4426 struct buddyinfo *bi = g_hash_table_lookup(od->buddyinfo, gaim_normalize(gc->account, name)); |
5300 | 4427 if (bi && bi->typingnot) { |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
4428 if (typing == GAIM_TYPING) |
5300 | 4429 aim_im_sendmtn(od->sess, 0x0001, name, 0x0002); |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
4430 else if (typing == GAIM_TYPED) |
5300 | 4431 aim_im_sendmtn(od->sess, 0x0001, name, 0x0001); |
4432 else | |
4433 aim_im_sendmtn(od->sess, 0x0001, name, 0x0000); | |
4434 } | |
3595 | 4435 } |
4436 } | |
2993 | 4437 return 0; |
4438 } | |
5575 | 4439 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
|
4440 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
|
4441 |
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
4442 static int oscar_send_im(GaimConnection *gc, const char *name, const char *message, GaimConvImFlags imflags) { |
7283 | 4443 OscarData *od = (OscarData *)gc->proto_data; |
4617 | 4444 struct direct_im *dim = find_direct_im(od, name); |
2303
f5bf315e6104
[gaim-migrate @ 2313]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2297
diff
changeset
|
4445 int ret = 0; |
3659 | 4446 GError *err = NULL; |
5575 | 4447 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
|
4448 char *tmpmsg = NULL; |
3458 | 4449 |
4838 | 4450 if (dim && dim->connected) { |
4451 /* If we're directly connected, send a direct IM */ | |
6982 | 4452 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
|
4453 } else if (imflags & GAIM_CONV_IM_IMAGES) { |
3044 | 4454 /* Trying to send an IM image outside of a direct connection. */ |
4455 oscar_ask_direct_im(gc, name); | |
4838 | 4456 ret = -ENOTCONN; |
2086 | 4457 } else { |
4738 | 4458 struct buddyinfo *bi; |
3008 | 4459 struct aim_sendimext_args args; |
4460 struct stat st; | |
6478
338147ea6896
[gaim-migrate @ 6991]
Christian Hammond <chipx86@chipx86.com>
parents:
6465
diff
changeset
|
4461 gsize len; |
4269 | 4462 |
7261 | 4463 bi = g_hash_table_lookup(od->buddyinfo, gaim_normalize(gc->account, name)); |
4738 | 4464 if (!bi) { |
4465 bi = g_new0(struct buddyinfo, 1); | |
7261 | 4466 g_hash_table_insert(od->buddyinfo, g_strdup(gaim_normalize(gc->account, name)), bi); |
4738 | 4467 } |
4468 | |
3008 | 4469 args.flags = AIM_IMFLAGS_ACK | AIM_IMFLAGS_CUSTOMFEATURES; |
4665 | 4470 if (od->icq) { |
4471 args.features = features_icq; | |
4472 args.featureslen = sizeof(features_icq); | |
3008 | 4473 args.flags |= AIM_IMFLAGS_OFFLINE; |
4665 | 4474 } else { |
4475 args.features = features_aim; | |
4476 args.featureslen = sizeof(features_aim); | |
4972 | 4477 |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
4478 if (imflags & GAIM_CONV_IM_AUTO_RESP) |
4972 | 4479 args.flags |= AIM_IMFLAGS_AWAY; |
4665 | 4480 } |
4269 | 4481 |
4738 | 4482 if (bi->ico_need) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4483 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4484 "Sending buddy icon request with message\n"); |
3008 | 4485 args.flags |= AIM_IMFLAGS_BUDDYREQ; |
4738 | 4486 bi->ico_need = FALSE; |
3008 | 4487 } |
4269 | 4488 |
5575 | 4489 if (iconfile && !stat(iconfile, &st)) { |
8361 | 4490 FILE *file = fopen(iconfile, "rb"); |
3008 | 4491 if (file) { |
4492 char *buf = g_malloc(st.st_size); | |
4493 fread(buf, 1, st.st_size, file); | |
6039 | 4494 fclose(file); |
4269 | 4495 |
3008 | 4496 args.iconlen = st.st_size; |
4617 | 4497 args.iconsum = aimutil_iconsum(buf, st.st_size); |
3008 | 4498 args.iconstamp = st.st_mtime; |
4499 | |
7406 | 4500 if ((args.iconlen != bi->ico_me_len) || (args.iconsum != bi->ico_me_csum) || (args.iconstamp != bi->ico_me_time)) { |
4738 | 4501 bi->ico_informed = FALSE; |
7406 | 4502 bi->ico_sent = FALSE; |
4503 } | |
4738 | 4504 |
4505 if (!bi->ico_informed) { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4506 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4507 "Claiming to have a buddy icon\n"); |
4738 | 4508 args.flags |= AIM_IMFLAGS_HASICON; |
4509 bi->ico_me_len = args.iconlen; | |
4510 bi->ico_me_csum = args.iconsum; | |
4511 bi->ico_me_time = args.iconstamp; | |
4512 bi->ico_informed = TRUE; | |
4513 } | |
4514 | |
3008 | 4515 g_free(buf); |
2086 | 4516 } |
4517 } | |
4269 | 4518 |
3008 | 4519 args.destsn = name; |
4269 | 4520 |
6310 | 4521 /* For ICQ send newlines as CR/LF, for AIM send newlines as <BR> */ |
4522 if (isdigit(name[0])) | |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4523 tmpmsg = gaim_str_add_cr(message); |
6310 | 4524 else |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4525 tmpmsg = gaim_strdup_withhtml(message); |
6310 | 4526 len = strlen(tmpmsg); |
4527 | |
4528 args.flags |= oscar_encoding_check(tmpmsg); | |
3642 | 4529 if (args.flags & AIM_IMFLAGS_UNICODE) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4530 gaim_debug(GAIM_DEBUG_INFO, "oscar", "Sending Unicode IM\n"); |
4662 | 4531 args.charset = 0x0002; |
4665 | 4532 args.charsubset = 0x0000; |
6310 | 4533 args.msg = g_convert(tmpmsg, len, "UCS-2BE", "UTF-8", NULL, &len, &err); |
3659 | 4534 if (err) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4535 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4536 "Error converting a unicode message: %s\n", err->message); |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4537 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4538 "This really shouldn't happen!\n"); |
3659 | 4539 /* We really shouldn't try to send the |
4540 * IM now, but I'm not sure what to do */ | |
4800 | 4541 g_error_free(err); |
3659 | 4542 } |
3850 | 4543 } else if (args.flags & AIM_IMFLAGS_ISO_8859_1) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4544 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4545 "Sending ISO-8859-1 IM\n"); |
4662 | 4546 args.charset = 0x0003; |
4665 | 4547 args.charsubset = 0x0000; |
6310 | 4548 args.msg = g_convert(tmpmsg, len, "ISO-8859-1", "UTF-8", NULL, &len, &err); |
3659 | 4549 if (err) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4550 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4551 "conversion error: %s\n", err->message); |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4552 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4553 "Someone tell Ethan his 8859-1 detection is wrong\n"); |
3642 | 4554 args.flags ^= AIM_IMFLAGS_ISO_8859_1 | AIM_IMFLAGS_UNICODE; |
6310 | 4555 len = strlen(tmpmsg); |
4800 | 4556 g_error_free(err); |
6310 | 4557 args.msg = g_convert(tmpmsg, len, "UCS-2BE", "UTF8", NULL, &len, &err); |
3659 | 4558 if (err) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4559 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4560 "Error in unicode fallback: %s\n", err->message); |
4800 | 4561 g_error_free(err); |
3659 | 4562 } |
3642 | 4563 } |
4564 } else { | |
4662 | 4565 args.charset = 0x0000; |
4566 args.charsubset = 0x0000; | |
6310 | 4567 args.msg = tmpmsg; |
3642 | 4568 } |
4569 args.msglen = len; | |
4269 | 4570 |
4617 | 4571 ret = aim_im_sendch1_ext(od->sess, &args); |
2086 | 4572 } |
4838 | 4573 |
6310 | 4574 g_free(tmpmsg); |
4575 | |
2303
f5bf315e6104
[gaim-migrate @ 2313]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2297
diff
changeset
|
4576 if (ret >= 0) |
f5bf315e6104
[gaim-migrate @ 2313]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2297
diff
changeset
|
4577 return 1; |
6310 | 4578 |
2303
f5bf315e6104
[gaim-migrate @ 2313]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2297
diff
changeset
|
4579 return ret; |
2086 | 4580 } |
4581 | |
7011 | 4582 static void oscar_get_info(GaimConnection *gc, const char *name) { |
7283 | 4583 OscarData *od = (OscarData *)gc->proto_data; |
7011 | 4584 |
7173 | 4585 if (od->icq && isdigit(name[0])) |
4624 | 4586 aim_icq_getallinfo(od->sess, name); |
2742
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
4587 else |
7235 | 4588 aim_locate_getinfoshort(od->sess, name, 0x00000003); |
7011 | 4589 } |
4590 | |
4591 static void oscar_get_away(GaimConnection *gc, const char *who) { | |
7283 | 4592 OscarData *od = (OscarData *)gc->proto_data; |
4617 | 4593 if (od->icq) { |
7011 | 4594 GaimBuddy *budlight = gaim_find_buddy(gc->account, who); |
3212 | 4595 if (budlight) |
3595 | 4596 if ((budlight->uc & 0xffff0000) >> 16) |
4687 | 4597 aim_im_sendch2_geticqaway(od->sess, who, (budlight->uc & 0xffff0000) >> 16); |
3212 | 4598 else |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4599 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4600 "Error: The user %s has no status message, therefore not requesting.\n", who); |
3212 | 4601 else |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4602 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
7023 | 4603 "Error: Could not find %s in local buddy list, therefore unable to request status message.\n", who); |
3212 | 4604 } else |
7011 | 4605 aim_locate_getinfoshort(od->sess, who, 0x00000002); |
4606 } | |
4607 | |
4608 static void oscar_set_dir(GaimConnection *gc, const char *first, const char *middle, const char *last, | |
3466 | 4609 const char *maiden, const char *city, const char *state, const char *country, int web) { |
4617 | 4610 /* XXX - some of these things are wrong, but i'm lazy */ |
7283 | 4611 OscarData *od = (OscarData *)gc->proto_data; |
7011 | 4612 aim_locate_setdirinfo(od->sess, first, middle, last, |
2086 | 4613 maiden, NULL, NULL, city, state, NULL, 0, web); |
4614 } | |
4615 | |
5575 | 4616 static void oscar_set_idle(GaimConnection *gc, int time) { |
7283 | 4617 OscarData *od = (OscarData *)gc->proto_data; |
7474 | 4618 aim_srv_setidle(od->sess, time); |
2086 | 4619 } |
4620 | |
5954 | 4621 static void oscar_set_info(GaimConnection *gc, const char *text) { |
7283 | 4622 OscarData *od = (OscarData *)gc->proto_data; |
5129 | 4623 fu32_t flags = 0; |
6019 | 4624 char *text_html = NULL; |
5129 | 4625 char *msg = NULL; |
6478
338147ea6896
[gaim-migrate @ 6991]
Christian Hammond <chipx86@chipx86.com>
parents:
6465
diff
changeset
|
4626 gsize msglen = 0; |
2993 | 4627 |
4617 | 4628 if (od->rights.maxsiglen == 0) |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4629 gaim_notify_warning(gc, NULL, _("Unable to set AIM profile."), |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4630 _("You have probably requested to set your " |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4631 "profile before the login procedure completed. " |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4632 "Your profile remains unset; try setting it " |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4633 "again when you are fully connected.")); |
4617 | 4634 |
7334 | 4635 if (!text) { |
4636 aim_locate_setprofile(od->sess, NULL, "", 0, NULL, NULL, 0); | |
4637 return; | |
4638 } | |
6019 | 4639 |
7334 | 4640 text_html = gaim_strdup_withhtml(text); |
4641 flags = oscar_encoding_check(text_html); | |
4642 if (flags & AIM_IMFLAGS_UNICODE) { | |
4643 msg = g_convert(text_html, strlen(text_html), "UCS-2BE", "UTF-8", NULL, &msglen, NULL); | |
4644 aim_locate_setprofile(od->sess, "unicode-2-0", msg, (msglen > od->rights.maxsiglen ? od->rights.maxsiglen : msglen), NULL, NULL, 0); | |
4645 g_free(msg); | |
4646 } else if (flags & AIM_IMFLAGS_ISO_8859_1) { | |
4647 msg = g_convert(text_html, strlen(text_html), "ISO-8859-1", "UTF-8", NULL, &msglen, NULL); | |
4648 aim_locate_setprofile(od->sess, "iso-8859-1", msg, (msglen > od->rights.maxsiglen ? od->rights.maxsiglen : msglen), NULL, NULL, 0); | |
4649 g_free(msg); | |
4650 } else { | |
4651 msglen = strlen(text_html); | |
4652 aim_locate_setprofile(od->sess, "us-ascii", text_html, (msglen > od->rights.maxsiglen ? od->rights.maxsiglen : msglen), NULL, NULL, 0); | |
4653 } | |
4654 | |
4655 if (msglen > od->rights.maxsiglen) { | |
4656 gchar *errstr; | |
4657 errstr = g_strdup_printf(ngettext("The maximum profile length of %d byte " | |
4658 "has been exceeded. Gaim has truncated it for you.", | |
4659 "The maximum profile length of %d bytes " | |
4660 "has been exceeded. Gaim has truncated it for you.", | |
4661 od->rights.maxsiglen), od->rights.maxsiglen); | |
4662 gaim_notify_warning(gc, NULL, _("Profile too long."), errstr); | |
4663 g_free(errstr); | |
4664 } | |
4665 | |
4666 g_free(text_html); | |
2993 | 4667 |
4668 return; | |
2086 | 4669 } |
4670 | |
8257 | 4671 static void oscar_set_away_aim(GaimConnection *gc, OscarData *od, const char *state, const char *text) |
2993 | 4672 { |
5129 | 4673 fu32_t flags = 0; |
6019 | 4674 gchar *text_html = NULL; |
5129 | 4675 char *msg = NULL; |
6478
338147ea6896
[gaim-migrate @ 6991]
Christian Hammond <chipx86@chipx86.com>
parents:
6465
diff
changeset
|
4676 gsize msglen = 0; |
2993 | 4677 |
8257 | 4678 if (!strcmp(state, _("Visible"))) { |
4679 aim_setextstatus(od->sess, AIM_ICQ_STATE_NORMAL); | |
4680 return; | |
4681 } else if (!strcmp(state, _("Invisible"))) { | |
4682 aim_setextstatus(od->sess, AIM_ICQ_STATE_INVISIBLE); | |
4683 return; | |
4684 } /* else... */ | |
4685 | |
8476 | 4686 if (!strcmp(state, _("Back"))) { |
4687 /* If this is our only online account then globally set Gaim not-away */ | |
4688 GList *gcs = gaim_connections_get_all(); | |
4689 if (gcs->next == NULL) | |
4690 do_im_back(NULL, NULL); | |
4691 } | |
4692 | |
8257 | 4693 aim_setextstatus(od->sess, AIM_ICQ_STATE_NORMAL); |
4694 | |
2993 | 4695 if (od->rights.maxawaymsglen == 0) |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4696 gaim_notify_warning(gc, NULL, _("Unable to set AIM away message."), |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4697 _("You have probably requested to set your " |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4698 "away message before the login procedure " |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4699 "completed. You remain in a \"present\" " |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4700 "state; try setting it again when you are " |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4701 "fully connected.")); |
5129 | 4702 |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4703 if (gc->away) { |
2993 | 4704 g_free(gc->away); |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4705 gc->away = NULL; |
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4706 } |
2993 | 4707 |
5129 | 4708 if (!text) { |
7334 | 4709 aim_locate_setprofile(od->sess, NULL, NULL, 0, NULL, "", 0); |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
4710 return; |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
4711 } |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
4712 |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4713 text_html = gaim_strdup_withhtml(text); |
6019 | 4714 flags = oscar_encoding_check(text_html); |
5129 | 4715 if (flags & AIM_IMFLAGS_UNICODE) { |
6019 | 4716 msg = g_convert(text_html, strlen(text_html), "UCS-2BE", "UTF-8", NULL, &msglen, NULL); |
7011 | 4717 aim_locate_setprofile(od->sess, NULL, NULL, 0, "unicode-2-0", msg, |
7334 | 4718 (msglen > od->rights.maxawaymsglen ? od->rights.maxawaymsglen : msglen)); |
5129 | 4719 g_free(msg); |
4720 gc->away = g_strndup(text, od->rights.maxawaymsglen/2); | |
4721 } else if (flags & AIM_IMFLAGS_ISO_8859_1) { | |
6019 | 4722 msg = g_convert(text_html, strlen(text_html), "ISO-8859-1", "UTF-8", NULL, &msglen, NULL); |
7011 | 4723 aim_locate_setprofile(od->sess, NULL, NULL, 0, "iso-8859-1", msg, |
7334 | 4724 (msglen > od->rights.maxawaymsglen ? od->rights.maxawaymsglen : msglen)); |
5129 | 4725 g_free(msg); |
6019 | 4726 gc->away = g_strndup(text_html, od->rights.maxawaymsglen); |
5129 | 4727 } else { |
6019 | 4728 msglen = strlen(text_html); |
7011 | 4729 aim_locate_setprofile(od->sess, NULL, NULL, 0, "us-ascii", text_html, |
7334 | 4730 (msglen > od->rights.maxawaymsglen ? od->rights.maxawaymsglen : msglen)); |
6019 | 4731 gc->away = g_strndup(text_html, od->rights.maxawaymsglen); |
5129 | 4732 } |
4733 | |
4734 if (msglen > od->rights.maxawaymsglen) { | |
2993 | 4735 gchar *errstr; |
4736 | |
6308 | 4737 errstr = g_strdup_printf(ngettext("The maximum away message length of %d byte " |
4738 "has been exceeded. Gaim has truncated it for you.", | |
4739 "The maximum away message length of %d bytes " | |
4740 "has been exceeded. Gaim has truncated it for you.", | |
4741 od->rights.maxawaymsglen), od->rights.maxawaymsglen); | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4742 gaim_notify_warning(gc, NULL, _("Away message too long."), errstr); |
2993 | 4743 g_free(errstr); |
4744 } | |
6019 | 4745 |
4746 g_free(text_html); | |
8257 | 4747 |
2993 | 4748 return; |
4749 } | |
4750 | |
7283 | 4751 static void oscar_set_away_icq(GaimConnection *gc, OscarData *od, const char *state, const char *message) |
2993 | 4752 { |
5575 | 4753 GaimAccount *account = gaim_connection_get_account(gc); |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4754 if (gc->away) { |
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4755 g_free(gc->away); |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
4756 gc->away = NULL; |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4757 } |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
4758 |
8265 | 4759 if (strcmp(state, _("Invisible"))) |
5575 | 4760 account->perm_deny = 4; |
8265 | 4761 else |
5575 | 4762 account->perm_deny = 3; |
8265 | 4763 if ((od->sess->ssi.received_data) && (aim_ssi_getpermdeny(od->sess->ssi.local) != account->perm_deny)) |
4764 aim_ssi_setpermdeny(od->sess, account->perm_deny, 0xffffffff); | |
4342 | 4765 |
4766 if (!strcmp(state, _("Online"))) | |
4901 | 4767 aim_setextstatus(od->sess, AIM_ICQ_STATE_NORMAL); |
4342 | 4768 else if (!strcmp(state, _("Away"))) { |
4901 | 4769 aim_setextstatus(od->sess, AIM_ICQ_STATE_AWAY); |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4770 gc->away = g_strdup(""); |
4342 | 4771 } else if (!strcmp(state, _("Do Not Disturb"))) { |
4901 | 4772 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
|
4773 gc->away = g_strdup(""); |
4342 | 4774 } else if (!strcmp(state, _("Not Available"))) { |
4901 | 4775 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
|
4776 gc->away = g_strdup(""); |
4342 | 4777 } else if (!strcmp(state, _("Occupied"))) { |
4901 | 4778 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
|
4779 gc->away = g_strdup(""); |
4342 | 4780 } else if (!strcmp(state, _("Free For Chat"))) { |
4901 | 4781 aim_setextstatus(od->sess, AIM_ICQ_STATE_CHAT); |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4782 gc->away = g_strdup(""); |
4342 | 4783 } else if (!strcmp(state, _("Invisible"))) { |
4901 | 4784 aim_setextstatus(od->sess, AIM_ICQ_STATE_INVISIBLE); |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4785 gc->away = g_strdup(""); |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
4786 } else if (!strcmp(state, GAIM_AWAY_CUSTOM)) { |
2998 | 4787 if (message) { |
4901 | 4788 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
|
4789 gc->away = g_strdup(""); |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
4790 } else { |
4901 | 4791 aim_setextstatus(od->sess, AIM_ICQ_STATE_NORMAL); |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
4792 } |
2086 | 4793 } |
2993 | 4794 |
4795 return; | |
4796 } | |
4797 | |
6059 | 4798 static void oscar_set_away(GaimConnection *gc, const char *state, const char *message) |
2993 | 4799 { |
7283 | 4800 OscarData *od = (OscarData *)gc->proto_data; |
2993 | 4801 |
4802 if (od->icq) | |
4803 oscar_set_away_icq(gc, od, state, message); | |
4804 else | |
8257 | 4805 oscar_set_away_aim(gc, od, state, message); |
2993 | 4806 |
4807 return; | |
2086 | 4808 } |
4809 | |
6059 | 4810 static void oscar_warn(GaimConnection *gc, const char *name, int anon) { |
7283 | 4811 OscarData *od = (OscarData *)gc->proto_data; |
4617 | 4812 aim_im_warn(od->sess, od->conn, name, anon ? AIM_WARN_ANON : 0); |
2086 | 4813 } |
4814 | |
5575 | 4815 static void oscar_dir_search(GaimConnection *gc, const char *first, const char *middle, const char *last, |
3466 | 4816 const char *maiden, const char *city, const char *state, const char *country, const char *email) { |
7283 | 4817 OscarData *od = (OscarData *)gc->proto_data; |
2086 | 4818 if (strlen(email)) |
6879 | 4819 aim_search_address(od->sess, od->conn, email); |
2086 | 4820 } |
4821 | |
6787
faa491042c66
[gaim-migrate @ 7326]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
4822 static void oscar_add_buddy(GaimConnection *gc, const char *name, GaimGroup *g) { |
7283 | 4823 OscarData *od = (OscarData *)gc->proto_data; |
8150 | 4824 GaimBuddy *b; |
4825 | |
4826 if (g == NULL) { | |
4827 /* If we were called from oscar_add_buddies... */ | |
4828 b = gaim_find_buddy(gaim_connection_get_account(gc), name); | |
4829 g = gaim_find_buddys_group(b); | |
4830 } else | |
4831 b = gaim_find_buddy_in_group(gaim_connection_get_account(gc), name, g); | |
8092 | 4832 |
4833 if (!aim_snvalid(name)) { | |
4834 gchar *buf; | |
8150 | 4835 buf = g_strdup_printf(_("Could not add the buddy %s because the screen name is invalid. Screen names must either start with a letter and contain only letters, numbers and spaces, or contain only numbers."), name); |
8092 | 4836 gaim_notify_error(gc, NULL, _("Unable To Add"), buf); |
4837 g_free(buf); | |
8150 | 4838 |
4839 /* Remove from local list */ | |
4840 gaim_blist_remove_buddy(b); | |
4841 | |
8092 | 4842 return; |
4843 } | |
4844 | |
4230 | 4845 #ifdef NOSSI |
8143 | 4846 aim_buddylist_addbuddy(od->sess, od->conn, name); |
4230 | 4847 #else |
4848 if ((od->sess->ssi.received_data) && !(aim_ssi_itemlist_exists(od->sess->ssi.local, name))) { | |
8150 | 4849 if (b && g) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4850 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
8150 | 4851 "ssi: adding buddy %s to group %s\n", name, g->name); |
4852 aim_ssi_addbuddy(od->sess, b->name, g->name, gaim_get_buddy_alias_only(b), NULL, NULL, 0); | |
4230 | 4853 } |
4854 } | |
4855 #endif | |
8150 | 4856 |
4759 | 4857 if (od->icq) |
4858 aim_icq_getalias(od->sess, name); | |
4230 | 4859 } |
4860 | |
5575 | 4861 static void oscar_add_buddies(GaimConnection *gc, GList *buddies) { |
7283 | 4862 OscarData *od = (OscarData *)gc->proto_data; |
4230 | 4863 #ifdef NOSSI |
4864 char buf[MSG_LEN]; | |
4865 int n=0; | |
4866 while (buddies) { | |
4867 if (n > MSG_LEN - 18) { | |
7285 | 4868 aim_buddylist_set(od->sess, od->conn, buf); |
4230 | 4869 n = 0; |
3092 | 4870 } |
8150 | 4871 n += g_snprintf(buf + n, sizeof(buf) - n, "%s&", (const char *)buddies->data); |
4230 | 4872 buddies = buddies->next; |
4873 } | |
7285 | 4874 aim_buddylist_set(od->sess, od->conn, buf); |
4230 | 4875 #else |
4876 if (od->sess->ssi.received_data) { | |
4877 while (buddies) { | |
8092 | 4878 oscar_add_buddy(gc, buddies->data, NULL); |
4230 | 4879 buddies = buddies->next; |
4880 } | |
4881 } | |
4882 #endif | |
4883 } | |
4884 | |
6059 | 4885 static void oscar_remove_buddy(GaimConnection *gc, const char *name, const char *group) { |
7283 | 4886 OscarData *od = (OscarData *)gc->proto_data; |
4230 | 4887 #ifdef NOSSI |
8143 | 4888 aim_buddylist_removebuddy(od->sess, od->conn, name); |
4230 | 4889 #else |
4890 if (od->sess->ssi.received_data) { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4891 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4892 "ssi: deleting buddy %s from group %s\n", name, group); |
4889 | 4893 aim_ssi_delbuddy(od->sess, name, group); |
4230 | 4894 } |
4895 #endif | |
4896 } | |
4897 | |
5575 | 4898 static void oscar_remove_buddies(GaimConnection *gc, GList *buddies, const char *group) { |
7283 | 4899 OscarData *od = (OscarData *)gc->proto_data; |
4230 | 4900 #ifdef NOSSI |
4901 GList *cur; | |
4902 for (cur=buddies; cur; cur=cur->next) | |
8143 | 4903 aim_buddylist_removebuddy(od->sess, od->conn, cur->data); |
4230 | 4904 #else |
4905 if (od->sess->ssi.received_data) { | |
3092 | 4906 while (buddies) { |
8150 | 4907 oscar_remove_buddy(gc, buddies->data, group); |
3092 | 4908 buddies = buddies->next; |
4909 } | |
4230 | 4910 } |
4911 #endif | |
4912 } | |
4913 | |
4914 #ifndef NOSSI | |
5575 | 4915 static void oscar_move_buddy(GaimConnection *gc, const char *name, const char *old_group, const char *new_group) { |
7283 | 4916 OscarData *od = (OscarData *)gc->proto_data; |
4303 | 4917 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
|
4918 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4919 "ssi: moving buddy %s from group %s to group %s\n", name, old_group, new_group); |
4889 | 4920 aim_ssi_movebuddy(od->sess, old_group, new_group, name); |
4269 | 4921 } |
4922 } | |
4923 | |
5575 | 4924 static void oscar_alias_buddy(GaimConnection *gc, const char *name, const char *alias) { |
7283 | 4925 OscarData *od = (OscarData *)gc->proto_data; |
4269 | 4926 if (od->sess->ssi.received_data) { |
4927 char *gname = aim_ssi_itemlist_findparentname(od->sess->ssi.local, name); | |
4928 if (gname) { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4929 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4930 "ssi: changing the alias for buddy %s to %s\n", name, alias); |
4889 | 4931 aim_ssi_aliasbuddy(od->sess, gname, name, alias); |
4269 | 4932 } |
4933 } | |
4934 } | |
4935 | |
8341 | 4936 static void oscar_rename_group(GaimConnection *gc, const char *old_group, const char *new_group, GList *members) { |
4937 OscarData *od = (OscarData *)gc->proto_data; | |
4230 | 4938 |
4939 if (od->sess->ssi.received_data) { | |
4940 if (aim_ssi_itemlist_finditem(od->sess->ssi.local, new_group, NULL, AIM_SSI_TYPE_GROUP)) { | |
8341 | 4941 oscar_remove_buddies(gc, members, old_group); |
4942 oscar_add_buddies(gc, members); | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4943 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4944 "ssi: moved all buddies from group %s to %s\n", old_group, new_group); |
4230 | 4945 } else { |
4889 | 4946 aim_ssi_rename_group(od->sess, old_group, new_group); |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4947 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4948 "ssi: renamed group %s to %s\n", old_group, new_group); |
2995 | 4949 } |
4950 } | |
4951 } | |
4952 | |
5968 | 4953 static gboolean gaim_ssi_rerequestdata(gpointer data) { |
4954 aim_session_t *sess = data; | |
6350 | 4955 aim_ssi_reqdata(sess); |
5968 | 4956 return FALSE; |
4957 } | |
4958 | |
4642 | 4959 static int gaim_ssi_parseerr(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 4960 GaimConnection *gc = sess->aux_data; |
7283 | 4961 OscarData *od = gc->proto_data; |
4642 | 4962 va_list ap; |
4963 fu16_t reason; | |
4964 | |
4965 va_start(ap, fr); | |
4966 reason = (fu16_t)va_arg(ap, unsigned int); | |
4967 va_end(ap); | |
4968 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4969 gaim_debug(GAIM_DEBUG_ERROR, "oscar", "ssi: SNAC error %hu\n", reason); |
4642 | 4970 |
4971 if (reason == 0x0005) { | |
5892 | 4972 gaim_notify_error(gc, NULL, _("Unable To Retrieve Buddy List"), |
5828 | 4973 _("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.")); |
8273
f24172f53650
[gaim-migrate @ 8997]
Christian Hammond <chipx86@chipx86.com>
parents:
8266
diff
changeset
|
4974 od->getblisttimer = gaim_timeout_add(300000, gaim_ssi_rerequestdata, od->sess); |
4642 | 4975 } |
4976 | |
4977 /* Activate SSI */ | |
4978 /* Sending the enable causes other people to be able to see you, and you to see them */ | |
4979 /* Make sure your privacy setting/invisibility is set how you want it before this! */ | |
5968 | 4980 gaim_debug(GAIM_DEBUG_INFO, "oscar", "ssi: activating server-stored buddy list\n"); |
4642 | 4981 aim_ssi_enable(od->sess); |
4982 | |
4983 return 1; | |
4984 } | |
4985 | |
2991 | 4986 static int gaim_ssi_parserights(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 4987 GaimConnection *gc = sess->aux_data; |
7283 | 4988 OscarData *od = (OscarData *)gc->proto_data; |
4230 | 4989 int numtypes, i; |
4990 fu16_t *maxitems; | |
2991 | 4991 va_list ap; |
4992 | |
4993 va_start(ap, fr); | |
4230 | 4994 numtypes = va_arg(ap, int); |
4995 maxitems = va_arg(ap, fu16_t *); | |
2991 | 4996 va_end(ap); |
4997 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4998 gaim_debug(GAIM_DEBUG_MISC, "oscar", "ssi rights:"); |
5211
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5208
diff
changeset
|
4999 |
4230 | 5000 for (i=0; i<numtypes; i++) |
5211
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5208
diff
changeset
|
5001 gaim_debug(GAIM_DEBUG_MISC, NULL, " max type 0x%04x=%hd,", |
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5208
diff
changeset
|
5002 i, maxitems[i]); |
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5208
diff
changeset
|
5003 |
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5208
diff
changeset
|
5004 gaim_debug(GAIM_DEBUG_MISC, NULL, "\n"); |
4230 | 5005 |
5006 if (numtypes >= 0) | |
5007 od->rights.maxbuddies = maxitems[0]; | |
5008 if (numtypes >= 1) | |
5009 od->rights.maxgroups = maxitems[1]; | |
5010 if (numtypes >= 2) | |
5011 od->rights.maxpermits = maxitems[2]; | |
5012 if (numtypes >= 3) | |
5013 od->rights.maxdenies = maxitems[3]; | |
2991 | 5014 |
5015 return 1; | |
5016 } | |
5017 | |
5018 static int gaim_ssi_parselist(aim_session_t *sess, aim_frame_t *fr, ...) { | |
5575 | 5019 GaimConnection *gc = sess->aux_data; |
5020 GaimAccount *account = gaim_connection_get_account(gc); | |
7283 | 5021 OscarData *od = (OscarData *)gc->proto_data; |
8150 | 5022 GaimGroup *g; |
5023 GaimBuddy *b; | |
2995 | 5024 struct aim_ssi_item *curitem; |
2991 | 5025 int tmp; |
4230 | 5026 va_list ap; |
8219 | 5027 fu16_t fmtver, numitems; |
5028 struct aim_ssi_item *items; | |
5029 fu32_t timestamp; | |
4230 | 5030 |
5031 va_start(ap, fr); | |
5032 fmtver = (fu16_t)va_arg(ap, int); | |
5033 numitems = (fu16_t)va_arg(ap, int); | |
8219 | 5034 items = va_arg(ap, struct aim_ssi_item *); |
4230 | 5035 timestamp = va_arg(ap, fu32_t); |
8219 | 5036 va_end(ap); |
2991 | 5037 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5038 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5039 "ssi: syncing local list and server list\n"); |
2991 | 5040 |
8219 | 5041 if ((timestamp == 0) || (numitems == 0)) { |
8430 | 5042 gaim_debug(GAIM_DEBUG_INFO, "oscar", "Got AIM SSI with a 0 timestamp or 0 numitems--not syncing. This probably means your buddy list is empty.", NULL); |
8219 | 5043 return 1; |
5044 } | |
5045 | |
2991 | 5046 /* Clean the buddy list */ |
4889 | 5047 aim_ssi_cleanlist(sess); |
2991 | 5048 |
8150 | 5049 { /* If not in server list then prune from local list */ |
5050 GaimBlistNode *gnode, *cnode, *bnode; | |
5051 GaimBuddyList *blist; | |
5052 GSList *cur; | |
5053 | |
5054 /* Buddies */ | |
5055 cur = NULL; | |
5056 if ((blist = gaim_get_blist()) != NULL) { | |
5057 for (gnode = blist->root; gnode; gnode = gnode->next) { | |
5058 if(!GAIM_BLIST_NODE_IS_GROUP(gnode)) | |
5059 continue; | |
5060 g = (GaimGroup *)gnode; | |
5061 for (cnode = gnode->child; cnode; cnode = cnode->next) { | |
5062 if(!GAIM_BLIST_NODE_IS_CONTACT(cnode)) | |
5063 continue; | |
5064 for (bnode = cnode->child; bnode; bnode = bnode->next) { | |
5065 if(!GAIM_BLIST_NODE_IS_BUDDY(bnode)) | |
5066 continue; | |
5067 b = (GaimBuddy *)bnode; | |
5068 if (b->account == gc->account) { | |
5069 if (aim_ssi_itemlist_exists(sess->ssi.local, b->name)) { | |
5070 /* If the buddy is an ICQ user then load his nickname */ | |
5071 const char *servernick = gaim_blist_node_get_string((GaimBlistNode*)b, "servernick"); | |
8214 | 5072 char *alias; |
8150 | 5073 if (servernick) |
5074 serv_got_alias(gc, b->name, servernick); | |
5075 | |
5076 /* Store local alias on server */ | |
8214 | 5077 alias = aim_ssi_getalias(sess->ssi.local, g->name, b->name); |
8150 | 5078 if (!alias && b->alias && strlen(b->alias)) |
5079 aim_ssi_aliasbuddy(sess, g->name, b->name, b->alias); | |
5080 free(alias); | |
5081 } else { | |
5082 gaim_debug(GAIM_DEBUG_INFO, "oscar", | |
5083 "ssi: removing buddy %s from local list\n", b->name); | |
5084 /* We can't actually remove now because it will screw up our looping */ | |
5085 cur = g_slist_prepend(cur, b); | |
5086 } | |
5087 } | |
5088 } | |
5089 } | |
5090 } | |
5091 } | |
8175 | 5092 |
8150 | 5093 while (cur != NULL) { |
5094 b = cur->data; | |
5095 cur = g_slist_remove(cur, b); | |
5096 gaim_blist_remove_buddy(b); | |
5097 } | |
5098 | |
5099 /* Permit list */ | |
5100 if (gc->account->permit) { | |
5101 for (cur=gc->account->permit; cur; cur=cur->next) | |
5102 if (!aim_ssi_itemlist_finditem(sess->ssi.local, NULL, cur->data, AIM_SSI_TYPE_PERMIT)) { | |
5103 gaim_debug(GAIM_DEBUG_INFO, "oscar", | |
5104 "ssi: removing permit %s from local list\n", (const char *)cur->data); | |
5105 gaim_privacy_permit_remove(account, cur->data, TRUE); | |
5106 cur = gc->account->permit; | |
5107 } | |
5108 } | |
5109 | |
5110 /* Deny list */ | |
5111 if (gc->account->deny) { | |
5112 for (cur=gc->account->deny; cur; cur=cur->next) | |
5113 if (!aim_ssi_itemlist_finditem(sess->ssi.local, NULL, cur->data, AIM_SSI_TYPE_DENY)) { | |
5114 gaim_debug(GAIM_DEBUG_INFO, "oscar", | |
5115 "ssi: removing deny %s from local list\n", (const char *)cur->data); | |
5116 gaim_privacy_deny_remove(account, cur->data, TRUE); | |
5117 cur = gc->account->deny; | |
5118 } | |
5119 } | |
5120 /* Presence settings (idle time visibility) */ | |
5121 if ((tmp = aim_ssi_getpresence(sess->ssi.local)) != 0xFFFFFFFF) | |
5122 if (!(tmp & 0x400)) | |
5123 aim_ssi_setpresence(sess, tmp | 0x400); | |
5124 } /* end pruning buddies from local list */ | |
5125 | |
2991 | 5126 /* Add from server list to local list */ |
4230 | 5127 for (curitem=sess->ssi.local; curitem; curitem=curitem->next) { |
7328 | 5128 if ((curitem->name == NULL) || (g_utf8_validate(curitem->name, -1, NULL))) |
2991 | 5129 switch (curitem->type) { |
4230 | 5130 case 0x0000: { /* Buddy */ |
4251 | 5131 if (curitem->name) { |
4292 | 5132 char *gname = aim_ssi_itemlist_findparentname(sess->ssi.local, curitem->name); |
7166 | 5133 char *gname_utf8 = gname ? gaim_utf8_try_convert(gname) : NULL; |
4282 | 5134 char *alias = aim_ssi_getalias(sess->ssi.local, gname, curitem->name); |
7166 | 5135 char *alias_utf8 = alias ? gaim_utf8_try_convert(alias) : NULL; |
8150 | 5136 b = gaim_find_buddy(gc->account, curitem->name); |
4458 | 5137 /* Should gname be freed here? -- elb */ |
4754 | 5138 /* Not with the current code, but that might be cleaner -- med */ |
4458 | 5139 free(alias); |
8150 | 5140 if (b) { |
4292 | 5141 /* Get server stored alias */ |
4705 | 5142 if (alias_utf8) { |
8150 | 5143 g_free(b->alias); |
5144 b->alias = g_strdup(alias_utf8); | |
4705 | 5145 } |
4282 | 5146 } else { |
8150 | 5147 b = gaim_buddy_new(gc->account, curitem->name, alias_utf8); |
5146 | 5148 |
4754 | 5149 if (!(g = gaim_find_group(gname_utf8 ? gname_utf8 : _("Orphans")))) { |
4687 | 5150 g = gaim_group_new(gname_utf8 ? gname_utf8 : _("Orphans")); |
4754 | 5151 gaim_blist_add_group(g, NULL); |
5152 } | |
5146 | 5153 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5154 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
8150 | 5155 "ssi: adding b %s to group %s to local list\n", curitem->name, gname_utf8 ? gname_utf8 : _("Orphans")); |
5156 gaim_blist_add_buddy(b, NULL, g, NULL); | |
4251 | 5157 } |
8341 | 5158 if (!aim_sncmp(curitem->name, account->username)) { |
5159 char *comment = aim_ssi_getcomment(sess->ssi.local, gname, curitem->name); | |
5160 gaim_check_comment(od, comment); | |
5161 free(comment); | |
5162 } | |
7162 | 5163 g_free(gname_utf8); |
5164 g_free(alias_utf8); | |
2991 | 5165 } |
4230 | 5166 } break; |
5167 | |
5168 case 0x0001: { /* Group */ | |
4282 | 5169 /* Shouldn't add empty groups */ |
4230 | 5170 } break; |
5171 | |
5172 case 0x0002: { /* Permit buddy */ | |
2991 | 5173 if (curitem->name) { |
4230 | 5174 /* if (!find_permdeny_by_name(gc->permit, curitem->name)) { AAA */ |
2991 | 5175 GSList *list; |
5575 | 5176 for (list=account->permit; (list && aim_sncmp(curitem->name, list->data)); list=list->next); |
2991 | 5177 if (!list) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5178 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5179 "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
|
5180 gaim_privacy_permit_add(account, curitem->name, TRUE); |
2991 | 5181 } |
5182 } | |
4230 | 5183 } break; |
5184 | |
5185 case 0x0003: { /* Deny buddy */ | |
2991 | 5186 if (curitem->name) { |
5187 GSList *list; | |
5575 | 5188 for (list=account->deny; (list && aim_sncmp(curitem->name, list->data)); list=list->next); |
2991 | 5189 if (!list) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5190 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5191 "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
|
5192 gaim_privacy_deny_add(account, curitem->name, TRUE); |
2991 | 5193 } |
5194 } | |
4230 | 5195 } break; |
5196 | |
5197 case 0x0004: { /* Permit/deny setting */ | |
2991 | 5198 if (curitem->data) { |
5199 fu8_t permdeny; | |
5575 | 5200 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
|
5201 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
5575 | 5202 "ssi: changing permdeny from %d to %hhu\n", account->perm_deny, permdeny); |
5203 account->perm_deny = permdeny; | |
5204 if (od->icq && account->perm_deny == 0x03) { | |
4342 | 5205 serv_set_away(gc, "Invisible", ""); |
5206 } | |
2991 | 5207 } |
5208 } | |
4230 | 5209 } break; |
5210 | |
5211 case 0x0005: { /* Presence setting */ | |
3109 | 5212 /* We don't want to change Gaim's setting because it applies to all accounts */ |
4230 | 5213 } break; |
2991 | 5214 } /* End of switch on curitem->type */ |
5215 } /* End of for loop */ | |
4230 | 5216 |
4901 | 5217 /* Set our ICQ status */ |
8257 | 5218 if (!gc->away) { |
4901 | 5219 aim_setextstatus(sess, AIM_ICQ_STATE_NORMAL); |
5220 } | |
5221 | |
4342 | 5222 /* Activate SSI */ |
5223 /* Sending the enable causes other people to be able to see you, and you to see them */ | |
5224 /* 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
|
5225 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5226 "ssi: activating server-stored buddy list\n"); |
4642 | 5227 aim_ssi_enable(sess); |
4342 | 5228 |
2991 | 5229 return 1; |
2086 | 5230 } |
4230 | 5231 |
5232 static int gaim_ssi_parseack(aim_session_t *sess, aim_frame_t *fr, ...) { | |
5575 | 5233 GaimConnection *gc = sess->aux_data; |
4230 | 5234 va_list ap; |
5235 struct aim_ssi_tmp *retval; | |
5236 | |
5237 va_start(ap, fr); | |
5238 retval = va_arg(ap, struct aim_ssi_tmp *); | |
5239 va_end(ap); | |
5240 | |
5241 while (retval) { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5242 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5243 "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 | 5244 |
5245 if (retval->ack != 0xffff) | |
5246 switch (retval->ack) { | |
5247 case 0x0000: { /* added successfully */ | |
5248 } break; | |
5249 | |
4829 | 5250 case 0x000c: { /* you are over the limit, the cheat is to the limit, come on fhqwhgads */ |
5251 gchar *buf; | |
5252 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
|
5253 gaim_notify_error(gc, NULL, _("Unable To Add"), buf); |
4829 | 5254 g_free(buf); |
5255 } | |
5256 | |
7023 | 5257 case 0x000e: { /* buddy requires authorization */ |
4828 | 5258 if ((retval->action == AIM_CB_SSI_ADD) && (retval->name)) |
4269 | 5259 gaim_auth_sendrequest(gc, retval->name); |
4230 | 5260 } break; |
5261 | |
5262 default: { /* La la la */ | |
5197 | 5263 gchar *buf; |
5402 | 5264 gaim_debug(GAIM_DEBUG_ERROR, "oscar", "ssi: Action 0x%04hx was unsuccessful with error 0x%04hx\n", retval->action, retval->ack); |
5265 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
|
5266 gaim_notify_error(gc, NULL, _("Unable To Add"), buf); |
5197 | 5267 g_free(buf); |
4230 | 5268 } break; |
5269 } | |
5270 | |
5271 retval = retval->next; | |
5272 } | |
5273 | |
5274 return 1; | |
5275 } | |
5276 | |
8227 | 5277 static int gaim_ssi_parseadd(aim_session_t *sess, aim_frame_t *fr, ...) { |
5278 GaimConnection *gc = sess->aux_data; | |
5279 char *gname, *gname_utf8, *alias, *alias_utf8; | |
5280 GaimBuddy *b; | |
5281 GaimGroup *g; | |
5282 va_list ap; | |
5283 fu16_t type; | |
5284 const char *name; | |
5285 | |
5286 va_start(ap, fr); | |
5287 type = (fu16_t)va_arg(ap, int); | |
5288 name = va_arg(ap, char *); | |
5289 va_end(ap); | |
5290 | |
5291 if ((type != 0x0000) || (name == NULL)) | |
5292 return 1; | |
5293 | |
5294 gname = aim_ssi_itemlist_findparentname(sess->ssi.local, name); | |
5295 gname_utf8 = gname ? gaim_utf8_try_convert(gname) : NULL; | |
5296 alias = aim_ssi_getalias(sess->ssi.local, gname, name); | |
5297 alias_utf8 = alias ? gaim_utf8_try_convert(alias) : NULL; | |
5298 b = gaim_find_buddy(gc->account, name); | |
5299 free(alias); | |
5300 | |
5301 if (b) { | |
5302 /* Get server stored alias */ | |
5303 if (alias_utf8) { | |
5304 g_free(b->alias); | |
5305 b->alias = g_strdup(alias_utf8); | |
5306 } | |
5307 } else { | |
5308 b = gaim_buddy_new(gc->account, name, alias_utf8); | |
5309 | |
5310 if (!(g = gaim_find_group(gname_utf8 ? gname_utf8 : _("Orphans")))) { | |
5311 g = gaim_group_new(gname_utf8 ? gname_utf8 : _("Orphans")); | |
5312 gaim_blist_add_group(g, NULL); | |
5313 } | |
5314 | |
5315 gaim_debug(GAIM_DEBUG_INFO, "oscar", | |
5316 "ssi: adding b %s to group %s to local list\n", name, gname_utf8 ? gname_utf8 : _("Orphans")); | |
5317 gaim_blist_add_buddy(b, NULL, g, NULL); | |
5318 } | |
5319 g_free(gname_utf8); | |
5320 g_free(alias_utf8); | |
5321 | |
5322 return 1; | |
5323 } | |
5324 | |
4230 | 5325 static int gaim_ssi_authgiven(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 5326 GaimConnection *gc = sess->aux_data; |
4230 | 5327 va_list ap; |
5328 char *sn, *msg; | |
4236 | 5329 gchar *dialog_msg, *nombre; |
4230 | 5330 struct name_data *data; |
6695 | 5331 GaimBuddy *buddy; |
4230 | 5332 |
5333 va_start(ap, fr); | |
5334 sn = va_arg(ap, char *); | |
5335 msg = va_arg(ap, char *); | |
5336 va_end(ap); | |
5337 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5338 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5339 "ssi: %s has given you permission to add him to your buddy list\n", sn); |
4230 | 5340 |
4687 | 5341 buddy = gaim_find_buddy(gc->account, sn); |
5342 if (buddy && (gaim_get_buddy_alias_only(buddy))) | |
5343 nombre = g_strdup_printf("%s (%s)", sn, gaim_get_buddy_alias_only(buddy)); | |
4236 | 5344 else |
5345 nombre = g_strdup(sn); | |
5346 | |
5347 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 | 5348 data = g_new(struct name_data, 1); |
5349 data->gc = gc; | |
5350 data->name = g_strdup(sn); | |
5351 data->nick = NULL; | |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
5352 |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
5353 gaim_request_yes_no(gc, NULL, _("Authorization Given"), dialog_msg, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
5354 0, data, |
7023 | 5355 G_CALLBACK(gaim_icq_buddyadd), |
5836 | 5356 G_CALLBACK(oscar_free_name_data)); |
4236 | 5357 |
4230 | 5358 g_free(dialog_msg); |
4236 | 5359 g_free(nombre); |
4230 | 5360 |
5361 return 1; | |
5362 } | |
5363 | |
5364 static int gaim_ssi_authrequest(aim_session_t *sess, aim_frame_t *fr, ...) { | |
5575 | 5365 GaimConnection *gc = sess->aux_data; |
4230 | 5366 va_list ap; |
5367 char *sn, *msg; | |
4236 | 5368 gchar *dialog_msg, *nombre; |
4230 | 5369 struct name_data *data; |
6695 | 5370 GaimBuddy *buddy; |
4230 | 5371 |
5372 va_start(ap, fr); | |
5373 sn = va_arg(ap, char *); | |
5374 msg = va_arg(ap, char *); | |
5375 va_end(ap); | |
5376 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5377 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5378 "ssi: received authorization request from %s\n", sn); |
4230 | 5379 |
4687 | 5380 buddy = gaim_find_buddy(gc->account, sn); |
5381 if (buddy && (gaim_get_buddy_alias_only(buddy))) | |
5382 nombre = g_strdup_printf("%s (%s)", sn, gaim_get_buddy_alias_only(buddy)); | |
4236 | 5383 else |
5384 nombre = g_strdup(sn); | |
5385 | |
4337 | 5386 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 | 5387 data = g_new(struct name_data, 1); |
5388 data->gc = gc; | |
5389 data->name = g_strdup(sn); | |
5390 data->nick = NULL; | |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
5391 |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
5392 gaim_request_action(gc, NULL, _("Authorization Request"), dialog_msg, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
5393 0, data, 2, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
5394 _("Authorize"), G_CALLBACK(gaim_auth_grant), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
5395 _("Deny"), G_CALLBACK(gaim_auth_dontgrant_msgprompt)); |
4236 | 5396 |
4230 | 5397 g_free(dialog_msg); |
4236 | 5398 g_free(nombre); |
4230 | 5399 |
5400 return 1; | |
5401 } | |
5402 | |
5403 static int gaim_ssi_authreply(aim_session_t *sess, aim_frame_t *fr, ...) { | |
5575 | 5404 GaimConnection *gc = sess->aux_data; |
4230 | 5405 va_list ap; |
5406 char *sn, *msg; | |
4236 | 5407 gchar *dialog_msg, *nombre; |
4230 | 5408 fu8_t reply; |
6695 | 5409 GaimBuddy *buddy; |
4230 | 5410 |
5411 va_start(ap, fr); | |
5412 sn = va_arg(ap, char *); | |
5413 reply = (fu8_t)va_arg(ap, int); | |
5414 msg = va_arg(ap, char *); | |
5415 va_end(ap); | |
5416 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5417 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5418 "ssi: received authorization reply from %s. Reply is 0x%04hhx\n", sn, reply); |
4236 | 5419 |
4687 | 5420 buddy = gaim_find_buddy(gc->account, sn); |
5421 if (buddy && (gaim_get_buddy_alias_only(buddy))) | |
5422 nombre = g_strdup_printf("%s (%s)", sn, gaim_get_buddy_alias_only(buddy)); | |
4236 | 5423 else |
5424 nombre = g_strdup(sn); | |
5425 | |
4230 | 5426 if (reply) { |
5427 /* Granted */ | |
7023 | 5428 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
|
5429 gaim_notify_info(gc, NULL, _("Authorization Granted"), dialog_msg); |
4230 | 5430 } else { |
5431 /* Denied */ | |
7023 | 5432 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
|
5433 gaim_notify_info(gc, NULL, _("Authorization Denied"), dialog_msg); |
4230 | 5434 } |
5435 g_free(dialog_msg); | |
4236 | 5436 g_free(nombre); |
4230 | 5437 |
5438 return 1; | |
5439 } | |
5440 | |
5441 static int gaim_ssi_gotadded(aim_session_t *sess, aim_frame_t *fr, ...) { | |
5575 | 5442 GaimConnection *gc = sess->aux_data; |
4230 | 5443 va_list ap; |
5444 char *sn; | |
6695 | 5445 GaimBuddy *buddy; |
4230 | 5446 |
5447 va_start(ap, fr); | |
5448 sn = va_arg(ap, char *); | |
5449 va_end(ap); | |
5450 | |
4687 | 5451 buddy = gaim_find_buddy(gc->account, sn); |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5452 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5453 "ssi: %s added you to their buddy list\n", sn); |
7015
dece74f05509
[gaim-migrate @ 7578]
Christian Hammond <chipx86@chipx86.com>
parents:
7011
diff
changeset
|
5454 gaim_account_notify_added(gc->account, NULL, sn, (buddy ? gaim_get_buddy_alias_only(buddy) : NULL), NULL); |
4230 | 5455 |
5456 return 1; | |
5457 } | |
4269 | 5458 #endif |
2086 | 5459 |
5575 | 5460 static GList *oscar_chat_info(GaimConnection *gc) { |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5461 GList *m = NULL; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5462 struct proto_chat_entry *pce; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5463 |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5464 pce = g_new0(struct proto_chat_entry, 1); |
7841 | 5465 pce->label = _("_Group:"); |
5234 | 5466 pce->identifier = "room"; |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5467 m = g_list_append(m, pce); |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5468 |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5469 pce = g_new0(struct proto_chat_entry, 1); |
7841 | 5470 pce->label = _("_Exchange:"); |
5234 | 5471 pce->identifier = "exchange"; |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5472 pce->is_int = TRUE; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5473 pce->min = 4; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5474 pce->max = 20; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5475 m = g_list_append(m, pce); |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5476 |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5477 return m; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5478 } |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5479 |
8308 | 5480 static void oscar_join_chat(GaimConnection *gc, GHashTable *data) { |
5481 OscarData *od = (OscarData *)gc->proto_data; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5482 aim_conn_t *cur; |
5234 | 5483 char *name, *exchange; |
5484 | |
5485 name = g_hash_table_lookup(data, "room"); | |
5486 exchange = g_hash_table_lookup(data, "exchange"); | |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5487 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5488 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5489 "Attempting to join chat room %s.\n", name); |
8308 | 5490 |
5491 if ((name == NULL) || (*name == '\0')) { | |
5492 gaim_notify_error(gc, NULL, _("Invalid chat name specified."), NULL); | |
5493 return; | |
5494 } | |
5495 | |
4617 | 5496 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
|
5497 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5498 "chatnav exists, creating room\n"); |
5234 | 5499 aim_chatnav_createroom(od->sess, cur, name, atoi(exchange)); |
2086 | 5500 } else { |
5501 /* this gets tricky */ | |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
5502 struct create_room *cr = g_new0(struct create_room, 1); |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5503 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5504 "chatnav does not exist, opening chatnav\n"); |
5234 | 5505 cr->exchange = atoi(exchange); |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
5506 cr->name = g_strdup(name); |
4617 | 5507 od->create_rooms = g_slist_append(od->create_rooms, cr); |
5508 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_CHATNAV); | |
2086 | 5509 } |
5510 } | |
5511 | |
8308 | 5512 static void oscar_chat_invite(GaimConnection *gc, int id, const char *message, const char *name) { |
5513 OscarData *od = (OscarData *)gc->proto_data; | |
5514 struct chat_connection *ccon = find_oscar_chat(gc, id); | |
2086 | 5515 |
5516 if (!ccon) | |
5517 return; | |
5518 | |
8225 | 5519 aim_im_sendch2_chatinvite(od->sess, name, message ? message : "", |
2086 | 5520 ccon->exchange, ccon->name, 0x0); |
5521 } | |
5522 | |
8308 | 5523 static void oscar_chat_leave(GaimConnection *gc, int id) { |
5524 OscarData *od = gc ? (OscarData *)gc->proto_data : NULL; | |
5525 GSList *bcs = gc->buddy_chats; | |
5679 | 5526 GaimConversation *b = NULL; |
2086 | 5527 struct chat_connection *c = NULL; |
5528 int count = 0; | |
5529 | |
5530 while (bcs) { | |
5531 count++; | |
5679 | 5532 b = (GaimConversation *)bcs->data; |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
5533 if (id == gaim_conv_chat_get_id(GAIM_CONV_CHAT(b))) |
2086 | 5534 break; |
5535 bcs = bcs->next; | |
5536 b = NULL; | |
5537 } | |
5538 | |
5539 if (!b) | |
5540 return; | |
5541 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5542 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5543 "Attempting to leave room %s (currently in %d rooms)\n", b->name, count); |
2086 | 5544 |
8308 | 5545 c = find_oscar_chat(gc, gaim_conv_chat_get_id(GAIM_CONV_CHAT(b))); |
2086 | 5546 if (c != NULL) { |
4617 | 5547 if (od) |
5548 od->oscar_chats = g_slist_remove(od->oscar_chats, c); | |
2086 | 5549 if (c->inpa > 0) |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
5550 gaim_input_remove(c->inpa); |
8308 | 5551 if (gc && od->sess) |
4617 | 5552 aim_conn_kill(od->sess, &c->conn); |
2086 | 5553 g_free(c->name); |
5554 g_free(c->show); | |
5555 g_free(c); | |
5556 } | |
5557 /* we do this because with Oscar it doesn't tell us we left */ | |
8308 | 5558 serv_got_chat_left(gc, gaim_conv_chat_get_id(GAIM_CONV_CHAT(b))); |
2086 | 5559 } |
5560 | |
8219 | 5561 static int oscar_send_chat(GaimConnection *gc, int id, const char *message) { |
5562 OscarData *od = (OscarData *)gc->proto_data; | |
5563 GError *err = NULL; | |
5564 GaimConversation *conv = NULL; | |
2086 | 5565 struct chat_connection *c = NULL; |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5566 char *buf, *buf2; |
8219 | 5567 char *charset = NULL; |
5568 int encoding; | |
5569 int len; | |
5570 | |
5571 if (!(conv = gaim_find_chat(gc, id))) | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5572 return -EINVAL; |
2086 | 5573 |
8219 | 5574 if (!(c = find_oscar_chat_by_conv(gc, conv))) |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5575 return -EINVAL; |
2086 | 5576 |
8219 | 5577 buf = gaim_strdup_withhtml(message); |
5578 len = strlen(buf); | |
5579 | |
5580 encoding = oscar_encoding_check(buf); | |
8233 | 5581 if (encoding & AIM_IMFLAGS_UNICODE) { |
8359 | 5582 gaim_debug(GAIM_DEBUG_INFO, "oscar", "Sending Unicode chat\n"); |
8219 | 5583 charset = "unicode-2-0"; |
5584 buf2 = g_convert(buf, len, "UCS-2BE", "UTF-8", NULL, &len, &err); | |
5585 if (err) { | |
5586 gaim_debug(GAIM_DEBUG_ERROR, "oscar", | |
8359 | 5587 "Error converting to unicode-2-0: %s\n", err->message); |
5588 g_error_free(err); | |
5589 } | |
8219 | 5590 } else if (encoding & AIM_IMFLAGS_ISO_8859_1) { |
8359 | 5591 gaim_debug(GAIM_DEBUG_INFO, "oscar", "Sending ISO-8859-1 chat\n"); |
8219 | 5592 charset = "iso-8859-1"; |
5593 buf2 = g_convert(buf, len, "ISO-8859-1", "UTF-8", NULL, &len, &err); | |
5594 if (err) { | |
5595 gaim_debug(GAIM_DEBUG_ERROR, "oscar", | |
8359 | 5596 "Error converting to iso-8859-1: %s\n", err->message); |
8219 | 5597 g_error_free(err); |
8359 | 5598 err = NULL; |
5599 | |
5600 gaim_debug(GAIM_DEBUG_INFO, "oscar", "Falling back to Unicode\n"); | |
5601 charset = "unicode-2-0"; | |
5602 buf2 = g_convert(buf, len, "UCS-2BE", "UTF-8", NULL, &len, &err); | |
8219 | 5603 if (err) { |
5604 gaim_debug(GAIM_DEBUG_ERROR, "oscar", | |
8359 | 5605 "Error converting to unicode-2-0: %s\n", |
5606 err->message); | |
8219 | 5607 g_error_free(err); |
5608 } | |
2086 | 5609 } |
8219 | 5610 } else { |
5611 charset = "us-ascii"; | |
5612 buf2 = g_strdup(buf); | |
5613 } | |
8359 | 5614 g_free(buf); |
5615 | |
5616 if ((len > c->maxlen) || (len > c->maxvis)) { | |
5617 g_free(buf2); | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5618 return -E2BIG; |
8359 | 5619 } |
5620 | |
5621 aim_chat_send_im(od->sess, c->conn, 0, buf2, len, charset, "en"); | |
8219 | 5622 g_free(buf2); |
8359 | 5623 |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5624 return 0; |
2086 | 5625 } |
5626 | |
6695 | 5627 static const char *oscar_list_icon(GaimAccount *a, GaimBuddy *b) { |
4766 | 5628 if (!b || (b && b->name && b->name[0] == '+')) { |
5646
48c63ee49961
[gaim-migrate @ 6060]
Christian Hammond <chipx86@chipx86.com>
parents:
5638
diff
changeset
|
5629 if (a != NULL && isdigit(*gaim_account_get_username(a))) |
4687 | 5630 return "icq"; |
5631 else | |
5632 return "aim"; | |
5633 } | |
5646
48c63ee49961
[gaim-migrate @ 6060]
Christian Hammond <chipx86@chipx86.com>
parents:
5638
diff
changeset
|
5634 |
48c63ee49961
[gaim-migrate @ 6060]
Christian Hammond <chipx86@chipx86.com>
parents:
5638
diff
changeset
|
5635 if (b != NULL && isdigit(b->name[0])) |
4687 | 5636 return "icq"; |
5637 return "aim"; | |
5638 } | |
5639 | |
6695 | 5640 static void oscar_list_emblems(GaimBuddy *b, char **se, char **sw, char **nw, char **ne) |
4687 | 5641 { |
7334 | 5642 GaimAccount *account = NULL; |
5643 GaimConnection *gc = NULL; | |
5644 OscarData *od = NULL; | |
4687 | 5645 char *emblems[4] = {NULL,NULL,NULL,NULL}; |
5646 int i = 0; | |
7334 | 5647 aim_userinfo_t *userinfo = NULL; |
5648 | |
5649 if (b != NULL) | |
5650 account = b->account; | |
5651 if (account != NULL) | |
5652 gc = account->gc; | |
5653 if (gc != NULL) | |
5654 od = gc->proto_data; | |
7945 | 5655 if (od != NULL) |
5656 userinfo = aim_locate_finduserinfo(od->sess, b->name); | |
4687 | 5657 |
5131 | 5658 if (!GAIM_BUDDY_IS_ONLINE(b)) { |
5659 char *gname; | |
7334 | 5660 if ((b->name) && (od) && (od->sess->ssi.received_data) && |
5131 | 5661 (gname = aim_ssi_itemlist_findparentname(od->sess->ssi.local, b->name)) && |
5662 (aim_ssi_waitingforauth(od->sess->ssi.local, gname, b->name))) { | |
5663 emblems[i++] = "notauthorized"; | |
5664 } else { | |
5665 emblems[i++] = "offline"; | |
5666 } | |
5667 } | |
4916 | 5668 |
4766 | 5669 if (b->name && (b->uc & 0xffff0000) && isdigit(b->name[0])) { |
4960 | 5670 int uc = b->uc >> 16; |
4766 | 5671 if (uc & AIM_ICQ_STATE_INVISIBLE) |
4960 | 5672 emblems[i++] = "invisible"; |
4766 | 5673 else if (uc & AIM_ICQ_STATE_CHAT) |
4960 | 5674 emblems[i++] = "freeforchat"; |
4766 | 5675 else if (uc & AIM_ICQ_STATE_DND) |
4960 | 5676 emblems[i++] = "dnd"; |
4766 | 5677 else if (uc & AIM_ICQ_STATE_OUT) |
4960 | 5678 emblems[i++] = "na"; |
4766 | 5679 else if (uc & AIM_ICQ_STATE_BUSY) |
4960 | 5680 emblems[i++] = "occupied"; |
4766 | 5681 else if (uc & AIM_ICQ_STATE_AWAY) |
5682 emblems[i++] = "away"; | |
5683 } else { | |
5684 if (b->uc & UC_UNAVAILABLE) | |
5685 emblems[i++] = "away"; | |
5686 } | |
4687 | 5687 if (b->uc & UC_WIRELESS) |
5688 emblems[i++] = "wireless"; | |
5689 if (b->uc & UC_AOL) | |
5690 emblems[i++] = "aol"; | |
5691 if (b->uc & UC_ADMIN) | |
5692 emblems[i++] = "admin"; | |
5693 if (b->uc & UC_AB && i < 4) | |
5694 emblems[i++] = "activebuddy"; | |
4766 | 5695 /* if (b->uc & UC_UNCONFIRMED && i < 4) |
5696 emblems[i++] = "unconfirmed"; */ | |
7334 | 5697 |
7945 | 5698 if ((i < 4) && (userinfo != NULL) && (userinfo->capabilities & AIM_CAPS_HIPTOP)) |
5699 emblems[i++] = "hiptop"; | |
5700 | |
5701 if ((i < 4) && (userinfo != NULL) && (userinfo->capabilities & AIM_CAPS_SECUREIM)) | |
7334 | 5702 emblems[i++] = "secure"; |
5703 | |
4687 | 5704 *se = emblems[0]; |
5705 *sw = emblems[1]; | |
5706 *nw = emblems[2]; | |
5707 *ne = emblems[3]; | |
5708 } | |
5709 | |
6695 | 5710 static char *oscar_tooltip_text(GaimBuddy *b) { |
5575 | 5711 GaimConnection *gc = b->account->gc; |
7283 | 5712 OscarData *od = gc->proto_data; |
7692 | 5713 GaimGroup *g = gaim_find_buddys_group(b); |
7261 | 5714 struct buddyinfo *bi = g_hash_table_lookup(od->buddyinfo, gaim_normalize(b->account, b->name)); |
7045 | 5715 aim_userinfo_t *userinfo = aim_locate_finduserinfo(od->sess, b->name); |
7011 | 5716 gchar *tmp = NULL, *ret = g_strdup(""); |
5131 | 5717 |
5718 if (GAIM_BUDDY_IS_ONLINE(b)) { | |
5719 if (isdigit(b->name[0])) { | |
7011 | 5720 char *status; |
5131 | 5721 status = gaim_icq_status((b->uc & 0xffff0000) >> 16); |
7011 | 5722 tmp = ret; |
5723 ret = g_strconcat(tmp, _("<b>Status:</b> "), status, "\n", NULL); | |
5131 | 5724 g_free(tmp); |
5725 g_free(status); | |
5726 } | |
5727 | |
7011 | 5728 if ((bi != NULL) && (bi->ipaddr)) { |
7283 | 5729 char *tstr = g_strdup_printf("%hhu.%hhu.%hhu.%hhu", |
7011 | 5730 (bi->ipaddr & 0xff000000) >> 24, |
5731 (bi->ipaddr & 0x00ff0000) >> 16, | |
5732 (bi->ipaddr & 0x0000ff00) >> 8, | |
5733 (bi->ipaddr & 0x000000ff)); | |
5734 tmp = ret; | |
5735 ret = g_strconcat(tmp, _("<b>IP Address:</b> "), tstr, "\n", NULL); | |
7162 | 5736 g_free(tmp); |
5737 g_free(tstr); | |
7011 | 5738 } |
5739 | |
5740 if ((userinfo != NULL) && (userinfo->capabilities)) { | |
5741 char *caps = caps_string(userinfo->capabilities); | |
5742 tmp = ret; | |
5743 ret = g_strconcat(tmp, _("<b>Capabilities:</b> "), caps, "\n", NULL); | |
7162 | 5744 g_free(tmp); |
7011 | 5745 } |
5746 | |
7692 | 5747 if (g && g->name) { |
5748 char *comment = NULL; | |
5749 comment = aim_ssi_getcomment(od->sess->ssi.local, g->name, b->name); | |
5750 if (comment != NULL) { | |
5751 tmp = ret; | |
5752 ret = g_strconcat(tmp, _("<b>Buddy Comment:</b> "), comment, "\n", NULL); | |
5753 free(tmp); | |
5754 free(comment); | |
5755 } | |
5756 } | |
5757 | |
7011 | 5758 if ((bi != NULL) && (bi->availmsg != NULL) && !(b->uc & UC_UNAVAILABLE)) { |
5759 gchar *escaped = g_markup_escape_text(bi->availmsg, strlen(bi->availmsg)); | |
5760 tmp = ret; | |
5761 ret = g_strconcat(tmp, _("<b>Available:</b> "), escaped, "\n", NULL); | |
7162 | 5762 g_free(tmp); |
7011 | 5763 g_free(escaped); |
5764 } | |
5765 | |
5766 if ((userinfo != NULL) && (userinfo->flags & AIM_FLAG_AWAY) && (userinfo->away_len > 0) && (userinfo->away != NULL) && (userinfo->away_encoding != NULL)) { | |
8225 | 5767 gchar *charset = oscar_encoding_extract(userinfo->away_encoding); |
8392 | 5768 gchar *away_utf8 = oscar_encoding_to_utf8(charset, userinfo->away, userinfo->away_len); |
8225 | 5769 g_free(charset); |
7011 | 5770 if (away_utf8 != NULL) { |
7091 | 5771 gchar *tmp1, *tmp2; |
8341 | 5772 const gchar *tmp3; |
5773 tmp1 = gaim_strcasereplace(away_utf8, "<BR>", "\n"); | |
5774 g_free(away_utf8); | |
7095
c8bf2da398e3
[gaim-migrate @ 7660]
Christian Hammond <chipx86@chipx86.com>
parents:
7093
diff
changeset
|
5775 tmp2 = gaim_markup_strip_html(tmp1); |
7091 | 5776 g_free(tmp1); |
8461 | 5777 tmp1 = gaim_strreplace(tmp2, "<", "<"); |
7091 | 5778 g_free(tmp2); |
8461 | 5779 tmp3 = gaim_str_sub_away_formatters(tmp1, gaim_account_get_username(gaim_connection_get_account(gc))); |
5780 g_free(tmp1); | |
7011 | 5781 tmp = ret; |
7162 | 5782 ret = g_strconcat(tmp, _("<b>Away Message:</b> "), tmp3, "\n", NULL); |
5783 g_free(tmp); | |
5836 | 5784 } |
5131 | 5785 } |
5786 } else { | |
5787 char *gname = aim_ssi_itemlist_findparentname(od->sess->ssi.local, b->name); | |
5788 if (aim_ssi_waitingforauth(od->sess->ssi.local, gname, b->name)) { | |
7011 | 5789 tmp = ret; |
5790 ret = g_strconcat(tmp, _("<b>Status:</b> Not Authorized"), "\n", NULL); | |
5131 | 5791 g_free(tmp); |
5792 } else { | |
7011 | 5793 tmp = ret; |
5794 ret = g_strconcat(tmp, _("<b>Status:</b> Offline"), "\n", NULL); | |
5131 | 5795 g_free(tmp); |
5796 } | |
5797 } | |
5798 | |
5799 /* remove the trailing newline character */ | |
8266 | 5800 if (ret && (strlen(ret) > 0)) |
7011 | 5801 ret[strlen(ret)-1] = '\0'; |
5802 return ret; | |
5131 | 5803 } |
5804 | |
6695 | 5805 static char *oscar_status_text(GaimBuddy *b) { |
5575 | 5806 GaimConnection *gc = b->account->gc; |
7283 | 5807 OscarData *od = gc->proto_data; |
5167 | 5808 gchar *ret = NULL; |
5809 | |
5810 if ((b->uc & UC_UNAVAILABLE) || (((b->uc & 0xffff0000) >> 16) & AIM_ICQ_STATE_CHAT)) { | |
5811 if (isdigit(b->name[0])) | |
5812 ret = gaim_icq_status((b->uc & 0xffff0000) >> 16); | |
7038 | 5813 else |
5814 ret = g_strdup(_("Away")); | |
5836 | 5815 } else if (GAIM_BUDDY_IS_ONLINE(b)) { |
7261 | 5816 struct buddyinfo *bi = g_hash_table_lookup(od->buddyinfo, gaim_normalize(b->account, b->name)); |
6292 | 5817 if (bi->availmsg) |
5818 ret = g_markup_escape_text(bi->availmsg, strlen(bi->availmsg)); | |
5836 | 5819 } else { |
5167 | 5820 char *gname = aim_ssi_itemlist_findparentname(od->sess->ssi.local, b->name); |
5821 if (aim_ssi_waitingforauth(od->sess->ssi.local, gname, b->name)) | |
5822 ret = g_strdup(_("Not Authorized")); | |
5823 else | |
5824 ret = g_strdup(_("Offline")); | |
5825 } | |
5826 | |
5827 return ret; | |
5828 } | |
5829 | |
5842 | 5830 |
5844 | 5831 static int oscar_icon_req(aim_session_t *sess, aim_frame_t *fr, ...) { |
5842 | 5832 GaimConnection *gc = sess->aux_data; |
7283 | 5833 OscarData *od = gc->proto_data; |
5892 | 5834 va_list ap; |
5842 | 5835 fu16_t type; |
5892 | 5836 fu8_t flags = 0, length = 0; |
5837 char *md5 = NULL; | |
5838 | |
7334 | 5839 |
5842 | 5840 va_start(ap, fr); |
5841 type = va_arg(ap, int); | |
5892 | 5842 |
5843 switch(type) { | |
5844 case 0x0000: | |
5845 case 0x0001: { | |
5846 flags = va_arg(ap, int); | |
5847 length = va_arg(ap, int); | |
5848 md5 = va_arg(ap, char *); | |
5849 | |
5850 if (flags == 0x41) { | |
5851 if (!aim_getconn_type(od->sess, AIM_CONN_TYPE_ICON) && !od->iconconnecting) { | |
5852 od->iconconnecting = TRUE; | |
5853 od->set_icon = TRUE; | |
5854 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_ICON); | |
5855 } else { | |
6039 | 5856 struct stat st; |
5857 const char *iconfile = gaim_account_get_buddy_icon(gaim_connection_get_account(gc)); | |
5858 if (iconfile == NULL) { | |
8363 | 5859 aim_ssi_delicon(od->sess); |
6039 | 5860 } else if (!stat(iconfile, &st)) { |
5861 char *buf = g_malloc(st.st_size); | |
5862 FILE *file = fopen(iconfile, "rb"); | |
5863 if (file) { | |
5864 fread(buf, 1, st.st_size, file); | |
5865 fclose(file); | |
5866 gaim_debug(GAIM_DEBUG_INFO, "oscar", | |
5867 "Uploading icon to icon server\n"); | |
6879 | 5868 aim_bart_upload(od->sess, buf, st.st_size); |
5892 | 5869 } else |
5870 gaim_debug(GAIM_DEBUG_ERROR, "oscar", | |
6039 | 5871 "Can't open buddy icon file!\n"); |
5872 g_free(buf); | |
5873 } else { | |
5874 gaim_debug(GAIM_DEBUG_ERROR, "oscar", | |
5875 "Can't stat buddy icon file!\n"); | |
5892 | 5876 } |
5877 } | |
8363 | 5878 } else if (flags == 0x81) { |
5879 const char *iconfile = gaim_account_get_buddy_icon(gaim_connection_get_account(gc)); | |
5880 if (iconfile == NULL) | |
5881 aim_ssi_delicon(od->sess); | |
5882 else | |
5883 aim_ssi_seticon(od->sess, md5, length); | |
5884 } | |
5892 | 5885 } break; |
5886 | |
5887 case 0x0002: { /* We just set an "available" message? */ | |
5888 } break; | |
5889 } | |
5890 | |
5842 | 5891 va_end(ap); |
5844 | 5892 |
5893 return 0; | |
5842 | 5894 } |
5892 | 5895 |
3952 | 5896 /* |
4617 | 5897 * We have just established a socket with the other dude, so set up some handlers. |
3952 | 5898 */ |
4617 | 5899 static int gaim_odc_initiate(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 5900 GaimConnection *gc = sess->aux_data; |
7283 | 5901 OscarData *od = (OscarData *)gc->proto_data; |
5679 | 5902 GaimConversation *cnv; |
2086 | 5903 struct direct_im *dim; |
5904 char buf[256]; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5905 char *sn; |
4617 | 5906 va_list ap; |
5907 aim_conn_t *newconn, *listenerconn; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5908 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5909 va_start(ap, fr); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5910 newconn = va_arg(ap, aim_conn_t *); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5911 listenerconn = va_arg(ap, aim_conn_t *); |
2086 | 5912 va_end(ap); |
5913 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5914 aim_conn_close(listenerconn); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5915 aim_conn_kill(sess, &listenerconn); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5916 |
4617 | 5917 sn = g_strdup(aim_odc_getsn(newconn)); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5918 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5919 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5920 "DirectIM: initiate success to %s\n", sn); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5921 dim = find_direct_im(od, sn); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5922 |
6640
314111e7b601
[gaim-migrate @ 7165]
Christian Hammond <chipx86@chipx86.com>
parents:
6623
diff
changeset
|
5923 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
|
5924 gaim_input_remove(dim->watcher); |
2086 | 5925 dim->conn = newconn; |
4617 | 5926 dim->watcher = gaim_input_add(dim->conn->fd, GAIM_INPUT_READ, oscar_callback, dim->conn); |
3008 | 5927 dim->connected = TRUE; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5928 g_snprintf(buf, sizeof buf, _("Direct IM with %s established"), sn); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5929 g_free(sn); |
6982 | 5930 gaim_conversation_write(cnv, NULL, buf, GAIM_MESSAGE_SYSTEM, time(NULL)); |
2086 | 5931 |
4617 | 5932 aim_conn_addhandler(sess, newconn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIMINCOMING, gaim_odc_incoming, 0); |
5933 aim_conn_addhandler(sess, newconn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIMTYPING, gaim_odc_typing, 0); | |
6982 | 5934 aim_conn_addhandler(sess, newconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_IMAGETRANSFER, gaim_odc_update_ui, 0); |
4617 | 5935 |
2993 | 5936 return 1; |
5937 } | |
5938 | |
6982 | 5939 /* |
5940 * This is called when each chunk of an image is received. It can be used to | |
5941 * update a progress bar, or to eat lots of dry cat food. Wet cat food is | |
5942 * nasty, you sicko. | |
5943 */ | |
5944 static int gaim_odc_update_ui(aim_session_t *sess, aim_frame_t *fr, ...) { | |
2993 | 5945 va_list ap; |
5946 char *sn; | |
5947 double percent; | |
5575 | 5948 GaimConnection *gc = sess->aux_data; |
7283 | 5949 OscarData *od = (OscarData *)gc->proto_data; |
5679 | 5950 GaimConversation *c; |
2993 | 5951 struct direct_im *dim; |
5952 | |
5953 va_start(ap, fr); | |
5954 sn = va_arg(ap, char *); | |
5955 percent = va_arg(ap, double); | |
5956 va_end(ap); | |
6873 | 5957 |
2994 | 5958 if (!(dim = find_direct_im(od, sn))) |
5959 return 1; | |
3059 | 5960 if (dim->watcher) { |
5961 gaim_input_remove(dim->watcher); /* Otherwise, the callback will callback */ | |
5962 dim->watcher = 0; | |
5963 } | |
6640
314111e7b601
[gaim-migrate @ 7165]
Christian Hammond <chipx86@chipx86.com>
parents:
6623
diff
changeset
|
5964 |
6982 | 5965 c = gaim_find_conversation_with_account(sn, gaim_connection_get_account(gc)); |
6873 | 5966 if (c != NULL) |
5967 gaim_conversation_update_progress(c, percent); | |
2993 | 5968 dim->watcher = gaim_input_add(dim->conn->fd, GAIM_INPUT_READ, |
5969 oscar_callback, dim->conn); | |
2086 | 5970 |
5971 return 1; | |
5972 } | |
5973 | |
6982 | 5974 /* |
5975 * This is called after a direct IM has been received in its entirety. This | |
5976 * function is passed a long chunk of data which contains the IM with any | |
5977 * data chunks (images) appended to it. | |
5978 * | |
5979 * This function rips out all the data chunks and creates an imgstore for | |
5980 * each one. In order to do this, it first goes through the IM and takes | |
5981 * out all the IMG tags. When doing so, it rewrites the original IMG tag | |
5982 * with one compatable with the imgstore Gaim core code. For each one, we | |
5983 * then read in chunks of data from the end of the message and actually | |
5984 * create the img store using the given data. | |
5985 * | |
5986 * For somewhat easy reference, here's a sample message | |
5987 * (without the whitespace and asterisks): | |
5988 * | |
5989 * <HTML><BODY BGCOLOR="#ffffff"> | |
5990 * <FONT LANG="0"> | |
5991 * This is a really stupid picture:<BR> | |
5992 * <IMG SRC="Sample.jpg" ID="1" WIDTH="283" HEIGHT="212" DATASIZE="9894"><BR> | |
5993 * Yeah it is<BR> | |
5994 * Here is another one:<BR> | |
5995 * <IMG SRC="Soap Bubbles.bmp" ID="2" WIDTH="256" HEIGHT="256" DATASIZE="65978"> | |
5996 * </FONT> | |
5997 * </BODY></HTML> | |
5998 * <BINARY> | |
5999 * <DATA ID="1" SIZE="9894">datadatadatadata</DATA> | |
6000 * <DATA ID="2" SIZE="65978">datadatadatadata</DATA> | |
6001 * </BINARY> | |
6002 */ | |
4617 | 6003 static int gaim_odc_incoming(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 6004 GaimConnection *gc = sess->aux_data; |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
6005 GaimConvImFlags imflags = 0; |
8233 | 6006 gchar *utf8; |
6982 | 6007 GString *newmsg = g_string_new(""); |
6008 GSList *images = NULL; | |
2086 | 6009 va_list ap; |
6982 | 6010 const char *sn, *msg, *msgend, *binary; |
6011 size_t len; | |
6012 int encoding, isawaymsg; | |
2086 | 6013 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6014 va_start(ap, fr); |
6982 | 6015 sn = va_arg(ap, const char *); |
6016 msg = va_arg(ap, const char *); | |
6017 len = va_arg(ap, size_t); | |
3952 | 6018 encoding = va_arg(ap, int); |
4870 | 6019 isawaymsg = va_arg(ap, int); |
2086 | 6020 va_end(ap); |
6982 | 6021 msgend = msg + len; |
2086 | 6022 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
6023 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
6024 "Got DirectIM message from %s\n", sn); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6025 |
4870 | 6026 if (isawaymsg) |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
6027 imflags |= GAIM_CONV_IM_AUTO_RESP; |
4870 | 6028 |
6982 | 6029 /* message has a binary trailer */ |
6030 if ((binary = gaim_strcasestr(msg, "<binary>"))) { | |
6031 GData *attribs; | |
6032 const char *tmp, *start, *end, *last = NULL; | |
6033 | |
6034 tmp = msg; | |
6035 | |
6036 /* for each valid image tag... */ | |
6037 while (gaim_markup_find_tag("img", tmp, &start, &end, &attribs)) { | |
6038 const char *id, *src, *datasize; | |
6039 const char *tag = NULL, *data = NULL; | |
6040 size_t size; | |
6041 int imgid = 0; | |
6042 | |
6043 /* update the location of the last img tag */ | |
6044 last = end; | |
6045 | |
6046 /* grab attributes */ | |
6047 id = g_datalist_get_data(&attribs, "id"); | |
6048 src = g_datalist_get_data(&attribs, "src"); | |
6049 datasize = g_datalist_get_data(&attribs, "datasize"); | |
6050 | |
6051 /* if we have id & datasize, build the data tag */ | |
6052 if (id && datasize) | |
6053 tag = g_strdup_printf("<data id=\"%s\" size=\"%s\">", id, datasize); | |
6054 | |
6055 /* if we have a tag, find the start of the data */ | |
6056 if (tag && (data = gaim_strcasestr(binary, tag))) | |
6057 data += strlen(tag); | |
6058 | |
6059 /* check the data is here and store it */ | |
6060 if (data + (size = atoi(datasize)) <= msgend) | |
6061 imgid = gaim_imgstore_add(data, size, src); | |
6062 | |
8233 | 6063 /* |
6064 * XXX - The code below contains some calls to oscar_encoding_to_utf8 | |
6065 * The hardcoded "us-ascii" value REALLY needs to be removed. | |
6066 */ | |
6982 | 6067 /* if we have a stored image... */ |
6068 if (imgid) { | |
6069 /* append the message up to the tag */ | |
8233 | 6070 utf8 = oscar_encoding_to_utf8("us-ascii", tmp, start - tmp); |
6071 if (utf8 != NULL) { | |
6072 newmsg = g_string_append(newmsg, utf8); | |
6073 g_free(utf8); | |
6074 } | |
6982 | 6075 |
6076 /* write the new image tag */ | |
6077 g_string_append_printf(newmsg, "<IMG ID=\"%d\">", imgid); | |
6078 | |
6079 /* and record the image number */ | |
6080 images = g_slist_append(images, GINT_TO_POINTER(imgid)); | |
6081 } else { | |
6082 /* otherwise, copy up to the end of the tag */ | |
8233 | 6083 utf8 = oscar_encoding_to_utf8("us-ascii", tmp, (end + 1) - tmp); |
6084 if (utf8 != NULL) { | |
6085 newmsg = g_string_append(newmsg, utf8); | |
6086 g_free(utf8); | |
6087 } | |
6982 | 6088 } |
6089 | |
6090 /* clear the attribute list */ | |
6091 g_datalist_clear(&attribs); | |
6092 | |
6093 /* continue from the end of the tag */ | |
6094 tmp = end + 1; | |
6095 } | |
6096 | |
6097 /* append any remaining message data (without the > :-) */ | |
6098 if (last++ && (last < binary)) | |
6099 newmsg = g_string_append_len(newmsg, last, binary - last); | |
6100 | |
6101 /* set the flag if we caught any images */ | |
6102 if (images) | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
6103 imflags |= GAIM_CONV_IM_IMAGES; |
6982 | 6104 } else { |
6105 g_string_append_len(newmsg, msg, len); | |
6106 } | |
6107 | |
4617 | 6108 /* XXX - I imagine Paco-Paco will want to do some voodoo with the encoding here */ |
6982 | 6109 serv_got_im(gc, sn, newmsg->str, imflags, time(NULL)); |
6110 | |
6111 /* free up the message */ | |
6112 g_string_free(newmsg, TRUE); | |
6113 | |
6114 /* unref any images we allocated */ | |
6115 if (images) { | |
6116 GSList *tmp; | |
6117 int id; | |
6118 | |
6119 for (tmp = images; tmp != NULL; tmp = tmp->next) { | |
6120 id = GPOINTER_TO_INT(tmp->data); | |
6121 gaim_imgstore_unref(id); | |
6122 } | |
6123 | |
6124 g_slist_free(images); | |
6125 } | |
2086 | 6126 |
6127 return 1; | |
6128 } | |
6129 | |
4617 | 6130 static int gaim_odc_typing(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 6131 va_list ap; |
6132 char *sn; | |
2993 | 6133 int typing; |
5575 | 6134 GaimConnection *gc = sess->aux_data; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6135 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6136 va_start(ap, fr); |
2086 | 6137 sn = va_arg(ap, char *); |
2993 | 6138 typing = va_arg(ap, int); |
2086 | 6139 va_end(ap); |
6140 | |
4870 | 6141 if (typing == 0x0002) { |
2993 | 6142 /* 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
|
6143 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
6144 "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
|
6145 serv_got_typing(gc, sn, 0, GAIM_TYPING); |
4870 | 6146 } else if (typing == 0x0001) |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
6147 serv_got_typing(gc, sn, 0, GAIM_TYPED); |
4870 | 6148 else |
4342 | 6149 serv_got_typing_stopped(gc, sn); |
2086 | 6150 return 1; |
6151 } | |
6152 | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
6153 static int gaim_odc_send_im(aim_session_t *sess, aim_conn_t *conn, const char *message, GaimConvImFlags imflags) { |
6982 | 6154 char *buf; |
6155 size_t len; | |
6156 int ret; | |
6157 | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
6158 if (imflags & GAIM_CONV_IM_IMAGES) { |
6982 | 6159 GString *msg = g_string_new(""); |
6160 GString *data = g_string_new("<BINARY>"); | |
6161 GData *attribs; | |
6162 const char *tmp, *start, *end, *last = NULL; | |
6163 int oscar_id = 0; | |
6164 | |
6165 tmp = message; | |
6166 | |
6167 /* for each valid IMG tag... */ | |
6168 while (gaim_markup_find_tag("img", tmp, &start, &end, &attribs)) { | |
6169 GaimStoredImage *image = NULL; | |
6170 const char *id; | |
6171 | |
6172 last = end; | |
6173 id = g_datalist_get_data(&attribs, "id"); | |
6174 | |
6175 /* ... if it refers to a valid gaim image ... */ | |
6176 if (id && (image = gaim_imgstore_get(atoi(id)))) { | |
6177 /* ... append the message from start to the tag ... */ | |
6178 msg = g_string_append_len(msg, tmp, start - tmp); | |
6179 oscar_id++; | |
6180 | |
6181 /* ... insert a new img tag with the oscar id ... */ | |
6182 if (image->filename) | |
6183 g_string_append_printf(msg, | |
6184 "<IMG SRC=\"file://%s\" ID=\"%d\" DATASIZE=\"%d\">", | |
7386 | 6185 image->filename, oscar_id, (int)image->size); |
6982 | 6186 else |
6187 g_string_append_printf(msg, | |
6188 "<IMG ID=\"%d\" DATASIZE=\"%d\">", | |
7386 | 6189 oscar_id, (int)image->size); |
6982 | 6190 |
6191 /* ... and append the data to the binary section ... */ | |
6192 g_string_append_printf(data, "<DATA ID=\"%d\" SIZE=\"%d\">", | |
7386 | 6193 oscar_id, (int)image->size); |
6982 | 6194 data = g_string_append_len(data, image->data, image->size); |
6195 data = g_string_append(data, "</DATA>"); | |
6196 } else { | |
6197 /* ... otherwise, allow the possibly invalid img tag through. */ | |
6198 /* should we do something else? */ | |
6199 msg = g_string_append_len(msg, tmp, (end + 1) - tmp); | |
6200 } | |
6201 | |
6202 g_datalist_clear(&attribs); | |
6203 | |
6204 /* continue from the end of the tag */ | |
6205 tmp = end + 1; | |
6206 } | |
6207 | |
6208 /* append any remaining message data (without the > :-) */ | |
6209 if (last++ && *last) | |
6210 msg = g_string_append(msg, last); | |
6211 | |
6212 /* if we inserted any images in the binary section, append it */ | |
6213 if (oscar_id) { | |
6214 msg = g_string_append_len(msg, data->str, data->len); | |
6215 msg = g_string_append(msg, "</BINARY>"); | |
6216 } | |
6217 | |
6218 len = msg->len; | |
6219 buf = msg->str; | |
6220 g_string_free(msg, FALSE); | |
6221 g_string_free(data, TRUE); | |
6222 } else { | |
6223 len = strlen(message); | |
6224 buf = g_memdup(message, len+1); | |
6225 } | |
6226 | |
6227 /* 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
|
6228 if (imflags & GAIM_CONV_IM_AUTO_RESP) |
6982 | 6229 ret = aim_odc_send_im(sess, conn, buf, len, 0, 1); |
6230 else | |
6231 ret = aim_odc_send_im(sess, conn, buf, len, 0, 0); | |
6232 | |
6233 g_free(buf); | |
6234 | |
6235 return ret; | |
6236 } | |
6237 | |
2086 | 6238 struct ask_do_dir_im { |
6239 char *who; | |
5575 | 6240 GaimConnection *gc; |
2086 | 6241 }; |
6242 | |
3730 | 6243 static void oscar_cancel_direct_im(struct ask_do_dir_im *data) { |
5136 | 6244 g_free(data->who); |
2086 | 6245 g_free(data); |
6246 } | |
6247 | |
3730 | 6248 static void oscar_direct_im(struct ask_do_dir_im *data) { |
5575 | 6249 GaimConnection *gc = data->gc; |
7283 | 6250 OscarData *od; |
2086 | 6251 struct direct_im *dim; |
8240 | 6252 int listenfd; |
2086 | 6253 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
6254 if (!g_list_find(gaim_connections_get_all(), gc)) { |
5136 | 6255 g_free(data->who); |
4244 | 6256 g_free(data); |
6257 return; | |
6258 } | |
6259 | |
7283 | 6260 od = (OscarData *)gc->proto_data; |
4244 | 6261 |
2086 | 6262 dim = find_direct_im(od, data->who); |
6263 if (dim) { | |
3008 | 6264 if (!(dim->connected)) { /* We'll free the old, unconnected dim, and start over */ |
6265 od->direct_ims = g_slist_remove(od->direct_ims, dim); | |
6266 gaim_input_remove(dim->watcher); | |
6267 g_free(dim); | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
6268 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
6269 "Gave up on old direct IM, trying again\n"); |
3008 | 6270 } else { |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
6271 gaim_notify_error(gc, NULL, "DirectIM already open.", NULL); |
5136 | 6272 g_free(data->who); |
4244 | 6273 g_free(data); |
3008 | 6274 return; |
6275 } | |
2086 | 6276 } |
6277 dim = g_new0(struct direct_im, 1); | |
6278 dim->gc = gc; | |
6279 g_snprintf(dim->name, sizeof dim->name, "%s", data->who); | |
6280 | |
8246 | 6281 listenfd = gaim_network_listen_range(5190, 5199); |
8240 | 6282 dim->conn = aim_odc_initiate(od->sess, data->who, listenfd, gaim_network_get_port_from_fd(listenfd)); |
2086 | 6283 if (dim->conn != NULL) { |
6284 od->direct_ims = g_slist_append(od->direct_ims, dim); | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
6285 dim->watcher = gaim_input_add(dim->conn->fd, GAIM_INPUT_READ, |
2086 | 6286 oscar_callback, dim->conn); |
4617 | 6287 aim_conn_addhandler(od->sess, dim->conn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIM_ESTABLISHED, |
6288 gaim_odc_initiate, 0); | |
2086 | 6289 } else { |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
6290 gaim_notify_error(gc, NULL, _("Unable to open Direct IM"), NULL); |
2086 | 6291 g_free(dim); |
6292 } | |
4244 | 6293 |
5136 | 6294 g_free(data->who); |
4244 | 6295 g_free(data); |
2086 | 6296 } |
6297 | |
5575 | 6298 static void oscar_ask_direct_im(GaimConnection *gc, const char *who) { |
5420 | 6299 gchar *buf; |
2086 | 6300 struct ask_do_dir_im *data = g_new0(struct ask_do_dir_im, 1); |
5136 | 6301 data->who = g_strdup(who); |
2170
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
6302 data->gc = gc; |
5420 | 6303 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
|
6304 |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
6305 gaim_request_action(gc, NULL, buf, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
6306 _("Because this reveals your IP address, it " |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
6307 "may be considered a privacy risk. Do you " |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
6308 "wish to continue?"), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
6309 0, data, 2, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
6310 _("Connect"), G_CALLBACK(oscar_direct_im), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
6311 _("Cancel"), G_CALLBACK(oscar_cancel_direct_im)); |
5420 | 6312 g_free(buf); |
2086 | 6313 } |
6314 | |
5575 | 6315 static void oscar_set_permit_deny(GaimConnection *gc) { |
6316 GaimAccount *account = gaim_connection_get_account(gc); | |
7283 | 6317 OscarData *od = (OscarData *)gc->proto_data; |
4230 | 6318 #ifdef NOSSI |
8143 | 6319 GSList *list; |
4230 | 6320 char buf[MAXMSGLEN]; |
6321 int at; | |
6322 | |
5575 | 6323 switch(account->perm_deny) { |
8175 | 6324 case GAIM_PRIVACY_ALLOW_ALL: |
5575 | 6325 aim_bos_changevisibility(od->sess, od->conn, AIM_VISIBILITYCHANGE_DENYADD, gaim_account_get_username(account)); |
4230 | 6326 break; |
8175 | 6327 case GAIM_PRIVACY_DENY_ALL: |
5575 | 6328 aim_bos_changevisibility(od->sess, od->conn, AIM_VISIBILITYCHANGE_PERMITADD, gaim_account_get_username(account)); |
4230 | 6329 break; |
8175 | 6330 case GAIM_PRIVACY_ALLOW_USERS: |
5575 | 6331 list = account->permit; |
4230 | 6332 at = 0; |
6333 while (list) { | |
6334 at += g_snprintf(buf + at, sizeof(buf) - at, "%s&", (char *)list->data); | |
6335 list = list->next; | |
6336 } | |
6337 aim_bos_changevisibility(od->sess, od->conn, AIM_VISIBILITYCHANGE_PERMITADD, buf); | |
6338 break; | |
8175 | 6339 case GAIM_PRIVACY_DENY_USERS: |
5575 | 6340 list = account->deny; |
4230 | 6341 at = 0; |
6342 while (list) { | |
6343 at += g_snprintf(buf + at, sizeof(buf) - at, "%s&", (char *)list->data); | |
6344 list = list->next; | |
6345 } | |
6346 aim_bos_changevisibility(od->sess, od->conn, AIM_VISIBILITYCHANGE_DENYADD, buf); | |
6347 break; | |
6348 default: | |
6349 break; | |
2086 | 6350 } |
4230 | 6351 #else |
8175 | 6352 if (od->sess->ssi.received_data) { |
6353 switch (account->perm_deny) { | |
6354 case GAIM_PRIVACY_ALLOW_ALL: | |
6355 aim_ssi_setpermdeny(od->sess, 0x01, 0xffffffff); | |
6356 break; | |
6357 case GAIM_PRIVACY_ALLOW_BUDDYLIST: | |
6358 aim_ssi_setpermdeny(od->sess, 0x05, 0xffffffff); | |
6359 break; | |
6360 case GAIM_PRIVACY_ALLOW_USERS: | |
6361 aim_ssi_setpermdeny(od->sess, 0x03, 0xffffffff); | |
6362 break; | |
6363 case GAIM_PRIVACY_DENY_ALL: | |
6364 aim_ssi_setpermdeny(od->sess, 0x02, 0xffffffff); | |
6365 break; | |
6366 case GAIM_PRIVACY_DENY_USERS: | |
6367 aim_ssi_setpermdeny(od->sess, 0x04, 0xffffffff); | |
6368 break; | |
6369 default: | |
6370 aim_ssi_setpermdeny(od->sess, 0x01, 0xffffffff); | |
6371 break; | |
6372 } | |
6373 } | |
4230 | 6374 #endif |
2086 | 6375 } |
6376 | |
5575 | 6377 static void oscar_add_permit(GaimConnection *gc, const char *who) { |
4269 | 6378 #ifdef NOSSI |
8143 | 6379 if (gc->account->perm_deny == 3) |
4269 | 6380 oscar_set_permit_deny(gc); |
6381 #else | |
7283 | 6382 OscarData *od = (OscarData *)gc->proto_data; |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
6383 gaim_debug(GAIM_DEBUG_INFO, "oscar", "ssi: About to add a permit\n"); |
4230 | 6384 if (od->sess->ssi.received_data) |
4889 | 6385 aim_ssi_addpermit(od->sess, who); |
4230 | 6386 #endif |
2086 | 6387 } |
6388 | |
5575 | 6389 static void oscar_add_deny(GaimConnection *gc, const char *who) { |
4269 | 6390 #ifdef NOSSI |
8143 | 6391 if (gc->account->perm_deny == 4) |
4269 | 6392 oscar_set_permit_deny(gc); |
6393 #else | |
7283 | 6394 OscarData *od = (OscarData *)gc->proto_data; |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
6395 gaim_debug(GAIM_DEBUG_INFO, "oscar", "ssi: About to add a deny\n"); |
4230 | 6396 if (od->sess->ssi.received_data) |
4889 | 6397 aim_ssi_adddeny(od->sess, who); |
4230 | 6398 #endif |
2086 | 6399 } |
6400 | |
5575 | 6401 static void oscar_rem_permit(GaimConnection *gc, const char *who) { |
4269 | 6402 #ifdef NOSSI |
8143 | 6403 if (gc->account->perm_deny == 3) |
4269 | 6404 oscar_set_permit_deny(gc); |
6405 #else | |
7283 | 6406 OscarData *od = (OscarData *)gc->proto_data; |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
6407 gaim_debug(GAIM_DEBUG_INFO, "oscar", "ssi: About to delete a permit\n"); |
4230 | 6408 if (od->sess->ssi.received_data) |
4889 | 6409 aim_ssi_delpermit(od->sess, who); |
4230 | 6410 #endif |
2086 | 6411 } |
6412 | |
5575 | 6413 static void oscar_rem_deny(GaimConnection *gc, const char *who) { |
4269 | 6414 #ifdef NOSSI |
8143 | 6415 if (gc->account->perm_deny == 4) |
4269 | 6416 oscar_set_permit_deny(gc); |
6417 #else | |
7283 | 6418 OscarData *od = (OscarData *)gc->proto_data; |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
6419 gaim_debug(GAIM_DEBUG_INFO, "oscar", "ssi: About to delete a deny\n"); |
4230 | 6420 if (od->sess->ssi.received_data) |
4889 | 6421 aim_ssi_deldeny(od->sess, who); |
4230 | 6422 #endif |
2086 | 6423 } |
6424 | |
5575 | 6425 static GList *oscar_away_states(GaimConnection *gc) |
2086 | 6426 { |
7283 | 6427 OscarData *od = gc->proto_data; |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
6428 GList *m = NULL; |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
6429 |
8257 | 6430 if (od->icq) { |
6431 m = g_list_append(m, _("Online")); | |
6432 m = g_list_append(m, _("Away")); | |
6433 m = g_list_append(m, _("Do Not Disturb")); | |
6434 m = g_list_append(m, _("Not Available")); | |
6435 m = g_list_append(m, _("Occupied")); | |
6436 m = g_list_append(m, _("Free For Chat")); | |
6437 m = g_list_append(m, _("Invisible")); | |
6438 } else { | |
6439 m = g_list_append(m, GAIM_AWAY_CUSTOM); | |
8476 | 6440 m = g_list_append(m, _("Back")); |
8257 | 6441 m = g_list_append(m, _("Visible")); |
6442 m = g_list_append(m, _("Invisible")); | |
6443 } | |
4333 | 6444 |
6445 return m; | |
6446 } | |
6447 | |
7172 | 6448 static void oscar_ssi_editcomment(struct name_data *data, const char *text) { |
8341 | 6449 GaimConnection *gc = data->gc; |
6450 OscarData *od = gc->proto_data; | |
7172 | 6451 GaimBuddy *b; |
6452 GaimGroup *g; | |
6453 | |
6454 if (!(b = gaim_find_buddy(gaim_connection_get_account(data->gc), data->name))) { | |
6455 oscar_free_name_data(data); | |
6456 return; | |
6457 } | |
6458 | |
6459 if (!(g = gaim_find_buddys_group(b))) { | |
6460 oscar_free_name_data(data); | |
6461 return; | |
6462 } | |
6463 | |
6464 aim_ssi_editcomment(od->sess, g->name, data->name, text); | |
8341 | 6465 |
6466 if (!aim_sncmp(data->name, gc->account->username)) | |
6467 gaim_check_comment(od, text); | |
6468 | |
7172 | 6469 oscar_free_name_data(data); |
6470 } | |
6471 | |
6472 static void oscar_buddycb_edit_comment(GaimConnection *gc, const char *name) { | |
7283 | 6473 OscarData *od = gc->proto_data; |
7172 | 6474 struct name_data *data = g_new(struct name_data, 1); |
6475 GaimBuddy *b; | |
6476 GaimGroup *g; | |
6477 char *comment; | |
6478 gchar *comment_utf8; | |
6479 | |
6480 if (!(b = gaim_find_buddy(gaim_connection_get_account(gc), name))) | |
6481 return; | |
6482 if (!(g = gaim_find_buddys_group(b))) | |
6483 return; | |
6484 comment = aim_ssi_getcomment(od->sess->ssi.local, g->name, name); | |
6485 comment_utf8 = comment ? gaim_utf8_try_convert(comment) : NULL; | |
6486 | |
6487 data->gc = gc; | |
6488 data->name = g_strdup(name); | |
6489 data->nick = NULL; | |
6490 | |
6491 gaim_request_input(gc, NULL, _("Buddy Comment:"), NULL, | |
6492 comment_utf8, TRUE, FALSE, | |
6493 _("OK"), G_CALLBACK(oscar_ssi_editcomment), | |
6494 _("Cancel"), G_CALLBACK(oscar_free_name_data), | |
6495 data); | |
6496 | |
6497 free(comment); | |
6498 g_free(comment_utf8); | |
6499 } | |
6500 | |
5575 | 6501 static GList *oscar_buddy_menu(GaimConnection *gc, const char *who) { |
7283 | 6502 OscarData *od = gc->proto_data; |
4333 | 6503 GList *m = NULL; |
6504 struct proto_buddy_menu *pbm; | |
6505 | |
7172 | 6506 pbm = g_new0(struct proto_buddy_menu, 1); |
6507 pbm->label = _("Edit Buddy Comment"); | |
6508 pbm->callback = oscar_buddycb_edit_comment; | |
6509 pbm->gc = gc; | |
6510 m = g_list_append(m, pbm); | |
6511 | |
4333 | 6512 if (od->icq) { |
4624 | 6513 #if 0 |
4333 | 6514 pbm = g_new0(struct proto_buddy_menu, 1); |
6515 pbm->label = _("Get Status Msg"); | |
4969 | 6516 pbm->callback = oscar_get_icqstatusmsg; |
4333 | 6517 pbm->gc = gc; |
6518 m = g_list_append(m, pbm); | |
4624 | 6519 #endif |
4333 | 6520 } else { |
6695 | 6521 GaimBuddy *b = gaim_find_buddy(gc->account, who); |
7011 | 6522 aim_userinfo_t *userinfo; |
5975 | 6523 |
6524 if (b) | |
7045 | 6525 userinfo = aim_locate_finduserinfo(od->sess, b->name); |
7011 | 6526 |
6527 if (b && userinfo && aim_sncmp(gaim_account_get_username(gaim_connection_get_account(gc)), who) && GAIM_BUDDY_IS_ONLINE(b)) { | |
6528 if (userinfo->capabilities & AIM_CAPS_DIRECTIM) { | |
5917 | 6529 pbm = g_new0(struct proto_buddy_menu, 1); |
6530 pbm->label = _("Direct IM"); | |
6531 pbm->callback = oscar_ask_direct_im; | |
6532 pbm->gc = gc; | |
6533 m = g_list_append(m, pbm); | |
6534 } | |
7650 | 6535 |
6536 if (userinfo->capabilities & AIM_CAPS_SENDFILE) { | |
6537 pbm = g_new0(struct proto_buddy_menu, 1); | |
6538 pbm->label = _("Send File"); | |
6539 pbm->callback = oscar_ask_sendfile; | |
6540 pbm->gc = gc; | |
6541 m = g_list_append(m, pbm); | |
6542 } | |
4826 | 6543 #if 0 |
7011 | 6544 if (userinfo->capabilities & AIM_CAPS_GETFILE) { |
5917 | 6545 pbm = g_new0(struct proto_buddy_menu, 1); |
6546 pbm->label = _("Get File"); | |
6547 pbm->callback = oscar_ask_getfile; | |
6548 pbm->gc = gc; | |
6549 m = g_list_append(m, pbm); | |
6550 } | |
4826 | 6551 #endif |
4333 | 6552 } |
5131 | 6553 } |
5197 | 6554 |
5131 | 6555 if (od->sess->ssi.received_data) { |
6556 char *gname = aim_ssi_itemlist_findparentname(od->sess->ssi.local, who); | |
6557 if (gname && aim_ssi_waitingforauth(od->sess->ssi.local, gname, who)) { | |
6558 pbm = g_new0(struct proto_buddy_menu, 1); | |
6873 | 6559 pbm->label = _("Re-request Authorization"); |
5131 | 6560 pbm->callback = gaim_auth_sendrequest; |
6561 pbm->gc = gc; | |
6562 m = g_list_append(m, pbm); | |
4333 | 6563 } |
4916 | 6564 } |
6565 | |
4333 | 6566 return m; |
6567 } | |
6568 | |
5575 | 6569 static void oscar_format_screenname(GaimConnection *gc, const char *nick) { |
7283 | 6570 OscarData *od = gc->proto_data; |
5575 | 6571 if (!aim_sncmp(gaim_account_get_username(gaim_connection_get_account(gc)), nick)) { |
4333 | 6572 if (!aim_getconn_type(od->sess, AIM_CONN_TYPE_AUTH)) { |
6573 od->setnick = TRUE; | |
6574 od->newsn = g_strdup(nick); | |
6575 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_AUTH); | |
6576 } else { | |
6577 aim_admin_setnick(od->sess, aim_getconn_type(od->sess, AIM_CONN_TYPE_AUTH), nick); | |
6578 } | |
6579 } else { | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
6580 gaim_notify_error(gc, NULL, _("The new formatting is invalid."), |
8152 | 6581 _("Screen name formatting can change only capitalization and whitespace.")); |
4333 | 6582 } |
6583 } | |
6584 | |
5575 | 6585 static void oscar_show_format_screenname(GaimConnection *gc) |
4333 | 6586 { |
8152 | 6587 gaim_request_input(gc, NULL, _("New screen name formatting:"), NULL, |
6035
8c44020a958e
[gaim-migrate @ 6485]
Christian Hammond <chipx86@chipx86.com>
parents:
6029
diff
changeset
|
6588 gaim_connection_get_display_name(gc), FALSE, FALSE, |
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
6589 _("OK"), G_CALLBACK(oscar_format_screenname), |
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
6590 _("Cancel"), NULL, |
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
6591 gc); |
4333 | 6592 } |
6593 | |
5575 | 6594 static void oscar_confirm_account(GaimConnection *gc) |
4333 | 6595 { |
7283 | 6596 OscarData *od = gc->proto_data; |
4333 | 6597 aim_conn_t *conn = aim_getconn_type(od->sess, AIM_CONN_TYPE_AUTH); |
6598 | |
6599 if (conn) { | |
6600 aim_admin_reqconfirm(od->sess, conn); | |
6601 } else { | |
6602 od->conf = TRUE; | |
6603 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_AUTH); | |
6604 } | |
6605 } | |
6606 | |
5575 | 6607 static void oscar_show_email(GaimConnection *gc) |
4333 | 6608 { |
7283 | 6609 OscarData *od = gc->proto_data; |
4333 | 6610 aim_conn_t *conn = aim_getconn_type(od->sess, AIM_CONN_TYPE_AUTH); |
6611 | |
6612 if (conn) { | |
6613 aim_admin_getinfo(od->sess, conn, 0x11); | |
6614 } else { | |
6615 od->reqemail = TRUE; | |
6616 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_AUTH); | |
6617 } | |
6618 } | |
6619 | |
5575 | 6620 static void oscar_change_email(GaimConnection *gc, const char *email) |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6621 { |
7283 | 6622 OscarData *od = gc->proto_data; |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6623 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
|
6624 |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6625 if (conn) { |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6626 aim_admin_setemail(od->sess, conn, email); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6627 } else { |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6628 od->setemail = TRUE; |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6629 od->email = g_strdup(email); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6630 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_AUTH); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6631 } |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6632 } |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6633 |
5575 | 6634 static void oscar_show_change_email(GaimConnection *gc) |
4333 | 6635 { |
6035
8c44020a958e
[gaim-migrate @ 6485]
Christian Hammond <chipx86@chipx86.com>
parents:
6029
diff
changeset
|
6636 gaim_request_input(gc, NULL, _("Change Address To:"), NULL, NULL, |
8c44020a958e
[gaim-migrate @ 6485]
Christian Hammond <chipx86@chipx86.com>
parents:
6029
diff
changeset
|
6637 FALSE, FALSE, |
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
6638 _("OK"), G_CALLBACK(oscar_change_email), |
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
6639 _("Cancel"), NULL, |
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
6640 gc); |
4333 | 6641 } |
6642 | |
5575 | 6643 static void oscar_show_awaitingauth(GaimConnection *gc) |
4333 | 6644 { |
7283 | 6645 OscarData *od = gc->proto_data; |
4333 | 6646 gchar *nombre, *text, *tmp; |
6695 | 6647 GaimBlistNode *gnode, *cnode, *bnode; |
4333 | 6648 int num=0; |
6649 | |
6873 | 6650 text = g_strdup(""); |
4333 | 6651 |
4785 | 6652 for (gnode = gaim_get_blist()->root; gnode; gnode = gnode->next) { |
6695 | 6653 GaimGroup *group = (GaimGroup *)gnode; |
4785 | 6654 if(!GAIM_BLIST_NODE_IS_GROUP(gnode)) |
6655 continue; | |
6695 | 6656 for (cnode = gnode->child; cnode; cnode = cnode->next) { |
6657 if(!GAIM_BLIST_NODE_IS_CONTACT(cnode)) | |
4785 | 6658 continue; |
6695 | 6659 for (bnode = cnode->child; bnode; bnode = bnode->next) { |
6660 GaimBuddy *buddy = (GaimBuddy *)bnode; | |
6661 if(!GAIM_BLIST_NODE_IS_BUDDY(bnode)) | |
6662 continue; | |
6663 if (buddy->account == gc->account && aim_ssi_waitingforauth(od->sess->ssi.local, group->name, buddy->name)) { | |
6664 if (gaim_get_buddy_alias_only(buddy)) | |
6665 nombre = g_strdup_printf(" %s (%s)", buddy->name, gaim_get_buddy_alias_only(buddy)); | |
6666 else | |
6667 nombre = g_strdup_printf(" %s", buddy->name); | |
6873 | 6668 tmp = g_strdup_printf("%s%s<br>", text, nombre); |
6695 | 6669 g_free(text); |
6670 text = tmp; | |
6671 g_free(nombre); | |
6672 num++; | |
6673 } | |
4333 | 6674 } |
2979 | 6675 } |
4333 | 6676 } |
6677 | |
6678 if (!num) { | |
6679 g_free(text); | |
6873 | 6680 text = g_strdup(_("<i>you are not waiting for authorization</i>")); |
6681 } | |
6682 | |
6683 gaim_notify_formatted(gc, NULL, _("You are awaiting authorization from " | |
6684 "the following buddies"), _("You can re-request " | |
6685 "authorization from these buddies by " | |
6686 "right-clicking on them and selecting " | |
6687 "\"Re-request Authorization.\""), text, NULL, NULL); | |
4333 | 6688 g_free(text); |
2979 | 6689 } |
6690 | |
7080
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6691 static void search_by_email_cb(GaimConnection *gc, const char *email) |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6692 { |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6693 serv_dir_search(gc, "", "", "", "", "", "", "", email); |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6694 } |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6695 |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6696 static void oscar_show_find_email(GaimConnection *gc) |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6697 { |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6698 gaim_request_input(gc, _("Find Buddy by E-mail"), |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6699 _("Search for a buddy by e-mail address"), |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6700 _("Type the e-mail address of the buddy you are " |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6701 "searching for."), |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6702 NULL, FALSE, FALSE, |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6703 _("Search"), G_CALLBACK(search_by_email_cb), |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6704 _("Cancel"), NULL, gc); |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6705 } |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6706 |
7366 | 6707 #if 0 |
5917 | 6708 static void oscar_setavailmsg(GaimConnection *gc, char *text) { |
7283 | 6709 OscarData *od = (OscarData *)gc->proto_data; |
5917 | 6710 |
7334 | 6711 aim_locate_setprofile(od->sess, NULL, NULL, 0, NULL, "", 0); |
5917 | 6712 aim_srv_setavailmsg(od->sess, text); |
6713 } | |
6714 | |
6715 static void oscar_show_setavailmsg(GaimConnection *gc) | |
6716 { | |
7313 | 6717 gaim_request_input(gc, NULL, _("Available Message:"), NULL, |
6718 _("I'm doing work and hoping for a distraction--IM me!"), | |
6719 TRUE, FALSE, | |
5917 | 6720 _("OK"), G_CALLBACK(oscar_setavailmsg), |
6721 _("Cancel"), NULL, | |
6722 gc); | |
6723 } | |
7366 | 6724 #endif |
5917 | 6725 |
7067
71e0da45abe6
[gaim-migrate @ 7631]
Christian Hammond <chipx86@chipx86.com>
parents:
7063
diff
changeset
|
6726 static void oscar_show_set_info(GaimConnection *gc) |
71e0da45abe6
[gaim-migrate @ 7631]
Christian Hammond <chipx86@chipx86.com>
parents:
7063
diff
changeset
|
6727 { |
71e0da45abe6
[gaim-migrate @ 7631]
Christian Hammond <chipx86@chipx86.com>
parents:
7063
diff
changeset
|
6728 gaim_account_request_change_user_info(gaim_connection_get_account(gc)); |
71e0da45abe6
[gaim-migrate @ 7631]
Christian Hammond <chipx86@chipx86.com>
parents:
7063
diff
changeset
|
6729 } |
71e0da45abe6
[gaim-migrate @ 7631]
Christian Hammond <chipx86@chipx86.com>
parents:
7063
diff
changeset
|
6730 |
7063
7fdac700deb1
[gaim-migrate @ 7627]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
6731 static void oscar_change_pass(GaimConnection *gc) |
7fdac700deb1
[gaim-migrate @ 7627]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
6732 { |
7fdac700deb1
[gaim-migrate @ 7627]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
6733 gaim_account_request_change_password(gaim_connection_get_account(gc)); |
7fdac700deb1
[gaim-migrate @ 7627]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
6734 } |
7fdac700deb1
[gaim-migrate @ 7627]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
6735 |
5575 | 6736 static void oscar_show_chpassurl(GaimConnection *gc) |
4333 | 6737 { |
7283 | 6738 OscarData *od = gc->proto_data; |
5575 | 6739 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
|
6740 gaim_notify_uri(gc, substituted); |
5517 | 6741 g_free(substituted); |
4333 | 6742 } |
6743 | |
7026 | 6744 static void oscar_show_imforwardingurl(GaimConnection *gc) |
6745 { | |
6746 gaim_notify_uri(gc, "http://mymobile.aol.com/dbreg/register?action=imf&clientID=1"); | |
6747 } | |
6748 | |
5842 | 6749 static void oscar_set_icon(GaimConnection *gc, const char *iconfile) |
6750 { | |
7283 | 6751 OscarData *od = gc->proto_data; |
5844 | 6752 aim_session_t *sess = od->sess; |
5842 | 6753 FILE *file; |
6754 struct stat st; | |
5844 | 6755 |
6039 | 6756 if (iconfile == NULL) { |
8363 | 6757 aim_ssi_delicon(od->sess); |
6039 | 6758 } else if (!stat(iconfile, &st)) { |
5842 | 6759 char *buf = g_malloc(st.st_size); |
6760 file = fopen(iconfile, "rb"); | |
6761 if (file) { | |
6052 | 6762 md5_state_t *state; |
6039 | 6763 char md5[16]; |
5842 | 6764 int len = fread(buf, 1, st.st_size, file); |
6039 | 6765 fclose(file); |
6052 | 6766 state = g_malloc(sizeof(md5_state_t)); |
5842 | 6767 md5_init(state); |
6768 md5_append(state, buf, len); | |
6769 md5_finish(state, md5); | |
6770 g_free(state); | |
6771 aim_ssi_seticon(sess, md5, 16); | |
6772 } else | |
6773 gaim_debug(GAIM_DEBUG_ERROR, "oscar", | |
6774 "Can't open buddy icon file!\n"); | |
6775 g_free(buf); | |
6776 } else | |
6777 gaim_debug(GAIM_DEBUG_ERROR, "oscar", | |
6778 "Can't stat buddy icon file!\n"); | |
6779 } | |
6780 | |
6781 | |
5575 | 6782 static GList *oscar_actions(GaimConnection *gc) |
2086 | 6783 { |
7283 | 6784 OscarData *od = gc->proto_data; |
4333 | 6785 struct proto_actions_menu *pam; |
6786 GList *m = NULL; | |
6787 | |
6788 pam = g_new0(struct proto_actions_menu, 1); | |
7853 | 6789 pam->label = _("Set User Info..."); |
7067
71e0da45abe6
[gaim-migrate @ 7631]
Christian Hammond <chipx86@chipx86.com>
parents:
7063
diff
changeset
|
6790 pam->callback = oscar_show_set_info; |
4333 | 6791 pam->gc = gc; |
6792 m = g_list_append(m, pam); | |
6793 | |
7366 | 6794 #if 0 |
5917 | 6795 pam = g_new0(struct proto_actions_menu, 1); |
7853 | 6796 pam->label = _("Set Available Message..."); |
5917 | 6797 pam->callback = oscar_show_setavailmsg; |
6798 pam->gc = gc; | |
6799 m = g_list_append(m, pam); | |
7366 | 6800 #endif |
5917 | 6801 |
5238 | 6802 pam = g_new0(struct proto_actions_menu, 1); |
7853 | 6803 pam->label = _("Change Password..."); |
7063
7fdac700deb1
[gaim-migrate @ 7627]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
6804 pam->callback = oscar_change_pass; |
5238 | 6805 pam->gc = gc; |
6806 m = g_list_append(m, pam); | |
4617 | 6807 |
6808 if (od->sess->authinfo->chpassurl) { | |
6809 pam = g_new0(struct proto_actions_menu, 1); | |
6810 pam->label = _("Change Password (URL)"); | |
6811 pam->callback = oscar_show_chpassurl; | |
6812 pam->gc = gc; | |
6813 m = g_list_append(m, pam); | |
6814 } | |
6815 | |
7026 | 6816 if (od->sess->authinfo->chpassurl) { |
6817 pam = g_new0(struct proto_actions_menu, 1); | |
6818 pam->label = _("Configure IM Forwarding (URL)"); | |
6819 pam->callback = oscar_show_imforwardingurl; | |
6820 pam->gc = gc; | |
6821 m = g_list_append(m, pam); | |
6822 } | |
6823 | |
5238 | 6824 if (!od->icq) { |
4617 | 6825 /* AIM actions */ |
6826 m = g_list_append(m, NULL); | |
4333 | 6827 |
5917 | 6828 pam = g_new0(struct proto_actions_menu, 1); |
8152 | 6829 pam->label = _("Format Screen Name..."); |
5844 | 6830 pam->callback = oscar_show_format_screenname; |
4333 | 6831 pam->gc = gc; |
6832 m = g_list_append(m, pam); | |
6833 | |
6834 pam = g_new0(struct proto_actions_menu, 1); | |
6835 pam->label = _("Confirm Account"); | |
6836 pam->callback = oscar_confirm_account; | |
6837 pam->gc = gc; | |
6838 m = g_list_append(m, pam); | |
6839 | |
6840 pam = g_new0(struct proto_actions_menu, 1); | |
7880 | 6841 pam->label = _("Display Currently Registered Address"); |
4333 | 6842 pam->callback = oscar_show_email; |
6843 pam->gc = gc; | |
6844 m = g_list_append(m, pam); | |
6845 | |
6846 pam = g_new0(struct proto_actions_menu, 1); | |
7880 | 6847 pam->label = _("Change Currently Registered Address..."); |
4333 | 6848 pam->callback = oscar_show_change_email; |
6849 pam->gc = gc; | |
6850 m = g_list_append(m, pam); | |
2086 | 6851 } |
4333 | 6852 |
6853 m = g_list_append(m, NULL); | |
6854 | |
6855 pam = g_new0(struct proto_actions_menu, 1); | |
6856 pam->label = _("Show Buddies Awaiting Authorization"); | |
6857 pam->callback = oscar_show_awaitingauth; | |
6858 pam->gc = gc; | |
6859 m = g_list_append(m, pam); | |
6860 | |
2086 | 6861 m = g_list_append(m, NULL); |
4333 | 6862 |
6863 pam = g_new0(struct proto_actions_menu, 1); | |
7853 | 6864 pam->label = _("Search for Buddy by Email..."); |
7080
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6865 pam->callback = oscar_show_find_email; |
4333 | 6866 pam->gc = gc; |
6867 m = g_list_append(m, pam); | |
6868 | |
4336 | 6869 /* pam = g_new0(struct proto_actions_menu, 1); |
4333 | 6870 pam->label = _("Search for Buddy by Information"); |
6871 pam->callback = show_find_info; | |
6872 pam->gc = gc; | |
4336 | 6873 m = g_list_append(m, pam); */ |
2086 | 6874 |
6875 return m; | |
6876 } | |
6877 | |
5575 | 6878 static void oscar_change_passwd(GaimConnection *gc, const char *old, const char *new) |
2086 | 6879 { |
7283 | 6880 OscarData *od = gc->proto_data; |
4617 | 6881 |
6882 if (od->icq) { | |
6883 aim_icq_changepasswd(od->sess, new); | |
2086 | 6884 } else { |
4617 | 6885 aim_conn_t *conn = aim_getconn_type(od->sess, AIM_CONN_TYPE_AUTH); |
6886 if (conn) { | |
6887 aim_admin_changepasswd(od->sess, conn, new, old); | |
6888 } else { | |
6889 od->chpass = TRUE; | |
6890 od->oldp = g_strdup(old); | |
6891 od->newp = g_strdup(new); | |
6892 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_AUTH); | |
6893 } | |
2086 | 6894 } |
6895 } | |
6896 | |
6059 | 6897 static void oscar_convo_closed(GaimConnection *gc, const char *who) |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6898 { |
7283 | 6899 OscarData *od = gc->proto_data; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6900 struct direct_im *dim = find_direct_im(od, who); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6901 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6902 if (!dim) |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6903 return; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6904 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6905 od->direct_ims = g_slist_remove(od->direct_ims, dim); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6906 gaim_input_remove(dim->watcher); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6907 aim_conn_kill(od->sess, &dim->conn); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6908 g_free(dim); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6909 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6910 |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6911 static GaimPluginProtocolInfo prpl_info = |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6912 { |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6913 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
|
6914 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6915 NULL, |
8170 | 6916 NULL, |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6917 oscar_list_icon, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6918 oscar_list_emblems, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6919 oscar_status_text, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6920 oscar_tooltip_text, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6921 oscar_away_states, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6922 oscar_actions, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6923 oscar_buddy_menu, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6924 oscar_chat_info, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6925 oscar_login, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6926 oscar_close, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6927 oscar_send_im, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6928 oscar_set_info, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6929 oscar_send_typing, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6930 oscar_get_info, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6931 oscar_set_away, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6932 oscar_get_away, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6933 oscar_set_dir, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6934 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6935 oscar_dir_search, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6936 oscar_set_idle, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6937 oscar_change_passwd, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6938 oscar_add_buddy, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6939 oscar_add_buddies, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6940 oscar_remove_buddy, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6941 oscar_remove_buddies, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6942 oscar_add_permit, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6943 oscar_add_deny, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6944 oscar_rem_permit, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6945 oscar_rem_deny, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6946 oscar_set_permit_deny, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6947 oscar_warn, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6948 oscar_join_chat, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6949 oscar_chat_invite, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6950 oscar_chat_leave, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6951 NULL, |
8219 | 6952 oscar_send_chat, |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6953 oscar_keepalive, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6954 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6955 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6956 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6957 #ifndef NOSSI |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6958 oscar_alias_buddy, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6959 oscar_move_buddy, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6960 oscar_rename_group, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6961 #else |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6962 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6963 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6964 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6965 #endif |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6966 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6967 oscar_convo_closed, |
5842 | 6968 NULL, |
7650 | 6969 oscar_set_icon |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6970 }; |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6971 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6972 static GaimPluginInfo info = |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6973 { |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6974 2, /**< api_version */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6975 GAIM_PLUGIN_PROTOCOL, /**< type */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6976 NULL, /**< ui_requirement */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6977 0, /**< flags */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6978 NULL, /**< dependencies */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6979 GAIM_PRIORITY_DEFAULT, /**< priority */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6980 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6981 "prpl-oscar", /**< id */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6982 "AIM/ICQ", /**< name */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6983 VERSION, /**< version */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6984 /** summary */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6985 N_("AIM/ICQ Protocol Plugin"), |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6986 /** description */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6987 N_("AIM/ICQ Protocol Plugin"), |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6988 NULL, /**< author */ |
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6350
diff
changeset
|
6989 GAIM_WEBSITE, /**< homepage */ |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6990 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6991 NULL, /**< load */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6992 NULL, /**< unload */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6993 NULL, /**< destroy */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6994 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6995 NULL, /**< ui_info */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6996 &prpl_info /**< extra_info */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6997 }; |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6998 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6999 static void |
5920
7d385de2f9cd
[gaim-migrate @ 6360]
Christian Hammond <chipx86@chipx86.com>
parents:
5917
diff
changeset
|
7000 init_plugin(GaimPlugin *plugin) |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7001 { |
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5631
diff
changeset
|
7002 GaimAccountOption *option; |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5631
diff
changeset
|
7003 |
5685
43ea75092684
[gaim-migrate @ 6106]
Christian Hammond <chipx86@chipx86.com>
parents:
5681
diff
changeset
|
7004 option = gaim_account_option_string_new(_("Auth host"), "server", |
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5631
diff
changeset
|
7005 "login.oscar.aol.com"); |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5631
diff
changeset
|
7006 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5631
diff
changeset
|
7007 option); |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5631
diff
changeset
|
7008 |
5685
43ea75092684
[gaim-migrate @ 6106]
Christian Hammond <chipx86@chipx86.com>
parents:
5681
diff
changeset
|
7009 option = gaim_account_option_int_new(_("Auth port"), "port", 5190); |
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5631
diff
changeset
|
7010 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5631
diff
changeset
|
7011 option); |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7012 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7013 my_protocol = plugin; |
2086 | 7014 } |
7015 | |
5920
7d385de2f9cd
[gaim-migrate @ 6360]
Christian Hammond <chipx86@chipx86.com>
parents:
5917
diff
changeset
|
7016 GAIM_INIT_PLUGIN(oscar, init_plugin, info); |