Mercurial > pidgin
annotate src/protocols/oscar/oscar.c @ 8564:f4d8a73f7bcc
[gaim-migrate @ 9311]
this _might_ do a better job with the incoming ICQ html, but I defer to
KingAnt for a final decision
committer: Tailor Script <tailor@pidgin.im>
author | Nathan Walp <nwalp@pidgin.im> |
---|---|
date | Fri, 02 Apr 2004 16:37:33 +0000 |
parents | e3c059c3d92d |
children | 88988327a4e0 |
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])) { | |
8564 | 2363 gchar *tmp2; |
2364 gaim_markup_html_to_xhtml(tmp, &tmp2, NULL); | |
8493 | 2365 g_free(tmp); |
2366 tmp = tmp2; | |
2367 } | |
2368 | |
6982 | 2369 serv_got_im(gc, userinfo->sn, tmp, flags, time(NULL)); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2370 g_free(tmp); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2371 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2372 return 1; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2373 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2374 |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
2375 static int incomingim_chan2(aim_session_t *sess, aim_conn_t *conn, aim_userinfo_t *userinfo, struct aim_incomingim_ch2_args *args) { |
5575 | 2376 GaimConnection *gc = sess->aux_data; |
7283 | 2377 OscarData *od = gc->proto_data; |
5575 | 2378 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
|
2379 |
4121 | 2380 if (!args) |
2381 return 0; | |
4194 | 2382 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2383 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2384 "rendezvous with %s, status is %hu\n", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2385 userinfo->sn, args->status); |
2869 | 2386 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2387 if (args->reqclass & AIM_CAPS_CHAT) { |
4121 | 2388 char *name; |
5234 | 2389 GHashTable *components; |
2390 | |
4121 | 2391 if (!args->info.chat.roominfo.name || !args->info.chat.roominfo.exchange || !args->msg) |
2392 return 1; | |
5234 | 2393 components = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, |
2394 g_free); | |
4121 | 2395 name = extract_name(args->info.chat.roominfo.name); |
5234 | 2396 g_hash_table_replace(components, g_strdup("room"), g_strdup(name ? name : args->info.chat.roominfo.name)); |
2397 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
|
2398 serv_got_chat_invite(gc, |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2399 name ? name : args->info.chat.roominfo.name, |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2400 userinfo->sn, |
6059 | 2401 args->msg, |
5234 | 2402 components); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2403 if (name) |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2404 g_free(name); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2405 } else if (args->reqclass & AIM_CAPS_SENDFILE) { |
4617 | 2406 /* BBB */ |
2407 if (args->status == AIM_RENDEZVOUS_PROPOSE) { | |
2408 /* Someone wants to send a file (or files) to us */ | |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
2409 GaimXfer *xfer; |
5146 | 2410 struct aim_oft_info *oft_info; |
2411 | |
2412 if (!args->cookie || !args->port || !args->verifiedip || | |
2413 !args->info.sendfile.filename || !args->info.sendfile.totsize || | |
4656 | 2414 !args->info.sendfile.totfiles || !args->reqclass) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2415 gaim_debug(GAIM_DEBUG_WARNING, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2416 "%s tried to send you a file with incomplete " |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2417 "information.\n", userinfo->sn); |
5146 | 2418 if (args->proxyip) |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2419 gaim_debug(GAIM_DEBUG_WARNING, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2420 "IP for a proxy server was given. Gaim " |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2421 "does not support this yet.\n"); |
4617 | 2422 return 1; |
4656 | 2423 } |
4617 | 2424 |
2425 if (args->info.sendfile.subtype == AIM_OFT_SUBTYPE_SEND_DIR) { | |
2426 /* last char of the ft req is a star, they are sending us a | |
2427 * directory -- remove the star and trailing slash so we dont save | |
2428 * directories that look like 'dirname\*' -- arl */ | |
2429 char *tmp = strrchr(args->info.sendfile.filename, '\\'); | |
2430 if (tmp && (tmp[1] == '*')) { | |
2431 tmp[0] = '\0'; | |
2432 } | |
8446 | 2433 gaim_debug(GAIM_DEBUG_WARNING, "oscar", |
2434 "We're receiving a whole directory! What fun! " | |
2435 "Especially since we don't support that!\n"); | |
4617 | 2436 } |
2437 | |
2438 /* Build the file transfer handle */ | |
2439 xfer = gaim_xfer_new(gc->account, GAIM_XFER_RECEIVE, userinfo->sn); | |
5163 | 2440 xfer->remote_ip = g_strdup(args->verifiedip); |
5146 | 2441 xfer->remote_port = args->port; |
4617 | 2442 gaim_xfer_set_filename(xfer, args->info.sendfile.filename); |
2443 gaim_xfer_set_size(xfer, args->info.sendfile.totsize); | |
5146 | 2444 |
2445 /* Create the oscar-specific data */ | |
5163 | 2446 oft_info = aim_oft_createinfo(od->sess, args->cookie, userinfo->sn, args->clientip, xfer->remote_port, 0, 0, NULL); |
4898 | 2447 if (args->proxyip) |
5146 | 2448 oft_info->proxyip = g_strdup(args->proxyip); |
4898 | 2449 if (args->verifiedip) |
5146 | 2450 oft_info->verifiedip = g_strdup(args->verifiedip); |
2451 xfer->data = oft_info; | |
4617 | 2452 |
2453 /* Setup our I/O op functions */ | |
8446 | 2454 gaim_xfer_set_init_fnc(xfer, oscar_xfer_init_recv); |
4617 | 2455 gaim_xfer_set_end_fnc(xfer, oscar_xfer_end); |
8446 | 2456 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
|
2457 gaim_xfer_set_cancel_recv_fnc(xfer, oscar_xfer_cancel_recv); |
8446 | 2458 gaim_xfer_set_ack_fnc(xfer, oscar_xfer_ack_recv); |
4617 | 2459 |
2460 /* | |
2461 * XXX - Should do something with args->msg, args->encoding, and args->language | |
2462 * probably make it apply to all ch2 messages. | |
3752 | 2463 */ |
4617 | 2464 |
2465 /* Keep track of this transfer for later */ | |
2466 od->file_transfers = g_slist_append(od->file_transfers, xfer); | |
2467 | |
2468 /* Now perform the request */ | |
2469 gaim_xfer_request(xfer); | |
2470 } else if (args->status == AIM_RENDEZVOUS_CANCEL) { | |
2471 /* The other user wants to cancel a file transfer */ | |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
2472 GaimXfer *xfer; |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2473 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2474 "AAA - File transfer canceled by remote user\n"); |
4617 | 2475 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
|
2476 gaim_xfer_cancel_remote(xfer); |
4617 | 2477 } else if (args->status == AIM_RENDEZVOUS_ACCEPT) { |
2478 /* | |
2479 * This gets sent by the receiver of a file | |
2480 * as they connect directly to us. If we don't | |
2481 * get this, then maybe a third party connected | |
2482 * to us, and we shouldn't send them anything. | |
2483 */ | |
2484 } else { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2485 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2486 "unknown rendezvous status!\n"); |
3630 | 2487 } |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2488 } else if (args->reqclass & AIM_CAPS_GETFILE) { |
8092 | 2489 } else if (args->reqclass & AIM_CAPS_TALK) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2490 } else if (args->reqclass & AIM_CAPS_BUDDYICON) { |
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6787
diff
changeset
|
2491 gaim_buddy_icons_set_for_user(gaim_connection_get_account(gc), |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6787
diff
changeset
|
2492 userinfo->sn, args->info.icon.icon, |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6787
diff
changeset
|
2493 args->info.icon.length); |
6871 | 2494 } else if (args->reqclass & AIM_CAPS_DIRECTIM) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2495 struct ask_direct *d = g_new0(struct ask_direct, 1); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2496 char buf[256]; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2497 |
4212 | 2498 if (!args->verifiedip) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2499 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2500 "directim kill blocked (%s)\n", userinfo->sn); |
4650 | 2501 return 1; |
4212 | 2502 } |
2503 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2504 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2505 "%s received direct im request from %s (%s)\n", |
5575 | 2506 username, userinfo->sn, args->verifiedip); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2507 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2508 d->gc = gc; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2509 d->sn = g_strdup(userinfo->sn); |
8552 | 2510 snprintf(d->ip, sizeof(d->ip), "%s:%d", args->verifiedip, args->port); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2511 memcpy(d->cookie, args->cookie, 8); |
5575 | 2512 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
|
2513 |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2514 gaim_request_action(gc, NULL, buf, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2515 _("This requires a direct connection between " |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2516 "the two computers and is necessary for IM " |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2517 "Images. Because your IP address will be " |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2518 "revealed, this may be considered a privacy " |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2519 "risk."), 0, d, 2, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2520 _("Connect"), G_CALLBACK(accept_direct_im), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2521 _("Cancel"), G_CALLBACK(cancel_direct_im)); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2522 } else { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2523 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2524 "Unknown reqclass %hu\n", args->reqclass); |
2246
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 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2527 return 1; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2528 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2529 |
3453 | 2530 /* |
4230 | 2531 * Authorization Functions |
2532 * Most of these are callbacks from dialogs. They're used by both | |
2533 * methods of authorization (SSI and old-school channel 4 ICBM) | |
3453 | 2534 */ |
4269 | 2535 /* When you ask other people for authorization */ |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2536 static void gaim_auth_request(struct name_data *data, char *msg) { |
5575 | 2537 GaimConnection *gc = data->gc; |
4244 | 2538 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
2539 if (g_list_find(gaim_connections_get_all(), gc)) { |
7283 | 2540 OscarData *od = gc->proto_data; |
6695 | 2541 GaimBuddy *buddy = gaim_find_buddy(gc->account, data->name); |
2542 GaimGroup *group = gaim_find_buddys_group(buddy); | |
4244 | 2543 if (buddy && group) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2544 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2545 "ssi: adding buddy %s to group %s\n", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2546 buddy->name, group->name); |
4889 | 2547 aim_ssi_sendauthrequest(od->sess, data->name, msg ? msg : _("Please authorize me so I can add you to my buddy list.")); |
4269 | 2548 if (!aim_ssi_itemlist_finditem(od->sess->ssi.local, group->name, buddy->name, AIM_SSI_TYPE_BUDDY)) |
4889 | 2549 aim_ssi_addbuddy(od->sess, buddy->name, group->name, gaim_get_buddy_alias_only(buddy), NULL, NULL, 1); |
4244 | 2550 } |
4230 | 2551 } |
4337 | 2552 } |
2553 | |
2554 static void gaim_auth_request_msgprompt(struct name_data *data) { | |
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
2555 gaim_request_input(data->gc, NULL, _("Authorization Request Message:"), |
6035
8c44020a958e
[gaim-migrate @ 6485]
Christian Hammond <chipx86@chipx86.com>
parents:
6029
diff
changeset
|
2556 NULL, _("Please authorize me!"), TRUE, FALSE, |
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
2557 _("OK"), G_CALLBACK(gaim_auth_request), |
5836 | 2558 _("Cancel"), G_CALLBACK(oscar_free_name_data), |
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
2559 data); |
4230 | 2560 } |
2561 | |
2562 static void gaim_auth_dontrequest(struct name_data *data) { | |
5575 | 2563 GaimConnection *gc = data->gc; |
4244 | 2564 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
2565 if (g_list_find(gaim_connections_get_all(), gc)) { |
8151 | 2566 /* Remove from local list */ |
2567 GaimBuddy *b = gaim_find_buddy(gaim_connection_get_account(gc), data->name); | |
2568 gaim_blist_remove_buddy(b); | |
4244 | 2569 } |
2570 | |
5836 | 2571 oscar_free_name_data(data); |
4230 | 2572 } |
2573 | |
5575 | 2574 static void gaim_auth_sendrequest(GaimConnection *gc, const char *name) { |
4269 | 2575 struct name_data *data = g_new(struct name_data, 1); |
6695 | 2576 GaimBuddy *buddy; |
4269 | 2577 gchar *dialog_msg, *nombre; |
2578 | |
4687 | 2579 buddy = gaim_find_buddy(gc->account, name); |
2580 if (buddy && (gaim_get_buddy_alias_only(buddy))) | |
2581 nombre = g_strdup_printf("%s (%s)", name, gaim_get_buddy_alias_only(buddy)); | |
4269 | 2582 else |
4830 | 2583 nombre = NULL; |
2584 | |
2585 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 | 2586 data->gc = gc; |
2587 data->name = g_strdup(name); | |
2588 data->nick = NULL; | |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2589 |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2590 gaim_request_action(gc, NULL, _("Request Authorization"), dialog_msg, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2591 0, data, 2, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2592 _("Request Authorization"), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2593 G_CALLBACK(gaim_auth_request_msgprompt), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2594 _("Cancel"), G_CALLBACK(gaim_auth_dontrequest)); |
4269 | 2595 |
2596 g_free(dialog_msg); | |
2597 g_free(nombre); | |
2598 } | |
2599 | |
4230 | 2600 /* When other people ask you for authorization */ |
2601 static void gaim_auth_grant(struct name_data *data) { | |
5575 | 2602 GaimConnection *gc = data->gc; |
4244 | 2603 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
2604 if (g_list_find(gaim_connections_get_all(), gc)) { |
7283 | 2605 OscarData *od = gc->proto_data; |
4236 | 2606 #ifdef NOSSI |
6695 | 2607 GaimBuddy *buddy; |
4244 | 2608 gchar message; |
2609 message = 0; | |
4687 | 2610 buddy = gaim_find_buddy(gc->account, data->name); |
4617 | 2611 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
|
2612 gaim_account_notify_added(gc->account, NULL, data->name, (buddy ? gaim_get_buddy_alias_only(buddy) : NULL), NULL); |
4230 | 2613 #else |
4889 | 2614 aim_ssi_sendauthreply(od->sess, data->name, 0x01, NULL); |
4230 | 2615 #endif |
4244 | 2616 } |
2617 | |
5836 | 2618 oscar_free_name_data(data); |
3141 | 2619 } |
2620 | |
4230 | 2621 /* When other people ask you for authorization */ |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2622 static void gaim_auth_dontgrant(struct name_data *data, char *msg) { |
5575 | 2623 GaimConnection *gc = data->gc; |
4244 | 2624 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
2625 if (g_list_find(gaim_connections_get_all(), gc)) { |
7283 | 2626 OscarData *od = gc->proto_data; |
4230 | 2627 #ifdef NOSSI |
4617 | 2628 aim_im_sendch4(od->sess, data->name, AIM_ICQMSG_AUTHDENIED, msg ? msg : _("No reason given.")); |
4230 | 2629 #else |
4889 | 2630 aim_ssi_sendauthreply(od->sess, data->name, 0x00, msg ? msg : _("No reason given.")); |
4230 | 2631 #endif |
4244 | 2632 } |
4337 | 2633 } |
2634 | |
2635 static void gaim_auth_dontgrant_msgprompt(struct name_data *data) { | |
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
2636 gaim_request_input(data->gc, NULL, _("Authorization Denied Message:"), |
6035
8c44020a958e
[gaim-migrate @ 6485]
Christian Hammond <chipx86@chipx86.com>
parents:
6029
diff
changeset
|
2637 NULL, _("No reason given."), TRUE, FALSE, |
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
2638 _("OK"), G_CALLBACK(gaim_auth_dontgrant), |
5836 | 2639 _("Cancel"), G_CALLBACK(oscar_free_name_data), |
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
2640 data); |
3141 | 2641 } |
2642 | |
7023 | 2643 /* When someone sends you buddies */ |
2644 static void gaim_icq_buddyadd(struct name_data *data) { | |
5575 | 2645 GaimConnection *gc = data->gc; |
4244 | 2646 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
2647 if (g_list_find(gaim_connections_get_all(), gc)) { |
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
2648 gaim_blist_request_add_buddy(gaim_connection_get_account(gc), data->name, NULL, data->nick); |
4244 | 2649 } |
2650 | |
5836 | 2651 oscar_free_name_data(data); |
3453 | 2652 } |
2653 | |
4075 | 2654 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 | 2655 GaimConnection *gc = sess->aux_data; |
4076 | 2656 gchar **msg1, **msg2; |
2657 GError *err = NULL; | |
6051 | 2658 int i, numtoks; |
4076 | 2659 |
4121 | 2660 if (!args->type || !args->msg || !args->uin) |
2661 return 1; | |
4194 | 2662 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2663 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2664 "Received a channel 4 message of type 0x%02hhx.\n", args->type); |
4076 | 2665 |
2666 /* Split up the message at the delimeter character, then convert each string to UTF-8 */ | |
4173 | 2667 msg1 = g_strsplit(args->msg, "\376", 0); |
6051 | 2668 for (numtoks=0; msg1[numtoks]; numtoks++); |
2669 msg2 = (gchar **)g_malloc((numtoks+1)*sizeof(gchar *)); | |
4076 | 2670 for (i=0; msg1[i]; i++) { |
7478
3c21f3084ff0
[gaim-migrate @ 8091]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7475
diff
changeset
|
2671 gaim_str_strip_cr(msg1[i]); |
4076 | 2672 msg2[i] = g_convert(msg1[i], strlen(msg1[i]), "UTF-8", "ISO-8859-1", NULL, NULL, &err); |
4800 | 2673 if (err) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2674 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2675 "Error converting a string from ISO-8859-1 to " |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2676 "UTF-8 in oscar ICBM channel 4 parsing\n"); |
4800 | 2677 g_error_free(err); |
2678 } | |
4076 | 2679 } |
2680 msg2[i] = NULL; | |
2681 | |
3952 | 2682 switch (args->type) { |
4173 | 2683 case 0x01: { /* MacICQ message or basic offline message */ |
4076 | 2684 if (i >= 1) { |
5556 | 2685 gchar *uin = g_strdup_printf("%u", args->uin); |
8493 | 2686 gchar *tmp; |
2687 | |
2688 /* If the message came from an ICQ user then escape any HTML */ | |
8501 | 2689 tmp = gaim_escape_html(msg2[0]); |
8493 | 2690 |
4076 | 2691 if (t) { /* This is an offline message */ |
2692 /* I think this timestamp is in UTC, or something */ | |
8514 | 2693 serv_got_im(gc, uin, tmp, 0, t); |
4076 | 2694 } else { /* This is a message from MacICQ/Miranda */ |
8514 | 2695 serv_got_im(gc, uin, tmp, 0, time(NULL)); |
4076 | 2696 } |
2697 g_free(uin); | |
8493 | 2698 g_free(tmp); |
4075 | 2699 } |
3316 | 2700 } break; |
2701 | |
4173 | 2702 case 0x04: { /* Someone sent you a URL */ |
4076 | 2703 if (i >= 2) { |
7385 | 2704 if (msg2[1] != NULL) { |
2705 gchar *uin = g_strdup_printf("%u", args->uin); | |
2706 gchar *message = g_strdup_printf("<A HREF=\"%s\">%s</A>", | |
2707 msg2[1], | |
2708 (msg2[0] && msg2[0][0]) ? msg2[0] : msg2[1]); | |
2709 serv_got_im(gc, uin, message, 0, time(NULL)); | |
2710 g_free(uin); | |
2711 g_free(message); | |
2712 } | |
3453 | 2713 } |
2714 } break; | |
2715 | |
4173 | 2716 case 0x06: { /* Someone requested authorization */ |
4076 | 2717 if (i >= 6) { |
4230 | 2718 struct name_data *data = g_new(struct name_data, 1); |
5556 | 2719 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
|
2720 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
5556 | 2721 "Received an authorization request from UIN %u\n", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2722 args->uin); |
4076 | 2723 data->gc = gc; |
5556 | 2724 data->name = g_strdup_printf("%u", args->uin); |
4230 | 2725 data->nick = NULL; |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2726 |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2727 gaim_request_action(gc, NULL, _("Authorization Request"), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2728 dialog_msg, 0, data, 2, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2729 _("Authorize"), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2730 G_CALLBACK(gaim_auth_grant), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2731 _("Deny"), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2732 G_CALLBACK(gaim_auth_dontgrant_msgprompt)); |
4076 | 2733 g_free(dialog_msg); |
2734 } | |
3141 | 2735 } break; |
2736 | |
4173 | 2737 case 0x07: { /* Someone has denied you authorization */ |
4076 | 2738 if (i >= 1) { |
7023 | 2739 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
|
2740 gaim_notify_info(gc, NULL, _("ICQ authorization denied."), |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2741 dialog_msg); |
4076 | 2742 g_free(dialog_msg); |
2743 } | |
3141 | 2744 } break; |
2745 | |
4173 | 2746 case 0x08: { /* Someone has granted you authorization */ |
7023 | 2747 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
|
2748 gaim_notify_info(gc, NULL, "ICQ authorization accepted.", |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2749 dialog_msg); |
3141 | 2750 g_free(dialog_msg); |
2751 } break; | |
2752 | |
4333 | 2753 case 0x09: { /* Message from the Godly ICQ server itself, I think */ |
2754 if (i >= 5) { | |
2755 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
|
2756 gaim_notify_info(gc, NULL, "ICQ Server Message", dialog_msg); |
4333 | 2757 g_free(dialog_msg); |
2758 } | |
2759 } break; | |
2760 | |
4173 | 2761 case 0x0d: { /* Someone has sent you a pager message from http://www.icq.com/your_uin */ |
4076 | 2762 if (i >= 6) { |
4194 | 2763 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
|
2764 gaim_notify_info(gc, NULL, "ICQ Page", dialog_msg); |
4076 | 2765 g_free(dialog_msg); |
2766 } | |
4075 | 2767 } break; |
2768 | |
4173 | 2769 case 0x0e: { /* Someone has emailed you at your_uin@pager.icq.com */ |
4076 | 2770 if (i >= 6) { |
4308 | 2771 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
|
2772 gaim_notify_info(gc, NULL, "ICQ Email", dialog_msg); |
4076 | 2773 g_free(dialog_msg); |
2774 } | |
4075 | 2775 } break; |
2776 | |
4173 | 2777 case 0x12: { |
3141 | 2778 /* Ack for authorizing/denying someone. Or possibly an ack for sending any system notice */ |
7023 | 2779 /* Someone added you to their buddy list? */ |
3141 | 2780 } break; |
2781 | |
7023 | 2782 case 0x13: { /* Someone has sent you some ICQ buddies */ |
7631 | 2783 guint i, num; |
3453 | 2784 gchar **text; |
4173 | 2785 text = g_strsplit(args->msg, "\376", 0); |
3453 | 2786 if (text) { |
2787 num = 0; | |
2788 for (i=0; i<strlen(text[0]); i++) | |
2789 num = num*10 + text[0][i]-48; | |
2790 for (i=0; i<num; i++) { | |
4230 | 2791 struct name_data *data = g_new(struct name_data, 1); |
7023 | 2792 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 | 2793 data->gc = gc; |
4790 | 2794 data->name = g_strdup(text[i*2+1]); |
2795 data->nick = g_strdup(text[i*2+2]); | |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2796 |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2797 gaim_request_action(gc, NULL, message, |
7023 | 2798 _("Do you want to add this buddy " |
2799 "to your buddy list?"), | |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
2800 0, data, 2, |
7023 | 2801 _("Add"), G_CALLBACK(gaim_icq_buddyadd), |
5836 | 2802 _("Decline"), G_CALLBACK(oscar_free_name_data)); |
3453 | 2803 g_free(message); |
2804 } | |
2805 g_strfreev(text); | |
2806 } | |
2807 } break; | |
2808 | |
7023 | 2809 case 0x1a: { /* Someone has sent you a greeting card or requested buddies? */ |
3453 | 2810 /* This is boring and silly. */ |
2811 } break; | |
2812 | |
3141 | 2813 default: { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2814 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2815 "Received a channel 4 message of unknown type " |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2816 "(type 0x%02hhx).\n", args->type); |
3141 | 2817 } break; |
2818 } | |
2819 | |
4076 | 2820 g_strfreev(msg1); |
2821 g_strfreev(msg2); | |
2822 | |
3141 | 2823 return 1; |
2824 } | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2825 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2826 static int gaim_parse_incoming_im(aim_session_t *sess, aim_frame_t *fr, ...) { |
4200 | 2827 fu16_t channel; |
2828 int ret = 0; | |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
2829 aim_userinfo_t *userinfo; |
2086 | 2830 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2831 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2832 va_start(ap, fr); |
4200 | 2833 channel = (fu16_t)va_arg(ap, unsigned int); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
2834 userinfo = va_arg(ap, aim_userinfo_t *); |
2086 | 2835 |
3141 | 2836 switch (channel) { |
2837 case 1: { /* standard message */ | |
2838 struct aim_incomingim_ch1_args *args; | |
2839 args = va_arg(ap, struct aim_incomingim_ch1_args *); | |
2840 ret = incomingim_chan1(sess, fr->conn, userinfo, args); | |
2841 } break; | |
2842 | |
2843 case 2: { /* rendevous */ | |
2844 struct aim_incomingim_ch2_args *args; | |
2845 args = va_arg(ap, struct aim_incomingim_ch2_args *); | |
2846 ret = incomingim_chan2(sess, fr->conn, userinfo, args); | |
2847 } break; | |
2848 | |
2849 case 4: { /* ICQ */ | |
2850 struct aim_incomingim_ch4_args *args; | |
2851 args = va_arg(ap, struct aim_incomingim_ch4_args *); | |
4075 | 2852 ret = incomingim_chan4(sess, fr->conn, userinfo, args, 0); |
3141 | 2853 } break; |
2854 | |
2855 default: { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2856 gaim_debug(GAIM_DEBUG_WARNING, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2857 "ICBM received on unsupported channel (channel " |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2858 "0x%04hx).", channel); |
3141 | 2859 } break; |
2086 | 2860 } |
2861 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2862 va_end(ap); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2863 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2864 return ret; |
2086 | 2865 } |
2866 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2867 static int gaim_parse_misses(aim_session_t *sess, aim_frame_t *fr, ...) { |
5420 | 2868 char *buf; |
2086 | 2869 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2870 fu16_t chan, nummissed, reason; |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
2871 aim_userinfo_t *userinfo; |
2086 | 2872 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2873 va_start(ap, fr); |
4200 | 2874 chan = (fu16_t)va_arg(ap, unsigned int); |
2875 userinfo = va_arg(ap, aim_userinfo_t *); | |
2876 nummissed = (fu16_t)va_arg(ap, unsigned int); | |
2877 reason = (fu16_t)va_arg(ap, unsigned int); | |
2086 | 2878 va_end(ap); |
2879 | |
2880 switch(reason) { | |
5420 | 2881 case 0: /* Invalid (0) */ |
2882 buf = g_strdup_printf( | |
2883 ngettext( | |
4276 | 2884 "You missed %hu message from %s because it was invalid.", |
2885 "You missed %hu messages from %s because they were invalid.", | |
2886 nummissed), | |
4282 | 2887 nummissed, |
2888 userinfo->sn); | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2889 break; |
5420 | 2890 case 1: /* Message too large */ |
2891 buf = g_strdup_printf( | |
2892 ngettext( | |
4276 | 2893 "You missed %hu message from %s because it was too large.", |
2894 "You missed %hu messages from %s because they were too large.", | |
2895 nummissed), | |
4282 | 2896 nummissed, |
2897 userinfo->sn); | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2898 break; |
5420 | 2899 case 2: /* Rate exceeded */ |
2900 buf = g_strdup_printf( | |
2901 ngettext( | |
4276 | 2902 "You missed %hu message from %s because the rate limit has been exceeded.", |
2903 "You missed %hu messages from %s because the rate limit has been exceeded.", | |
2904 nummissed), | |
4282 | 2905 nummissed, |
2906 userinfo->sn); | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2907 break; |
5420 | 2908 case 3: /* Evil Sender */ |
2909 buf = g_strdup_printf( | |
2910 ngettext( | |
4276 | 2911 "You missed %hu message from %s because he/she was too evil.", |
2912 "You missed %hu messages from %s because he/she was too evil.", | |
2913 nummissed), | |
4282 | 2914 nummissed, |
2915 userinfo->sn); | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
2916 break; |
5420 | 2917 case 4: /* Evil Receiver */ |
2918 buf = g_strdup_printf( | |
2919 ngettext( | |
4276 | 2920 "You missed %hu message from %s because you are too evil.", |
2921 "You missed %hu messages from %s because you are too evil.", | |
2922 nummissed), | |
4282 | 2923 nummissed, |
2924 userinfo->sn); | |
2086 | 2925 break; |
2926 default: | |
5420 | 2927 buf = g_strdup_printf( |
2928 ngettext( | |
4276 | 2929 "You missed %hu message from %s for an unknown reason.", |
2930 "You missed %hu messages from %s for an unknown reason.", | |
2931 nummissed), | |
4282 | 2932 nummissed, |
2933 userinfo->sn); | |
2086 | 2934 break; |
2935 } | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2936 gaim_notify_error(sess->aux_data, NULL, buf, NULL); |
5420 | 2937 g_free(buf); |
2086 | 2938 |
2939 return 1; | |
2940 } | |
2941 | |
3212 | 2942 static char *gaim_icq_status(int state) { |
2943 /* Make a cute little string that shows the status of the dude or dudet */ | |
2944 if (state & AIM_ICQ_STATE_CHAT) | |
4342 | 2945 return g_strdup_printf(_("Free For Chat")); |
3212 | 2946 else if (state & AIM_ICQ_STATE_DND) |
4342 | 2947 return g_strdup_printf(_("Do Not Disturb")); |
3212 | 2948 else if (state & AIM_ICQ_STATE_OUT) |
4342 | 2949 return g_strdup_printf(_("Not Available")); |
3212 | 2950 else if (state & AIM_ICQ_STATE_BUSY) |
4342 | 2951 return g_strdup_printf(_("Occupied")); |
3212 | 2952 else if (state & AIM_ICQ_STATE_AWAY) |
4342 | 2953 return g_strdup_printf(_("Away")); |
3212 | 2954 else if (state & AIM_ICQ_STATE_WEBAWARE) |
4342 | 2955 return g_strdup_printf(_("Web Aware")); |
3212 | 2956 else if (state & AIM_ICQ_STATE_INVISIBLE) |
4342 | 2957 return g_strdup_printf(_("Invisible")); |
3212 | 2958 else |
4342 | 2959 return g_strdup_printf(_("Online")); |
3212 | 2960 } |
2961 | |
4194 | 2962 static int gaim_parse_clientauto_ch2(aim_session_t *sess, const char *who, fu16_t reason, const char *cookie) { |
5575 | 2963 GaimConnection *gc = sess->aux_data; |
7283 | 2964 OscarData *od = gc->proto_data; |
4617 | 2965 |
2966 /* BBB */ | |
3630 | 2967 switch (reason) { |
4151 | 2968 case 3: { /* Decline sendfile. */ |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
2969 GaimXfer *xfer; |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2970 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2971 "AAA - Other user declined file transfer\n"); |
4617 | 2972 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
|
2973 gaim_xfer_cancel_remote(xfer); |
4151 | 2974 } break; |
2975 | |
2976 default: { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2977 gaim_debug(GAIM_DEBUG_WARNING, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2978 "Received an unknown rendezvous client auto-response " |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2979 "from %s. Type 0x%04hx\n", who, reason); |
4151 | 2980 } |
3630 | 2981 |
2982 } | |
2983 | |
2984 return 0; | |
2985 } | |
2986 | |
4194 | 2987 static int gaim_parse_clientauto_ch4(aim_session_t *sess, char *who, fu16_t reason, fu32_t state, char *msg) { |
5575 | 2988 GaimConnection *gc = sess->aux_data; |
4151 | 2989 |
2990 switch(reason) { | |
2991 case 0x0003: { /* Reply from an ICQ status message request */ | |
2992 char *status_msg = gaim_icq_status(state); | |
2993 char *dialog_msg, **splitmsg; | |
2994 | |
2995 /* Split at (carriage return/newline)'s, then rejoin later with BRs between. */ | |
2996 splitmsg = g_strsplit(msg, "\r\n", 0); | |
2997 | |
7011 | 2998 dialog_msg = g_strdup_printf(_("<B>UIN:</B> %s<BR><B>Status:</B> %s<HR>%s"), who, status_msg, g_strjoinv("<BR>", splitmsg)); |
7032 | 2999 gaim_notify_formatted(gc, NULL, _("Buddy Information"), NULL, dialog_msg, NULL, NULL); |
4151 | 3000 |
3001 g_free(status_msg); | |
3002 g_free(dialog_msg); | |
3003 g_strfreev(splitmsg); | |
3004 } break; | |
3005 | |
3006 default: { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3007 gaim_debug(GAIM_DEBUG_WARNING, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3008 "Received an unknown client auto-response from %s. " |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3009 "Type 0x%04hx\n", who, reason); |
4151 | 3010 } break; |
3011 } /* end of switch */ | |
3012 | |
3013 return 0; | |
3014 } | |
3015 | |
3212 | 3016 static int gaim_parse_clientauto(aim_session_t *sess, aim_frame_t *fr, ...) { |
3017 va_list ap; | |
3018 fu16_t chan, reason; | |
3019 char *who; | |
3020 | |
3021 va_start(ap, fr); | |
4200 | 3022 chan = (fu16_t)va_arg(ap, unsigned int); |
3212 | 3023 who = va_arg(ap, char *); |
4200 | 3024 reason = (fu16_t)va_arg(ap, unsigned int); |
3212 | 3025 |
3952 | 3026 if (chan == 0x0002) { /* File transfer declined */ |
3630 | 3027 char *cookie = va_arg(ap, char *); |
4151 | 3028 return gaim_parse_clientauto_ch2(sess, who, reason, cookie); |
3952 | 3029 } else if (chan == 0x0004) { /* ICQ message */ |
4200 | 3030 fu32_t state = 0; |
4151 | 3031 char *msg = NULL; |
3032 if (reason == 0x0003) { | |
4200 | 3033 state = va_arg(ap, fu32_t); |
4151 | 3034 msg = va_arg(ap, char *); |
3035 } | |
3036 return gaim_parse_clientauto_ch4(sess, who, reason, state, msg); | |
3037 } | |
3952 | 3038 |
3212 | 3039 va_end(ap); |
3040 | |
3041 return 1; | |
3042 } | |
3043 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3044 static int gaim_parse_genericerr(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 3045 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3046 fu16_t reason; |
2865
88dc3623a2ae
[gaim-migrate @ 2878]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2864
diff
changeset
|
3047 char *m; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3048 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3049 va_start(ap, fr); |
4199 | 3050 reason = (fu16_t) va_arg(ap, unsigned int); |
2086 | 3051 va_end(ap); |
3052 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3053 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3054 "snac threw error (reason 0x%04hx: %s)\n", reason, |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3055 (reason < msgerrreasonlen) ? msgerrreason[reason] : "unknown"); |
2086 | 3056 |
2865
88dc3623a2ae
[gaim-migrate @ 2878]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2864
diff
changeset
|
3057 m = g_strdup_printf(_("SNAC threw error: %s\n"), |
5411 | 3058 reason < msgerrreasonlen ? _(msgerrreason[reason]) : _("Unknown error")); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
3059 gaim_notify_error(sess->aux_data, NULL, m, NULL); |
2865
88dc3623a2ae
[gaim-migrate @ 2878]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2864
diff
changeset
|
3060 g_free(m); |
88dc3623a2ae
[gaim-migrate @ 2878]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2864
diff
changeset
|
3061 |
2086 | 3062 return 1; |
3063 } | |
3064 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3065 static int gaim_parse_msgerr(aim_session_t *sess, aim_frame_t *fr, ...) { |
4617 | 3066 #if 0 |
5575 | 3067 GaimConnection *gc = sess->aux_data; |
7283 | 3068 OscarData *od = gc->proto_data; |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
3069 GaimXfer *xfer; |
4508
4c40fccbd7c9
[gaim-migrate @ 4784]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
3070 #endif |
4617 | 3071 va_list ap; |
3072 fu16_t reason; | |
3073 char *data, *buf; | |
4508
4c40fccbd7c9
[gaim-migrate @ 4784]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
3074 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3075 va_start(ap, fr); |
4617 | 3076 reason = (fu16_t)va_arg(ap, unsigned int); |
3752 | 3077 data = va_arg(ap, char *); |
2086 | 3078 va_end(ap); |
3079 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3080 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3081 "Message error with data %s and reason %hu\n", data, reason); |
4617 | 3082 |
3083 /* BBB */ | |
4508
4c40fccbd7c9
[gaim-migrate @ 4784]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
3084 #if 0 |
4617 | 3085 /* If this was a file transfer request, data is a cookie */ |
3086 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
|
3087 gaim_xfer_cancel_remote(xfer); |
3630 | 3088 return 1; |
3089 } | |
4508
4c40fccbd7c9
[gaim-migrate @ 4784]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
3090 #endif |
3630 | 3091 |
4617 | 3092 /* Data is assumed to be the destination sn */ |
3093 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
|
3094 gaim_notify_error(sess->aux_data, NULL, buf, |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
3095 (reason < msgerrreasonlen) ? _(msgerrreason[reason]) : _("No reason given.")); |
4617 | 3096 g_free(buf); |
2086 | 3097 |
3098 return 1; | |
3099 } | |
3100 | |
3595 | 3101 static int gaim_parse_mtn(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 3102 GaimConnection *gc = sess->aux_data; |
3595 | 3103 va_list ap; |
3104 fu16_t type1, type2; | |
3105 char *sn; | |
3106 | |
3107 va_start(ap, fr); | |
4199 | 3108 type1 = (fu16_t) va_arg(ap, unsigned int); |
3595 | 3109 sn = va_arg(ap, char *); |
4199 | 3110 type2 = (fu16_t) va_arg(ap, unsigned int); |
3595 | 3111 va_end(ap); |
3112 | |
3113 switch (type2) { | |
3114 case 0x0000: { /* Text has been cleared */ | |
3115 serv_got_typing_stopped(gc, sn); | |
3116 } break; | |
3117 | |
3118 case 0x0001: { /* Paused typing */ | |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
3119 serv_got_typing(gc, sn, 0, GAIM_TYPED); |
3595 | 3120 } break; |
3121 | |
3122 case 0x0002: { /* Typing */ | |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
3123 serv_got_typing(gc, sn, 0, GAIM_TYPING); |
3595 | 3124 } break; |
3125 | |
3126 default: { | |
5435 | 3127 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 | 3128 } break; |
3129 } | |
3130 | |
3131 return 1; | |
3132 } | |
3133 | |
7141 | 3134 /* |
3135 * We get this error when there was an error in the locate family. This | |
7259 | 3136 * happens when you request info of someone who is offline. |
7141 | 3137 */ |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3138 static int gaim_parse_locerr(aim_session_t *sess, aim_frame_t *fr, ...) { |
7259 | 3139 gchar *buf; |
2086 | 3140 va_list ap; |
5420 | 3141 fu16_t reason; |
2086 | 3142 char *destn; |
3143 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3144 va_start(ap, fr); |
4199 | 3145 reason = (fu16_t) va_arg(ap, unsigned int); |
2086 | 3146 destn = va_arg(ap, char *); |
3147 va_end(ap); | |
3148 | |
7781 | 3149 if (destn == NULL) |
7793 | 3150 return 1; |
3151 | |
3152 buf = g_strdup_printf(_("User information for %s unavailable:"), destn); | |
7781 | 3153 |
3154 gaim_notify_error(sess->aux_data, NULL, buf, | |
3155 (reason < msgerrreasonlen) ? _(msgerrreason[reason]) : _("No reason given.")); | |
3156 g_free(buf); | |
2086 | 3157 |
3158 return 1; | |
3159 } | |
3160 | |
6982 | 3161 #if 0 |
2086 | 3162 static char *images(int flags) { |
3163 static char buf[1024]; | |
3101 | 3164 g_snprintf(buf, sizeof(buf), "%s%s%s%s%s%s%s", |
2679 | 3165 (flags & AIM_FLAG_ACTIVEBUDDY) ? "<IMG SRC=\"ab_icon.gif\">" : "", |
2086 | 3166 (flags & AIM_FLAG_UNCONFIRMED) ? "<IMG SRC=\"dt_icon.gif\">" : "", |
3167 (flags & AIM_FLAG_AOL) ? "<IMG SRC=\"aol_icon.gif\">" : "", | |
3101 | 3168 (flags & AIM_FLAG_ICQ) ? "<IMG SRC=\"icq_icon.gif\">" : "", |
2086 | 3169 (flags & AIM_FLAG_ADMINISTRATOR) ? "<IMG SRC=\"admin_icon.gif\">" : "", |
3079 | 3170 (flags & AIM_FLAG_FREE) ? "<IMG SRC=\"free_icon.gif\">" : "", |
3171 (flags & AIM_FLAG_WIRELESS) ? "<IMG SRC=\"wireless_icon.gif\">" : ""); | |
2086 | 3172 return buf; |
3173 } | |
6982 | 3174 #endif |
3101 | 3175 |
2920 | 3176 static char *caps_string(guint caps) |
3177 { | |
3178 static char buf[512], *tmp; | |
3179 int count = 0, i = 0; | |
3180 guint bit = 1; | |
4742 | 3181 |
3182 if (!caps) { | |
4744 | 3183 return NULL; |
6318 | 3184 } else while (bit <= AIM_CAPS_LAST) { |
2920 | 3185 if (bit & caps) { |
3186 switch (bit) { | |
6871 | 3187 case AIM_CAPS_BUDDYICON: |
2920 | 3188 tmp = _("Buddy Icon"); |
3189 break; | |
8092 | 3190 case AIM_CAPS_TALK: |
2920 | 3191 tmp = _("Voice"); |
3192 break; | |
6871 | 3193 case AIM_CAPS_DIRECTIM: |
7141 | 3194 tmp = _("AIM Direct IM"); |
2920 | 3195 break; |
6871 | 3196 case AIM_CAPS_CHAT: |
2920 | 3197 tmp = _("Chat"); |
3198 break; | |
6871 | 3199 case AIM_CAPS_GETFILE: |
2920 | 3200 tmp = _("Get File"); |
3201 break; | |
6871 | 3202 case AIM_CAPS_SENDFILE: |
2920 | 3203 tmp = _("Send File"); |
3204 break; | |
6871 | 3205 case AIM_CAPS_GAMES: |
3206 case AIM_CAPS_GAMES2: | |
2920 | 3207 tmp = _("Games"); |
3208 break; | |
8092 | 3209 case AIM_CAPS_ADDINS: |
4898 | 3210 tmp = _("Add-Ins"); |
2920 | 3211 break; |
6871 | 3212 case AIM_CAPS_SENDBUDDYLIST: |
2920 | 3213 tmp = _("Send Buddy List"); |
3214 break; | |
7141 | 3215 case AIM_CAPS_ICQ_DIRECT: |
3216 tmp = _("ICQ Direct Connect"); | |
2920 | 3217 break; |
6871 | 3218 case AIM_CAPS_APINFO: |
2920 | 3219 tmp = _("AP User"); |
3220 break; | |
6871 | 3221 case AIM_CAPS_ICQRTF: |
2920 | 3222 tmp = _("ICQ RTF"); |
3223 break; | |
6871 | 3224 case AIM_CAPS_EMPTY: |
2920 | 3225 tmp = _("Nihilist"); |
3226 break; | |
6871 | 3227 case AIM_CAPS_ICQSERVERRELAY: |
2920 | 3228 tmp = _("ICQ Server Relay"); |
3229 break; | |
6871 | 3230 case AIM_CAPS_ICQUTF8OLD: |
3231 tmp = _("Old ICQ UTF8"); | |
2920 | 3232 break; |
6871 | 3233 case AIM_CAPS_TRILLIANCRYPT: |
2920 | 3234 tmp = _("Trillian Encryption"); |
3235 break; | |
6871 | 3236 case AIM_CAPS_ICQUTF8: |
4742 | 3237 tmp = _("ICQ UTF8"); |
3238 break; | |
6318 | 3239 case AIM_CAPS_HIPTOP: |
3240 tmp = _("Hiptop"); | |
3241 break; | |
6871 | 3242 case AIM_CAPS_SECUREIM: |
7334 | 3243 tmp = _("Security Enabled"); |
6871 | 3244 break; |
7582 | 3245 case AIM_CAPS_VIDEO: |
3246 tmp = _("Video Chat"); | |
3247 break; | |
8092 | 3248 /* Not actually sure about this one... WinAIM doesn't show anything */ |
7945 | 3249 case AIM_CAPS_ICHATAV: |
3250 tmp = _("iChat AV"); | |
3251 break; | |
8092 | 3252 case AIM_CAPS_LIVEVIDEO: |
3253 tmp = _("Live Video"); | |
3254 break; | |
3255 case AIM_CAPS_CAMERA: | |
3256 tmp = _("Camera"); | |
3257 break; | |
2920 | 3258 default: |
3259 tmp = NULL; | |
3260 break; | |
3261 } | |
3262 if (tmp) | |
3263 i += g_snprintf(buf + i, sizeof(buf) - i, "%s%s", (count ? ", " : ""), | |
3264 tmp); | |
3265 count++; | |
3266 } | |
3267 bit <<= 1; | |
3268 } | |
4744 | 3269 return buf; |
2920 | 3270 } |
3271 | |
7011 | 3272 static int gaim_parse_userinfo(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 3273 GaimConnection *gc = sess->aux_data; |
7011 | 3274 GString *text; |
7162 | 3275 gchar *info_utf8 = NULL, *away_utf8 = NULL; |
3276 const char *final = NULL; | |
4791 | 3277 va_list ap; |
7011 | 3278 aim_userinfo_t *userinfo; |
2086 | 3279 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3280 va_start(ap, fr); |
7011 | 3281 userinfo = va_arg(ap, aim_userinfo_t *); |
2086 | 3282 va_end(ap); |
3283 | |
7011 | 3284 text = g_string_new(""); |
3285 g_string_append_printf(text, _("Username: <b>%s</b><br>\n"), userinfo->sn); | |
3286 g_string_append_printf(text, _("Warning Level: <b>%d%%</b><br>\n"), (int)((userinfo->warnlevel/10.0) + 0.5)); | |
3287 | |
3288 if (userinfo->present & AIM_USERINFO_PRESENT_ONLINESINCE) | |
3289 g_string_append_printf(text, _("Online Since: <b>%s</b><br>\n"), | |
3290 asctime(localtime((time_t *)&userinfo->onlinesince))); | |
3291 | |
3292 if (userinfo->present & AIM_USERINFO_PRESENT_MEMBERSINCE) | |
3293 g_string_append_printf(text, _("Member Since: <b>%s</b><br>\n"), | |
3294 asctime(localtime((time_t *)&userinfo->membersince))); | |
3295 | |
3296 if (userinfo->present & AIM_USERINFO_PRESENT_IDLE) { | |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
3297 gchar *itime = gaim_str_seconds_to_string(userinfo->idletime*60); |
7011 | 3298 g_string_append_printf(text, _("Idle: <b>%s</b>"), itime); |
4426 | 3299 g_free(itime); |
2993 | 3300 } else |
7011 | 3301 g_string_append_printf(text, _("Idle: <b>Active</b>")); |
3302 | |
3303 if ((userinfo->flags & AIM_FLAG_AWAY) && (userinfo->away_len > 0) && (userinfo->away != NULL) && (userinfo->away_encoding != NULL)) { | |
8225 | 3304 gchar *charset = oscar_encoding_extract(userinfo->away_encoding); |
3305 away_utf8 = oscar_encoding_to_utf8(charset, userinfo->away, userinfo->away_len); | |
3306 g_free(charset); | |
7011 | 3307 if (away_utf8 != NULL) { |
7129 | 3308 g_string_append_printf(text, "<hr>%s", away_utf8); |
7011 | 3309 g_free(away_utf8); |
2791
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
3310 } |
7011 | 3311 } |
3312 | |
3313 if ((userinfo->info_len > 0) && (userinfo->info != NULL) && (userinfo->info_encoding != NULL)) { | |
8225 | 3314 gchar *charset = oscar_encoding_extract(userinfo->info_encoding); |
3315 info_utf8 = oscar_encoding_to_utf8(charset, userinfo->info, userinfo->info_len); | |
3316 g_free(charset); | |
7011 | 3317 if (info_utf8 != NULL) { |
7129 | 3318 g_string_append_printf(text, "<hr>%s", info_utf8); |
7011 | 3319 g_free(info_utf8); |
2791
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
3320 } |
7011 | 3321 } |
3322 | |
7164 | 3323 final = gaim_str_sub_away_formatters(text->str, gaim_account_get_username(gaim_connection_get_account(gc))); |
7011 | 3324 g_string_free(text, TRUE); |
7091 | 3325 gaim_notify_formatted(gc, NULL, _("Buddy Information"), NULL, final, NULL, NULL); |
4151 | 3326 |
2086 | 3327 return 1; |
3328 } | |
3329 | |
8341 | 3330 static gboolean gaim_reqinfo_timeout_cb(void *data) |
3331 { | |
3332 aim_session_t *sess = data; | |
3333 GaimConnection *gc = sess->aux_data; | |
3334 OscarData *od = (OscarData *)gc->proto_data; | |
3335 | |
3336 aim_locate_dorequest(data); | |
3337 od->getinfotimer = 0; | |
3338 | |
3339 return FALSE; | |
3340 } | |
3341 | |
3342 static int gaim_reqinfo_timeout(aim_session_t *sess, aim_frame_t *fr, ...) | |
3343 { | |
3344 GaimConnection *gc = sess->aux_data; | |
3345 OscarData *od = (OscarData *)gc->proto_data; | |
3346 | |
3347 /* | |
3348 * Wait a little while then call aim_locate_dorequest(sess). This keeps | |
3349 * us from hitting the rate limit due to request away messages and info | |
3350 * too quickly. | |
3351 */ | |
3352 if (od->getinfotimer == 0) | |
3353 od->getinfotimer = gaim_timeout_add(1200, gaim_reqinfo_timeout_cb, sess); | |
3354 | |
3355 return 1; | |
3356 } | |
3357 | |
3358 static int gaim_parse_motd(aim_session_t *sess, aim_frame_t *fr, ...) | |
3359 { | |
2086 | 3360 char *msg; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3361 fu16_t id; |
2086 | 3362 va_list ap; |
3363 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3364 va_start(ap, fr); |
4199 | 3365 id = (fu16_t) va_arg(ap, unsigned int); |
2086 | 3366 msg = va_arg(ap, char *); |
3367 va_end(ap); | |
3368 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3369 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3370 "MOTD: %s (%hu)\n", msg ? msg : "Unknown", id); |
2092
59b0377d18aa
[gaim-migrate @ 2102]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2090
diff
changeset
|
3371 if (id < 4) |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
3372 gaim_notify_warning(sess->aux_data, NULL, |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
3373 _("Your AIM connection may be lost."), NULL); |
2086 | 3374 |
3375 return 1; | |
3376 } | |
3377 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3378 static int gaim_chatnav_info(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 3379 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3380 fu16_t type; |
5575 | 3381 GaimConnection *gc = sess->aux_data; |
7283 | 3382 OscarData *od = (OscarData *)gc->proto_data; |
2086 | 3383 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3384 va_start(ap, fr); |
4199 | 3385 type = (fu16_t) va_arg(ap, unsigned int); |
2086 | 3386 |
3387 switch(type) { | |
3388 case 0x0002: { | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3389 fu8_t maxrooms; |
2086 | 3390 struct aim_chat_exchangeinfo *exchanges; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3391 int exchangecount, i; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3392 |
4199 | 3393 maxrooms = (fu8_t) va_arg(ap, unsigned int); |
2086 | 3394 exchangecount = va_arg(ap, int); |
3395 exchanges = va_arg(ap, struct aim_chat_exchangeinfo *); | |
3396 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3397 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3398 "chat info: Chat Rights:\n"); |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3399 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3400 "chat info: \tMax Concurrent Rooms: %hhd\n", maxrooms); |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3401 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3402 "chat info: \tExchange List: (%d total)\n", exchangecount); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3403 for (i = 0; i < exchangecount; i++) |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3404 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3405 "chat info: \t\t%hu %s\n", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3406 exchanges[i].number, exchanges[i].name ? exchanges[i].name : ""); |
4617 | 3407 while (od->create_rooms) { |
3408 struct create_room *cr = od->create_rooms->data; | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3409 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3410 "creating room %s\n", cr->name); |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
3411 aim_chatnav_createroom(sess, fr->conn, cr->name, cr->exchange); |
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
3412 g_free(cr->name); |
4617 | 3413 od->create_rooms = g_slist_remove(od->create_rooms, cr); |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
3414 g_free(cr); |
2086 | 3415 } |
3416 } | |
3417 break; | |
3418 case 0x0008: { | |
3419 char *fqcn, *name, *ck; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3420 fu16_t instance, flags, maxmsglen, maxoccupancy, unknown, exchange; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3421 fu8_t createperms; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3422 fu32_t createtime; |
2086 | 3423 |
3424 fqcn = va_arg(ap, char *); | |
4200 | 3425 instance = (fu16_t)va_arg(ap, unsigned int); |
3426 exchange = (fu16_t)va_arg(ap, unsigned int); | |
3427 flags = (fu16_t)va_arg(ap, unsigned int); | |
3428 createtime = va_arg(ap, fu32_t); | |
3429 maxmsglen = (fu16_t)va_arg(ap, unsigned int); | |
3430 maxoccupancy = (fu16_t)va_arg(ap, unsigned int); | |
3431 createperms = (fu8_t)va_arg(ap, unsigned int); | |
3432 unknown = (fu16_t)va_arg(ap, unsigned int); | |
3433 name = va_arg(ap, char *); | |
3434 ck = va_arg(ap, char *); | |
4194 | 3435 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3436 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
5556 | 3437 "created room: %s %hu %hu %hu %u %hu %hu %hhu %hu %s %s\n", |
2086 | 3438 fqcn, |
3439 exchange, instance, flags, | |
3440 createtime, | |
3441 maxmsglen, maxoccupancy, createperms, unknown, | |
3442 name, ck); | |
4617 | 3443 aim_chat_join(od->sess, od->conn, exchange, ck, instance); |
2086 | 3444 } |
3445 break; | |
3446 default: | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3447 gaim_debug(GAIM_DEBUG_WARNING, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3448 "chatnav info: unknown type (%04hx)\n", type); |
2086 | 3449 break; |
3450 } | |
4194 | 3451 |
3452 va_end(ap); | |
3453 | |
2086 | 3454 return 1; |
3455 } | |
3456 | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
3457 static int gaim_conv_chat_join(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 3458 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3459 int count, i; |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3460 aim_userinfo_t *info; |
5575 | 3461 GaimConnection *g = sess->aux_data; |
2086 | 3462 |
3463 struct chat_connection *c = NULL; | |
3464 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3465 va_start(ap, fr); |
2086 | 3466 count = va_arg(ap, int); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3467 info = va_arg(ap, aim_userinfo_t *); |
2086 | 3468 va_end(ap); |
3469 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3470 c = find_oscar_chat_by_conn(g, fr->conn); |
2086 | 3471 if (!c) |
3472 return 1; | |
3473 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3474 for (i = 0; i < count; i++) |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
3475 gaim_conv_chat_add_user(GAIM_CONV_CHAT(c->cnv), info[i].sn, NULL); |
2086 | 3476 |
3477 return 1; | |
3478 } | |
3479 | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
3480 static int gaim_conv_chat_leave(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 3481 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3482 int count, i; |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3483 aim_userinfo_t *info; |
5575 | 3484 GaimConnection *g = sess->aux_data; |
2086 | 3485 |
3486 struct chat_connection *c = NULL; | |
3487 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3488 va_start(ap, fr); |
2086 | 3489 count = va_arg(ap, int); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3490 info = va_arg(ap, aim_userinfo_t *); |
2086 | 3491 va_end(ap); |
3492 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3493 c = find_oscar_chat_by_conn(g, fr->conn); |
2086 | 3494 if (!c) |
3495 return 1; | |
3496 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3497 for (i = 0; i < count; i++) |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
3498 gaim_conv_chat_remove_user(GAIM_CONV_CHAT(c->cnv), info[i].sn, NULL); |
2086 | 3499 |
3500 return 1; | |
3501 } | |
3502 | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
3503 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
|
3504 va_list ap; |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3505 aim_userinfo_t *userinfo; |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3506 struct aim_chat_roominfo *roominfo; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3507 char *roomname; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3508 int usercount; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3509 char *roomdesc; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3510 fu16_t unknown_c9, unknown_d2, unknown_d5, maxmsglen, maxvisiblemsglen; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3511 fu32_t creationtime; |
5575 | 3512 GaimConnection *gc = sess->aux_data; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3513 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
|
3514 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3515 va_start(ap, fr); |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3516 roominfo = va_arg(ap, struct aim_chat_roominfo *); |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3517 roomname = va_arg(ap, char *); |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3518 usercount= va_arg(ap, int); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3519 userinfo = va_arg(ap, aim_userinfo_t *); |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3520 roomdesc = va_arg(ap, char *); |
4200 | 3521 unknown_c9 = (fu16_t)va_arg(ap, unsigned int); |
3522 creationtime = va_arg(ap, fu32_t); | |
3523 maxmsglen = (fu16_t)va_arg(ap, unsigned int); | |
3524 unknown_d2 = (fu16_t)va_arg(ap, unsigned int); | |
3525 unknown_d5 = (fu16_t)va_arg(ap, unsigned int); | |
3526 maxvisiblemsglen = (fu16_t)va_arg(ap, unsigned int); | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3527 va_end(ap); |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3528 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3529 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3530 "inside chat_info_update (maxmsglen = %hu, maxvislen = %hu)\n", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3531 maxmsglen, maxvisiblemsglen); |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3532 |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3533 ccon->maxlen = maxmsglen; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3534 ccon->maxvis = maxvisiblemsglen; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3535 |
2086 | 3536 return 1; |
3537 } | |
3538 | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
3539 static int gaim_conv_chat_incoming_msg(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 3540 GaimConnection *gc = sess->aux_data; |
8225 | 3541 struct chat_connection *ccon = find_oscar_chat_by_conn(gc, fr->conn); |
3542 gchar *utf8; | |
2086 | 3543 va_list ap; |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3544 aim_userinfo_t *info; |
8225 | 3545 int len; |
2086 | 3546 char *msg; |
8219 | 3547 char *charset; |
2086 | 3548 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3549 va_start(ap, fr); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3550 info = va_arg(ap, aim_userinfo_t *); |
8219 | 3551 len = va_arg(ap, int); |
4194 | 3552 msg = va_arg(ap, char *); |
8219 | 3553 charset = va_arg(ap, char *); |
4194 | 3554 va_end(ap); |
2086 | 3555 |
8225 | 3556 utf8 = oscar_encoding_to_utf8(charset, msg, len); |
3557 serv_got_chat_in(gc, ccon->id, info->sn, 0, utf8, time((time_t)NULL)); | |
3558 g_free(utf8); | |
2086 | 3559 |
3560 return 1; | |
3561 } | |
3562 | |
3694 | 3563 static int gaim_email_parseupdate(aim_session_t *sess, aim_frame_t *fr, ...) { |
3564 va_list ap; | |
5575 | 3565 GaimConnection *gc = sess->aux_data; |
3694 | 3566 struct aim_emailinfo *emailinfo; |
3725 | 3567 int havenewmail; |
7297 | 3568 char *alertitle, *alerturl; |
3694 | 3569 |
3570 va_start(ap, fr); | |
3571 emailinfo = va_arg(ap, struct aim_emailinfo *); | |
3725 | 3572 havenewmail = va_arg(ap, int); |
7301 | 3573 alertitle = va_arg(ap, char *); |
3574 alerturl = va_arg(ap, char *); | |
3694 | 3575 va_end(ap); |
3576 | |
5628 | 3577 if (emailinfo && gaim_account_get_check_mail(gc->account)) { |
5575 | 3578 gchar *to = g_strdup_printf("%s@%s", gaim_account_get_username(gaim_connection_get_account(gc)), emailinfo->domain); |
5542 | 3579 if (emailinfo->unread && havenewmail) |
3580 gaim_notify_emails(gc, emailinfo->nummsgs, FALSE, NULL, NULL, (const char **)&to, (const char **)&emailinfo->url, NULL, NULL); | |
5537 | 3581 g_free(to); |
3694 | 3582 } |
7297 | 3583 |
7301 | 3584 if (alertitle) |
7313 | 3585 gaim_debug(GAIM_DEBUG_MISC, "oscar", "Got an alert '%s' %s\n", alertitle, alerturl ? alerturl : ""); |
3694 | 3586 |
3587 return 1; | |
3588 } | |
3589 | |
4804 | 3590 static int gaim_icon_error(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 3591 GaimConnection *gc = sess->aux_data; |
7283 | 3592 OscarData *od = gc->proto_data; |
4804 | 3593 char *sn; |
3594 | |
3595 sn = od->requesticon->data; | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3596 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3597 "removing %s from hash table\n", sn); |
4804 | 3598 od->requesticon = g_slist_remove(od->requesticon, sn); |
3599 free(sn); | |
3600 | |
3601 if (od->icontimer) | |
8287
ef881489396e
[gaim-migrate @ 9011]
Christian Hammond <chipx86@chipx86.com>
parents:
8273
diff
changeset
|
3602 gaim_timeout_remove(od->icontimer); |
8273
f24172f53650
[gaim-migrate @ 8997]
Christian Hammond <chipx86@chipx86.com>
parents:
8266
diff
changeset
|
3603 od->icontimer = gaim_timeout_add(500, gaim_icon_timerfunc, gc); |
4804 | 3604 |
3605 return 1; | |
3606 } | |
3607 | |
3608 static int gaim_icon_parseicon(aim_session_t *sess, aim_frame_t *fr, ...) { | |
5575 | 3609 GaimConnection *gc = sess->aux_data; |
7283 | 3610 OscarData *od = gc->proto_data; |
4804 | 3611 GSList *cur; |
3612 va_list ap; | |
3613 char *sn; | |
4853 | 3614 fu8_t *iconcsum, *icon; |
3615 fu16_t iconcsumlen, iconlen; | |
4804 | 3616 |
3617 va_start(ap, fr); | |
3618 sn = va_arg(ap, char *); | |
4853 | 3619 iconcsum = va_arg(ap, fu8_t *); |
3620 iconcsumlen = va_arg(ap, int); | |
4804 | 3621 icon = va_arg(ap, fu8_t *); |
3622 iconlen = va_arg(ap, int); | |
3623 va_end(ap); | |
3624 | |
4853 | 3625 if (iconlen > 0) { |
3626 char *b16; | |
6695 | 3627 GaimBuddy *b = gaim_find_buddy(gc->account, sn); |
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6787
diff
changeset
|
3628 gaim_buddy_icons_set_for_user(gaim_connection_get_account(gc), |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6787
diff
changeset
|
3629 sn, icon, iconlen); |
7106
db6bd3e794d8
[gaim-migrate @ 7671]
Christian Hammond <chipx86@chipx86.com>
parents:
7098
diff
changeset
|
3630 b16 = gaim_base16_encode(iconcsum, iconcsumlen); |
5129 | 3631 if (b16) { |
7693 | 3632 gaim_blist_node_set_string((GaimBlistNode*)b, "icon_checksum", b16); |
5129 | 3633 gaim_blist_save(); |
7162 | 3634 g_free(b16); |
5129 | 3635 } |
4853 | 3636 } |
4804 | 3637 |
3638 cur = od->requesticon; | |
3639 while (cur) { | |
3640 char *cursn = cur->data; | |
3641 if (!aim_sncmp(cursn, sn)) { | |
3642 od->requesticon = g_slist_remove(od->requesticon, cursn); | |
3643 free(cursn); | |
3644 cur = od->requesticon; | |
3645 } else | |
3646 cur = cur->next; | |
3647 } | |
3648 | |
3649 if (od->icontimer) | |
8287
ef881489396e
[gaim-migrate @ 9011]
Christian Hammond <chipx86@chipx86.com>
parents:
8273
diff
changeset
|
3650 gaim_timeout_remove(od->icontimer); |
8273
f24172f53650
[gaim-migrate @ 8997]
Christian Hammond <chipx86@chipx86.com>
parents:
8266
diff
changeset
|
3651 od->icontimer = gaim_timeout_add(250, gaim_icon_timerfunc, gc); |
4804 | 3652 |
3653 return 1; | |
3654 } | |
3655 | |
3656 static gboolean gaim_icon_timerfunc(gpointer data) { | |
5575 | 3657 GaimConnection *gc = data; |
7283 | 3658 OscarData *od = gc->proto_data; |
7011 | 3659 aim_userinfo_t *userinfo; |
4804 | 3660 aim_conn_t *conn; |
3661 | |
3662 conn = aim_getconn_type(od->sess, AIM_CONN_TYPE_ICON); | |
5892 | 3663 if (!conn) { |
3664 if (!od->iconconnecting) { | |
3665 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_ICON); | |
3666 od->iconconnecting = TRUE; | |
3667 } | |
4804 | 3668 return FALSE; |
3669 } | |
3670 | |
5842 | 3671 if (od->set_icon) { |
6039 | 3672 struct stat st; |
3673 const char *iconfile = gaim_account_get_buddy_icon(gaim_connection_get_account(gc)); | |
3674 if (iconfile == NULL) { | |
8363 | 3675 aim_ssi_delicon(od->sess); |
6039 | 3676 } else if (!stat(iconfile, &st)) { |
3677 char *buf = g_malloc(st.st_size); | |
3678 FILE *file = fopen(iconfile, "rb"); | |
3679 if (file) { | |
3680 fread(buf, 1, st.st_size, file); | |
3681 fclose(file); | |
3682 gaim_debug(GAIM_DEBUG_INFO, "oscar", | |
3683 "Uploading icon to icon server\n"); | |
6879 | 3684 aim_bart_upload(od->sess, buf, st.st_size); |
5842 | 3685 } else |
3686 gaim_debug(GAIM_DEBUG_ERROR, "oscar", | |
6039 | 3687 "Can't open buddy icon file!\n"); |
3688 g_free(buf); | |
3689 } else { | |
3690 gaim_debug(GAIM_DEBUG_ERROR, "oscar", | |
3691 "Can't stat buddy icon file!\n"); | |
5842 | 3692 } |
3693 od->set_icon = FALSE; | |
3694 } | |
3695 | |
3696 if (!od->requesticon) { | |
3697 gaim_debug(GAIM_DEBUG_MISC, "oscar", | |
3698 "no more icons to request\n"); | |
3699 return FALSE; | |
3700 } | |
3701 | |
7045 | 3702 userinfo = aim_locate_finduserinfo(od->sess, (char *)od->requesticon->data); |
7011 | 3703 if ((userinfo != NULL) && (userinfo->iconcsumlen > 0)) { |
3704 aim_bart_request(od->sess, od->requesticon->data, userinfo->iconcsum, userinfo->iconcsumlen); | |
4804 | 3705 return FALSE; |
3706 } else { | |
3707 char *sn = od->requesticon->data; | |
3708 od->requesticon = g_slist_remove(od->requesticon, sn); | |
3709 free(sn); | |
3710 } | |
3711 | |
3712 return TRUE; | |
3713 } | |
3714 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3715 /* |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3716 * 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
|
3717 */ |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3718 static int gaim_parse_msgack(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 3719 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3720 fu16_t type; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3721 char *sn; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3722 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3723 va_start(ap, fr); |
4199 | 3724 type = (fu16_t) va_arg(ap, unsigned int); |
2086 | 3725 sn = va_arg(ap, char *); |
3726 va_end(ap); | |
3727 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3728 gaim_debug(GAIM_DEBUG_INFO, "oscar", "Sent message to %s.\n", sn); |
2086 | 3729 |
3730 return 1; | |
3731 } | |
3732 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3733 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
|
3734 static const char *codes[5] = { |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3735 "invalid", |
4194 | 3736 "change", |
3737 "warning", | |
3738 "limit", | |
3739 "limit cleared", | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3740 }; |
2086 | 3741 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3742 fu16_t code, rateclass; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3743 fu32_t windowsize, clear, alert, limit, disconnect, currentavg, maxavg; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3744 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3745 va_start(ap, fr); |
4200 | 3746 code = (fu16_t)va_arg(ap, unsigned int); |
3747 rateclass= (fu16_t)va_arg(ap, unsigned int); | |
3748 windowsize = va_arg(ap, fu32_t); | |
3749 clear = va_arg(ap, fu32_t); | |
3750 alert = va_arg(ap, fu32_t); | |
3751 limit = va_arg(ap, fu32_t); | |
3752 disconnect = va_arg(ap, fu32_t); | |
3753 currentavg = va_arg(ap, fu32_t); | |
3754 maxavg = va_arg(ap, fu32_t); | |
2086 | 3755 va_end(ap); |
3756 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3757 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
5556 | 3758 "rate %s (param ID 0x%04hx): curavg = %u, maxavg = %u, alert at %u, " |
3759 "clear warning at %u, limit at %u, disconnect at %u (window size = %u)\n", | |
2086 | 3760 (code < 5) ? codes[code] : codes[0], |
3761 rateclass, | |
3762 currentavg, maxavg, | |
3763 alert, clear, | |
3764 limit, disconnect, | |
3765 windowsize); | |
3766 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3767 /* XXX fix these values */ |
2086 | 3768 if (code == AIM_RATE_CODE_CHANGE) { |
3769 if (currentavg >= clear) | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3770 aim_conn_setlatency(fr->conn, 0); |
2086 | 3771 } else if (code == AIM_RATE_CODE_WARNING) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3772 aim_conn_setlatency(fr->conn, windowsize/4); |
2909
48ec70928d7f
[gaim-migrate @ 2922]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2906
diff
changeset
|
3773 } else if (code == AIM_RATE_CODE_LIMIT) { |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
3774 gaim_notify_error(sess->aux_data, NULL, _("Rate limiting error."), |
6040 | 3775 _("The last action you attempted could not be " |
3776 "performed because you are over the rate limit. " | |
3777 "Please wait 10 seconds and try again.")); | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3778 aim_conn_setlatency(fr->conn, windowsize/2); |
2086 | 3779 } else if (code == AIM_RATE_CODE_CLEARLIMIT) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3780 aim_conn_setlatency(fr->conn, 0); |
2086 | 3781 } |
3782 | |
3783 return 1; | |
3784 } | |
3785 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3786 static int gaim_parse_evilnotify(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 3787 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3788 fu16_t newevil; |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3789 aim_userinfo_t *userinfo; |
5575 | 3790 GaimConnection *gc = sess->aux_data; |
2086 | 3791 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3792 va_start(ap, fr); |
4199 | 3793 newevil = (fu16_t) va_arg(ap, unsigned int); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3794 userinfo = va_arg(ap, aim_userinfo_t *); |
2086 | 3795 va_end(ap); |
3796 | |
7111 | 3797 serv_got_eviled(gc, (userinfo && userinfo->sn) ? userinfo->sn : NULL, (newevil/10.0) + 0.5); |
2086 | 3798 |
3799 return 1; | |
3800 } | |
3801 | |
2507
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3802 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
|
3803 va_list ap; |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3804 aim_userinfo_t *info; |
5575 | 3805 GaimConnection *gc = sess->aux_data; |
2507
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3806 |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3807 va_start(ap, fr); |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3808 info = va_arg(ap, aim_userinfo_t *); |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3809 va_end(ap); |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3810 |
5628 | 3811 gc->evil = (info->warnlevel/10.0) + 0.5; |
4841 | 3812 |
7872 | 3813 if (info->present & AIM_USERINFO_PRESENT_ONLINESINCE) |
4841 | 3814 gc->login_time_official = info->onlinesince; |
7872 | 3815 else if (info->present & AIM_USERINFO_PRESENT_SESSIONLEN) |
3816 gc->login_time_official = time(NULL) - info->sessionlen; | |
2507
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3817 |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3818 return 1; |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3819 } |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
3820 |
4649 | 3821 static int gaim_connerr(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 3822 GaimConnection *gc = sess->aux_data; |
7283 | 3823 OscarData *od = gc->proto_data; |
4649 | 3824 va_list ap; |
3825 fu16_t code; | |
3826 char *msg; | |
3827 | |
3828 va_start(ap, fr); | |
3829 code = (fu16_t)va_arg(ap, int); | |
3830 msg = va_arg(ap, char *); | |
3831 va_end(ap); | |
3832 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3833 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3834 "Disconnected. Code is 0x%04x and msg is %s\n", code, msg); |
4649 | 3835 if ((fr) && (fr->conn) && (fr->conn->type == AIM_CONN_TYPE_BOS)) { |
4651 | 3836 if (code == 0x0001) { |
6113 | 3837 gc->wants_to_die = TRUE; |
5579 | 3838 gaim_connection_error(gc, _("You have been disconnected because you have signed on with this screen name at another location.")); |
4651 | 3839 } else { |
5579 | 3840 gaim_connection_error(gc, _("You have been signed off for an unknown reason.")); |
4651 | 3841 } |
4666 | 3842 od->killme = TRUE; |
4649 | 3843 } |
3844 | |
3845 return 1; | |
3846 } | |
3847 | |
2675 | 3848 static int conninitdone_bos(aim_session_t *sess, aim_frame_t *fr, ...) { |
7283 | 3849 GaimConnection *gc = sess->aux_data; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3850 |
2703
441b84ab7f4e
[gaim-migrate @ 2716]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2698
diff
changeset
|
3851 aim_reqpersonalinfo(sess, fr->conn); |
4230 | 3852 |
3853 #ifndef NOSSI | |
7334 | 3854 gaim_debug(GAIM_DEBUG_INFO, "oscar", "ssi: requesting rights and list\n"); |
4889 | 3855 aim_ssi_reqrights(sess); |
6350 | 3856 aim_ssi_reqdata(sess); |
4230 | 3857 #endif |
3858 | |
7011 | 3859 aim_locate_reqrights(sess); |
7285 | 3860 aim_buddylist_reqrights(sess, fr->conn); |
4617 | 3861 aim_im_reqparams(sess); |
7334 | 3862 aim_bos_reqrights(sess, fr->conn); /* XXX - Don't call this with ssi */ |
4230 | 3863 |
3864 #ifdef NOSSI | |
7334 | 3865 gaim_debug(GAIM_DEBUG_INFO, "oscar", "bos: requesting rights\n"); |
3866 aim_bos_reqrights(sess, fr->conn); | |
4230 | 3867 aim_bos_setgroupperm(sess, fr->conn, AIM_FLAG_ALLUSERS); |
3868 aim_bos_setprivacyflags(sess, fr->conn, AIM_PRIVFLAGS_ALLOWIDLE | AIM_PRIVFLAGS_ALLOWMEMBERSINCE); | |
3869 #endif | |
2086 | 3870 |
7283 | 3871 gaim_connection_update_progress(gc, _("Finalizing connection"), 5, OSCAR_CONNECT_STEPS); |
3872 | |
2086 | 3873 return 1; |
3874 } | |
3875 | |
2675 | 3876 static int conninitdone_admin(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 3877 GaimConnection *gc = sess->aux_data; |
7283 | 3878 OscarData *od = gc->proto_data; |
2647 | 3879 |
6905 | 3880 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_ADM, 0x0003, gaim_info_change, 0); |
3881 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_ADM, 0x0005, gaim_info_change, 0); | |
3882 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_ADM, 0x0007, gaim_account_confirm, 0); | |
3883 | |
2672 | 3884 aim_clientready(sess, fr->conn); |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3885 gaim_debug(GAIM_DEBUG_INFO, "oscar", "connected to admin\n"); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3886 |
2647 | 3887 if (od->chpass) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3888 gaim_debug(GAIM_DEBUG_INFO, "oscar", "changing password\n"); |
2703
441b84ab7f4e
[gaim-migrate @ 2716]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2698
diff
changeset
|
3889 aim_admin_changepasswd(sess, fr->conn, od->newp, od->oldp); |
2647 | 3890 g_free(od->oldp); |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3891 od->oldp = NULL; |
2647 | 3892 g_free(od->newp); |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3893 od->newp = NULL; |
2647 | 3894 od->chpass = FALSE; |
3895 } | |
2979 | 3896 if (od->setnick) { |
8152 | 3897 gaim_debug(GAIM_DEBUG_INFO, "oscar", "formatting screen name\n"); |
2979 | 3898 aim_admin_setnick(sess, fr->conn, od->newsn); |
3899 g_free(od->newsn); | |
3900 od->newsn = NULL; | |
3901 od->setnick = FALSE; | |
3902 } | |
2647 | 3903 if (od->conf) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3904 gaim_debug(GAIM_DEBUG_INFO, "oscar", "confirming account\n"); |
2703
441b84ab7f4e
[gaim-migrate @ 2716]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2698
diff
changeset
|
3905 aim_admin_reqconfirm(sess, fr->conn); |
2647 | 3906 od->conf = FALSE; |
3907 } | |
3908 if (od->reqemail) { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3909 gaim_debug(GAIM_DEBUG_INFO, "oscar", "requesting email\n"); |
2703
441b84ab7f4e
[gaim-migrate @ 2716]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2698
diff
changeset
|
3910 aim_admin_getinfo(sess, fr->conn, 0x0011); |
2647 | 3911 od->reqemail = FALSE; |
3912 } | |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3913 if (od->setemail) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3914 gaim_debug(GAIM_DEBUG_INFO, "oscar", "setting email\n"); |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3915 aim_admin_setemail(sess, fr->conn, od->email); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3916 g_free(od->email); |
5497 | 3917 od->email = NULL; |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3918 od->setemail = FALSE; |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
3919 } |
2647 | 3920 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3921 return 1; |
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 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3924 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
|
3925 struct aim_icbmparameters *params; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3926 va_list ap; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3927 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3928 va_start(ap, fr); |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3929 params = va_arg(ap, struct aim_icbmparameters *); |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3930 va_end(ap); |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3931 |
4194 | 3932 /* 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
|
3933 gaim_debug(GAIM_DEBUG_MISC, "oscar", "ICBM Parameters: maxchannel = %hu, default flags = 0x%08lx, max msg len = %hu, " |
5556 | 3934 "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
|
3935 params->maxchan, params->flags, params->maxmsglen, |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3936 ((float)params->maxsenderwarn)/10.0, ((float)params->maxrecverwarn)/10.0, |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3937 params->minmsginterval); |
2427
5bc3b39fc0a5
[gaim-migrate @ 2440]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2421
diff
changeset
|
3938 */ |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3939 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3940 /* Maybe senderwarn and recverwarn should be user preferences... */ |
3595 | 3941 params->flags = 0x0000000b; |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3942 params->maxmsglen = 8000; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3943 params->minmsginterval = 0; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3944 |
4617 | 3945 aim_im_setparams(sess, params); |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3946 |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3947 return 1; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3948 } |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3949 |
2993 | 3950 static int gaim_parse_locaterights(aim_session_t *sess, aim_frame_t *fr, ...) |
3951 { | |
5575 | 3952 GaimConnection *gc = sess->aux_data; |
7283 | 3953 OscarData *od = (OscarData *)gc->proto_data; |
5306 | 3954 va_list ap; |
3955 fu16_t maxsiglen; | |
2993 | 3956 |
3957 va_start(ap, fr); | |
4199 | 3958 maxsiglen = (fu16_t) va_arg(ap, int); |
2993 | 3959 va_end(ap); |
3960 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3961 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3962 "locate rights: max sig len = %d\n", maxsiglen); |
2993 | 3963 |
4617 | 3964 od->rights.maxsiglen = od->rights.maxawaymsglen = (guint)maxsiglen; |
3965 | |
3966 if (od->icq) | |
7334 | 3967 aim_locate_setcaps(od->sess, caps_icq); |
5301 | 3968 else |
7334 | 3969 aim_locate_setcaps(od->sess, caps_aim); |
3970 oscar_set_info(gc, gc->account->user_info); | |
2993 | 3971 |
3972 return 1; | |
3973 } | |
3974 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3975 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
|
3976 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3977 fu16_t maxbuddies, maxwatchers; |
5575 | 3978 GaimConnection *gc = sess->aux_data; |
7283 | 3979 OscarData *od = (OscarData *)gc->proto_data; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3980 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3981 va_start(ap, fr); |
4199 | 3982 maxbuddies = (fu16_t) va_arg(ap, unsigned int); |
3983 maxwatchers = (fu16_t) va_arg(ap, unsigned int); | |
2086 | 3984 va_end(ap); |
3985 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3986 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3987 "buddy list rights: Max buddies = %hu / Max watchers = %hu\n", maxbuddies, maxwatchers); |
2086 | 3988 |
4617 | 3989 od->rights.maxbuddies = (guint)maxbuddies; |
3990 od->rights.maxwatchers = (guint)maxwatchers; | |
2993 | 3991 |
2086 | 3992 return 1; |
3993 } | |
3994 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3995 static int gaim_bosrights(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 3996 GaimConnection *gc = sess->aux_data; |
7283 | 3997 OscarData *od = (OscarData *)gc->proto_data; |
7334 | 3998 va_list ap; |
3999 fu16_t maxpermits, maxdenies; | |
2086 | 4000 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4001 va_start(ap, fr); |
4199 | 4002 maxpermits = (fu16_t) va_arg(ap, unsigned int); |
4003 maxdenies = (fu16_t) va_arg(ap, unsigned int); | |
2086 | 4004 va_end(ap); |
4005 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4006 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4007 "BOS rights: Max permit = %hu / Max deny = %hu\n", maxpermits, maxdenies); |
2086 | 4008 |
4617 | 4009 od->rights.maxpermits = (guint)maxpermits; |
4010 od->rights.maxdenies = (guint)maxdenies; | |
2993 | 4011 |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
4012 gaim_connection_set_state(gc, GAIM_CONNECTED); |
2993 | 4013 serv_finish_login(gc); |
4014 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4015 gaim_debug(GAIM_DEBUG_INFO, "oscar", "buddy list loaded\n"); |
2993 | 4016 |
2672 | 4017 aim_clientready(sess, fr->conn); |
5948 | 4018 aim_srv_setavailmsg(sess, NULL); |
7474 | 4019 aim_srv_setidle(sess, 0); |
4617 | 4020 |
4664 | 4021 if (od->icq) { |
4022 aim_icq_reqofflinemsgs(sess); | |
4023 aim_icq_hideip(sess); | |
4024 } | |
2706
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4025 |
2703
441b84ab7f4e
[gaim-migrate @ 2716]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2698
diff
changeset
|
4026 aim_reqservice(sess, fr->conn, AIM_CONN_TYPE_CHATNAV); |
4102 | 4027 if (sess->authinfo->email) |
4028 aim_reqservice(sess, fr->conn, AIM_CONN_TYPE_EMAIL); | |
2086 | 4029 |
4030 return 1; | |
4031 } | |
4032 | |
2706
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4033 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
|
4034 va_list ap; |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4035 struct aim_icq_offlinemsg *msg; |
4075 | 4036 struct aim_incomingim_ch4_args args; |
4037 time_t t; | |
2706
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4038 |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4039 va_start(ap, fr); |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4040 msg = va_arg(ap, struct aim_icq_offlinemsg *); |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4041 va_end(ap); |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4042 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4043 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4044 "Received offline message. Converting to channel 4 ICBM...\n"); |
4075 | 4045 args.uin = msg->sender; |
4046 args.type = msg->type; | |
4173 | 4047 args.flags = msg->flags; |
4076 | 4048 args.msglen = msg->msglen; |
4075 | 4049 args.msg = msg->msg; |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4050 t = gaim_time_build(msg->year, msg->month, msg->day, msg->hour, msg->minute, 0); |
4075 | 4051 incomingim_chan4(sess, fr->conn, NULL, &args, t); |
2706
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4052 |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4053 return 1; |
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 |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4056 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
|
4057 { |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4058 aim_icq_ackofflinemsgs(sess); |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4059 return 1; |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4060 } |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4061 |
7388 | 4062 #if 0 |
4063 /* | |
7465 | 4064 * Update, 2003-11-09: |
4065 * Joseph S. Myers, a gcc dude, fixed this for gcc 3.4! Rock on! | |
4066 * | |
7388 | 4067 * It may not be my place to do this, but... |
4068 * I feel pretty strongly that the "last 2 digits" warning is ridiculously | |
4069 * stupid, and should not exist for % switches (%x in our case) that request | |
4070 * a year in the preferred representation for the current locale. For that | |
4071 * reason I've chosen to not use this workaround (n., see kluge). | |
4072 * | |
4073 * I have a date. I want to show it to the user in the "preferred" way. | |
4074 * Whether that displays a 2 digit year is perfectly fine--after all, it's | |
4075 * what the locale wanted. | |
4076 * | |
4077 * If I have a necessity for a full representation of the year in the current | |
4078 * locale, then I'll use a switch that returns a full representation of the | |
4079 * year. | |
4080 * | |
4081 * If you think the preferred locale should show 4 digits instead of 2 digits | |
4082 * (because you're anal, or whatever), then change the f***ing locale. | |
4083 * | |
4084 * I guess the bottom line is--I'm trying to show a date to the user how they | |
4085 * prefer to see it, why the hell does gcc want me to change that? | |
7389 | 4086 * |
4087 * See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=3190 | |
4088 * See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=8714 | |
7388 | 4089 */ |
4090 | |
4091 /* | |
4092 * This function was recommended by the STRFTIME(3) man page to remove the | |
7386 | 4093 * "last 2 digits" warning. |
4094 */ | |
4095 static size_t my_strftime(char *s, size_t max, const char *fmt, | |
4096 const struct tm *tm) | |
4097 { | |
4098 return strftime(s, max, fmt, tm); | |
4099 } | |
7388 | 4100 #endif |
7386 | 4101 |
4624 | 4102 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
|
4103 { |
5575 | 4104 GaimConnection *gc = sess->aux_data; |
4819 | 4105 gchar *buf, *tmp, *utf8; |
4624 | 4106 gchar who[16]; |
6873 | 4107 GaimBuddy *buddy; |
4108 gchar *primary; | |
2742
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
4109 va_list ap; |
4151 | 4110 struct aim_icq_info *info; |
2742
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
4111 |
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
4112 va_start(ap, fr); |
4151 | 4113 info = va_arg(ap, struct aim_icq_info *); |
2742
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
4114 va_end(ap); |
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
4115 |
4664 | 4116 if (!info->uin) |
4117 return 0; | |
4118 | |
5556 | 4119 g_snprintf(who, sizeof(who), "%u", info->uin); |
6623 | 4120 buf = g_strdup_printf("<b>%s:</b> %s", _("UIN"), who); |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4121 if (info->nick && info->nick[0] && (utf8 = gaim_utf8_try_convert(info->nick))) { |
6623 | 4122 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Nick"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4819 | 4123 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4124 if (info->first && info->first[0] && (utf8 = gaim_utf8_try_convert(info->first))) { |
6623 | 4125 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("First Name"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4819 | 4126 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4127 if (info->last && info->last[0] && (utf8 = gaim_utf8_try_convert(info->last))) { |
6623 | 4128 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Last Name"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4819 | 4129 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4130 if (info->email && info->email[0] && (utf8 = gaim_utf8_try_convert(info->email))) { |
6623 | 4131 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 | 4132 } |
4133 if (info->numaddresses && info->email2) { | |
4134 int i; | |
4135 for (i = 0; i < info->numaddresses; i++) { | |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4136 if (info->email2[i] && info->email2[i][0] && (utf8 = gaim_utf8_try_convert(info->email2[i]))) { |
6623 | 4137 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 | 4138 } |
4625 | 4139 } |
4624 | 4140 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4141 if (info->mobile && info->mobile[0] && (utf8 = gaim_utf8_try_convert(info->mobile))) { |
6623 | 4142 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Mobile Phone"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4625 | 4143 } |
4144 if (info->gender) { | |
6623 | 4145 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Gender"), ":</b> ", info->gender==1 ? _("Female") : _("Male"), NULL); g_free(tmp); |
4151 | 4146 } |
4624 | 4147 if (info->birthyear || info->birthmonth || info->birthday) { |
4627 | 4148 char date[30]; |
4149 struct tm tm; | |
4150 tm.tm_mday = (int)info->birthday; | |
4151 tm.tm_mon = (int)info->birthmonth-1; | |
4152 tm.tm_year = (int)info->birthyear-1900; | |
7388 | 4153 strftime(date, sizeof(date), "%x", &tm); |
6623 | 4154 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Birthday"), ":</b> ", date, NULL); g_free(tmp); |
4151 | 4155 } |
4624 | 4156 if (info->age) { |
4157 char age[5]; | |
4158 snprintf(age, sizeof(age), "%hhd", info->age); | |
6623 | 4159 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Age"), ":</b> ", age, NULL); g_free(tmp); |
4819 | 4160 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4161 if (info->personalwebpage && info->personalwebpage[0] && (utf8 = gaim_utf8_try_convert(info->personalwebpage))) { |
6623 | 4162 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 | 4163 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4164 if (info->info && info->info[0] && (utf8 = gaim_utf8_try_convert(info->info))) { |
6623 | 4165 tmp = buf; buf = g_strconcat(tmp, "<hr><b>", _("Additional Information"), ":</b><br>", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 4166 } |
4167 tmp = buf; buf = g_strconcat(tmp, "<hr>\n", NULL); g_free(tmp); | |
4641 | 4168 if ((info->homeaddr && (info->homeaddr[0])) || (info->homecity && info->homecity[0]) || (info->homestate && info->homestate[0]) || (info->homezip && info->homezip[0])) { |
6623 | 4169 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
|
4170 if (info->homeaddr && info->homeaddr[0] && (utf8 = gaim_utf8_try_convert(info->homeaddr))) { |
6623 | 4171 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Address"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 4172 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4173 if (info->homecity && info->homecity[0] && (utf8 = gaim_utf8_try_convert(info->homecity))) { |
6623 | 4174 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("City"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 4175 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4176 if (info->homestate && info->homestate[0] && (utf8 = gaim_utf8_try_convert(info->homestate))) { |
6623 | 4177 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("State"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 4178 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4179 if (info->homezip && info->homezip[0] && (utf8 = gaim_utf8_try_convert(info->homezip))) { |
6623 | 4180 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Zip Code"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 4181 } |
4182 tmp = buf; buf = g_strconcat(tmp, "\n<hr>\n", NULL); g_free(tmp); | |
4151 | 4183 } |
4641 | 4184 if ((info->workaddr && info->workaddr[0]) || (info->workcity && info->workcity[0]) || (info->workstate && info->workstate[0]) || (info->workzip && info->workzip[0])) { |
6623 | 4185 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
|
4186 if (info->workaddr && info->workaddr[0] && (utf8 = gaim_utf8_try_convert(info->workaddr))) { |
6623 | 4187 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Address"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 4188 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4189 if (info->workcity && info->workcity[0] && (utf8 = gaim_utf8_try_convert(info->workcity))) { |
6623 | 4190 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("City"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 4191 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4192 if (info->workstate && info->workstate[0] && (utf8 = gaim_utf8_try_convert(info->workstate))) { |
6623 | 4193 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("State"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 4194 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4195 if (info->workzip && info->workzip[0] && (utf8 = gaim_utf8_try_convert(info->workzip))) { |
6623 | 4196 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Zip Code"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 4197 } |
4198 tmp = buf; buf = g_strconcat(tmp, "\n<hr>\n", NULL); g_free(tmp); | |
4199 } | |
4641 | 4200 if ((info->workcompany && info->workcompany[0]) || (info->workdivision && info->workdivision[0]) || (info->workposition && info->workposition[0]) || (info->workwebpage && info->workwebpage[0])) { |
6623 | 4201 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
|
4202 if (info->workcompany && info->workcompany[0] && (utf8 = gaim_utf8_try_convert(info->workcompany))) { |
6623 | 4203 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Company"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 4204 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4205 if (info->workdivision && info->workdivision[0] && (utf8 = gaim_utf8_try_convert(info->workdivision))) { |
6623 | 4206 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Division"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 4207 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4208 if (info->workposition && info->workposition[0] && (utf8 = gaim_utf8_try_convert(info->workposition))) { |
6623 | 4209 tmp = buf; buf = g_strconcat(tmp, "\n<br><b>", _("Position"), ":</b> ", utf8, NULL); g_free(tmp); g_free(utf8); |
4624 | 4210 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4211 if (info->workwebpage && info->workwebpage[0] && (utf8 = gaim_utf8_try_convert(info->workwebpage))) { |
6623 | 4212 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 | 4213 } |
4214 tmp = buf; buf = g_strconcat(tmp, "\n<hr>\n", NULL); g_free(tmp); | |
4151 | 4215 } |
4216 | |
6873 | 4217 buddy = gaim_find_buddy(gaim_connection_get_account(gc), who); |
4218 primary = g_strdup_printf(_("ICQ Info for %s"), gaim_get_buddy_alias(buddy)); | |
4219 gaim_notify_formatted(gc, NULL, primary, NULL, buf, NULL, NULL); | |
4220 g_free(primary); | |
4151 | 4221 g_free(buf); |
4222 | |
2742
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
4223 return 1; |
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
4224 } |
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
4225 |
4759 | 4226 static int gaim_icqalias(aim_session_t *sess, aim_frame_t *fr, ...) |
4227 { | |
5575 | 4228 GaimConnection *gc = sess->aux_data; |
4820 | 4229 gchar who[16], *utf8; |
6695 | 4230 GaimBuddy *b; |
4759 | 4231 va_list ap; |
4232 struct aim_icq_info *info; | |
4233 | |
4234 va_start(ap, fr); | |
4235 info = va_arg(ap, struct aim_icq_info *); | |
4236 va_end(ap); | |
4237 | |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4238 if (info->uin && info->nick && info->nick[0] && (utf8 = gaim_utf8_try_convert(info->nick))) { |
5556 | 4239 g_snprintf(who, sizeof(who), "%u", info->uin); |
4820 | 4240 serv_got_alias(gc, who, utf8); |
4759 | 4241 if ((b = gaim_find_buddy(gc->account, who))) { |
7693 | 4242 gaim_blist_node_set_string((GaimBlistNode*)b, "servernick", utf8); |
4759 | 4243 gaim_blist_save(); |
4244 } | |
4820 | 4245 g_free(utf8); |
4759 | 4246 } |
4247 | |
4248 return 1; | |
4249 } | |
4250 | |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4251 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
|
4252 { |
7032 | 4253 GaimConnection *gc = sess->aux_data; |
4254 gchar *text; | |
4255 va_list ap; | |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4256 char *msg, *url; |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4257 fu16_t wid, hei, delay; |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4258 |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4259 va_start(ap, fr); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4260 msg = va_arg(ap, char *); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4261 url = va_arg(ap, char *); |
4199 | 4262 wid = (fu16_t) va_arg(ap, int); |
4263 hei = (fu16_t) va_arg(ap, int); | |
4264 delay = (fu16_t) va_arg(ap, int); | |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4265 va_end(ap); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4266 |
7032 | 4267 text = g_strdup_printf("%s<br><a href=\"%s\">%s</a>", msg, url, url); |
4268 gaim_notify_formatted(gc, NULL, _("Pop-Up Message"), NULL, text, NULL, NULL); | |
4269 g_free(text); | |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4270 |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4271 return 1; |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4272 } |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4273 |
7032 | 4274 static int gaim_parse_searchreply(aim_session_t *sess, aim_frame_t *fr, ...) |
4275 { | |
6873 | 4276 GaimConnection *gc = sess->aux_data; |
4277 gchar *secondary; | |
4278 GString *text; | |
4279 int i, num; | |
2086 | 4280 va_list ap; |
6873 | 4281 char *email, *SNs; |
2086 | 4282 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4283 va_start(ap, fr); |
6873 | 4284 email = va_arg(ap, char *); |
2086 | 4285 num = va_arg(ap, int); |
4286 SNs = va_arg(ap, char *); | |
4287 va_end(ap); | |
4288 | |
8152 | 4289 secondary = g_strdup_printf(_("The following screen names are associated with %s"), email); |
6873 | 4290 text = g_string_new(""); |
2086 | 4291 for (i = 0; i < num; i++) |
6873 | 4292 g_string_append_printf(text, "%s<br>", &SNs[i * (MAXSNLEN + 1)]); |
4293 gaim_notify_formatted(gc, NULL, _("Search Results"), secondary, text->str, NULL, NULL); | |
4294 | |
4295 g_free(secondary); | |
4296 g_string_free(text, TRUE); | |
2086 | 4297 |
4298 return 1; | |
4299 } | |
4300 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4301 static int gaim_parse_searcherror(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 4302 va_list ap; |
6873 | 4303 char *email; |
5420 | 4304 char *buf; |
2086 | 4305 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4306 va_start(ap, fr); |
6873 | 4307 email = va_arg(ap, char *); |
2086 | 4308 va_end(ap); |
4309 | |
6873 | 4310 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
|
4311 gaim_notify_error(sess->aux_data, NULL, buf, NULL); |
5420 | 4312 g_free(buf); |
2086 | 4313 |
4314 return 1; | |
4315 } | |
4316 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4317 static int gaim_account_confirm(aim_session_t *sess, aim_frame_t *fr, ...) { |
6873 | 4318 GaimConnection *gc = sess->aux_data; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4319 fu16_t status; |
2086 | 4320 va_list ap; |
4321 char msg[256]; | |
4322 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4323 va_start(ap, fr); |
4199 | 4324 status = (fu16_t) va_arg(ap, unsigned int); /* status code of confirmation request */ |
2086 | 4325 va_end(ap); |
4326 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4327 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4328 "account confirmation returned status 0x%04x (%s)\n", status, |
3912 | 4329 status ? "unknown" : "email sent"); |
4330 if (!status) { | |
5302 | 4331 g_snprintf(msg, sizeof(msg), _("You should receive an email asking to confirm %s."), |
5575 | 4332 gaim_account_get_username(gaim_connection_get_account(gc))); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4333 gaim_notify_info(gc, NULL, _("Account Confirmation Requested"), msg); |
2086 | 4334 } |
4335 | |
4336 return 1; | |
4337 } | |
4338 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4339 static int gaim_info_change(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 4340 GaimConnection *gc = sess->aux_data; |
2086 | 4341 va_list ap; |
3912 | 4342 fu16_t perms, err; |
4343 char *url, *sn, *email; | |
4344 int change; | |
2086 | 4345 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4346 va_start(ap, fr); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4347 change = va_arg(ap, int); |
4199 | 4348 perms = (fu16_t) va_arg(ap, unsigned int); |
4349 err = (fu16_t) va_arg(ap, unsigned int); | |
3912 | 4350 url = va_arg(ap, char *); |
4351 sn = va_arg(ap, char *); | |
4352 email = va_arg(ap, char *); | |
2086 | 4353 va_end(ap); |
4354 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4355 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4356 "account info: because of %s, perms=0x%04x, err=0x%04x, url=%s, sn=%s, email=%s\n", |
3912 | 4357 change ? "change" : "request", perms, err, url, sn, email); |
4358 | |
4359 if (err && url) { | |
4360 char *dialog_msg; | |
4361 char *dialog_top = g_strdup_printf(_("Error Changing Account Info")); | |
4362 switch (err) { | |
4363 case 0x0001: { | |
4364 dialog_msg = g_strdup_printf(_("Error 0x%04x: Unable to format screen name because the requested screen name differs from the original."), err); | |
4365 } break; | |
4366 case 0x0006: { | |
4367 dialog_msg = g_strdup_printf(_("Error 0x%04x: Unable to format screen name because the requested screen name ends in a space."), err); | |
4368 } break; | |
4369 case 0x000b: { | |
4370 dialog_msg = g_strdup_printf(_("Error 0x%04x: Unable to format screen name because the requested screen name is too long."), err); | |
4371 } break; | |
4372 case 0x001d: { | |
4373 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); | |
4374 } break; | |
4375 case 0x0021: { | |
4376 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); | |
4377 } break; | |
4378 case 0x0023: { | |
4379 dialog_msg = g_strdup_printf(_("Error 0x%04x: Unable to change email address because the given address is invalid."), err); | |
4380 } break; | |
4381 default: { | |
4382 dialog_msg = g_strdup_printf(_("Error 0x%04x: Unknown error."), err); | |
4383 } break; | |
4384 } | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4385 gaim_notify_error(gc, NULL, dialog_top, dialog_msg); |
3912 | 4386 g_free(dialog_top); |
4387 g_free(dialog_msg); | |
4388 return 1; | |
4389 } | |
4390 | |
4391 if (sn) { | |
4585 | 4392 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
|
4393 gaim_notify_info(gc, NULL, _("Account Info"), dialog_msg); |
3912 | 4394 g_free(dialog_msg); |
4395 } | |
4396 | |
4397 if (email) { | |
5575 | 4398 char *dialog_msg = g_strdup_printf(_("The email address for %s is %s"), |
4399 gaim_account_get_username(gaim_connection_get_account(gc)), email); | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4400 gaim_notify_info(gc, NULL, _("Account Info"), dialog_msg); |
3912 | 4401 g_free(dialog_msg); |
2086 | 4402 } |
4403 | |
4404 return 1; | |
4405 } | |
4406 | |
5575 | 4407 static void oscar_keepalive(GaimConnection *gc) { |
7283 | 4408 OscarData *od = (OscarData *)gc->proto_data; |
4617 | 4409 aim_flap_nop(od->sess, od->conn); |
2086 | 4410 } |
4411 | |
6059 | 4412 static int oscar_send_typing(GaimConnection *gc, const char *name, int typing) { |
7283 | 4413 OscarData *od = (OscarData *)gc->proto_data; |
4617 | 4414 struct direct_im *dim = find_direct_im(od, name); |
3595 | 4415 if (dim) |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
4416 if (typing == GAIM_TYPING) |
4870 | 4417 aim_odc_send_typing(od->sess, dim->conn, 0x0002); |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
4418 else if (typing == GAIM_TYPED) |
4870 | 4419 aim_odc_send_typing(od->sess, dim->conn, 0x0001); |
4420 else | |
4421 aim_odc_send_typing(od->sess, dim->conn, 0x0000); | |
3595 | 4422 else { |
5300 | 4423 /* Don't send if this turkey is in our deny list */ |
4424 GSList *list; | |
4425 for (list=gc->account->deny; (list && aim_sncmp(name, list->data)); list=list->next); | |
4426 if (!list) { | |
7261 | 4427 struct buddyinfo *bi = g_hash_table_lookup(od->buddyinfo, gaim_normalize(gc->account, name)); |
5300 | 4428 if (bi && bi->typingnot) { |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
4429 if (typing == GAIM_TYPING) |
5300 | 4430 aim_im_sendmtn(od->sess, 0x0001, name, 0x0002); |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
4431 else if (typing == GAIM_TYPED) |
5300 | 4432 aim_im_sendmtn(od->sess, 0x0001, name, 0x0001); |
4433 else | |
4434 aim_im_sendmtn(od->sess, 0x0001, name, 0x0000); | |
4435 } | |
3595 | 4436 } |
4437 } | |
2993 | 4438 return 0; |
4439 } | |
5575 | 4440 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
|
4441 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
|
4442 |
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
4443 static int oscar_send_im(GaimConnection *gc, const char *name, const char *message, GaimConvImFlags imflags) { |
7283 | 4444 OscarData *od = (OscarData *)gc->proto_data; |
4617 | 4445 struct direct_im *dim = find_direct_im(od, name); |
2303
f5bf315e6104
[gaim-migrate @ 2313]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2297
diff
changeset
|
4446 int ret = 0; |
3659 | 4447 GError *err = NULL; |
5575 | 4448 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
|
4449 char *tmpmsg = NULL; |
3458 | 4450 |
4838 | 4451 if (dim && dim->connected) { |
4452 /* If we're directly connected, send a direct IM */ | |
6982 | 4453 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
|
4454 } else if (imflags & GAIM_CONV_IM_IMAGES) { |
3044 | 4455 /* Trying to send an IM image outside of a direct connection. */ |
4456 oscar_ask_direct_im(gc, name); | |
4838 | 4457 ret = -ENOTCONN; |
2086 | 4458 } else { |
4738 | 4459 struct buddyinfo *bi; |
3008 | 4460 struct aim_sendimext_args args; |
4461 struct stat st; | |
6478
338147ea6896
[gaim-migrate @ 6991]
Christian Hammond <chipx86@chipx86.com>
parents:
6465
diff
changeset
|
4462 gsize len; |
4269 | 4463 |
7261 | 4464 bi = g_hash_table_lookup(od->buddyinfo, gaim_normalize(gc->account, name)); |
4738 | 4465 if (!bi) { |
4466 bi = g_new0(struct buddyinfo, 1); | |
7261 | 4467 g_hash_table_insert(od->buddyinfo, g_strdup(gaim_normalize(gc->account, name)), bi); |
4738 | 4468 } |
4469 | |
3008 | 4470 args.flags = AIM_IMFLAGS_ACK | AIM_IMFLAGS_CUSTOMFEATURES; |
4665 | 4471 if (od->icq) { |
4472 args.features = features_icq; | |
4473 args.featureslen = sizeof(features_icq); | |
3008 | 4474 args.flags |= AIM_IMFLAGS_OFFLINE; |
4665 | 4475 } else { |
4476 args.features = features_aim; | |
4477 args.featureslen = sizeof(features_aim); | |
4972 | 4478 |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
4479 if (imflags & GAIM_CONV_IM_AUTO_RESP) |
4972 | 4480 args.flags |= AIM_IMFLAGS_AWAY; |
4665 | 4481 } |
4269 | 4482 |
4738 | 4483 if (bi->ico_need) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4484 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4485 "Sending buddy icon request with message\n"); |
3008 | 4486 args.flags |= AIM_IMFLAGS_BUDDYREQ; |
4738 | 4487 bi->ico_need = FALSE; |
3008 | 4488 } |
4269 | 4489 |
5575 | 4490 if (iconfile && !stat(iconfile, &st)) { |
8361 | 4491 FILE *file = fopen(iconfile, "rb"); |
3008 | 4492 if (file) { |
4493 char *buf = g_malloc(st.st_size); | |
4494 fread(buf, 1, st.st_size, file); | |
6039 | 4495 fclose(file); |
4269 | 4496 |
3008 | 4497 args.iconlen = st.st_size; |
4617 | 4498 args.iconsum = aimutil_iconsum(buf, st.st_size); |
3008 | 4499 args.iconstamp = st.st_mtime; |
4500 | |
7406 | 4501 if ((args.iconlen != bi->ico_me_len) || (args.iconsum != bi->ico_me_csum) || (args.iconstamp != bi->ico_me_time)) { |
4738 | 4502 bi->ico_informed = FALSE; |
7406 | 4503 bi->ico_sent = FALSE; |
4504 } | |
4738 | 4505 |
4506 if (!bi->ico_informed) { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4507 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4508 "Claiming to have a buddy icon\n"); |
4738 | 4509 args.flags |= AIM_IMFLAGS_HASICON; |
4510 bi->ico_me_len = args.iconlen; | |
4511 bi->ico_me_csum = args.iconsum; | |
4512 bi->ico_me_time = args.iconstamp; | |
4513 bi->ico_informed = TRUE; | |
4514 } | |
4515 | |
3008 | 4516 g_free(buf); |
2086 | 4517 } |
4518 } | |
4269 | 4519 |
3008 | 4520 args.destsn = name; |
4269 | 4521 |
6310 | 4522 /* For ICQ send newlines as CR/LF, for AIM send newlines as <BR> */ |
4523 if (isdigit(name[0])) | |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4524 tmpmsg = gaim_str_add_cr(message); |
6310 | 4525 else |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4526 tmpmsg = gaim_strdup_withhtml(message); |
6310 | 4527 len = strlen(tmpmsg); |
4528 | |
4529 args.flags |= oscar_encoding_check(tmpmsg); | |
3642 | 4530 if (args.flags & AIM_IMFLAGS_UNICODE) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4531 gaim_debug(GAIM_DEBUG_INFO, "oscar", "Sending Unicode IM\n"); |
4662 | 4532 args.charset = 0x0002; |
4665 | 4533 args.charsubset = 0x0000; |
6310 | 4534 args.msg = g_convert(tmpmsg, len, "UCS-2BE", "UTF-8", NULL, &len, &err); |
3659 | 4535 if (err) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4536 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4537 "Error converting a unicode message: %s\n", err->message); |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4538 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4539 "This really shouldn't happen!\n"); |
3659 | 4540 /* We really shouldn't try to send the |
4541 * IM now, but I'm not sure what to do */ | |
4800 | 4542 g_error_free(err); |
3659 | 4543 } |
3850 | 4544 } else if (args.flags & AIM_IMFLAGS_ISO_8859_1) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4545 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4546 "Sending ISO-8859-1 IM\n"); |
4662 | 4547 args.charset = 0x0003; |
4665 | 4548 args.charsubset = 0x0000; |
6310 | 4549 args.msg = g_convert(tmpmsg, len, "ISO-8859-1", "UTF-8", NULL, &len, &err); |
3659 | 4550 if (err) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4551 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4552 "conversion error: %s\n", err->message); |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4553 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4554 "Someone tell Ethan his 8859-1 detection is wrong\n"); |
3642 | 4555 args.flags ^= AIM_IMFLAGS_ISO_8859_1 | AIM_IMFLAGS_UNICODE; |
6310 | 4556 len = strlen(tmpmsg); |
4800 | 4557 g_error_free(err); |
6310 | 4558 args.msg = g_convert(tmpmsg, len, "UCS-2BE", "UTF8", NULL, &len, &err); |
3659 | 4559 if (err) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4560 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4561 "Error in unicode fallback: %s\n", err->message); |
4800 | 4562 g_error_free(err); |
3659 | 4563 } |
3642 | 4564 } |
4565 } else { | |
4662 | 4566 args.charset = 0x0000; |
4567 args.charsubset = 0x0000; | |
6310 | 4568 args.msg = tmpmsg; |
3642 | 4569 } |
4570 args.msglen = len; | |
4269 | 4571 |
4617 | 4572 ret = aim_im_sendch1_ext(od->sess, &args); |
2086 | 4573 } |
4838 | 4574 |
6310 | 4575 g_free(tmpmsg); |
4576 | |
2303
f5bf315e6104
[gaim-migrate @ 2313]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2297
diff
changeset
|
4577 if (ret >= 0) |
f5bf315e6104
[gaim-migrate @ 2313]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2297
diff
changeset
|
4578 return 1; |
6310 | 4579 |
2303
f5bf315e6104
[gaim-migrate @ 2313]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2297
diff
changeset
|
4580 return ret; |
2086 | 4581 } |
4582 | |
7011 | 4583 static void oscar_get_info(GaimConnection *gc, const char *name) { |
7283 | 4584 OscarData *od = (OscarData *)gc->proto_data; |
7011 | 4585 |
7173 | 4586 if (od->icq && isdigit(name[0])) |
4624 | 4587 aim_icq_getallinfo(od->sess, name); |
2742
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
4588 else |
7235 | 4589 aim_locate_getinfoshort(od->sess, name, 0x00000003); |
7011 | 4590 } |
4591 | |
4592 static void oscar_get_away(GaimConnection *gc, const char *who) { | |
7283 | 4593 OscarData *od = (OscarData *)gc->proto_data; |
4617 | 4594 if (od->icq) { |
7011 | 4595 GaimBuddy *budlight = gaim_find_buddy(gc->account, who); |
3212 | 4596 if (budlight) |
3595 | 4597 if ((budlight->uc & 0xffff0000) >> 16) |
4687 | 4598 aim_im_sendch2_geticqaway(od->sess, who, (budlight->uc & 0xffff0000) >> 16); |
3212 | 4599 else |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4600 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4601 "Error: The user %s has no status message, therefore not requesting.\n", who); |
3212 | 4602 else |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4603 gaim_debug(GAIM_DEBUG_ERROR, "oscar", |
7023 | 4604 "Error: Could not find %s in local buddy list, therefore unable to request status message.\n", who); |
3212 | 4605 } else |
7011 | 4606 aim_locate_getinfoshort(od->sess, who, 0x00000002); |
4607 } | |
4608 | |
4609 static void oscar_set_dir(GaimConnection *gc, const char *first, const char *middle, const char *last, | |
3466 | 4610 const char *maiden, const char *city, const char *state, const char *country, int web) { |
4617 | 4611 /* XXX - some of these things are wrong, but i'm lazy */ |
7283 | 4612 OscarData *od = (OscarData *)gc->proto_data; |
7011 | 4613 aim_locate_setdirinfo(od->sess, first, middle, last, |
2086 | 4614 maiden, NULL, NULL, city, state, NULL, 0, web); |
4615 } | |
4616 | |
5575 | 4617 static void oscar_set_idle(GaimConnection *gc, int time) { |
7283 | 4618 OscarData *od = (OscarData *)gc->proto_data; |
7474 | 4619 aim_srv_setidle(od->sess, time); |
2086 | 4620 } |
4621 | |
5954 | 4622 static void oscar_set_info(GaimConnection *gc, const char *text) { |
7283 | 4623 OscarData *od = (OscarData *)gc->proto_data; |
5129 | 4624 fu32_t flags = 0; |
6019 | 4625 char *text_html = NULL; |
5129 | 4626 char *msg = NULL; |
6478
338147ea6896
[gaim-migrate @ 6991]
Christian Hammond <chipx86@chipx86.com>
parents:
6465
diff
changeset
|
4627 gsize msglen = 0; |
2993 | 4628 |
4617 | 4629 if (od->rights.maxsiglen == 0) |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4630 gaim_notify_warning(gc, NULL, _("Unable to set AIM profile."), |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4631 _("You have probably requested to set your " |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4632 "profile before the login procedure completed. " |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4633 "Your profile remains unset; try setting it " |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4634 "again when you are fully connected.")); |
4617 | 4635 |
7334 | 4636 if (!text) { |
4637 aim_locate_setprofile(od->sess, NULL, "", 0, NULL, NULL, 0); | |
4638 return; | |
4639 } | |
6019 | 4640 |
7334 | 4641 text_html = gaim_strdup_withhtml(text); |
4642 flags = oscar_encoding_check(text_html); | |
4643 if (flags & AIM_IMFLAGS_UNICODE) { | |
4644 msg = g_convert(text_html, strlen(text_html), "UCS-2BE", "UTF-8", NULL, &msglen, NULL); | |
4645 aim_locate_setprofile(od->sess, "unicode-2-0", msg, (msglen > od->rights.maxsiglen ? od->rights.maxsiglen : msglen), NULL, NULL, 0); | |
4646 g_free(msg); | |
4647 } else if (flags & AIM_IMFLAGS_ISO_8859_1) { | |
4648 msg = g_convert(text_html, strlen(text_html), "ISO-8859-1", "UTF-8", NULL, &msglen, NULL); | |
4649 aim_locate_setprofile(od->sess, "iso-8859-1", msg, (msglen > od->rights.maxsiglen ? od->rights.maxsiglen : msglen), NULL, NULL, 0); | |
4650 g_free(msg); | |
4651 } else { | |
4652 msglen = strlen(text_html); | |
4653 aim_locate_setprofile(od->sess, "us-ascii", text_html, (msglen > od->rights.maxsiglen ? od->rights.maxsiglen : msglen), NULL, NULL, 0); | |
4654 } | |
4655 | |
4656 if (msglen > od->rights.maxsiglen) { | |
4657 gchar *errstr; | |
4658 errstr = g_strdup_printf(ngettext("The maximum profile length of %d byte " | |
4659 "has been exceeded. Gaim has truncated it for you.", | |
4660 "The maximum profile length of %d bytes " | |
4661 "has been exceeded. Gaim has truncated it for you.", | |
4662 od->rights.maxsiglen), od->rights.maxsiglen); | |
4663 gaim_notify_warning(gc, NULL, _("Profile too long."), errstr); | |
4664 g_free(errstr); | |
4665 } | |
4666 | |
4667 g_free(text_html); | |
2993 | 4668 |
4669 return; | |
2086 | 4670 } |
4671 | |
8257 | 4672 static void oscar_set_away_aim(GaimConnection *gc, OscarData *od, const char *state, const char *text) |
2993 | 4673 { |
5129 | 4674 fu32_t flags = 0; |
6019 | 4675 gchar *text_html = NULL; |
5129 | 4676 char *msg = NULL; |
6478
338147ea6896
[gaim-migrate @ 6991]
Christian Hammond <chipx86@chipx86.com>
parents:
6465
diff
changeset
|
4677 gsize msglen = 0; |
2993 | 4678 |
8257 | 4679 if (!strcmp(state, _("Visible"))) { |
4680 aim_setextstatus(od->sess, AIM_ICQ_STATE_NORMAL); | |
4681 return; | |
4682 } else if (!strcmp(state, _("Invisible"))) { | |
4683 aim_setextstatus(od->sess, AIM_ICQ_STATE_INVISIBLE); | |
4684 return; | |
4685 } /* else... */ | |
4686 | |
8476 | 4687 if (!strcmp(state, _("Back"))) { |
4688 /* If this is our only online account then globally set Gaim not-away */ | |
4689 GList *gcs = gaim_connections_get_all(); | |
4690 if (gcs->next == NULL) | |
4691 do_im_back(NULL, NULL); | |
4692 } | |
4693 | |
8257 | 4694 aim_setextstatus(od->sess, AIM_ICQ_STATE_NORMAL); |
4695 | |
2993 | 4696 if (od->rights.maxawaymsglen == 0) |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4697 gaim_notify_warning(gc, NULL, _("Unable to set AIM away message."), |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4698 _("You have probably requested to set your " |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4699 "away message before the login procedure " |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4700 "completed. You remain in a \"present\" " |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4701 "state; try setting it again when you are " |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4702 "fully connected.")); |
5129 | 4703 |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4704 if (gc->away) { |
2993 | 4705 g_free(gc->away); |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4706 gc->away = NULL; |
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4707 } |
2993 | 4708 |
5129 | 4709 if (!text) { |
7334 | 4710 aim_locate_setprofile(od->sess, NULL, NULL, 0, NULL, "", 0); |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
4711 return; |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
4712 } |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
4713 |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4714 text_html = gaim_strdup_withhtml(text); |
6019 | 4715 flags = oscar_encoding_check(text_html); |
5129 | 4716 if (flags & AIM_IMFLAGS_UNICODE) { |
6019 | 4717 msg = g_convert(text_html, strlen(text_html), "UCS-2BE", "UTF-8", NULL, &msglen, NULL); |
7011 | 4718 aim_locate_setprofile(od->sess, NULL, NULL, 0, "unicode-2-0", msg, |
7334 | 4719 (msglen > od->rights.maxawaymsglen ? od->rights.maxawaymsglen : msglen)); |
5129 | 4720 g_free(msg); |
4721 gc->away = g_strndup(text, od->rights.maxawaymsglen/2); | |
4722 } else if (flags & AIM_IMFLAGS_ISO_8859_1) { | |
6019 | 4723 msg = g_convert(text_html, strlen(text_html), "ISO-8859-1", "UTF-8", NULL, &msglen, NULL); |
7011 | 4724 aim_locate_setprofile(od->sess, NULL, NULL, 0, "iso-8859-1", msg, |
7334 | 4725 (msglen > od->rights.maxawaymsglen ? od->rights.maxawaymsglen : msglen)); |
5129 | 4726 g_free(msg); |
6019 | 4727 gc->away = g_strndup(text_html, od->rights.maxawaymsglen); |
5129 | 4728 } else { |
6019 | 4729 msglen = strlen(text_html); |
7011 | 4730 aim_locate_setprofile(od->sess, NULL, NULL, 0, "us-ascii", text_html, |
7334 | 4731 (msglen > od->rights.maxawaymsglen ? od->rights.maxawaymsglen : msglen)); |
6019 | 4732 gc->away = g_strndup(text_html, od->rights.maxawaymsglen); |
5129 | 4733 } |
4734 | |
4735 if (msglen > od->rights.maxawaymsglen) { | |
2993 | 4736 gchar *errstr; |
4737 | |
6308 | 4738 errstr = g_strdup_printf(ngettext("The maximum away message length of %d byte " |
4739 "has been exceeded. Gaim has truncated it for you.", | |
4740 "The maximum away message length of %d bytes " | |
4741 "has been exceeded. Gaim has truncated it for you.", | |
4742 od->rights.maxawaymsglen), od->rights.maxawaymsglen); | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4743 gaim_notify_warning(gc, NULL, _("Away message too long."), errstr); |
2993 | 4744 g_free(errstr); |
4745 } | |
6019 | 4746 |
4747 g_free(text_html); | |
8257 | 4748 |
2993 | 4749 return; |
4750 } | |
4751 | |
7283 | 4752 static void oscar_set_away_icq(GaimConnection *gc, OscarData *od, const char *state, const char *message) |
2993 | 4753 { |
5575 | 4754 GaimAccount *account = gaim_connection_get_account(gc); |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4755 if (gc->away) { |
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4756 g_free(gc->away); |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
4757 gc->away = NULL; |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4758 } |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
4759 |
8265 | 4760 if (strcmp(state, _("Invisible"))) |
5575 | 4761 account->perm_deny = 4; |
8265 | 4762 else |
5575 | 4763 account->perm_deny = 3; |
8265 | 4764 if ((od->sess->ssi.received_data) && (aim_ssi_getpermdeny(od->sess->ssi.local) != account->perm_deny)) |
4765 aim_ssi_setpermdeny(od->sess, account->perm_deny, 0xffffffff); | |
4342 | 4766 |
4767 if (!strcmp(state, _("Online"))) | |
4901 | 4768 aim_setextstatus(od->sess, AIM_ICQ_STATE_NORMAL); |
4342 | 4769 else if (!strcmp(state, _("Away"))) { |
4901 | 4770 aim_setextstatus(od->sess, AIM_ICQ_STATE_AWAY); |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4771 gc->away = g_strdup(""); |
4342 | 4772 } else if (!strcmp(state, _("Do Not Disturb"))) { |
4901 | 4773 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
|
4774 gc->away = g_strdup(""); |
4342 | 4775 } else if (!strcmp(state, _("Not Available"))) { |
4901 | 4776 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
|
4777 gc->away = g_strdup(""); |
4342 | 4778 } else if (!strcmp(state, _("Occupied"))) { |
4901 | 4779 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
|
4780 gc->away = g_strdup(""); |
4342 | 4781 } else if (!strcmp(state, _("Free For Chat"))) { |
4901 | 4782 aim_setextstatus(od->sess, AIM_ICQ_STATE_CHAT); |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4783 gc->away = g_strdup(""); |
4342 | 4784 } else if (!strcmp(state, _("Invisible"))) { |
4901 | 4785 aim_setextstatus(od->sess, AIM_ICQ_STATE_INVISIBLE); |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
4786 gc->away = g_strdup(""); |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
4787 } else if (!strcmp(state, GAIM_AWAY_CUSTOM)) { |
2998 | 4788 if (message) { |
4901 | 4789 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
|
4790 gc->away = g_strdup(""); |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
4791 } else { |
4901 | 4792 aim_setextstatus(od->sess, AIM_ICQ_STATE_NORMAL); |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
4793 } |
2086 | 4794 } |
2993 | 4795 |
4796 return; | |
4797 } | |
4798 | |
6059 | 4799 static void oscar_set_away(GaimConnection *gc, const char *state, const char *message) |
2993 | 4800 { |
7283 | 4801 OscarData *od = (OscarData *)gc->proto_data; |
2993 | 4802 |
4803 if (od->icq) | |
4804 oscar_set_away_icq(gc, od, state, message); | |
4805 else | |
8257 | 4806 oscar_set_away_aim(gc, od, state, message); |
2993 | 4807 |
4808 return; | |
2086 | 4809 } |
4810 | |
6059 | 4811 static void oscar_warn(GaimConnection *gc, const char *name, int anon) { |
7283 | 4812 OscarData *od = (OscarData *)gc->proto_data; |
4617 | 4813 aim_im_warn(od->sess, od->conn, name, anon ? AIM_WARN_ANON : 0); |
2086 | 4814 } |
4815 | |
5575 | 4816 static void oscar_dir_search(GaimConnection *gc, const char *first, const char *middle, const char *last, |
3466 | 4817 const char *maiden, const char *city, const char *state, const char *country, const char *email) { |
7283 | 4818 OscarData *od = (OscarData *)gc->proto_data; |
2086 | 4819 if (strlen(email)) |
6879 | 4820 aim_search_address(od->sess, od->conn, email); |
2086 | 4821 } |
4822 | |
6787
faa491042c66
[gaim-migrate @ 7326]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
4823 static void oscar_add_buddy(GaimConnection *gc, const char *name, GaimGroup *g) { |
7283 | 4824 OscarData *od = (OscarData *)gc->proto_data; |
8150 | 4825 GaimBuddy *b; |
4826 | |
4827 if (g == NULL) { | |
4828 /* If we were called from oscar_add_buddies... */ | |
4829 b = gaim_find_buddy(gaim_connection_get_account(gc), name); | |
4830 g = gaim_find_buddys_group(b); | |
4831 } else | |
4832 b = gaim_find_buddy_in_group(gaim_connection_get_account(gc), name, g); | |
8092 | 4833 |
4834 if (!aim_snvalid(name)) { | |
4835 gchar *buf; | |
8150 | 4836 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 | 4837 gaim_notify_error(gc, NULL, _("Unable To Add"), buf); |
4838 g_free(buf); | |
8150 | 4839 |
4840 /* Remove from local list */ | |
4841 gaim_blist_remove_buddy(b); | |
4842 | |
8092 | 4843 return; |
4844 } | |
4845 | |
4230 | 4846 #ifdef NOSSI |
8143 | 4847 aim_buddylist_addbuddy(od->sess, od->conn, name); |
4230 | 4848 #else |
4849 if ((od->sess->ssi.received_data) && !(aim_ssi_itemlist_exists(od->sess->ssi.local, name))) { | |
8150 | 4850 if (b && g) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4851 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
8150 | 4852 "ssi: adding buddy %s to group %s\n", name, g->name); |
4853 aim_ssi_addbuddy(od->sess, b->name, g->name, gaim_get_buddy_alias_only(b), NULL, NULL, 0); | |
4230 | 4854 } |
4855 } | |
4856 #endif | |
8150 | 4857 |
4759 | 4858 if (od->icq) |
4859 aim_icq_getalias(od->sess, name); | |
4230 | 4860 } |
4861 | |
5575 | 4862 static void oscar_add_buddies(GaimConnection *gc, GList *buddies) { |
7283 | 4863 OscarData *od = (OscarData *)gc->proto_data; |
4230 | 4864 #ifdef NOSSI |
4865 char buf[MSG_LEN]; | |
4866 int n=0; | |
4867 while (buddies) { | |
4868 if (n > MSG_LEN - 18) { | |
7285 | 4869 aim_buddylist_set(od->sess, od->conn, buf); |
4230 | 4870 n = 0; |
3092 | 4871 } |
8150 | 4872 n += g_snprintf(buf + n, sizeof(buf) - n, "%s&", (const char *)buddies->data); |
4230 | 4873 buddies = buddies->next; |
4874 } | |
7285 | 4875 aim_buddylist_set(od->sess, od->conn, buf); |
4230 | 4876 #else |
4877 if (od->sess->ssi.received_data) { | |
4878 while (buddies) { | |
8092 | 4879 oscar_add_buddy(gc, buddies->data, NULL); |
4230 | 4880 buddies = buddies->next; |
4881 } | |
4882 } | |
4883 #endif | |
4884 } | |
4885 | |
6059 | 4886 static void oscar_remove_buddy(GaimConnection *gc, const char *name, const char *group) { |
7283 | 4887 OscarData *od = (OscarData *)gc->proto_data; |
4230 | 4888 #ifdef NOSSI |
8143 | 4889 aim_buddylist_removebuddy(od->sess, od->conn, name); |
4230 | 4890 #else |
4891 if (od->sess->ssi.received_data) { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4892 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4893 "ssi: deleting buddy %s from group %s\n", name, group); |
4889 | 4894 aim_ssi_delbuddy(od->sess, name, group); |
4230 | 4895 } |
4896 #endif | |
4897 } | |
4898 | |
5575 | 4899 static void oscar_remove_buddies(GaimConnection *gc, GList *buddies, const char *group) { |
7283 | 4900 OscarData *od = (OscarData *)gc->proto_data; |
4230 | 4901 #ifdef NOSSI |
4902 GList *cur; | |
4903 for (cur=buddies; cur; cur=cur->next) | |
8143 | 4904 aim_buddylist_removebuddy(od->sess, od->conn, cur->data); |
4230 | 4905 #else |
4906 if (od->sess->ssi.received_data) { | |
3092 | 4907 while (buddies) { |
8150 | 4908 oscar_remove_buddy(gc, buddies->data, group); |
3092 | 4909 buddies = buddies->next; |
4910 } | |
4230 | 4911 } |
4912 #endif | |
4913 } | |
4914 | |
4915 #ifndef NOSSI | |
5575 | 4916 static void oscar_move_buddy(GaimConnection *gc, const char *name, const char *old_group, const char *new_group) { |
7283 | 4917 OscarData *od = (OscarData *)gc->proto_data; |
4303 | 4918 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
|
4919 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4920 "ssi: moving buddy %s from group %s to group %s\n", name, old_group, new_group); |
4889 | 4921 aim_ssi_movebuddy(od->sess, old_group, new_group, name); |
4269 | 4922 } |
4923 } | |
4924 | |
5575 | 4925 static void oscar_alias_buddy(GaimConnection *gc, const char *name, const char *alias) { |
7283 | 4926 OscarData *od = (OscarData *)gc->proto_data; |
4269 | 4927 if (od->sess->ssi.received_data) { |
4928 char *gname = aim_ssi_itemlist_findparentname(od->sess->ssi.local, name); | |
4929 if (gname) { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4930 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4931 "ssi: changing the alias for buddy %s to %s\n", name, alias); |
4889 | 4932 aim_ssi_aliasbuddy(od->sess, gname, name, alias); |
4269 | 4933 } |
4934 } | |
4935 } | |
4936 | |
8341 | 4937 static void oscar_rename_group(GaimConnection *gc, const char *old_group, const char *new_group, GList *members) { |
4938 OscarData *od = (OscarData *)gc->proto_data; | |
4230 | 4939 |
4940 if (od->sess->ssi.received_data) { | |
4941 if (aim_ssi_itemlist_finditem(od->sess->ssi.local, new_group, NULL, AIM_SSI_TYPE_GROUP)) { | |
8341 | 4942 oscar_remove_buddies(gc, members, old_group); |
4943 oscar_add_buddies(gc, members); | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4944 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4945 "ssi: moved all buddies from group %s to %s\n", old_group, new_group); |
4230 | 4946 } else { |
4889 | 4947 aim_ssi_rename_group(od->sess, old_group, new_group); |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4948 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4949 "ssi: renamed group %s to %s\n", old_group, new_group); |
2995 | 4950 } |
4951 } | |
4952 } | |
4953 | |
5968 | 4954 static gboolean gaim_ssi_rerequestdata(gpointer data) { |
4955 aim_session_t *sess = data; | |
6350 | 4956 aim_ssi_reqdata(sess); |
5968 | 4957 return FALSE; |
4958 } | |
4959 | |
4642 | 4960 static int gaim_ssi_parseerr(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 4961 GaimConnection *gc = sess->aux_data; |
7283 | 4962 OscarData *od = gc->proto_data; |
4642 | 4963 va_list ap; |
4964 fu16_t reason; | |
4965 | |
4966 va_start(ap, fr); | |
4967 reason = (fu16_t)va_arg(ap, unsigned int); | |
4968 va_end(ap); | |
4969 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4970 gaim_debug(GAIM_DEBUG_ERROR, "oscar", "ssi: SNAC error %hu\n", reason); |
4642 | 4971 |
4972 if (reason == 0x0005) { | |
5892 | 4973 gaim_notify_error(gc, NULL, _("Unable To Retrieve Buddy List"), |
5828 | 4974 _("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
|
4975 od->getblisttimer = gaim_timeout_add(300000, gaim_ssi_rerequestdata, od->sess); |
4642 | 4976 } |
4977 | |
4978 /* Activate SSI */ | |
4979 /* Sending the enable causes other people to be able to see you, and you to see them */ | |
4980 /* Make sure your privacy setting/invisibility is set how you want it before this! */ | |
5968 | 4981 gaim_debug(GAIM_DEBUG_INFO, "oscar", "ssi: activating server-stored buddy list\n"); |
4642 | 4982 aim_ssi_enable(od->sess); |
4983 | |
4984 return 1; | |
4985 } | |
4986 | |
2991 | 4987 static int gaim_ssi_parserights(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 4988 GaimConnection *gc = sess->aux_data; |
7283 | 4989 OscarData *od = (OscarData *)gc->proto_data; |
4230 | 4990 int numtypes, i; |
4991 fu16_t *maxitems; | |
2991 | 4992 va_list ap; |
4993 | |
4994 va_start(ap, fr); | |
4230 | 4995 numtypes = va_arg(ap, int); |
4996 maxitems = va_arg(ap, fu16_t *); | |
2991 | 4997 va_end(ap); |
4998 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4999 gaim_debug(GAIM_DEBUG_MISC, "oscar", "ssi rights:"); |
5211
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5208
diff
changeset
|
5000 |
4230 | 5001 for (i=0; i<numtypes; i++) |
5211
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5208
diff
changeset
|
5002 gaim_debug(GAIM_DEBUG_MISC, NULL, " max type 0x%04x=%hd,", |
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5208
diff
changeset
|
5003 i, maxitems[i]); |
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5208
diff
changeset
|
5004 |
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5208
diff
changeset
|
5005 gaim_debug(GAIM_DEBUG_MISC, NULL, "\n"); |
4230 | 5006 |
5007 if (numtypes >= 0) | |
5008 od->rights.maxbuddies = maxitems[0]; | |
5009 if (numtypes >= 1) | |
5010 od->rights.maxgroups = maxitems[1]; | |
5011 if (numtypes >= 2) | |
5012 od->rights.maxpermits = maxitems[2]; | |
5013 if (numtypes >= 3) | |
5014 od->rights.maxdenies = maxitems[3]; | |
2991 | 5015 |
5016 return 1; | |
5017 } | |
5018 | |
5019 static int gaim_ssi_parselist(aim_session_t *sess, aim_frame_t *fr, ...) { | |
5575 | 5020 GaimConnection *gc = sess->aux_data; |
5021 GaimAccount *account = gaim_connection_get_account(gc); | |
7283 | 5022 OscarData *od = (OscarData *)gc->proto_data; |
8150 | 5023 GaimGroup *g; |
5024 GaimBuddy *b; | |
2995 | 5025 struct aim_ssi_item *curitem; |
2991 | 5026 int tmp; |
4230 | 5027 va_list ap; |
8219 | 5028 fu16_t fmtver, numitems; |
5029 struct aim_ssi_item *items; | |
5030 fu32_t timestamp; | |
4230 | 5031 |
5032 va_start(ap, fr); | |
5033 fmtver = (fu16_t)va_arg(ap, int); | |
5034 numitems = (fu16_t)va_arg(ap, int); | |
8219 | 5035 items = va_arg(ap, struct aim_ssi_item *); |
4230 | 5036 timestamp = va_arg(ap, fu32_t); |
8219 | 5037 va_end(ap); |
2991 | 5038 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5039 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5040 "ssi: syncing local list and server list\n"); |
2991 | 5041 |
8219 | 5042 if ((timestamp == 0) || (numitems == 0)) { |
8430 | 5043 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 | 5044 return 1; |
5045 } | |
5046 | |
2991 | 5047 /* Clean the buddy list */ |
4889 | 5048 aim_ssi_cleanlist(sess); |
2991 | 5049 |
8150 | 5050 { /* If not in server list then prune from local list */ |
5051 GaimBlistNode *gnode, *cnode, *bnode; | |
5052 GaimBuddyList *blist; | |
5053 GSList *cur; | |
5054 | |
5055 /* Buddies */ | |
5056 cur = NULL; | |
5057 if ((blist = gaim_get_blist()) != NULL) { | |
5058 for (gnode = blist->root; gnode; gnode = gnode->next) { | |
5059 if(!GAIM_BLIST_NODE_IS_GROUP(gnode)) | |
5060 continue; | |
5061 g = (GaimGroup *)gnode; | |
5062 for (cnode = gnode->child; cnode; cnode = cnode->next) { | |
5063 if(!GAIM_BLIST_NODE_IS_CONTACT(cnode)) | |
5064 continue; | |
5065 for (bnode = cnode->child; bnode; bnode = bnode->next) { | |
5066 if(!GAIM_BLIST_NODE_IS_BUDDY(bnode)) | |
5067 continue; | |
5068 b = (GaimBuddy *)bnode; | |
5069 if (b->account == gc->account) { | |
5070 if (aim_ssi_itemlist_exists(sess->ssi.local, b->name)) { | |
5071 /* If the buddy is an ICQ user then load his nickname */ | |
5072 const char *servernick = gaim_blist_node_get_string((GaimBlistNode*)b, "servernick"); | |
8214 | 5073 char *alias; |
8150 | 5074 if (servernick) |
5075 serv_got_alias(gc, b->name, servernick); | |
5076 | |
5077 /* Store local alias on server */ | |
8214 | 5078 alias = aim_ssi_getalias(sess->ssi.local, g->name, b->name); |
8150 | 5079 if (!alias && b->alias && strlen(b->alias)) |
5080 aim_ssi_aliasbuddy(sess, g->name, b->name, b->alias); | |
5081 free(alias); | |
5082 } else { | |
5083 gaim_debug(GAIM_DEBUG_INFO, "oscar", | |
5084 "ssi: removing buddy %s from local list\n", b->name); | |
5085 /* We can't actually remove now because it will screw up our looping */ | |
5086 cur = g_slist_prepend(cur, b); | |
5087 } | |
5088 } | |
5089 } | |
5090 } | |
5091 } | |
5092 } | |
8175 | 5093 |
8150 | 5094 while (cur != NULL) { |
5095 b = cur->data; | |
5096 cur = g_slist_remove(cur, b); | |
5097 gaim_blist_remove_buddy(b); | |
5098 } | |
5099 | |
5100 /* Permit list */ | |
5101 if (gc->account->permit) { | |
5102 for (cur=gc->account->permit; cur; cur=cur->next) | |
5103 if (!aim_ssi_itemlist_finditem(sess->ssi.local, NULL, cur->data, AIM_SSI_TYPE_PERMIT)) { | |
5104 gaim_debug(GAIM_DEBUG_INFO, "oscar", | |
5105 "ssi: removing permit %s from local list\n", (const char *)cur->data); | |
5106 gaim_privacy_permit_remove(account, cur->data, TRUE); | |
5107 cur = gc->account->permit; | |
5108 } | |
5109 } | |
5110 | |
5111 /* Deny list */ | |
5112 if (gc->account->deny) { | |
5113 for (cur=gc->account->deny; cur; cur=cur->next) | |
5114 if (!aim_ssi_itemlist_finditem(sess->ssi.local, NULL, cur->data, AIM_SSI_TYPE_DENY)) { | |
5115 gaim_debug(GAIM_DEBUG_INFO, "oscar", | |
5116 "ssi: removing deny %s from local list\n", (const char *)cur->data); | |
5117 gaim_privacy_deny_remove(account, cur->data, TRUE); | |
5118 cur = gc->account->deny; | |
5119 } | |
5120 } | |
5121 /* Presence settings (idle time visibility) */ | |
5122 if ((tmp = aim_ssi_getpresence(sess->ssi.local)) != 0xFFFFFFFF) | |
5123 if (!(tmp & 0x400)) | |
5124 aim_ssi_setpresence(sess, tmp | 0x400); | |
5125 } /* end pruning buddies from local list */ | |
5126 | |
2991 | 5127 /* Add from server list to local list */ |
4230 | 5128 for (curitem=sess->ssi.local; curitem; curitem=curitem->next) { |
7328 | 5129 if ((curitem->name == NULL) || (g_utf8_validate(curitem->name, -1, NULL))) |
2991 | 5130 switch (curitem->type) { |
4230 | 5131 case 0x0000: { /* Buddy */ |
4251 | 5132 if (curitem->name) { |
4292 | 5133 char *gname = aim_ssi_itemlist_findparentname(sess->ssi.local, curitem->name); |
7166 | 5134 char *gname_utf8 = gname ? gaim_utf8_try_convert(gname) : NULL; |
4282 | 5135 char *alias = aim_ssi_getalias(sess->ssi.local, gname, curitem->name); |
7166 | 5136 char *alias_utf8 = alias ? gaim_utf8_try_convert(alias) : NULL; |
8150 | 5137 b = gaim_find_buddy(gc->account, curitem->name); |
4458 | 5138 /* Should gname be freed here? -- elb */ |
4754 | 5139 /* Not with the current code, but that might be cleaner -- med */ |
4458 | 5140 free(alias); |
8150 | 5141 if (b) { |
4292 | 5142 /* Get server stored alias */ |
4705 | 5143 if (alias_utf8) { |
8150 | 5144 g_free(b->alias); |
5145 b->alias = g_strdup(alias_utf8); | |
4705 | 5146 } |
4282 | 5147 } else { |
8150 | 5148 b = gaim_buddy_new(gc->account, curitem->name, alias_utf8); |
5146 | 5149 |
4754 | 5150 if (!(g = gaim_find_group(gname_utf8 ? gname_utf8 : _("Orphans")))) { |
4687 | 5151 g = gaim_group_new(gname_utf8 ? gname_utf8 : _("Orphans")); |
4754 | 5152 gaim_blist_add_group(g, NULL); |
5153 } | |
5146 | 5154 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5155 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
8150 | 5156 "ssi: adding b %s to group %s to local list\n", curitem->name, gname_utf8 ? gname_utf8 : _("Orphans")); |
5157 gaim_blist_add_buddy(b, NULL, g, NULL); | |
4251 | 5158 } |
8341 | 5159 if (!aim_sncmp(curitem->name, account->username)) { |
5160 char *comment = aim_ssi_getcomment(sess->ssi.local, gname, curitem->name); | |
5161 gaim_check_comment(od, comment); | |
5162 free(comment); | |
5163 } | |
7162 | 5164 g_free(gname_utf8); |
5165 g_free(alias_utf8); | |
2991 | 5166 } |
4230 | 5167 } break; |
5168 | |
5169 case 0x0001: { /* Group */ | |
4282 | 5170 /* Shouldn't add empty groups */ |
4230 | 5171 } break; |
5172 | |
5173 case 0x0002: { /* Permit buddy */ | |
2991 | 5174 if (curitem->name) { |
4230 | 5175 /* if (!find_permdeny_by_name(gc->permit, curitem->name)) { AAA */ |
2991 | 5176 GSList *list; |
5575 | 5177 for (list=account->permit; (list && aim_sncmp(curitem->name, list->data)); list=list->next); |
2991 | 5178 if (!list) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5179 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5180 "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
|
5181 gaim_privacy_permit_add(account, curitem->name, TRUE); |
2991 | 5182 } |
5183 } | |
4230 | 5184 } break; |
5185 | |
5186 case 0x0003: { /* Deny buddy */ | |
2991 | 5187 if (curitem->name) { |
5188 GSList *list; | |
5575 | 5189 for (list=account->deny; (list && aim_sncmp(curitem->name, list->data)); list=list->next); |
2991 | 5190 if (!list) { |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5191 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5192 "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
|
5193 gaim_privacy_deny_add(account, curitem->name, TRUE); |
2991 | 5194 } |
5195 } | |
4230 | 5196 } break; |
5197 | |
5198 case 0x0004: { /* Permit/deny setting */ | |
2991 | 5199 if (curitem->data) { |
5200 fu8_t permdeny; | |
5575 | 5201 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
|
5202 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
5575 | 5203 "ssi: changing permdeny from %d to %hhu\n", account->perm_deny, permdeny); |
5204 account->perm_deny = permdeny; | |
5205 if (od->icq && account->perm_deny == 0x03) { | |
4342 | 5206 serv_set_away(gc, "Invisible", ""); |
5207 } | |
2991 | 5208 } |
5209 } | |
4230 | 5210 } break; |
5211 | |
5212 case 0x0005: { /* Presence setting */ | |
3109 | 5213 /* We don't want to change Gaim's setting because it applies to all accounts */ |
4230 | 5214 } break; |
2991 | 5215 } /* End of switch on curitem->type */ |
5216 } /* End of for loop */ | |
4230 | 5217 |
4901 | 5218 /* Set our ICQ status */ |
8257 | 5219 if (!gc->away) { |
4901 | 5220 aim_setextstatus(sess, AIM_ICQ_STATE_NORMAL); |
5221 } | |
5222 | |
4342 | 5223 /* Activate SSI */ |
5224 /* Sending the enable causes other people to be able to see you, and you to see them */ | |
5225 /* 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
|
5226 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5227 "ssi: activating server-stored buddy list\n"); |
4642 | 5228 aim_ssi_enable(sess); |
4342 | 5229 |
2991 | 5230 return 1; |
2086 | 5231 } |
4230 | 5232 |
5233 static int gaim_ssi_parseack(aim_session_t *sess, aim_frame_t *fr, ...) { | |
5575 | 5234 GaimConnection *gc = sess->aux_data; |
4230 | 5235 va_list ap; |
5236 struct aim_ssi_tmp *retval; | |
5237 | |
5238 va_start(ap, fr); | |
5239 retval = va_arg(ap, struct aim_ssi_tmp *); | |
5240 va_end(ap); | |
5241 | |
5242 while (retval) { | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5243 gaim_debug(GAIM_DEBUG_MISC, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5244 "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 | 5245 |
5246 if (retval->ack != 0xffff) | |
5247 switch (retval->ack) { | |
5248 case 0x0000: { /* added successfully */ | |
5249 } break; | |
5250 | |
4829 | 5251 case 0x000c: { /* you are over the limit, the cheat is to the limit, come on fhqwhgads */ |
5252 gchar *buf; | |
5253 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
|
5254 gaim_notify_error(gc, NULL, _("Unable To Add"), buf); |
4829 | 5255 g_free(buf); |
5256 } | |
5257 | |
7023 | 5258 case 0x000e: { /* buddy requires authorization */ |
4828 | 5259 if ((retval->action == AIM_CB_SSI_ADD) && (retval->name)) |
4269 | 5260 gaim_auth_sendrequest(gc, retval->name); |
4230 | 5261 } break; |
5262 | |
5263 default: { /* La la la */ | |
5197 | 5264 gchar *buf; |
5402 | 5265 gaim_debug(GAIM_DEBUG_ERROR, "oscar", "ssi: Action 0x%04hx was unsuccessful with error 0x%04hx\n", retval->action, retval->ack); |
5266 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
|
5267 gaim_notify_error(gc, NULL, _("Unable To Add"), buf); |
5197 | 5268 g_free(buf); |
4230 | 5269 } break; |
5270 } | |
5271 | |
5272 retval = retval->next; | |
5273 } | |
5274 | |
5275 return 1; | |
5276 } | |
5277 | |
8227 | 5278 static int gaim_ssi_parseadd(aim_session_t *sess, aim_frame_t *fr, ...) { |
5279 GaimConnection *gc = sess->aux_data; | |
5280 char *gname, *gname_utf8, *alias, *alias_utf8; | |
5281 GaimBuddy *b; | |
5282 GaimGroup *g; | |
5283 va_list ap; | |
5284 fu16_t type; | |
5285 const char *name; | |
5286 | |
5287 va_start(ap, fr); | |
5288 type = (fu16_t)va_arg(ap, int); | |
5289 name = va_arg(ap, char *); | |
5290 va_end(ap); | |
5291 | |
5292 if ((type != 0x0000) || (name == NULL)) | |
5293 return 1; | |
5294 | |
5295 gname = aim_ssi_itemlist_findparentname(sess->ssi.local, name); | |
5296 gname_utf8 = gname ? gaim_utf8_try_convert(gname) : NULL; | |
5297 alias = aim_ssi_getalias(sess->ssi.local, gname, name); | |
5298 alias_utf8 = alias ? gaim_utf8_try_convert(alias) : NULL; | |
5299 b = gaim_find_buddy(gc->account, name); | |
5300 free(alias); | |
5301 | |
5302 if (b) { | |
5303 /* Get server stored alias */ | |
5304 if (alias_utf8) { | |
5305 g_free(b->alias); | |
5306 b->alias = g_strdup(alias_utf8); | |
5307 } | |
5308 } else { | |
5309 b = gaim_buddy_new(gc->account, name, alias_utf8); | |
5310 | |
5311 if (!(g = gaim_find_group(gname_utf8 ? gname_utf8 : _("Orphans")))) { | |
5312 g = gaim_group_new(gname_utf8 ? gname_utf8 : _("Orphans")); | |
5313 gaim_blist_add_group(g, NULL); | |
5314 } | |
5315 | |
5316 gaim_debug(GAIM_DEBUG_INFO, "oscar", | |
5317 "ssi: adding b %s to group %s to local list\n", name, gname_utf8 ? gname_utf8 : _("Orphans")); | |
5318 gaim_blist_add_buddy(b, NULL, g, NULL); | |
5319 } | |
5320 g_free(gname_utf8); | |
5321 g_free(alias_utf8); | |
5322 | |
5323 return 1; | |
5324 } | |
5325 | |
4230 | 5326 static int gaim_ssi_authgiven(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 5327 GaimConnection *gc = sess->aux_data; |
4230 | 5328 va_list ap; |
5329 char *sn, *msg; | |
4236 | 5330 gchar *dialog_msg, *nombre; |
4230 | 5331 struct name_data *data; |
6695 | 5332 GaimBuddy *buddy; |
4230 | 5333 |
5334 va_start(ap, fr); | |
5335 sn = va_arg(ap, char *); | |
5336 msg = va_arg(ap, char *); | |
5337 va_end(ap); | |
5338 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5339 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5340 "ssi: %s has given you permission to add him to your buddy list\n", sn); |
4230 | 5341 |
4687 | 5342 buddy = gaim_find_buddy(gc->account, sn); |
5343 if (buddy && (gaim_get_buddy_alias_only(buddy))) | |
5344 nombre = g_strdup_printf("%s (%s)", sn, gaim_get_buddy_alias_only(buddy)); | |
4236 | 5345 else |
5346 nombre = g_strdup(sn); | |
5347 | |
5348 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 | 5349 data = g_new(struct name_data, 1); |
5350 data->gc = gc; | |
5351 data->name = g_strdup(sn); | |
5352 data->nick = NULL; | |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
5353 |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
5354 gaim_request_yes_no(gc, NULL, _("Authorization Given"), dialog_msg, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
5355 0, data, |
7023 | 5356 G_CALLBACK(gaim_icq_buddyadd), |
5836 | 5357 G_CALLBACK(oscar_free_name_data)); |
4236 | 5358 |
4230 | 5359 g_free(dialog_msg); |
4236 | 5360 g_free(nombre); |
4230 | 5361 |
5362 return 1; | |
5363 } | |
5364 | |
5365 static int gaim_ssi_authrequest(aim_session_t *sess, aim_frame_t *fr, ...) { | |
5575 | 5366 GaimConnection *gc = sess->aux_data; |
4230 | 5367 va_list ap; |
5368 char *sn, *msg; | |
4236 | 5369 gchar *dialog_msg, *nombre; |
4230 | 5370 struct name_data *data; |
6695 | 5371 GaimBuddy *buddy; |
4230 | 5372 |
5373 va_start(ap, fr); | |
5374 sn = va_arg(ap, char *); | |
5375 msg = va_arg(ap, char *); | |
5376 va_end(ap); | |
5377 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5378 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5379 "ssi: received authorization request from %s\n", sn); |
4230 | 5380 |
4687 | 5381 buddy = gaim_find_buddy(gc->account, sn); |
5382 if (buddy && (gaim_get_buddy_alias_only(buddy))) | |
5383 nombre = g_strdup_printf("%s (%s)", sn, gaim_get_buddy_alias_only(buddy)); | |
4236 | 5384 else |
5385 nombre = g_strdup(sn); | |
5386 | |
4337 | 5387 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 | 5388 data = g_new(struct name_data, 1); |
5389 data->gc = gc; | |
5390 data->name = g_strdup(sn); | |
5391 data->nick = NULL; | |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
5392 |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
5393 gaim_request_action(gc, NULL, _("Authorization Request"), dialog_msg, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
5394 0, data, 2, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
5395 _("Authorize"), G_CALLBACK(gaim_auth_grant), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
5396 _("Deny"), G_CALLBACK(gaim_auth_dontgrant_msgprompt)); |
4236 | 5397 |
4230 | 5398 g_free(dialog_msg); |
4236 | 5399 g_free(nombre); |
4230 | 5400 |
5401 return 1; | |
5402 } | |
5403 | |
5404 static int gaim_ssi_authreply(aim_session_t *sess, aim_frame_t *fr, ...) { | |
5575 | 5405 GaimConnection *gc = sess->aux_data; |
4230 | 5406 va_list ap; |
5407 char *sn, *msg; | |
4236 | 5408 gchar *dialog_msg, *nombre; |
4230 | 5409 fu8_t reply; |
6695 | 5410 GaimBuddy *buddy; |
4230 | 5411 |
5412 va_start(ap, fr); | |
5413 sn = va_arg(ap, char *); | |
5414 reply = (fu8_t)va_arg(ap, int); | |
5415 msg = va_arg(ap, char *); | |
5416 va_end(ap); | |
5417 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5418 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5419 "ssi: received authorization reply from %s. Reply is 0x%04hhx\n", sn, reply); |
4236 | 5420 |
4687 | 5421 buddy = gaim_find_buddy(gc->account, sn); |
5422 if (buddy && (gaim_get_buddy_alias_only(buddy))) | |
5423 nombre = g_strdup_printf("%s (%s)", sn, gaim_get_buddy_alias_only(buddy)); | |
4236 | 5424 else |
5425 nombre = g_strdup(sn); | |
5426 | |
4230 | 5427 if (reply) { |
5428 /* Granted */ | |
7023 | 5429 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
|
5430 gaim_notify_info(gc, NULL, _("Authorization Granted"), dialog_msg); |
4230 | 5431 } else { |
5432 /* Denied */ | |
7023 | 5433 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
|
5434 gaim_notify_info(gc, NULL, _("Authorization Denied"), dialog_msg); |
4230 | 5435 } |
5436 g_free(dialog_msg); | |
4236 | 5437 g_free(nombre); |
4230 | 5438 |
5439 return 1; | |
5440 } | |
5441 | |
5442 static int gaim_ssi_gotadded(aim_session_t *sess, aim_frame_t *fr, ...) { | |
5575 | 5443 GaimConnection *gc = sess->aux_data; |
4230 | 5444 va_list ap; |
5445 char *sn; | |
6695 | 5446 GaimBuddy *buddy; |
4230 | 5447 |
5448 va_start(ap, fr); | |
5449 sn = va_arg(ap, char *); | |
5450 va_end(ap); | |
5451 | |
4687 | 5452 buddy = gaim_find_buddy(gc->account, sn); |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5453 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5454 "ssi: %s added you to their buddy list\n", sn); |
7015
dece74f05509
[gaim-migrate @ 7578]
Christian Hammond <chipx86@chipx86.com>
parents:
7011
diff
changeset
|
5455 gaim_account_notify_added(gc->account, NULL, sn, (buddy ? gaim_get_buddy_alias_only(buddy) : NULL), NULL); |
4230 | 5456 |
5457 return 1; | |
5458 } | |
4269 | 5459 #endif |
2086 | 5460 |
5575 | 5461 static GList *oscar_chat_info(GaimConnection *gc) { |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5462 GList *m = NULL; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5463 struct proto_chat_entry *pce; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5464 |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5465 pce = g_new0(struct proto_chat_entry, 1); |
7841 | 5466 pce->label = _("_Group:"); |
5234 | 5467 pce->identifier = "room"; |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5468 m = g_list_append(m, pce); |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5469 |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5470 pce = g_new0(struct proto_chat_entry, 1); |
7841 | 5471 pce->label = _("_Exchange:"); |
5234 | 5472 pce->identifier = "exchange"; |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5473 pce->is_int = TRUE; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5474 pce->min = 4; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5475 pce->max = 20; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5476 m = g_list_append(m, pce); |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5477 |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5478 return m; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5479 } |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5480 |
8308 | 5481 static void oscar_join_chat(GaimConnection *gc, GHashTable *data) { |
5482 OscarData *od = (OscarData *)gc->proto_data; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5483 aim_conn_t *cur; |
5234 | 5484 char *name, *exchange; |
5485 | |
5486 name = g_hash_table_lookup(data, "room"); | |
5487 exchange = g_hash_table_lookup(data, "exchange"); | |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
5488 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5489 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5490 "Attempting to join chat room %s.\n", name); |
8308 | 5491 |
5492 if ((name == NULL) || (*name == '\0')) { | |
5493 gaim_notify_error(gc, NULL, _("Invalid chat name specified."), NULL); | |
5494 return; | |
5495 } | |
5496 | |
4617 | 5497 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
|
5498 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5499 "chatnav exists, creating room\n"); |
5234 | 5500 aim_chatnav_createroom(od->sess, cur, name, atoi(exchange)); |
2086 | 5501 } else { |
5502 /* this gets tricky */ | |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
5503 struct create_room *cr = g_new0(struct create_room, 1); |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5504 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5505 "chatnav does not exist, opening chatnav\n"); |
5234 | 5506 cr->exchange = atoi(exchange); |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
5507 cr->name = g_strdup(name); |
4617 | 5508 od->create_rooms = g_slist_append(od->create_rooms, cr); |
5509 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_CHATNAV); | |
2086 | 5510 } |
5511 } | |
5512 | |
8308 | 5513 static void oscar_chat_invite(GaimConnection *gc, int id, const char *message, const char *name) { |
5514 OscarData *od = (OscarData *)gc->proto_data; | |
5515 struct chat_connection *ccon = find_oscar_chat(gc, id); | |
2086 | 5516 |
5517 if (!ccon) | |
5518 return; | |
5519 | |
8225 | 5520 aim_im_sendch2_chatinvite(od->sess, name, message ? message : "", |
2086 | 5521 ccon->exchange, ccon->name, 0x0); |
5522 } | |
5523 | |
8308 | 5524 static void oscar_chat_leave(GaimConnection *gc, int id) { |
5525 OscarData *od = gc ? (OscarData *)gc->proto_data : NULL; | |
5526 GSList *bcs = gc->buddy_chats; | |
5679 | 5527 GaimConversation *b = NULL; |
2086 | 5528 struct chat_connection *c = NULL; |
5529 int count = 0; | |
5530 | |
5531 while (bcs) { | |
5532 count++; | |
5679 | 5533 b = (GaimConversation *)bcs->data; |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
5534 if (id == gaim_conv_chat_get_id(GAIM_CONV_CHAT(b))) |
2086 | 5535 break; |
5536 bcs = bcs->next; | |
5537 b = NULL; | |
5538 } | |
5539 | |
5540 if (!b) | |
5541 return; | |
5542 | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5543 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5544 "Attempting to leave room %s (currently in %d rooms)\n", b->name, count); |
2086 | 5545 |
8308 | 5546 c = find_oscar_chat(gc, gaim_conv_chat_get_id(GAIM_CONV_CHAT(b))); |
2086 | 5547 if (c != NULL) { |
4617 | 5548 if (od) |
5549 od->oscar_chats = g_slist_remove(od->oscar_chats, c); | |
2086 | 5550 if (c->inpa > 0) |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
5551 gaim_input_remove(c->inpa); |
8308 | 5552 if (gc && od->sess) |
4617 | 5553 aim_conn_kill(od->sess, &c->conn); |
2086 | 5554 g_free(c->name); |
5555 g_free(c->show); | |
5556 g_free(c); | |
5557 } | |
5558 /* we do this because with Oscar it doesn't tell us we left */ | |
8308 | 5559 serv_got_chat_left(gc, gaim_conv_chat_get_id(GAIM_CONV_CHAT(b))); |
2086 | 5560 } |
5561 | |
8219 | 5562 static int oscar_send_chat(GaimConnection *gc, int id, const char *message) { |
5563 OscarData *od = (OscarData *)gc->proto_data; | |
5564 GError *err = NULL; | |
5565 GaimConversation *conv = NULL; | |
2086 | 5566 struct chat_connection *c = NULL; |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5567 char *buf, *buf2; |
8219 | 5568 char *charset = NULL; |
5569 int encoding; | |
5570 int len; | |
5571 | |
5572 if (!(conv = gaim_find_chat(gc, id))) | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5573 return -EINVAL; |
2086 | 5574 |
8219 | 5575 if (!(c = find_oscar_chat_by_conv(gc, conv))) |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5576 return -EINVAL; |
2086 | 5577 |
8219 | 5578 buf = gaim_strdup_withhtml(message); |
5579 len = strlen(buf); | |
5580 | |
5581 encoding = oscar_encoding_check(buf); | |
8233 | 5582 if (encoding & AIM_IMFLAGS_UNICODE) { |
8359 | 5583 gaim_debug(GAIM_DEBUG_INFO, "oscar", "Sending Unicode chat\n"); |
8219 | 5584 charset = "unicode-2-0"; |
5585 buf2 = g_convert(buf, len, "UCS-2BE", "UTF-8", NULL, &len, &err); | |
5586 if (err) { | |
5587 gaim_debug(GAIM_DEBUG_ERROR, "oscar", | |
8359 | 5588 "Error converting to unicode-2-0: %s\n", err->message); |
5589 g_error_free(err); | |
5590 } | |
8219 | 5591 } else if (encoding & AIM_IMFLAGS_ISO_8859_1) { |
8359 | 5592 gaim_debug(GAIM_DEBUG_INFO, "oscar", "Sending ISO-8859-1 chat\n"); |
8219 | 5593 charset = "iso-8859-1"; |
5594 buf2 = g_convert(buf, len, "ISO-8859-1", "UTF-8", NULL, &len, &err); | |
5595 if (err) { | |
5596 gaim_debug(GAIM_DEBUG_ERROR, "oscar", | |
8359 | 5597 "Error converting to iso-8859-1: %s\n", err->message); |
8219 | 5598 g_error_free(err); |
8359 | 5599 err = NULL; |
5600 | |
5601 gaim_debug(GAIM_DEBUG_INFO, "oscar", "Falling back to Unicode\n"); | |
5602 charset = "unicode-2-0"; | |
5603 buf2 = g_convert(buf, len, "UCS-2BE", "UTF-8", NULL, &len, &err); | |
8219 | 5604 if (err) { |
5605 gaim_debug(GAIM_DEBUG_ERROR, "oscar", | |
8359 | 5606 "Error converting to unicode-2-0: %s\n", |
5607 err->message); | |
8219 | 5608 g_error_free(err); |
5609 } | |
2086 | 5610 } |
8219 | 5611 } else { |
5612 charset = "us-ascii"; | |
5613 buf2 = g_strdup(buf); | |
5614 } | |
8359 | 5615 g_free(buf); |
5616 | |
5617 if ((len > c->maxlen) || (len > c->maxvis)) { | |
5618 g_free(buf2); | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5619 return -E2BIG; |
8359 | 5620 } |
5621 | |
5622 aim_chat_send_im(od->sess, c->conn, 0, buf2, len, charset, "en"); | |
8219 | 5623 g_free(buf2); |
8359 | 5624 |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
5625 return 0; |
2086 | 5626 } |
5627 | |
6695 | 5628 static const char *oscar_list_icon(GaimAccount *a, GaimBuddy *b) { |
4766 | 5629 if (!b || (b && b->name && b->name[0] == '+')) { |
5646
48c63ee49961
[gaim-migrate @ 6060]
Christian Hammond <chipx86@chipx86.com>
parents:
5638
diff
changeset
|
5630 if (a != NULL && isdigit(*gaim_account_get_username(a))) |
4687 | 5631 return "icq"; |
5632 else | |
5633 return "aim"; | |
5634 } | |
5646
48c63ee49961
[gaim-migrate @ 6060]
Christian Hammond <chipx86@chipx86.com>
parents:
5638
diff
changeset
|
5635 |
48c63ee49961
[gaim-migrate @ 6060]
Christian Hammond <chipx86@chipx86.com>
parents:
5638
diff
changeset
|
5636 if (b != NULL && isdigit(b->name[0])) |
4687 | 5637 return "icq"; |
5638 return "aim"; | |
5639 } | |
5640 | |
6695 | 5641 static void oscar_list_emblems(GaimBuddy *b, char **se, char **sw, char **nw, char **ne) |
4687 | 5642 { |
7334 | 5643 GaimAccount *account = NULL; |
5644 GaimConnection *gc = NULL; | |
5645 OscarData *od = NULL; | |
4687 | 5646 char *emblems[4] = {NULL,NULL,NULL,NULL}; |
5647 int i = 0; | |
7334 | 5648 aim_userinfo_t *userinfo = NULL; |
5649 | |
5650 if (b != NULL) | |
5651 account = b->account; | |
5652 if (account != NULL) | |
5653 gc = account->gc; | |
5654 if (gc != NULL) | |
5655 od = gc->proto_data; | |
7945 | 5656 if (od != NULL) |
5657 userinfo = aim_locate_finduserinfo(od->sess, b->name); | |
4687 | 5658 |
5131 | 5659 if (!GAIM_BUDDY_IS_ONLINE(b)) { |
5660 char *gname; | |
7334 | 5661 if ((b->name) && (od) && (od->sess->ssi.received_data) && |
5131 | 5662 (gname = aim_ssi_itemlist_findparentname(od->sess->ssi.local, b->name)) && |
5663 (aim_ssi_waitingforauth(od->sess->ssi.local, gname, b->name))) { | |
5664 emblems[i++] = "notauthorized"; | |
5665 } else { | |
5666 emblems[i++] = "offline"; | |
5667 } | |
5668 } | |
4916 | 5669 |
4766 | 5670 if (b->name && (b->uc & 0xffff0000) && isdigit(b->name[0])) { |
4960 | 5671 int uc = b->uc >> 16; |
4766 | 5672 if (uc & AIM_ICQ_STATE_INVISIBLE) |
4960 | 5673 emblems[i++] = "invisible"; |
4766 | 5674 else if (uc & AIM_ICQ_STATE_CHAT) |
4960 | 5675 emblems[i++] = "freeforchat"; |
4766 | 5676 else if (uc & AIM_ICQ_STATE_DND) |
4960 | 5677 emblems[i++] = "dnd"; |
4766 | 5678 else if (uc & AIM_ICQ_STATE_OUT) |
4960 | 5679 emblems[i++] = "na"; |
4766 | 5680 else if (uc & AIM_ICQ_STATE_BUSY) |
4960 | 5681 emblems[i++] = "occupied"; |
4766 | 5682 else if (uc & AIM_ICQ_STATE_AWAY) |
5683 emblems[i++] = "away"; | |
5684 } else { | |
5685 if (b->uc & UC_UNAVAILABLE) | |
5686 emblems[i++] = "away"; | |
5687 } | |
4687 | 5688 if (b->uc & UC_WIRELESS) |
5689 emblems[i++] = "wireless"; | |
5690 if (b->uc & UC_AOL) | |
5691 emblems[i++] = "aol"; | |
5692 if (b->uc & UC_ADMIN) | |
5693 emblems[i++] = "admin"; | |
5694 if (b->uc & UC_AB && i < 4) | |
5695 emblems[i++] = "activebuddy"; | |
4766 | 5696 /* if (b->uc & UC_UNCONFIRMED && i < 4) |
5697 emblems[i++] = "unconfirmed"; */ | |
7334 | 5698 |
7945 | 5699 if ((i < 4) && (userinfo != NULL) && (userinfo->capabilities & AIM_CAPS_HIPTOP)) |
5700 emblems[i++] = "hiptop"; | |
5701 | |
5702 if ((i < 4) && (userinfo != NULL) && (userinfo->capabilities & AIM_CAPS_SECUREIM)) | |
7334 | 5703 emblems[i++] = "secure"; |
5704 | |
4687 | 5705 *se = emblems[0]; |
5706 *sw = emblems[1]; | |
5707 *nw = emblems[2]; | |
5708 *ne = emblems[3]; | |
5709 } | |
5710 | |
6695 | 5711 static char *oscar_tooltip_text(GaimBuddy *b) { |
5575 | 5712 GaimConnection *gc = b->account->gc; |
7283 | 5713 OscarData *od = gc->proto_data; |
7692 | 5714 GaimGroup *g = gaim_find_buddys_group(b); |
7261 | 5715 struct buddyinfo *bi = g_hash_table_lookup(od->buddyinfo, gaim_normalize(b->account, b->name)); |
7045 | 5716 aim_userinfo_t *userinfo = aim_locate_finduserinfo(od->sess, b->name); |
7011 | 5717 gchar *tmp = NULL, *ret = g_strdup(""); |
5131 | 5718 |
5719 if (GAIM_BUDDY_IS_ONLINE(b)) { | |
5720 if (isdigit(b->name[0])) { | |
7011 | 5721 char *status; |
5131 | 5722 status = gaim_icq_status((b->uc & 0xffff0000) >> 16); |
7011 | 5723 tmp = ret; |
5724 ret = g_strconcat(tmp, _("<b>Status:</b> "), status, "\n", NULL); | |
5131 | 5725 g_free(tmp); |
5726 g_free(status); | |
5727 } | |
5728 | |
7011 | 5729 if ((bi != NULL) && (bi->ipaddr)) { |
7283 | 5730 char *tstr = g_strdup_printf("%hhu.%hhu.%hhu.%hhu", |
7011 | 5731 (bi->ipaddr & 0xff000000) >> 24, |
5732 (bi->ipaddr & 0x00ff0000) >> 16, | |
5733 (bi->ipaddr & 0x0000ff00) >> 8, | |
5734 (bi->ipaddr & 0x000000ff)); | |
5735 tmp = ret; | |
5736 ret = g_strconcat(tmp, _("<b>IP Address:</b> "), tstr, "\n", NULL); | |
7162 | 5737 g_free(tmp); |
5738 g_free(tstr); | |
7011 | 5739 } |
5740 | |
5741 if ((userinfo != NULL) && (userinfo->capabilities)) { | |
5742 char *caps = caps_string(userinfo->capabilities); | |
5743 tmp = ret; | |
5744 ret = g_strconcat(tmp, _("<b>Capabilities:</b> "), caps, "\n", NULL); | |
7162 | 5745 g_free(tmp); |
7011 | 5746 } |
5747 | |
7692 | 5748 if (g && g->name) { |
5749 char *comment = NULL; | |
5750 comment = aim_ssi_getcomment(od->sess->ssi.local, g->name, b->name); | |
5751 if (comment != NULL) { | |
5752 tmp = ret; | |
5753 ret = g_strconcat(tmp, _("<b>Buddy Comment:</b> "), comment, "\n", NULL); | |
5754 free(tmp); | |
5755 free(comment); | |
5756 } | |
5757 } | |
5758 | |
7011 | 5759 if ((bi != NULL) && (bi->availmsg != NULL) && !(b->uc & UC_UNAVAILABLE)) { |
5760 gchar *escaped = g_markup_escape_text(bi->availmsg, strlen(bi->availmsg)); | |
5761 tmp = ret; | |
5762 ret = g_strconcat(tmp, _("<b>Available:</b> "), escaped, "\n", NULL); | |
7162 | 5763 g_free(tmp); |
7011 | 5764 g_free(escaped); |
5765 } | |
5766 | |
5767 if ((userinfo != NULL) && (userinfo->flags & AIM_FLAG_AWAY) && (userinfo->away_len > 0) && (userinfo->away != NULL) && (userinfo->away_encoding != NULL)) { | |
8225 | 5768 gchar *charset = oscar_encoding_extract(userinfo->away_encoding); |
8392 | 5769 gchar *away_utf8 = oscar_encoding_to_utf8(charset, userinfo->away, userinfo->away_len); |
8225 | 5770 g_free(charset); |
7011 | 5771 if (away_utf8 != NULL) { |
7091 | 5772 gchar *tmp1, *tmp2; |
8341 | 5773 const gchar *tmp3; |
5774 tmp1 = gaim_strcasereplace(away_utf8, "<BR>", "\n"); | |
5775 g_free(away_utf8); | |
7095
c8bf2da398e3
[gaim-migrate @ 7660]
Christian Hammond <chipx86@chipx86.com>
parents:
7093
diff
changeset
|
5776 tmp2 = gaim_markup_strip_html(tmp1); |
7091 | 5777 g_free(tmp1); |
8461 | 5778 tmp1 = gaim_strreplace(tmp2, "<", "<"); |
7091 | 5779 g_free(tmp2); |
8461 | 5780 tmp3 = gaim_str_sub_away_formatters(tmp1, gaim_account_get_username(gaim_connection_get_account(gc))); |
5781 g_free(tmp1); | |
7011 | 5782 tmp = ret; |
7162 | 5783 ret = g_strconcat(tmp, _("<b>Away Message:</b> "), tmp3, "\n", NULL); |
5784 g_free(tmp); | |
5836 | 5785 } |
5131 | 5786 } |
5787 } else { | |
5788 char *gname = aim_ssi_itemlist_findparentname(od->sess->ssi.local, b->name); | |
5789 if (aim_ssi_waitingforauth(od->sess->ssi.local, gname, b->name)) { | |
7011 | 5790 tmp = ret; |
5791 ret = g_strconcat(tmp, _("<b>Status:</b> Not Authorized"), "\n", NULL); | |
5131 | 5792 g_free(tmp); |
5793 } else { | |
7011 | 5794 tmp = ret; |
5795 ret = g_strconcat(tmp, _("<b>Status:</b> Offline"), "\n", NULL); | |
5131 | 5796 g_free(tmp); |
5797 } | |
5798 } | |
5799 | |
5800 /* remove the trailing newline character */ | |
8266 | 5801 if (ret && (strlen(ret) > 0)) |
7011 | 5802 ret[strlen(ret)-1] = '\0'; |
5803 return ret; | |
5131 | 5804 } |
5805 | |
6695 | 5806 static char *oscar_status_text(GaimBuddy *b) { |
5575 | 5807 GaimConnection *gc = b->account->gc; |
7283 | 5808 OscarData *od = gc->proto_data; |
5167 | 5809 gchar *ret = NULL; |
5810 | |
5811 if ((b->uc & UC_UNAVAILABLE) || (((b->uc & 0xffff0000) >> 16) & AIM_ICQ_STATE_CHAT)) { | |
5812 if (isdigit(b->name[0])) | |
5813 ret = gaim_icq_status((b->uc & 0xffff0000) >> 16); | |
7038 | 5814 else |
5815 ret = g_strdup(_("Away")); | |
5836 | 5816 } else if (GAIM_BUDDY_IS_ONLINE(b)) { |
7261 | 5817 struct buddyinfo *bi = g_hash_table_lookup(od->buddyinfo, gaim_normalize(b->account, b->name)); |
6292 | 5818 if (bi->availmsg) |
5819 ret = g_markup_escape_text(bi->availmsg, strlen(bi->availmsg)); | |
5836 | 5820 } else { |
5167 | 5821 char *gname = aim_ssi_itemlist_findparentname(od->sess->ssi.local, b->name); |
5822 if (aim_ssi_waitingforauth(od->sess->ssi.local, gname, b->name)) | |
5823 ret = g_strdup(_("Not Authorized")); | |
5824 else | |
5825 ret = g_strdup(_("Offline")); | |
5826 } | |
5827 | |
5828 return ret; | |
5829 } | |
5830 | |
5842 | 5831 |
5844 | 5832 static int oscar_icon_req(aim_session_t *sess, aim_frame_t *fr, ...) { |
5842 | 5833 GaimConnection *gc = sess->aux_data; |
7283 | 5834 OscarData *od = gc->proto_data; |
5892 | 5835 va_list ap; |
5842 | 5836 fu16_t type; |
5892 | 5837 fu8_t flags = 0, length = 0; |
5838 char *md5 = NULL; | |
5839 | |
7334 | 5840 |
5842 | 5841 va_start(ap, fr); |
5842 type = va_arg(ap, int); | |
5892 | 5843 |
5844 switch(type) { | |
5845 case 0x0000: | |
5846 case 0x0001: { | |
5847 flags = va_arg(ap, int); | |
5848 length = va_arg(ap, int); | |
5849 md5 = va_arg(ap, char *); | |
5850 | |
5851 if (flags == 0x41) { | |
5852 if (!aim_getconn_type(od->sess, AIM_CONN_TYPE_ICON) && !od->iconconnecting) { | |
5853 od->iconconnecting = TRUE; | |
5854 od->set_icon = TRUE; | |
5855 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_ICON); | |
5856 } else { | |
6039 | 5857 struct stat st; |
5858 const char *iconfile = gaim_account_get_buddy_icon(gaim_connection_get_account(gc)); | |
5859 if (iconfile == NULL) { | |
8363 | 5860 aim_ssi_delicon(od->sess); |
6039 | 5861 } else if (!stat(iconfile, &st)) { |
5862 char *buf = g_malloc(st.st_size); | |
5863 FILE *file = fopen(iconfile, "rb"); | |
5864 if (file) { | |
5865 fread(buf, 1, st.st_size, file); | |
5866 fclose(file); | |
5867 gaim_debug(GAIM_DEBUG_INFO, "oscar", | |
5868 "Uploading icon to icon server\n"); | |
6879 | 5869 aim_bart_upload(od->sess, buf, st.st_size); |
5892 | 5870 } else |
5871 gaim_debug(GAIM_DEBUG_ERROR, "oscar", | |
6039 | 5872 "Can't open buddy icon file!\n"); |
5873 g_free(buf); | |
5874 } else { | |
5875 gaim_debug(GAIM_DEBUG_ERROR, "oscar", | |
5876 "Can't stat buddy icon file!\n"); | |
5892 | 5877 } |
5878 } | |
8363 | 5879 } else if (flags == 0x81) { |
5880 const char *iconfile = gaim_account_get_buddy_icon(gaim_connection_get_account(gc)); | |
5881 if (iconfile == NULL) | |
5882 aim_ssi_delicon(od->sess); | |
5883 else | |
5884 aim_ssi_seticon(od->sess, md5, length); | |
5885 } | |
5892 | 5886 } break; |
5887 | |
5888 case 0x0002: { /* We just set an "available" message? */ | |
5889 } break; | |
5890 } | |
5891 | |
5842 | 5892 va_end(ap); |
5844 | 5893 |
5894 return 0; | |
5842 | 5895 } |
5892 | 5896 |
3952 | 5897 /* |
4617 | 5898 * We have just established a socket with the other dude, so set up some handlers. |
3952 | 5899 */ |
4617 | 5900 static int gaim_odc_initiate(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 5901 GaimConnection *gc = sess->aux_data; |
7283 | 5902 OscarData *od = (OscarData *)gc->proto_data; |
5679 | 5903 GaimConversation *cnv; |
2086 | 5904 struct direct_im *dim; |
5905 char buf[256]; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5906 char *sn; |
4617 | 5907 va_list ap; |
5908 aim_conn_t *newconn, *listenerconn; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5909 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5910 va_start(ap, fr); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5911 newconn = va_arg(ap, aim_conn_t *); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5912 listenerconn = va_arg(ap, aim_conn_t *); |
2086 | 5913 va_end(ap); |
5914 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5915 aim_conn_close(listenerconn); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5916 aim_conn_kill(sess, &listenerconn); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5917 |
4617 | 5918 sn = g_strdup(aim_odc_getsn(newconn)); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5919 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5920 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5921 "DirectIM: initiate success to %s\n", sn); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5922 dim = find_direct_im(od, sn); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5923 |
6640
314111e7b601
[gaim-migrate @ 7165]
Christian Hammond <chipx86@chipx86.com>
parents:
6623
diff
changeset
|
5924 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
|
5925 gaim_input_remove(dim->watcher); |
2086 | 5926 dim->conn = newconn; |
4617 | 5927 dim->watcher = gaim_input_add(dim->conn->fd, GAIM_INPUT_READ, oscar_callback, dim->conn); |
3008 | 5928 dim->connected = TRUE; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5929 g_snprintf(buf, sizeof buf, _("Direct IM with %s established"), sn); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5930 g_free(sn); |
6982 | 5931 gaim_conversation_write(cnv, NULL, buf, GAIM_MESSAGE_SYSTEM, time(NULL)); |
2086 | 5932 |
4617 | 5933 aim_conn_addhandler(sess, newconn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIMINCOMING, gaim_odc_incoming, 0); |
5934 aim_conn_addhandler(sess, newconn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIMTYPING, gaim_odc_typing, 0); | |
6982 | 5935 aim_conn_addhandler(sess, newconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_IMAGETRANSFER, gaim_odc_update_ui, 0); |
4617 | 5936 |
2993 | 5937 return 1; |
5938 } | |
5939 | |
6982 | 5940 /* |
5941 * This is called when each chunk of an image is received. It can be used to | |
5942 * update a progress bar, or to eat lots of dry cat food. Wet cat food is | |
5943 * nasty, you sicko. | |
5944 */ | |
5945 static int gaim_odc_update_ui(aim_session_t *sess, aim_frame_t *fr, ...) { | |
2993 | 5946 va_list ap; |
5947 char *sn; | |
5948 double percent; | |
5575 | 5949 GaimConnection *gc = sess->aux_data; |
7283 | 5950 OscarData *od = (OscarData *)gc->proto_data; |
5679 | 5951 GaimConversation *c; |
2993 | 5952 struct direct_im *dim; |
5953 | |
5954 va_start(ap, fr); | |
5955 sn = va_arg(ap, char *); | |
5956 percent = va_arg(ap, double); | |
5957 va_end(ap); | |
6873 | 5958 |
2994 | 5959 if (!(dim = find_direct_im(od, sn))) |
5960 return 1; | |
3059 | 5961 if (dim->watcher) { |
5962 gaim_input_remove(dim->watcher); /* Otherwise, the callback will callback */ | |
5963 dim->watcher = 0; | |
5964 } | |
6640
314111e7b601
[gaim-migrate @ 7165]
Christian Hammond <chipx86@chipx86.com>
parents:
6623
diff
changeset
|
5965 |
6982 | 5966 c = gaim_find_conversation_with_account(sn, gaim_connection_get_account(gc)); |
6873 | 5967 if (c != NULL) |
5968 gaim_conversation_update_progress(c, percent); | |
2993 | 5969 dim->watcher = gaim_input_add(dim->conn->fd, GAIM_INPUT_READ, |
5970 oscar_callback, dim->conn); | |
2086 | 5971 |
5972 return 1; | |
5973 } | |
5974 | |
6982 | 5975 /* |
5976 * This is called after a direct IM has been received in its entirety. This | |
5977 * function is passed a long chunk of data which contains the IM with any | |
5978 * data chunks (images) appended to it. | |
5979 * | |
5980 * This function rips out all the data chunks and creates an imgstore for | |
5981 * each one. In order to do this, it first goes through the IM and takes | |
5982 * out all the IMG tags. When doing so, it rewrites the original IMG tag | |
5983 * with one compatable with the imgstore Gaim core code. For each one, we | |
5984 * then read in chunks of data from the end of the message and actually | |
5985 * create the img store using the given data. | |
5986 * | |
5987 * For somewhat easy reference, here's a sample message | |
5988 * (without the whitespace and asterisks): | |
5989 * | |
5990 * <HTML><BODY BGCOLOR="#ffffff"> | |
5991 * <FONT LANG="0"> | |
5992 * This is a really stupid picture:<BR> | |
5993 * <IMG SRC="Sample.jpg" ID="1" WIDTH="283" HEIGHT="212" DATASIZE="9894"><BR> | |
5994 * Yeah it is<BR> | |
5995 * Here is another one:<BR> | |
5996 * <IMG SRC="Soap Bubbles.bmp" ID="2" WIDTH="256" HEIGHT="256" DATASIZE="65978"> | |
5997 * </FONT> | |
5998 * </BODY></HTML> | |
5999 * <BINARY> | |
6000 * <DATA ID="1" SIZE="9894">datadatadatadata</DATA> | |
6001 * <DATA ID="2" SIZE="65978">datadatadatadata</DATA> | |
6002 * </BINARY> | |
6003 */ | |
4617 | 6004 static int gaim_odc_incoming(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 6005 GaimConnection *gc = sess->aux_data; |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
6006 GaimConvImFlags imflags = 0; |
8233 | 6007 gchar *utf8; |
6982 | 6008 GString *newmsg = g_string_new(""); |
6009 GSList *images = NULL; | |
2086 | 6010 va_list ap; |
6982 | 6011 const char *sn, *msg, *msgend, *binary; |
6012 size_t len; | |
6013 int encoding, isawaymsg; | |
2086 | 6014 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6015 va_start(ap, fr); |
6982 | 6016 sn = va_arg(ap, const char *); |
6017 msg = va_arg(ap, const char *); | |
6018 len = va_arg(ap, size_t); | |
3952 | 6019 encoding = va_arg(ap, int); |
4870 | 6020 isawaymsg = va_arg(ap, int); |
2086 | 6021 va_end(ap); |
6982 | 6022 msgend = msg + len; |
2086 | 6023 |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
6024 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
6025 "Got DirectIM message from %s\n", sn); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6026 |
4870 | 6027 if (isawaymsg) |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
6028 imflags |= GAIM_CONV_IM_AUTO_RESP; |
4870 | 6029 |
6982 | 6030 /* message has a binary trailer */ |
6031 if ((binary = gaim_strcasestr(msg, "<binary>"))) { | |
6032 GData *attribs; | |
6033 const char *tmp, *start, *end, *last = NULL; | |
6034 | |
6035 tmp = msg; | |
6036 | |
6037 /* for each valid image tag... */ | |
6038 while (gaim_markup_find_tag("img", tmp, &start, &end, &attribs)) { | |
6039 const char *id, *src, *datasize; | |
6040 const char *tag = NULL, *data = NULL; | |
6041 size_t size; | |
6042 int imgid = 0; | |
6043 | |
6044 /* update the location of the last img tag */ | |
6045 last = end; | |
6046 | |
6047 /* grab attributes */ | |
6048 id = g_datalist_get_data(&attribs, "id"); | |
6049 src = g_datalist_get_data(&attribs, "src"); | |
6050 datasize = g_datalist_get_data(&attribs, "datasize"); | |
6051 | |
6052 /* if we have id & datasize, build the data tag */ | |
6053 if (id && datasize) | |
6054 tag = g_strdup_printf("<data id=\"%s\" size=\"%s\">", id, datasize); | |
6055 | |
6056 /* if we have a tag, find the start of the data */ | |
6057 if (tag && (data = gaim_strcasestr(binary, tag))) | |
6058 data += strlen(tag); | |
6059 | |
6060 /* check the data is here and store it */ | |
6061 if (data + (size = atoi(datasize)) <= msgend) | |
6062 imgid = gaim_imgstore_add(data, size, src); | |
6063 | |
8233 | 6064 /* |
6065 * XXX - The code below contains some calls to oscar_encoding_to_utf8 | |
6066 * The hardcoded "us-ascii" value REALLY needs to be removed. | |
6067 */ | |
6982 | 6068 /* if we have a stored image... */ |
6069 if (imgid) { | |
6070 /* append the message up to the tag */ | |
8233 | 6071 utf8 = oscar_encoding_to_utf8("us-ascii", tmp, start - tmp); |
6072 if (utf8 != NULL) { | |
6073 newmsg = g_string_append(newmsg, utf8); | |
6074 g_free(utf8); | |
6075 } | |
6982 | 6076 |
6077 /* write the new image tag */ | |
6078 g_string_append_printf(newmsg, "<IMG ID=\"%d\">", imgid); | |
6079 | |
6080 /* and record the image number */ | |
6081 images = g_slist_append(images, GINT_TO_POINTER(imgid)); | |
6082 } else { | |
6083 /* otherwise, copy up to the end of the tag */ | |
8233 | 6084 utf8 = oscar_encoding_to_utf8("us-ascii", tmp, (end + 1) - tmp); |
6085 if (utf8 != NULL) { | |
6086 newmsg = g_string_append(newmsg, utf8); | |
6087 g_free(utf8); | |
6088 } | |
6982 | 6089 } |
6090 | |
6091 /* clear the attribute list */ | |
6092 g_datalist_clear(&attribs); | |
6093 | |
6094 /* continue from the end of the tag */ | |
6095 tmp = end + 1; | |
6096 } | |
6097 | |
6098 /* append any remaining message data (without the > :-) */ | |
6099 if (last++ && (last < binary)) | |
6100 newmsg = g_string_append_len(newmsg, last, binary - last); | |
6101 | |
6102 /* set the flag if we caught any images */ | |
6103 if (images) | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
6104 imflags |= GAIM_CONV_IM_IMAGES; |
6982 | 6105 } else { |
6106 g_string_append_len(newmsg, msg, len); | |
6107 } | |
6108 | |
4617 | 6109 /* XXX - I imagine Paco-Paco will want to do some voodoo with the encoding here */ |
6982 | 6110 serv_got_im(gc, sn, newmsg->str, imflags, time(NULL)); |
6111 | |
6112 /* free up the message */ | |
6113 g_string_free(newmsg, TRUE); | |
6114 | |
6115 /* unref any images we allocated */ | |
6116 if (images) { | |
6117 GSList *tmp; | |
6118 int id; | |
6119 | |
6120 for (tmp = images; tmp != NULL; tmp = tmp->next) { | |
6121 id = GPOINTER_TO_INT(tmp->data); | |
6122 gaim_imgstore_unref(id); | |
6123 } | |
6124 | |
6125 g_slist_free(images); | |
6126 } | |
2086 | 6127 |
6128 return 1; | |
6129 } | |
6130 | |
4617 | 6131 static int gaim_odc_typing(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 6132 va_list ap; |
6133 char *sn; | |
2993 | 6134 int typing; |
5575 | 6135 GaimConnection *gc = sess->aux_data; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6136 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6137 va_start(ap, fr); |
2086 | 6138 sn = va_arg(ap, char *); |
2993 | 6139 typing = va_arg(ap, int); |
2086 | 6140 va_end(ap); |
6141 | |
4870 | 6142 if (typing == 0x0002) { |
2993 | 6143 /* 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
|
6144 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
6145 "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
|
6146 serv_got_typing(gc, sn, 0, GAIM_TYPING); |
4870 | 6147 } else if (typing == 0x0001) |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
6148 serv_got_typing(gc, sn, 0, GAIM_TYPED); |
4870 | 6149 else |
4342 | 6150 serv_got_typing_stopped(gc, sn); |
2086 | 6151 return 1; |
6152 } | |
6153 | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
6154 static int gaim_odc_send_im(aim_session_t *sess, aim_conn_t *conn, const char *message, GaimConvImFlags imflags) { |
6982 | 6155 char *buf; |
6156 size_t len; | |
6157 int ret; | |
6158 | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
6159 if (imflags & GAIM_CONV_IM_IMAGES) { |
6982 | 6160 GString *msg = g_string_new(""); |
6161 GString *data = g_string_new("<BINARY>"); | |
6162 GData *attribs; | |
6163 const char *tmp, *start, *end, *last = NULL; | |
6164 int oscar_id = 0; | |
6165 | |
6166 tmp = message; | |
6167 | |
6168 /* for each valid IMG tag... */ | |
6169 while (gaim_markup_find_tag("img", tmp, &start, &end, &attribs)) { | |
6170 GaimStoredImage *image = NULL; | |
6171 const char *id; | |
6172 | |
6173 last = end; | |
6174 id = g_datalist_get_data(&attribs, "id"); | |
6175 | |
6176 /* ... if it refers to a valid gaim image ... */ | |
6177 if (id && (image = gaim_imgstore_get(atoi(id)))) { | |
6178 /* ... append the message from start to the tag ... */ | |
6179 msg = g_string_append_len(msg, tmp, start - tmp); | |
6180 oscar_id++; | |
6181 | |
6182 /* ... insert a new img tag with the oscar id ... */ | |
6183 if (image->filename) | |
6184 g_string_append_printf(msg, | |
6185 "<IMG SRC=\"file://%s\" ID=\"%d\" DATASIZE=\"%d\">", | |
7386 | 6186 image->filename, oscar_id, (int)image->size); |
6982 | 6187 else |
6188 g_string_append_printf(msg, | |
6189 "<IMG ID=\"%d\" DATASIZE=\"%d\">", | |
7386 | 6190 oscar_id, (int)image->size); |
6982 | 6191 |
6192 /* ... and append the data to the binary section ... */ | |
6193 g_string_append_printf(data, "<DATA ID=\"%d\" SIZE=\"%d\">", | |
7386 | 6194 oscar_id, (int)image->size); |
6982 | 6195 data = g_string_append_len(data, image->data, image->size); |
6196 data = g_string_append(data, "</DATA>"); | |
6197 } else { | |
6198 /* ... otherwise, allow the possibly invalid img tag through. */ | |
6199 /* should we do something else? */ | |
6200 msg = g_string_append_len(msg, tmp, (end + 1) - tmp); | |
6201 } | |
6202 | |
6203 g_datalist_clear(&attribs); | |
6204 | |
6205 /* continue from the end of the tag */ | |
6206 tmp = end + 1; | |
6207 } | |
6208 | |
6209 /* append any remaining message data (without the > :-) */ | |
6210 if (last++ && *last) | |
6211 msg = g_string_append(msg, last); | |
6212 | |
6213 /* if we inserted any images in the binary section, append it */ | |
6214 if (oscar_id) { | |
6215 msg = g_string_append_len(msg, data->str, data->len); | |
6216 msg = g_string_append(msg, "</BINARY>"); | |
6217 } | |
6218 | |
6219 len = msg->len; | |
6220 buf = msg->str; | |
6221 g_string_free(msg, FALSE); | |
6222 g_string_free(data, TRUE); | |
6223 } else { | |
6224 len = strlen(message); | |
6225 buf = g_memdup(message, len+1); | |
6226 } | |
6227 | |
6228 /* 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
|
6229 if (imflags & GAIM_CONV_IM_AUTO_RESP) |
6982 | 6230 ret = aim_odc_send_im(sess, conn, buf, len, 0, 1); |
6231 else | |
6232 ret = aim_odc_send_im(sess, conn, buf, len, 0, 0); | |
6233 | |
6234 g_free(buf); | |
6235 | |
6236 return ret; | |
6237 } | |
6238 | |
2086 | 6239 struct ask_do_dir_im { |
6240 char *who; | |
5575 | 6241 GaimConnection *gc; |
2086 | 6242 }; |
6243 | |
3730 | 6244 static void oscar_cancel_direct_im(struct ask_do_dir_im *data) { |
5136 | 6245 g_free(data->who); |
2086 | 6246 g_free(data); |
6247 } | |
6248 | |
3730 | 6249 static void oscar_direct_im(struct ask_do_dir_im *data) { |
5575 | 6250 GaimConnection *gc = data->gc; |
7283 | 6251 OscarData *od; |
2086 | 6252 struct direct_im *dim; |
8240 | 6253 int listenfd; |
2086 | 6254 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
6255 if (!g_list_find(gaim_connections_get_all(), gc)) { |
5136 | 6256 g_free(data->who); |
4244 | 6257 g_free(data); |
6258 return; | |
6259 } | |
6260 | |
7283 | 6261 od = (OscarData *)gc->proto_data; |
4244 | 6262 |
2086 | 6263 dim = find_direct_im(od, data->who); |
6264 if (dim) { | |
3008 | 6265 if (!(dim->connected)) { /* We'll free the old, unconnected dim, and start over */ |
6266 od->direct_ims = g_slist_remove(od->direct_ims, dim); | |
6267 gaim_input_remove(dim->watcher); | |
6268 g_free(dim); | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
6269 gaim_debug(GAIM_DEBUG_INFO, "oscar", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
6270 "Gave up on old direct IM, trying again\n"); |
3008 | 6271 } else { |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
6272 gaim_notify_error(gc, NULL, "DirectIM already open.", NULL); |
5136 | 6273 g_free(data->who); |
4244 | 6274 g_free(data); |
3008 | 6275 return; |
6276 } | |
2086 | 6277 } |
6278 dim = g_new0(struct direct_im, 1); | |
6279 dim->gc = gc; | |
6280 g_snprintf(dim->name, sizeof dim->name, "%s", data->who); | |
6281 | |
8246 | 6282 listenfd = gaim_network_listen_range(5190, 5199); |
8240 | 6283 dim->conn = aim_odc_initiate(od->sess, data->who, listenfd, gaim_network_get_port_from_fd(listenfd)); |
2086 | 6284 if (dim->conn != NULL) { |
6285 od->direct_ims = g_slist_append(od->direct_ims, dim); | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
6286 dim->watcher = gaim_input_add(dim->conn->fd, GAIM_INPUT_READ, |
2086 | 6287 oscar_callback, dim->conn); |
4617 | 6288 aim_conn_addhandler(od->sess, dim->conn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIM_ESTABLISHED, |
6289 gaim_odc_initiate, 0); | |
2086 | 6290 } else { |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
6291 gaim_notify_error(gc, NULL, _("Unable to open Direct IM"), NULL); |
2086 | 6292 g_free(dim); |
6293 } | |
4244 | 6294 |
5136 | 6295 g_free(data->who); |
4244 | 6296 g_free(data); |
2086 | 6297 } |
6298 | |
5575 | 6299 static void oscar_ask_direct_im(GaimConnection *gc, const char *who) { |
5420 | 6300 gchar *buf; |
2086 | 6301 struct ask_do_dir_im *data = g_new0(struct ask_do_dir_im, 1); |
5136 | 6302 data->who = g_strdup(who); |
2170
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
6303 data->gc = gc; |
5420 | 6304 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
|
6305 |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
6306 gaim_request_action(gc, NULL, buf, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
6307 _("Because this reveals your IP address, it " |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
6308 "may be considered a privacy risk. Do you " |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
6309 "wish to continue?"), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
6310 0, data, 2, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
6311 _("Connect"), G_CALLBACK(oscar_direct_im), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
6312 _("Cancel"), G_CALLBACK(oscar_cancel_direct_im)); |
5420 | 6313 g_free(buf); |
2086 | 6314 } |
6315 | |
5575 | 6316 static void oscar_set_permit_deny(GaimConnection *gc) { |
6317 GaimAccount *account = gaim_connection_get_account(gc); | |
7283 | 6318 OscarData *od = (OscarData *)gc->proto_data; |
4230 | 6319 #ifdef NOSSI |
8143 | 6320 GSList *list; |
4230 | 6321 char buf[MAXMSGLEN]; |
6322 int at; | |
6323 | |
5575 | 6324 switch(account->perm_deny) { |
8175 | 6325 case GAIM_PRIVACY_ALLOW_ALL: |
5575 | 6326 aim_bos_changevisibility(od->sess, od->conn, AIM_VISIBILITYCHANGE_DENYADD, gaim_account_get_username(account)); |
4230 | 6327 break; |
8175 | 6328 case GAIM_PRIVACY_DENY_ALL: |
5575 | 6329 aim_bos_changevisibility(od->sess, od->conn, AIM_VISIBILITYCHANGE_PERMITADD, gaim_account_get_username(account)); |
4230 | 6330 break; |
8175 | 6331 case GAIM_PRIVACY_ALLOW_USERS: |
5575 | 6332 list = account->permit; |
4230 | 6333 at = 0; |
6334 while (list) { | |
6335 at += g_snprintf(buf + at, sizeof(buf) - at, "%s&", (char *)list->data); | |
6336 list = list->next; | |
6337 } | |
6338 aim_bos_changevisibility(od->sess, od->conn, AIM_VISIBILITYCHANGE_PERMITADD, buf); | |
6339 break; | |
8175 | 6340 case GAIM_PRIVACY_DENY_USERS: |
5575 | 6341 list = account->deny; |
4230 | 6342 at = 0; |
6343 while (list) { | |
6344 at += g_snprintf(buf + at, sizeof(buf) - at, "%s&", (char *)list->data); | |
6345 list = list->next; | |
6346 } | |
6347 aim_bos_changevisibility(od->sess, od->conn, AIM_VISIBILITYCHANGE_DENYADD, buf); | |
6348 break; | |
6349 default: | |
6350 break; | |
2086 | 6351 } |
4230 | 6352 #else |
8175 | 6353 if (od->sess->ssi.received_data) { |
6354 switch (account->perm_deny) { | |
6355 case GAIM_PRIVACY_ALLOW_ALL: | |
6356 aim_ssi_setpermdeny(od->sess, 0x01, 0xffffffff); | |
6357 break; | |
6358 case GAIM_PRIVACY_ALLOW_BUDDYLIST: | |
6359 aim_ssi_setpermdeny(od->sess, 0x05, 0xffffffff); | |
6360 break; | |
6361 case GAIM_PRIVACY_ALLOW_USERS: | |
6362 aim_ssi_setpermdeny(od->sess, 0x03, 0xffffffff); | |
6363 break; | |
6364 case GAIM_PRIVACY_DENY_ALL: | |
6365 aim_ssi_setpermdeny(od->sess, 0x02, 0xffffffff); | |
6366 break; | |
6367 case GAIM_PRIVACY_DENY_USERS: | |
6368 aim_ssi_setpermdeny(od->sess, 0x04, 0xffffffff); | |
6369 break; | |
6370 default: | |
6371 aim_ssi_setpermdeny(od->sess, 0x01, 0xffffffff); | |
6372 break; | |
6373 } | |
6374 } | |
4230 | 6375 #endif |
2086 | 6376 } |
6377 | |
5575 | 6378 static void oscar_add_permit(GaimConnection *gc, const char *who) { |
4269 | 6379 #ifdef NOSSI |
8143 | 6380 if (gc->account->perm_deny == 3) |
4269 | 6381 oscar_set_permit_deny(gc); |
6382 #else | |
7283 | 6383 OscarData *od = (OscarData *)gc->proto_data; |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
6384 gaim_debug(GAIM_DEBUG_INFO, "oscar", "ssi: About to add a permit\n"); |
4230 | 6385 if (od->sess->ssi.received_data) |
4889 | 6386 aim_ssi_addpermit(od->sess, who); |
4230 | 6387 #endif |
2086 | 6388 } |
6389 | |
5575 | 6390 static void oscar_add_deny(GaimConnection *gc, const char *who) { |
4269 | 6391 #ifdef NOSSI |
8143 | 6392 if (gc->account->perm_deny == 4) |
4269 | 6393 oscar_set_permit_deny(gc); |
6394 #else | |
7283 | 6395 OscarData *od = (OscarData *)gc->proto_data; |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
6396 gaim_debug(GAIM_DEBUG_INFO, "oscar", "ssi: About to add a deny\n"); |
4230 | 6397 if (od->sess->ssi.received_data) |
4889 | 6398 aim_ssi_adddeny(od->sess, who); |
4230 | 6399 #endif |
2086 | 6400 } |
6401 | |
5575 | 6402 static void oscar_rem_permit(GaimConnection *gc, const char *who) { |
4269 | 6403 #ifdef NOSSI |
8143 | 6404 if (gc->account->perm_deny == 3) |
4269 | 6405 oscar_set_permit_deny(gc); |
6406 #else | |
7283 | 6407 OscarData *od = (OscarData *)gc->proto_data; |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
6408 gaim_debug(GAIM_DEBUG_INFO, "oscar", "ssi: About to delete a permit\n"); |
4230 | 6409 if (od->sess->ssi.received_data) |
4889 | 6410 aim_ssi_delpermit(od->sess, who); |
4230 | 6411 #endif |
2086 | 6412 } |
6413 | |
5575 | 6414 static void oscar_rem_deny(GaimConnection *gc, const char *who) { |
4269 | 6415 #ifdef NOSSI |
8143 | 6416 if (gc->account->perm_deny == 4) |
4269 | 6417 oscar_set_permit_deny(gc); |
6418 #else | |
7283 | 6419 OscarData *od = (OscarData *)gc->proto_data; |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
6420 gaim_debug(GAIM_DEBUG_INFO, "oscar", "ssi: About to delete a deny\n"); |
4230 | 6421 if (od->sess->ssi.received_data) |
4889 | 6422 aim_ssi_deldeny(od->sess, who); |
4230 | 6423 #endif |
2086 | 6424 } |
6425 | |
5575 | 6426 static GList *oscar_away_states(GaimConnection *gc) |
2086 | 6427 { |
7283 | 6428 OscarData *od = gc->proto_data; |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
6429 GList *m = NULL; |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
6430 |
8257 | 6431 if (od->icq) { |
6432 m = g_list_append(m, _("Online")); | |
6433 m = g_list_append(m, _("Away")); | |
6434 m = g_list_append(m, _("Do Not Disturb")); | |
6435 m = g_list_append(m, _("Not Available")); | |
6436 m = g_list_append(m, _("Occupied")); | |
6437 m = g_list_append(m, _("Free For Chat")); | |
6438 m = g_list_append(m, _("Invisible")); | |
6439 } else { | |
6440 m = g_list_append(m, GAIM_AWAY_CUSTOM); | |
8476 | 6441 m = g_list_append(m, _("Back")); |
8257 | 6442 m = g_list_append(m, _("Visible")); |
6443 m = g_list_append(m, _("Invisible")); | |
6444 } | |
4333 | 6445 |
6446 return m; | |
6447 } | |
6448 | |
7172 | 6449 static void oscar_ssi_editcomment(struct name_data *data, const char *text) { |
8341 | 6450 GaimConnection *gc = data->gc; |
6451 OscarData *od = gc->proto_data; | |
7172 | 6452 GaimBuddy *b; |
6453 GaimGroup *g; | |
6454 | |
6455 if (!(b = gaim_find_buddy(gaim_connection_get_account(data->gc), data->name))) { | |
6456 oscar_free_name_data(data); | |
6457 return; | |
6458 } | |
6459 | |
6460 if (!(g = gaim_find_buddys_group(b))) { | |
6461 oscar_free_name_data(data); | |
6462 return; | |
6463 } | |
6464 | |
6465 aim_ssi_editcomment(od->sess, g->name, data->name, text); | |
8341 | 6466 |
6467 if (!aim_sncmp(data->name, gc->account->username)) | |
6468 gaim_check_comment(od, text); | |
6469 | |
7172 | 6470 oscar_free_name_data(data); |
6471 } | |
6472 | |
6473 static void oscar_buddycb_edit_comment(GaimConnection *gc, const char *name) { | |
7283 | 6474 OscarData *od = gc->proto_data; |
7172 | 6475 struct name_data *data = g_new(struct name_data, 1); |
6476 GaimBuddy *b; | |
6477 GaimGroup *g; | |
6478 char *comment; | |
6479 gchar *comment_utf8; | |
6480 | |
6481 if (!(b = gaim_find_buddy(gaim_connection_get_account(gc), name))) | |
6482 return; | |
6483 if (!(g = gaim_find_buddys_group(b))) | |
6484 return; | |
6485 comment = aim_ssi_getcomment(od->sess->ssi.local, g->name, name); | |
6486 comment_utf8 = comment ? gaim_utf8_try_convert(comment) : NULL; | |
6487 | |
6488 data->gc = gc; | |
6489 data->name = g_strdup(name); | |
6490 data->nick = NULL; | |
6491 | |
6492 gaim_request_input(gc, NULL, _("Buddy Comment:"), NULL, | |
6493 comment_utf8, TRUE, FALSE, | |
6494 _("OK"), G_CALLBACK(oscar_ssi_editcomment), | |
6495 _("Cancel"), G_CALLBACK(oscar_free_name_data), | |
6496 data); | |
6497 | |
6498 free(comment); | |
6499 g_free(comment_utf8); | |
6500 } | |
6501 | |
5575 | 6502 static GList *oscar_buddy_menu(GaimConnection *gc, const char *who) { |
7283 | 6503 OscarData *od = gc->proto_data; |
4333 | 6504 GList *m = NULL; |
6505 struct proto_buddy_menu *pbm; | |
6506 | |
7172 | 6507 pbm = g_new0(struct proto_buddy_menu, 1); |
6508 pbm->label = _("Edit Buddy Comment"); | |
6509 pbm->callback = oscar_buddycb_edit_comment; | |
6510 pbm->gc = gc; | |
6511 m = g_list_append(m, pbm); | |
6512 | |
4333 | 6513 if (od->icq) { |
4624 | 6514 #if 0 |
4333 | 6515 pbm = g_new0(struct proto_buddy_menu, 1); |
6516 pbm->label = _("Get Status Msg"); | |
4969 | 6517 pbm->callback = oscar_get_icqstatusmsg; |
4333 | 6518 pbm->gc = gc; |
6519 m = g_list_append(m, pbm); | |
4624 | 6520 #endif |
4333 | 6521 } else { |
6695 | 6522 GaimBuddy *b = gaim_find_buddy(gc->account, who); |
7011 | 6523 aim_userinfo_t *userinfo; |
5975 | 6524 |
6525 if (b) | |
7045 | 6526 userinfo = aim_locate_finduserinfo(od->sess, b->name); |
7011 | 6527 |
6528 if (b && userinfo && aim_sncmp(gaim_account_get_username(gaim_connection_get_account(gc)), who) && GAIM_BUDDY_IS_ONLINE(b)) { | |
6529 if (userinfo->capabilities & AIM_CAPS_DIRECTIM) { | |
5917 | 6530 pbm = g_new0(struct proto_buddy_menu, 1); |
6531 pbm->label = _("Direct IM"); | |
6532 pbm->callback = oscar_ask_direct_im; | |
6533 pbm->gc = gc; | |
6534 m = g_list_append(m, pbm); | |
6535 } | |
7650 | 6536 |
6537 if (userinfo->capabilities & AIM_CAPS_SENDFILE) { | |
6538 pbm = g_new0(struct proto_buddy_menu, 1); | |
6539 pbm->label = _("Send File"); | |
6540 pbm->callback = oscar_ask_sendfile; | |
6541 pbm->gc = gc; | |
6542 m = g_list_append(m, pbm); | |
6543 } | |
4826 | 6544 #if 0 |
7011 | 6545 if (userinfo->capabilities & AIM_CAPS_GETFILE) { |
5917 | 6546 pbm = g_new0(struct proto_buddy_menu, 1); |
6547 pbm->label = _("Get File"); | |
6548 pbm->callback = oscar_ask_getfile; | |
6549 pbm->gc = gc; | |
6550 m = g_list_append(m, pbm); | |
6551 } | |
4826 | 6552 #endif |
4333 | 6553 } |
5131 | 6554 } |
5197 | 6555 |
5131 | 6556 if (od->sess->ssi.received_data) { |
6557 char *gname = aim_ssi_itemlist_findparentname(od->sess->ssi.local, who); | |
6558 if (gname && aim_ssi_waitingforauth(od->sess->ssi.local, gname, who)) { | |
6559 pbm = g_new0(struct proto_buddy_menu, 1); | |
6873 | 6560 pbm->label = _("Re-request Authorization"); |
5131 | 6561 pbm->callback = gaim_auth_sendrequest; |
6562 pbm->gc = gc; | |
6563 m = g_list_append(m, pbm); | |
4333 | 6564 } |
4916 | 6565 } |
6566 | |
4333 | 6567 return m; |
6568 } | |
6569 | |
5575 | 6570 static void oscar_format_screenname(GaimConnection *gc, const char *nick) { |
7283 | 6571 OscarData *od = gc->proto_data; |
5575 | 6572 if (!aim_sncmp(gaim_account_get_username(gaim_connection_get_account(gc)), nick)) { |
4333 | 6573 if (!aim_getconn_type(od->sess, AIM_CONN_TYPE_AUTH)) { |
6574 od->setnick = TRUE; | |
6575 od->newsn = g_strdup(nick); | |
6576 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_AUTH); | |
6577 } else { | |
6578 aim_admin_setnick(od->sess, aim_getconn_type(od->sess, AIM_CONN_TYPE_AUTH), nick); | |
6579 } | |
6580 } else { | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
6581 gaim_notify_error(gc, NULL, _("The new formatting is invalid."), |
8152 | 6582 _("Screen name formatting can change only capitalization and whitespace.")); |
4333 | 6583 } |
6584 } | |
6585 | |
5575 | 6586 static void oscar_show_format_screenname(GaimConnection *gc) |
4333 | 6587 { |
8152 | 6588 gaim_request_input(gc, NULL, _("New screen name formatting:"), NULL, |
6035
8c44020a958e
[gaim-migrate @ 6485]
Christian Hammond <chipx86@chipx86.com>
parents:
6029
diff
changeset
|
6589 gaim_connection_get_display_name(gc), FALSE, FALSE, |
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
6590 _("OK"), G_CALLBACK(oscar_format_screenname), |
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
6591 _("Cancel"), NULL, |
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
6592 gc); |
4333 | 6593 } |
6594 | |
5575 | 6595 static void oscar_confirm_account(GaimConnection *gc) |
4333 | 6596 { |
7283 | 6597 OscarData *od = gc->proto_data; |
4333 | 6598 aim_conn_t *conn = aim_getconn_type(od->sess, AIM_CONN_TYPE_AUTH); |
6599 | |
6600 if (conn) { | |
6601 aim_admin_reqconfirm(od->sess, conn); | |
6602 } else { | |
6603 od->conf = TRUE; | |
6604 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_AUTH); | |
6605 } | |
6606 } | |
6607 | |
5575 | 6608 static void oscar_show_email(GaimConnection *gc) |
4333 | 6609 { |
7283 | 6610 OscarData *od = gc->proto_data; |
4333 | 6611 aim_conn_t *conn = aim_getconn_type(od->sess, AIM_CONN_TYPE_AUTH); |
6612 | |
6613 if (conn) { | |
6614 aim_admin_getinfo(od->sess, conn, 0x11); | |
6615 } else { | |
6616 od->reqemail = TRUE; | |
6617 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_AUTH); | |
6618 } | |
6619 } | |
6620 | |
5575 | 6621 static void oscar_change_email(GaimConnection *gc, const char *email) |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6622 { |
7283 | 6623 OscarData *od = gc->proto_data; |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6624 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
|
6625 |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6626 if (conn) { |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6627 aim_admin_setemail(od->sess, conn, email); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6628 } else { |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6629 od->setemail = TRUE; |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6630 od->email = g_strdup(email); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6631 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_AUTH); |
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 } |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6634 |
5575 | 6635 static void oscar_show_change_email(GaimConnection *gc) |
4333 | 6636 { |
6035
8c44020a958e
[gaim-migrate @ 6485]
Christian Hammond <chipx86@chipx86.com>
parents:
6029
diff
changeset
|
6637 gaim_request_input(gc, NULL, _("Change Address To:"), NULL, NULL, |
8c44020a958e
[gaim-migrate @ 6485]
Christian Hammond <chipx86@chipx86.com>
parents:
6029
diff
changeset
|
6638 FALSE, FALSE, |
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
6639 _("OK"), G_CALLBACK(oscar_change_email), |
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
6640 _("Cancel"), NULL, |
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
6641 gc); |
4333 | 6642 } |
6643 | |
5575 | 6644 static void oscar_show_awaitingauth(GaimConnection *gc) |
4333 | 6645 { |
7283 | 6646 OscarData *od = gc->proto_data; |
4333 | 6647 gchar *nombre, *text, *tmp; |
6695 | 6648 GaimBlistNode *gnode, *cnode, *bnode; |
4333 | 6649 int num=0; |
6650 | |
6873 | 6651 text = g_strdup(""); |
4333 | 6652 |
4785 | 6653 for (gnode = gaim_get_blist()->root; gnode; gnode = gnode->next) { |
6695 | 6654 GaimGroup *group = (GaimGroup *)gnode; |
4785 | 6655 if(!GAIM_BLIST_NODE_IS_GROUP(gnode)) |
6656 continue; | |
6695 | 6657 for (cnode = gnode->child; cnode; cnode = cnode->next) { |
6658 if(!GAIM_BLIST_NODE_IS_CONTACT(cnode)) | |
4785 | 6659 continue; |
6695 | 6660 for (bnode = cnode->child; bnode; bnode = bnode->next) { |
6661 GaimBuddy *buddy = (GaimBuddy *)bnode; | |
6662 if(!GAIM_BLIST_NODE_IS_BUDDY(bnode)) | |
6663 continue; | |
6664 if (buddy->account == gc->account && aim_ssi_waitingforauth(od->sess->ssi.local, group->name, buddy->name)) { | |
6665 if (gaim_get_buddy_alias_only(buddy)) | |
6666 nombre = g_strdup_printf(" %s (%s)", buddy->name, gaim_get_buddy_alias_only(buddy)); | |
6667 else | |
6668 nombre = g_strdup_printf(" %s", buddy->name); | |
6873 | 6669 tmp = g_strdup_printf("%s%s<br>", text, nombre); |
6695 | 6670 g_free(text); |
6671 text = tmp; | |
6672 g_free(nombre); | |
6673 num++; | |
6674 } | |
4333 | 6675 } |
2979 | 6676 } |
4333 | 6677 } |
6678 | |
6679 if (!num) { | |
6680 g_free(text); | |
6873 | 6681 text = g_strdup(_("<i>you are not waiting for authorization</i>")); |
6682 } | |
6683 | |
6684 gaim_notify_formatted(gc, NULL, _("You are awaiting authorization from " | |
6685 "the following buddies"), _("You can re-request " | |
6686 "authorization from these buddies by " | |
6687 "right-clicking on them and selecting " | |
6688 "\"Re-request Authorization.\""), text, NULL, NULL); | |
4333 | 6689 g_free(text); |
2979 | 6690 } |
6691 | |
7080
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6692 static void search_by_email_cb(GaimConnection *gc, const char *email) |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6693 { |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6694 serv_dir_search(gc, "", "", "", "", "", "", "", email); |
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 |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6697 static void oscar_show_find_email(GaimConnection *gc) |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6698 { |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6699 gaim_request_input(gc, _("Find Buddy by E-mail"), |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6700 _("Search for a buddy by e-mail address"), |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6701 _("Type the e-mail address of the buddy you are " |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6702 "searching for."), |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6703 NULL, FALSE, FALSE, |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6704 _("Search"), G_CALLBACK(search_by_email_cb), |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6705 _("Cancel"), NULL, gc); |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6706 } |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6707 |
7366 | 6708 #if 0 |
5917 | 6709 static void oscar_setavailmsg(GaimConnection *gc, char *text) { |
7283 | 6710 OscarData *od = (OscarData *)gc->proto_data; |
5917 | 6711 |
7334 | 6712 aim_locate_setprofile(od->sess, NULL, NULL, 0, NULL, "", 0); |
5917 | 6713 aim_srv_setavailmsg(od->sess, text); |
6714 } | |
6715 | |
6716 static void oscar_show_setavailmsg(GaimConnection *gc) | |
6717 { | |
7313 | 6718 gaim_request_input(gc, NULL, _("Available Message:"), NULL, |
6719 _("I'm doing work and hoping for a distraction--IM me!"), | |
6720 TRUE, FALSE, | |
5917 | 6721 _("OK"), G_CALLBACK(oscar_setavailmsg), |
6722 _("Cancel"), NULL, | |
6723 gc); | |
6724 } | |
7366 | 6725 #endif |
5917 | 6726 |
7067
71e0da45abe6
[gaim-migrate @ 7631]
Christian Hammond <chipx86@chipx86.com>
parents:
7063
diff
changeset
|
6727 static void oscar_show_set_info(GaimConnection *gc) |
71e0da45abe6
[gaim-migrate @ 7631]
Christian Hammond <chipx86@chipx86.com>
parents:
7063
diff
changeset
|
6728 { |
71e0da45abe6
[gaim-migrate @ 7631]
Christian Hammond <chipx86@chipx86.com>
parents:
7063
diff
changeset
|
6729 gaim_account_request_change_user_info(gaim_connection_get_account(gc)); |
71e0da45abe6
[gaim-migrate @ 7631]
Christian Hammond <chipx86@chipx86.com>
parents:
7063
diff
changeset
|
6730 } |
71e0da45abe6
[gaim-migrate @ 7631]
Christian Hammond <chipx86@chipx86.com>
parents:
7063
diff
changeset
|
6731 |
7063
7fdac700deb1
[gaim-migrate @ 7627]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
6732 static void oscar_change_pass(GaimConnection *gc) |
7fdac700deb1
[gaim-migrate @ 7627]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
6733 { |
7fdac700deb1
[gaim-migrate @ 7627]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
6734 gaim_account_request_change_password(gaim_connection_get_account(gc)); |
7fdac700deb1
[gaim-migrate @ 7627]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
6735 } |
7fdac700deb1
[gaim-migrate @ 7627]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
6736 |
5575 | 6737 static void oscar_show_chpassurl(GaimConnection *gc) |
4333 | 6738 { |
7283 | 6739 OscarData *od = gc->proto_data; |
5575 | 6740 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
|
6741 gaim_notify_uri(gc, substituted); |
5517 | 6742 g_free(substituted); |
4333 | 6743 } |
6744 | |
7026 | 6745 static void oscar_show_imforwardingurl(GaimConnection *gc) |
6746 { | |
6747 gaim_notify_uri(gc, "http://mymobile.aol.com/dbreg/register?action=imf&clientID=1"); | |
6748 } | |
6749 | |
5842 | 6750 static void oscar_set_icon(GaimConnection *gc, const char *iconfile) |
6751 { | |
7283 | 6752 OscarData *od = gc->proto_data; |
5844 | 6753 aim_session_t *sess = od->sess; |
5842 | 6754 FILE *file; |
6755 struct stat st; | |
5844 | 6756 |
6039 | 6757 if (iconfile == NULL) { |
8363 | 6758 aim_ssi_delicon(od->sess); |
6039 | 6759 } else if (!stat(iconfile, &st)) { |
5842 | 6760 char *buf = g_malloc(st.st_size); |
6761 file = fopen(iconfile, "rb"); | |
6762 if (file) { | |
6052 | 6763 md5_state_t *state; |
6039 | 6764 char md5[16]; |
5842 | 6765 int len = fread(buf, 1, st.st_size, file); |
6039 | 6766 fclose(file); |
6052 | 6767 state = g_malloc(sizeof(md5_state_t)); |
5842 | 6768 md5_init(state); |
6769 md5_append(state, buf, len); | |
6770 md5_finish(state, md5); | |
6771 g_free(state); | |
6772 aim_ssi_seticon(sess, md5, 16); | |
6773 } else | |
6774 gaim_debug(GAIM_DEBUG_ERROR, "oscar", | |
6775 "Can't open buddy icon file!\n"); | |
6776 g_free(buf); | |
6777 } else | |
6778 gaim_debug(GAIM_DEBUG_ERROR, "oscar", | |
6779 "Can't stat buddy icon file!\n"); | |
6780 } | |
6781 | |
6782 | |
5575 | 6783 static GList *oscar_actions(GaimConnection *gc) |
2086 | 6784 { |
7283 | 6785 OscarData *od = gc->proto_data; |
4333 | 6786 struct proto_actions_menu *pam; |
6787 GList *m = NULL; | |
6788 | |
6789 pam = g_new0(struct proto_actions_menu, 1); | |
7853 | 6790 pam->label = _("Set User Info..."); |
7067
71e0da45abe6
[gaim-migrate @ 7631]
Christian Hammond <chipx86@chipx86.com>
parents:
7063
diff
changeset
|
6791 pam->callback = oscar_show_set_info; |
4333 | 6792 pam->gc = gc; |
6793 m = g_list_append(m, pam); | |
6794 | |
7366 | 6795 #if 0 |
5917 | 6796 pam = g_new0(struct proto_actions_menu, 1); |
7853 | 6797 pam->label = _("Set Available Message..."); |
5917 | 6798 pam->callback = oscar_show_setavailmsg; |
6799 pam->gc = gc; | |
6800 m = g_list_append(m, pam); | |
7366 | 6801 #endif |
5917 | 6802 |
5238 | 6803 pam = g_new0(struct proto_actions_menu, 1); |
7853 | 6804 pam->label = _("Change Password..."); |
7063
7fdac700deb1
[gaim-migrate @ 7627]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
6805 pam->callback = oscar_change_pass; |
5238 | 6806 pam->gc = gc; |
6807 m = g_list_append(m, pam); | |
4617 | 6808 |
6809 if (od->sess->authinfo->chpassurl) { | |
6810 pam = g_new0(struct proto_actions_menu, 1); | |
6811 pam->label = _("Change Password (URL)"); | |
6812 pam->callback = oscar_show_chpassurl; | |
6813 pam->gc = gc; | |
6814 m = g_list_append(m, pam); | |
6815 } | |
6816 | |
7026 | 6817 if (od->sess->authinfo->chpassurl) { |
6818 pam = g_new0(struct proto_actions_menu, 1); | |
6819 pam->label = _("Configure IM Forwarding (URL)"); | |
6820 pam->callback = oscar_show_imforwardingurl; | |
6821 pam->gc = gc; | |
6822 m = g_list_append(m, pam); | |
6823 } | |
6824 | |
5238 | 6825 if (!od->icq) { |
4617 | 6826 /* AIM actions */ |
6827 m = g_list_append(m, NULL); | |
4333 | 6828 |
5917 | 6829 pam = g_new0(struct proto_actions_menu, 1); |
8152 | 6830 pam->label = _("Format Screen Name..."); |
5844 | 6831 pam->callback = oscar_show_format_screenname; |
4333 | 6832 pam->gc = gc; |
6833 m = g_list_append(m, pam); | |
6834 | |
6835 pam = g_new0(struct proto_actions_menu, 1); | |
6836 pam->label = _("Confirm Account"); | |
6837 pam->callback = oscar_confirm_account; | |
6838 pam->gc = gc; | |
6839 m = g_list_append(m, pam); | |
6840 | |
6841 pam = g_new0(struct proto_actions_menu, 1); | |
7880 | 6842 pam->label = _("Display Currently Registered Address"); |
4333 | 6843 pam->callback = oscar_show_email; |
6844 pam->gc = gc; | |
6845 m = g_list_append(m, pam); | |
6846 | |
6847 pam = g_new0(struct proto_actions_menu, 1); | |
7880 | 6848 pam->label = _("Change Currently Registered Address..."); |
4333 | 6849 pam->callback = oscar_show_change_email; |
6850 pam->gc = gc; | |
6851 m = g_list_append(m, pam); | |
2086 | 6852 } |
4333 | 6853 |
6854 m = g_list_append(m, NULL); | |
6855 | |
6856 pam = g_new0(struct proto_actions_menu, 1); | |
6857 pam->label = _("Show Buddies Awaiting Authorization"); | |
6858 pam->callback = oscar_show_awaitingauth; | |
6859 pam->gc = gc; | |
6860 m = g_list_append(m, pam); | |
6861 | |
2086 | 6862 m = g_list_append(m, NULL); |
4333 | 6863 |
6864 pam = g_new0(struct proto_actions_menu, 1); | |
7853 | 6865 pam->label = _("Search for Buddy by Email..."); |
7080
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6866 pam->callback = oscar_show_find_email; |
4333 | 6867 pam->gc = gc; |
6868 m = g_list_append(m, pam); | |
6869 | |
4336 | 6870 /* pam = g_new0(struct proto_actions_menu, 1); |
4333 | 6871 pam->label = _("Search for Buddy by Information"); |
6872 pam->callback = show_find_info; | |
6873 pam->gc = gc; | |
4336 | 6874 m = g_list_append(m, pam); */ |
2086 | 6875 |
6876 return m; | |
6877 } | |
6878 | |
5575 | 6879 static void oscar_change_passwd(GaimConnection *gc, const char *old, const char *new) |
2086 | 6880 { |
7283 | 6881 OscarData *od = gc->proto_data; |
4617 | 6882 |
6883 if (od->icq) { | |
6884 aim_icq_changepasswd(od->sess, new); | |
2086 | 6885 } else { |
4617 | 6886 aim_conn_t *conn = aim_getconn_type(od->sess, AIM_CONN_TYPE_AUTH); |
6887 if (conn) { | |
6888 aim_admin_changepasswd(od->sess, conn, new, old); | |
6889 } else { | |
6890 od->chpass = TRUE; | |
6891 od->oldp = g_strdup(old); | |
6892 od->newp = g_strdup(new); | |
6893 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_AUTH); | |
6894 } | |
2086 | 6895 } |
6896 } | |
6897 | |
6059 | 6898 static void oscar_convo_closed(GaimConnection *gc, const char *who) |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6899 { |
7283 | 6900 OscarData *od = gc->proto_data; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6901 struct direct_im *dim = find_direct_im(od, who); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6902 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6903 if (!dim) |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6904 return; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6905 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6906 od->direct_ims = g_slist_remove(od->direct_ims, dim); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6907 gaim_input_remove(dim->watcher); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6908 aim_conn_kill(od->sess, &dim->conn); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6909 g_free(dim); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6910 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6911 |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6912 static GaimPluginProtocolInfo prpl_info = |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6913 { |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6914 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
|
6915 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6916 NULL, |
8170 | 6917 NULL, |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6918 oscar_list_icon, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6919 oscar_list_emblems, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6920 oscar_status_text, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6921 oscar_tooltip_text, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6922 oscar_away_states, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6923 oscar_actions, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6924 oscar_buddy_menu, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6925 oscar_chat_info, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6926 oscar_login, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6927 oscar_close, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6928 oscar_send_im, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6929 oscar_set_info, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6930 oscar_send_typing, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6931 oscar_get_info, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6932 oscar_set_away, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6933 oscar_get_away, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6934 oscar_set_dir, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6935 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6936 oscar_dir_search, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6937 oscar_set_idle, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6938 oscar_change_passwd, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6939 oscar_add_buddy, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6940 oscar_add_buddies, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6941 oscar_remove_buddy, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6942 oscar_remove_buddies, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6943 oscar_add_permit, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6944 oscar_add_deny, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6945 oscar_rem_permit, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6946 oscar_rem_deny, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6947 oscar_set_permit_deny, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6948 oscar_warn, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6949 oscar_join_chat, |
8562 | 6950 NULL, /* reject chat invite */ |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6951 oscar_chat_invite, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6952 oscar_chat_leave, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6953 NULL, |
8219 | 6954 oscar_send_chat, |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6955 oscar_keepalive, |
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 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6958 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6959 #ifndef NOSSI |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6960 oscar_alias_buddy, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6961 oscar_move_buddy, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6962 oscar_rename_group, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6963 #else |
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 NULL, |
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 #endif |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6968 NULL, |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6969 oscar_convo_closed, |
5842 | 6970 NULL, |
7650 | 6971 oscar_set_icon |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6972 }; |
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 static GaimPluginInfo info = |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6975 { |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6976 2, /**< api_version */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6977 GAIM_PLUGIN_PROTOCOL, /**< type */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6978 NULL, /**< ui_requirement */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6979 0, /**< flags */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6980 NULL, /**< dependencies */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6981 GAIM_PRIORITY_DEFAULT, /**< priority */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6982 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6983 "prpl-oscar", /**< id */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6984 "AIM/ICQ", /**< name */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6985 VERSION, /**< version */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6986 /** summary */ |
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 /** description */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6989 N_("AIM/ICQ Protocol Plugin"), |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6990 NULL, /**< author */ |
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6350
diff
changeset
|
6991 GAIM_WEBSITE, /**< homepage */ |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6992 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6993 NULL, /**< load */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6994 NULL, /**< unload */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6995 NULL, /**< destroy */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6996 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6997 NULL, /**< ui_info */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6998 &prpl_info /**< extra_info */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
6999 }; |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7000 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7001 static void |
5920
7d385de2f9cd
[gaim-migrate @ 6360]
Christian Hammond <chipx86@chipx86.com>
parents:
5917
diff
changeset
|
7002 init_plugin(GaimPlugin *plugin) |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7003 { |
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5631
diff
changeset
|
7004 GaimAccountOption *option; |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5631
diff
changeset
|
7005 |
5685
43ea75092684
[gaim-migrate @ 6106]
Christian Hammond <chipx86@chipx86.com>
parents:
5681
diff
changeset
|
7006 option = gaim_account_option_string_new(_("Auth host"), "server", |
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5631
diff
changeset
|
7007 "login.oscar.aol.com"); |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5631
diff
changeset
|
7008 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5631
diff
changeset
|
7009 option); |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5631
diff
changeset
|
7010 |
5685
43ea75092684
[gaim-migrate @ 6106]
Christian Hammond <chipx86@chipx86.com>
parents:
5681
diff
changeset
|
7011 option = gaim_account_option_int_new(_("Auth port"), "port", 5190); |
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5631
diff
changeset
|
7012 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5631
diff
changeset
|
7013 option); |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7014 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7015 my_protocol = plugin; |
2086 | 7016 } |
7017 | |
5920
7d385de2f9cd
[gaim-migrate @ 6360]
Christian Hammond <chipx86@chipx86.com>
parents:
5917
diff
changeset
|
7018 GAIM_INIT_PLUGIN(oscar, init_plugin, info); |