Mercurial > pidgin
annotate src/protocols/oscar/oscar.c @ 9730:c9ac1976ef01
[gaim-migrate @ 10591]
I shuffled lots of stuff around again.
See plugins/ChangeLog.API for the list of renamed functions.
I'm trying to clean up gtkdialogs.c/.h, so I moved the away stuff
into away.c/.h
I also reduced the minimum buddy list height from 200 pixels to
100 pixels. I just realized that that's also the default height
used when you don't have a prefs.xml, which is bad. I think I'm
going to set the default height to around 300 pixels.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Mon, 09 Aug 2004 03:49:46 +0000 |
parents | 6b5bd8ee11db |
children | 60705fd4f411 |
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" |
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6787
diff
changeset
|
31 #include "buddyicon.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
32 #include "conversation.h" |
7083
3100a6e03644
[gaim-migrate @ 7648]
Christian Hammond <chipx86@chipx86.com>
parents:
7082
diff
changeset
|
33 #include "core.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
34 #include "debug.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
35 #include "ft.h" |
6982 | 36 #include "imgstore.h" |
8231
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8227
diff
changeset
|
37 #include "network.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
38 #include "notify.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
39 #include "privacy.h" |
2086 | 40 #include "prpl.h" |
4889 | 41 #include "proxy.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
42 #include "request.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
43 #include "util.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
44 |
2086 | 45 #include "aim.h" |
5842 | 46 #include "md5.h" |
2086 | 47 |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
48 #define UC_AOL 0x02 |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
49 #define UC_ADMIN 0x04 |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
50 #define UC_UNCONFIRMED 0x08 |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
51 #define UC_NORMAL 0x10 |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
52 #define UC_AB 0x20 |
3079 | 53 #define UC_WIRELESS 0x40 |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
54 |
2086 | 55 #define AIMHASHDATA "http://gaim.sourceforge.net/aim_data.php3" |
56 | |
7283 | 57 #define OSCAR_CONNECT_STEPS 6 |
58 | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
59 static GaimPlugin *my_protocol = NULL; |
4249 | 60 |
7376 | 61 static int caps_aim = AIM_CAPS_CHAT | AIM_CAPS_BUDDYICON | AIM_CAPS_DIRECTIM | AIM_CAPS_SENDFILE | AIM_CAPS_INTEROPERATE | AIM_CAPS_ICHAT; |
62 static int caps_icq = AIM_CAPS_BUDDYICON | AIM_CAPS_DIRECTIM | AIM_CAPS_SENDFILE | AIM_CAPS_ICQUTF8 | AIM_CAPS_INTEROPERATE | AIM_CAPS_ICHAT; | |
3458 | 63 |
4665 | 64 static fu8_t features_aim[] = {0x01, 0x01, 0x01, 0x02}; |
65 static fu8_t features_icq[] = {0x01, 0x06}; | |
8341 | 66 static fu8_t ck[] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; |
2086 | 67 |
7283 | 68 typedef struct _OscarData OscarData; |
69 struct _OscarData { | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
70 aim_session_t *sess; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
71 aim_conn_t *conn; |
2086 | 72 |
73 guint cnpa; | |
74 guint paspa; | |
3694 | 75 guint emlpa; |
4804 | 76 guint icopa; |
2086 | 77 |
4823 | 78 gboolean iconconnecting; |
5842 | 79 gboolean set_icon; |
4823 | 80 |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
81 GSList *create_rooms; |
2086 | 82 |
83 gboolean conf; | |
84 gboolean reqemail; | |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
85 gboolean setemail; |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
86 char *email; |
2979 | 87 gboolean setnick; |
88 char *newsn; | |
2086 | 89 gboolean chpass; |
90 char *oldp; | |
91 char *newp; | |
5842 | 92 |
2086 | 93 GSList *oscar_chats; |
94 GSList *direct_ims; | |
3630 | 95 GSList *file_transfers; |
4738 | 96 GHashTable *buddyinfo; |
4804 | 97 GSList *requesticon; |
2086 | 98 |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
99 gboolean killme; |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
100 gboolean icq; |
4804 | 101 guint icontimer; |
5968 | 102 guint getblisttimer; |
8341 | 103 guint getinfotimer; |
2993 | 104 |
105 struct { | |
4230 | 106 guint maxwatchers; /* max users who can watch you */ |
2993 | 107 guint maxbuddies; /* max users you can watch */ |
4230 | 108 guint maxgroups; /* max groups in server list */ |
2993 | 109 guint maxpermits; /* max users on permit list */ |
110 guint maxdenies; /* max users on deny list */ | |
111 guint maxsiglen; /* max size (bytes) of profile */ | |
112 guint maxawaymsglen; /* max size (bytes) of posted away message */ | |
113 } rights; | |
2086 | 114 }; |
115 | |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
116 struct create_room { |
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
117 char *name; |
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
118 int exchange; |
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
119 }; |
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
120 |
2086 | 121 struct chat_connection { |
122 char *name; | |
123 char *show; /* AOL did something funny to us */ | |
2821
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
124 fu16_t exchange; |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
125 fu16_t instance; |
2086 | 126 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
|
127 aim_conn_t *conn; |
2086 | 128 int inpa; |
129 int id; | |
5575 | 130 GaimConnection *gc; /* i hate this. */ |
8733 | 131 GaimConversation *conv; /* bah. */ |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
132 int maxlen; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
133 int maxvis; |
2086 | 134 }; |
135 | |
8971 | 136 struct oscar_direct_im { |
5575 | 137 GaimConnection *gc; |
2086 | 138 char name[80]; |
139 int watcher; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
140 aim_conn_t *conn; |
3008 | 141 gboolean connected; |
8978 | 142 gboolean gpc_pend; |
143 gboolean killme; | |
8984 | 144 gboolean donttryagain; |
2086 | 145 }; |
146 | |
147 struct ask_direct { | |
5575 | 148 GaimConnection *gc; |
2086 | 149 char *sn; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
150 char ip[64]; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
151 fu8_t cookie[8]; |
8984 | 152 gboolean donttryagain; |
2086 | 153 }; |
154 | |
7011 | 155 /* |
156 * Various PRPL-specific buddy info that we want to keep track of | |
157 * Some other info is maintained by locate.c, and I'd like to move | |
158 * the rest of this to libfaim, mostly im.c | |
159 */ | |
4738 | 160 struct buddyinfo { |
161 gboolean typingnot; | |
6292 | 162 gchar *availmsg; |
6857 | 163 fu32_t ipaddr; |
5836 | 164 |
165 unsigned long ico_me_len; | |
166 unsigned long ico_me_csum; | |
167 time_t ico_me_time; | |
168 gboolean ico_informed; | |
4738 | 169 |
170 unsigned long ico_len; | |
171 unsigned long ico_csum; | |
172 time_t ico_time; | |
173 gboolean ico_need; | |
7406 | 174 gboolean ico_sent; |
2086 | 175 }; |
176 | |
4230 | 177 struct name_data { |
5575 | 178 GaimConnection *gc; |
4230 | 179 gchar *name; |
3453 | 180 gchar *nick; |
3141 | 181 }; |
182 | |
5129 | 183 static char *msgerrreason[] = { |
184 N_("Invalid error"), | |
185 N_("Invalid SNAC"), | |
186 N_("Rate to host"), | |
187 N_("Rate to client"), | |
188 N_("Not logged in"), | |
189 N_("Service unavailable"), | |
190 N_("Service not defined"), | |
191 N_("Obsolete SNAC"), | |
192 N_("Not supported by host"), | |
193 N_("Not supported by client"), | |
194 N_("Refused by client"), | |
195 N_("Reply too big"), | |
196 N_("Responses lost"), | |
197 N_("Request denied"), | |
198 N_("Busted SNAC payload"), | |
199 N_("Insufficient rights"), | |
200 N_("In local permit/deny"), | |
201 N_("Too evil (sender)"), | |
202 N_("Too evil (receiver)"), | |
203 N_("User temporarily unavailable"), | |
204 N_("No match"), | |
205 N_("List overflow"), | |
206 N_("Request ambiguous"), | |
207 N_("Queue full"), | |
208 N_("Not while on AOL") | |
209 }; | |
210 static int msgerrreasonlen = 25; | |
211 | |
212 /* All the libfaim->gaim callback functions */ | |
213 static int gaim_parse_auth_resp (aim_session_t *, aim_frame_t *, ...); | |
214 static int gaim_parse_login (aim_session_t *, aim_frame_t *, ...); | |
215 static int gaim_handle_redirect (aim_session_t *, aim_frame_t *, ...); | |
216 static int gaim_info_change (aim_session_t *, aim_frame_t *, ...); | |
217 static int gaim_account_confirm (aim_session_t *, aim_frame_t *, ...); | |
218 static int gaim_parse_oncoming (aim_session_t *, aim_frame_t *, ...); | |
219 static int gaim_parse_offgoing (aim_session_t *, aim_frame_t *, ...); | |
220 static int gaim_parse_incoming_im(aim_session_t *, aim_frame_t *, ...); | |
221 static int gaim_parse_misses (aim_session_t *, aim_frame_t *, ...); | |
222 static int gaim_parse_clientauto (aim_session_t *, aim_frame_t *, ...); | |
7011 | 223 static int gaim_parse_userinfo (aim_session_t *, aim_frame_t *, ...); |
8341 | 224 static int gaim_reqinfo_timeout (aim_session_t *, aim_frame_t *, ...); |
5129 | 225 static int gaim_parse_motd (aim_session_t *, aim_frame_t *, ...); |
226 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
|
227 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
|
228 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
|
229 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
|
230 static int gaim_conv_chat_incoming_msg(aim_session_t *, aim_frame_t *, ...); |
5129 | 231 static int gaim_email_parseupdate(aim_session_t *, aim_frame_t *, ...); |
232 static int gaim_icon_error (aim_session_t *, aim_frame_t *, ...); | |
233 static int gaim_icon_parseicon (aim_session_t *, aim_frame_t *, ...); | |
5844 | 234 static int oscar_icon_req (aim_session_t *, aim_frame_t *, ...); |
5129 | 235 static int gaim_parse_msgack (aim_session_t *, aim_frame_t *, ...); |
236 static int gaim_parse_ratechange (aim_session_t *, aim_frame_t *, ...); | |
237 static int gaim_parse_evilnotify (aim_session_t *, aim_frame_t *, ...); | |
238 static int gaim_parse_searcherror(aim_session_t *, aim_frame_t *, ...); | |
239 static int gaim_parse_searchreply(aim_session_t *, aim_frame_t *, ...); | |
240 static int gaim_bosrights (aim_session_t *, aim_frame_t *, ...); | |
241 static int gaim_connerr (aim_session_t *, aim_frame_t *, ...); | |
242 static int conninitdone_admin (aim_session_t *, aim_frame_t *, ...); | |
243 static int conninitdone_bos (aim_session_t *, aim_frame_t *, ...); | |
244 static int conninitdone_chatnav (aim_session_t *, aim_frame_t *, ...); | |
245 static int conninitdone_chat (aim_session_t *, aim_frame_t *, ...); | |
246 static int conninitdone_email (aim_session_t *, aim_frame_t *, ...); | |
247 static int conninitdone_icon (aim_session_t *, aim_frame_t *, ...); | |
248 static int gaim_parse_msgerr (aim_session_t *, aim_frame_t *, ...); | |
249 static int gaim_parse_mtn (aim_session_t *, aim_frame_t *, ...); | |
250 static int gaim_parse_locaterights(aim_session_t *, aim_frame_t *, ...); | |
251 static int gaim_parse_buddyrights(aim_session_t *, aim_frame_t *, ...); | |
252 static int gaim_parse_locerr (aim_session_t *, aim_frame_t *, ...); | |
253 static int gaim_icbm_param_info (aim_session_t *, aim_frame_t *, ...); | |
254 static int gaim_parse_genericerr (aim_session_t *, aim_frame_t *, ...); | |
255 static int gaim_memrequest (aim_session_t *, aim_frame_t *, ...); | |
256 static int gaim_selfinfo (aim_session_t *, aim_frame_t *, ...); | |
257 static int gaim_offlinemsg (aim_session_t *, aim_frame_t *, ...); | |
258 static int gaim_offlinemsgdone (aim_session_t *, aim_frame_t *, ...); | |
259 static int gaim_icqalias (aim_session_t *, aim_frame_t *, ...); | |
260 static int gaim_icqinfo (aim_session_t *, aim_frame_t *, ...); | |
261 static int gaim_popup (aim_session_t *, aim_frame_t *, ...); | |
262 #ifndef NOSSI | |
263 static int gaim_ssi_parseerr (aim_session_t *, aim_frame_t *, ...); | |
264 static int gaim_ssi_parserights (aim_session_t *, aim_frame_t *, ...); | |
265 static int gaim_ssi_parselist (aim_session_t *, aim_frame_t *, ...); | |
266 static int gaim_ssi_parseack (aim_session_t *, aim_frame_t *, ...); | |
8227 | 267 static int gaim_ssi_parseadd (aim_session_t *, aim_frame_t *, ...); |
5129 | 268 static int gaim_ssi_authgiven (aim_session_t *, aim_frame_t *, ...); |
269 static int gaim_ssi_authrequest (aim_session_t *, aim_frame_t *, ...); | |
270 static int gaim_ssi_authreply (aim_session_t *, aim_frame_t *, ...); | |
271 static int gaim_ssi_gotadded (aim_session_t *, aim_frame_t *, ...); | |
272 #endif | |
273 | |
274 /* for DirectIM/image transfer */ | |
275 static int gaim_odc_initiate (aim_session_t *, aim_frame_t *, ...); | |
276 static int gaim_odc_incoming (aim_session_t *, aim_frame_t *, ...); | |
277 static int gaim_odc_typing (aim_session_t *, aim_frame_t *, ...); | |
6982 | 278 static int gaim_odc_update_ui (aim_session_t *, aim_frame_t *, ...); |
5129 | 279 |
280 /* for file transfer */ | |
281 static int oscar_sendfile_estblsh(aim_session_t *, aim_frame_t *, ...); | |
282 static int oscar_sendfile_prompt (aim_session_t *, aim_frame_t *, ...); | |
283 static int oscar_sendfile_ack (aim_session_t *, aim_frame_t *, ...); | |
284 static int oscar_sendfile_done (aim_session_t *, aim_frame_t *, ...); | |
285 | |
286 /* for icons */ | |
287 static gboolean gaim_icon_timerfunc(gpointer data); | |
288 | |
8971 | 289 /* just because */ |
290 static void oscar_callback(gpointer data, gint source, GaimInputCondition condition); | |
8983 | 291 static void oscar_direct_im_initiate(GaimConnection *gc, const char *who, const char *cookie); |
8971 | 292 |
8076 | 293 /* remove these at some point? */ |
7282 | 294 /* Because I don't like forward declarations? I think that was why... */ |
5954 | 295 static void oscar_set_info(GaimConnection *gc, const char *text); |
8076 | 296 static void oscar_set_away(GaimConnection *gc, const char *state, const char *message); |
5306 | 297 |
5836 | 298 static void oscar_free_name_data(struct name_data *data) { |
4230 | 299 g_free(data->name); |
300 g_free(data->nick); | |
301 g_free(data); | |
302 } | |
303 | |
5836 | 304 static void oscar_free_buddyinfo(void *data) { |
305 struct buddyinfo *bi = data; | |
6292 | 306 g_free(bi->availmsg); |
5836 | 307 g_free(bi); |
308 } | |
309 | |
5129 | 310 static fu32_t oscar_encoding_check(const char *utf8) |
311 { | |
312 int i = 0; | |
313 fu32_t encodingflag = 0; | |
314 | |
315 /* Determine how we can send this message. Per the warnings elsewhere | |
316 * in this file, these little checks determine the simplest encoding | |
317 * we can use for a given message send using it. */ | |
318 while (utf8[i]) { | |
319 if ((unsigned char)utf8[i] > 0x7f) { | |
320 /* not ASCII! */ | |
321 encodingflag = AIM_IMFLAGS_ISO_8859_1; | |
322 break; | |
323 } | |
324 i++; | |
325 } | |
326 while (utf8[i]) { | |
327 /* ISO-8859-1 is 0x00-0xbf in the first byte | |
328 * followed by 0xc0-0xc3 in the second */ | |
329 if ((unsigned char)utf8[i] < 0x80) { | |
330 i++; | |
331 continue; | |
332 } else if (((unsigned char)utf8[i] & 0xfc) == 0xc0 && | |
333 ((unsigned char)utf8[i + 1] & 0xc0) == 0x80) { | |
334 i += 2; | |
335 continue; | |
336 } | |
337 encodingflag = AIM_IMFLAGS_UNICODE; | |
338 break; | |
339 } | |
340 | |
341 return encodingflag; | |
342 } | |
343 | |
8225 | 344 /* |
345 * Take a string of the form charset="bleh" where bleh is | |
346 * one of us-ascii, utf-8, iso-8859-1, or unicode-2-0, and | |
347 * return a newly allocated string containing bleh. | |
348 */ | |
349 static gchar *oscar_encoding_extract(const char *encoding) | |
5129 | 350 { |
8225 | 351 gchar *ret = NULL; |
352 char *begin, *end; | |
353 | |
8735
92cbf9713795
[gaim-migrate @ 9490]
Christian Hammond <chipx86@chipx86.com>
parents:
8733
diff
changeset
|
354 /* Make sure encoding begins with charset= */ |
8225 | 355 if (strncmp(encoding, "text/aolrtf; charset=", 21)) |
356 return NULL; | |
357 | |
358 begin = strchr(encoding, '"'); | |
359 end = strrchr(encoding, '"'); | |
360 | |
361 if ((begin == NULL) || (end == NULL) || (begin >= end)) | |
362 return NULL; | |
363 | |
364 ret = g_strndup(begin+1, (end-1) - begin); | |
365 | |
366 return ret; | |
367 } | |
368 | |
8233 | 369 gchar *oscar_encoding_to_utf8(const char *encoding, const char *text, int textlen) |
5129 | 370 { |
371 gchar *utf8 = NULL; | |
9595 | 372 |
373 if ((encoding == NULL) || encoding[0] == '\0') { | |
374 gaim_debug_info("oscar", "Empty encoding, assuming UTF-8\n"); | |
375 | |
9639 | 376 } else if (!strcmp(encoding, "iso-8859-1") |
377 || !strcmp(encoding, "ISO-8859-1-Windows-3.1-Latin-1")) { | |
9595 | 378 utf8 = g_convert(text, textlen, "UTF-8", "ISO-8859-1", NULL, NULL, NULL); |
379 | |
380 } else if (!strcmp(encoding, "unicode-2-0")) { | |
381 utf8 = g_convert(text, textlen, "UTF-8", "UCS-2BE", NULL, NULL, NULL); | |
382 | |
383 } else if (strcmp(encoding, "us-ascii") && strcmp(encoding, "utf-8")) { | |
384 gaim_debug_warning("oscar", "Unrecognized character encoding \"%s\", " | |
385 "attempting to convert to UTF-8 anyway\n"); | |
386 utf8 = g_convert(text, textlen, "UTF-8", encoding, NULL, NULL, NULL); | |
387 } | |
388 | |
389 /* | |
390 * If utf8 is still NULL then either the encoding is us-ascii/utf-8 or | |
391 * we have been unable to convert the text to utf-8 from the encoding | |
392 * that was specified. So we check if the text is valid utf-8 then | |
393 * just copy it. | |
394 */ | |
395 if (utf8 == NULL) { | |
9638 | 396 if (textlen != 0 && *text != '\0' |
397 && !g_utf8_validate(text, textlen, NULL)) | |
9476 | 398 utf8 = g_strdup(_("(There was an error converting this message. The buddy you are speaking to most likely has a buggy client.)")); |
399 else | |
9481 | 400 utf8 = g_strndup(text, textlen); |
5129 | 401 } |
402 | |
403 return utf8; | |
404 } | |
405 | |
9407 | 406 gchar *oscar_caps_to_string(guint caps) |
8701 | 407 { |
9407 | 408 GString *str; |
409 gchar *tmp; | |
8701 | 410 guint bit = 1; |
411 | |
9407 | 412 str = g_string_new(""); |
413 | |
8701 | 414 if (!caps) { |
415 return NULL; | |
416 } else while (bit <= AIM_CAPS_LAST) { | |
417 if (bit & caps) { | |
418 switch (bit) { | |
419 case AIM_CAPS_BUDDYICON: | |
420 tmp = _("Buddy Icon"); | |
421 break; | |
422 case AIM_CAPS_TALK: | |
423 tmp = _("Voice"); | |
424 break; | |
425 case AIM_CAPS_DIRECTIM: | |
426 tmp = _("AIM Direct IM"); | |
427 break; | |
428 case AIM_CAPS_CHAT: | |
429 tmp = _("Chat"); | |
430 break; | |
431 case AIM_CAPS_GETFILE: | |
432 tmp = _("Get File"); | |
433 break; | |
434 case AIM_CAPS_SENDFILE: | |
435 tmp = _("Send File"); | |
436 break; | |
437 case AIM_CAPS_GAMES: | |
438 case AIM_CAPS_GAMES2: | |
439 tmp = _("Games"); | |
440 break; | |
441 case AIM_CAPS_ADDINS: | |
442 tmp = _("Add-Ins"); | |
443 break; | |
444 case AIM_CAPS_SENDBUDDYLIST: | |
445 tmp = _("Send Buddy List"); | |
446 break; | |
447 case AIM_CAPS_ICQ_DIRECT: | |
448 tmp = _("ICQ Direct Connect"); | |
449 break; | |
450 case AIM_CAPS_APINFO: | |
451 tmp = _("AP User"); | |
452 break; | |
453 case AIM_CAPS_ICQRTF: | |
454 tmp = _("ICQ RTF"); | |
455 break; | |
456 case AIM_CAPS_EMPTY: | |
457 tmp = _("Nihilist"); | |
458 break; | |
459 case AIM_CAPS_ICQSERVERRELAY: | |
460 tmp = _("ICQ Server Relay"); | |
461 break; | |
462 case AIM_CAPS_ICQUTF8OLD: | |
463 tmp = _("Old ICQ UTF8"); | |
464 break; | |
465 case AIM_CAPS_TRILLIANCRYPT: | |
466 tmp = _("Trillian Encryption"); | |
467 break; | |
468 case AIM_CAPS_ICQUTF8: | |
469 tmp = _("ICQ UTF8"); | |
470 break; | |
471 case AIM_CAPS_HIPTOP: | |
472 tmp = _("Hiptop"); | |
473 break; | |
474 case AIM_CAPS_SECUREIM: | |
475 tmp = _("Security Enabled"); | |
476 break; | |
477 case AIM_CAPS_VIDEO: | |
478 tmp = _("Video Chat"); | |
479 break; | |
480 /* Not actually sure about this one... WinAIM doesn't show anything */ | |
481 case AIM_CAPS_ICHATAV: | |
482 tmp = _("iChat AV"); | |
483 break; | |
484 case AIM_CAPS_LIVEVIDEO: | |
485 tmp = _("Live Video"); | |
486 break; | |
487 case AIM_CAPS_CAMERA: | |
488 tmp = _("Camera"); | |
489 break; | |
490 default: | |
491 tmp = NULL; | |
492 break; | |
493 } | |
494 if (tmp) | |
9532 | 495 g_string_append_printf(str, "%s%s", (*(str->str) == '\0' ? "" : ", "), tmp); |
8701 | 496 } |
497 bit <<= 1; | |
498 } | |
9407 | 499 |
500 return g_string_free(str, FALSE); | |
8701 | 501 } |
502 | |
503 static char *oscar_icqstatus(int state) { | |
504 /* Make a cute little string that shows the status of the dude or dudet */ | |
505 if (state & AIM_ICQ_STATE_CHAT) | |
506 return g_strdup_printf(_("Free For Chat")); | |
507 else if (state & AIM_ICQ_STATE_DND) | |
508 return g_strdup_printf(_("Do Not Disturb")); | |
509 else if (state & AIM_ICQ_STATE_OUT) | |
510 return g_strdup_printf(_("Not Available")); | |
511 else if (state & AIM_ICQ_STATE_BUSY) | |
512 return g_strdup_printf(_("Occupied")); | |
513 else if (state & AIM_ICQ_STATE_AWAY) | |
514 return g_strdup_printf(_("Away")); | |
515 else if (state & AIM_ICQ_STATE_WEBAWARE) | |
516 return g_strdup_printf(_("Web Aware")); | |
517 else if (state & AIM_ICQ_STATE_INVISIBLE) | |
518 return g_strdup_printf(_("Invisible")); | |
519 else | |
520 return g_strdup_printf(_("Online")); | |
521 } | |
522 | |
523 static void oscar_string_append(GString *str, char *newline, char *name, char *value) | |
8700 | 524 { |
525 gchar *utf8; | |
526 | |
527 if (value && value[0] && (utf8 = gaim_utf8_try_convert(value))) { | |
8701 | 528 g_string_append_printf(str, "%s<b>%s:</b> %s", newline, name, utf8); |
8700 | 529 g_free(utf8); |
530 } | |
531 } | |
532 | |
8701 | 533 static void oscar_string_append_info(GaimConnection *gc, GString *str, char *newline, GaimBuddy *b, aim_userinfo_t *userinfo) |
534 { | |
535 OscarData *od = gc->proto_data; | |
536 GaimAccount *account = gaim_connection_get_account(gc); | |
537 GaimGroup *g = NULL; | |
538 struct buddyinfo *bi = NULL; | |
539 char *tmp; | |
540 | |
541 if ((str == NULL) || (str == NULL) || (newline == NULL) || ((b == NULL) && (userinfo == NULL))) | |
542 return; | |
543 | |
544 if (userinfo == NULL) | |
545 userinfo = aim_locate_finduserinfo(od->sess, b->name); | |
546 | |
547 if (b == NULL) | |
548 b = gaim_find_buddy(gc->account, userinfo->sn); | |
549 | |
550 if (b != NULL) | |
551 g = gaim_find_buddys_group(b); | |
552 | |
553 if (userinfo != NULL) | |
554 bi = g_hash_table_lookup(od->buddyinfo, gaim_normalize(account, userinfo->sn)); | |
555 | |
8733 | 556 if (b != NULL) { |
557 if (GAIM_BUDDY_IS_ONLINE(b)) { | |
558 if (isdigit(b->name[0])) { | |
559 tmp = oscar_icqstatus((b->uc & 0xffff0000) >> 16); | |
560 oscar_string_append(str, newline, _("Status"), tmp); | |
561 g_free(tmp); | |
562 } | |
563 } else { | |
9625 | 564 tmp = aim_ssi_itemlist_findparentname(od->sess->ssi.local, b->name); |
8733 | 565 if (aim_ssi_waitingforauth(od->sess->ssi.local, tmp, b->name)) |
566 oscar_string_append(str, newline, _("Status"), _("Not Authorized")); | |
567 else | |
568 oscar_string_append(str, newline, _("Status"), _("Offline")); | |
8701 | 569 } |
8733 | 570 } |
8701 | 571 |
572 if ((bi != NULL) && (bi->ipaddr != 0)) { | |
9625 | 573 tmp = g_strdup_printf("%hhu.%hhu.%hhu.%hhu", |
8701 | 574 (bi->ipaddr & 0xff000000) >> 24, |
575 (bi->ipaddr & 0x00ff0000) >> 16, | |
576 (bi->ipaddr & 0x0000ff00) >> 8, | |
577 (bi->ipaddr & 0x000000ff)); | |
578 oscar_string_append(str, newline, _("IP Address"), tmp); | |
579 g_free(tmp); | |
580 } | |
581 | |
582 if ((userinfo != NULL) && (userinfo->capabilities != 0)) { | |
583 tmp = oscar_caps_to_string(userinfo->capabilities); | |
584 oscar_string_append(str, newline, _("Capabilities"), tmp); | |
9407 | 585 g_free(tmp); |
8701 | 586 } |
587 | |
588 if ((b != NULL) && (b->name != NULL) && (g != NULL) && (g->name != NULL)) { | |
589 tmp = aim_ssi_getcomment(od->sess->ssi.local, g->name, b->name); | |
590 if (tmp != NULL) { | |
9625 | 591 char *tmp2 = g_markup_escape_text(tmp, strlen(tmp)); |
8701 | 592 g_free(tmp); |
9625 | 593 oscar_string_append(str, newline, _("Buddy Comment"), tmp2); |
594 g_free(tmp2); | |
8701 | 595 } |
596 } | |
597 | |
598 if ((bi != NULL) && (bi->availmsg != NULL) && !(b->uc & UC_UNAVAILABLE)) { | |
599 tmp = g_markup_escape_text(bi->availmsg, strlen(bi->availmsg)); | |
600 oscar_string_append(str, newline, _("Available"), tmp); | |
601 g_free(tmp); | |
602 } | |
603 } | |
604 | |
2821
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
605 static char *extract_name(const char *name) { |
4121 | 606 char *tmp, *x; |
2086 | 607 int i, j; |
4120 | 608 |
609 if (!name) | |
4121 | 610 return NULL; |
611 | |
4120 | 612 x = strchr(name, '-'); |
4121 | 613 |
2086 | 614 if (!x) return NULL; |
615 x = strchr(++x, '-'); | |
616 if (!x) return NULL; | |
617 tmp = g_strdup(++x); | |
618 | |
619 for (i = 0, j = 0; x[i]; i++) { | |
2361
554b001d7d98
[gaim-migrate @ 2374]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2357
diff
changeset
|
620 char hex[3]; |
554b001d7d98
[gaim-migrate @ 2374]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2357
diff
changeset
|
621 if (x[i] != '%') { |
2086 | 622 tmp[j++] = x[i]; |
2361
554b001d7d98
[gaim-migrate @ 2374]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2357
diff
changeset
|
623 continue; |
2086 | 624 } |
2361
554b001d7d98
[gaim-migrate @ 2374]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2357
diff
changeset
|
625 strncpy(hex, x + ++i, 2); hex[2] = 0; |
554b001d7d98
[gaim-migrate @ 2374]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2357
diff
changeset
|
626 i++; |
554b001d7d98
[gaim-migrate @ 2374]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2357
diff
changeset
|
627 tmp[j++] = strtol(hex, NULL, 16); |
2086 | 628 } |
629 | |
630 tmp[j] = 0; | |
631 return tmp; | |
632 } | |
633 | |
5575 | 634 static struct chat_connection *find_oscar_chat(GaimConnection *gc, int id) { |
7283 | 635 GSList *g = ((OscarData *)gc->proto_data)->oscar_chats; |
2086 | 636 struct chat_connection *c = NULL; |
637 | |
638 while (g) { | |
639 c = (struct chat_connection *)g->data; | |
640 if (c->id == id) | |
641 break; | |
642 g = g->next; | |
643 c = NULL; | |
644 } | |
645 | |
646 return c; | |
647 } | |
648 | |
5575 | 649 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
|
650 aim_conn_t *conn) { |
7283 | 651 GSList *g = ((OscarData *)gc->proto_data)->oscar_chats; |
2086 | 652 struct chat_connection *c = NULL; |
653 | |
654 while (g) { | |
655 c = (struct chat_connection *)g->data; | |
656 if (c->conn == conn) | |
657 break; | |
658 g = g->next; | |
659 c = NULL; | |
660 } | |
661 | |
662 return c; | |
663 } | |
664 | |
8219 | 665 static struct chat_connection *find_oscar_chat_by_conv(GaimConnection *gc, |
666 GaimConversation *conv) { | |
667 GSList *g = ((OscarData *)gc->proto_data)->oscar_chats; | |
668 struct chat_connection *c = NULL; | |
669 | |
670 while (g) { | |
671 c = (struct chat_connection *)g->data; | |
8733 | 672 if (c->conv == conv) |
8219 | 673 break; |
674 g = g->next; | |
675 c = NULL; | |
676 } | |
677 | |
678 return c; | |
679 } | |
680 | |
8971 | 681 /***************************************************************************** |
682 * Begin scary direct im stuff | |
683 *****************************************************************************/ | |
684 | |
685 static struct oscar_direct_im *oscar_direct_im_find(OscarData *od, const char *who) { | |
686 GSList *d = od->direct_ims; | |
687 struct oscar_direct_im *m = NULL; | |
688 | |
689 while (d) { | |
690 m = (struct oscar_direct_im *)d->data; | |
691 if (!aim_sncmp(who, m->name)) | |
692 return m; | |
693 d = d->next; | |
694 } | |
695 | |
696 return NULL; | |
697 } | |
698 | |
699 static void oscar_direct_im_destroy(OscarData *od, struct oscar_direct_im *dim) | |
700 { | |
701 gaim_debug_info("oscar", | |
702 "destroying Direct IM for %s.\n", dim->name); | |
703 | |
704 od->direct_ims = g_slist_remove(od->direct_ims, dim); | |
8978 | 705 if (dim->gpc_pend) { |
706 dim->killme = TRUE; | |
707 return; | |
708 } | |
8971 | 709 if (dim->watcher) |
710 gaim_input_remove(dim->watcher); | |
711 if (dim->conn) { | |
712 aim_conn_close(dim->conn); | |
713 aim_conn_kill(od->sess, &dim->conn); | |
714 } | |
715 g_free(dim); | |
716 } | |
717 | |
718 /* the only difference between this and destroy is this writes a conv message */ | |
719 static void oscar_direct_im_disconnect(OscarData *od, struct oscar_direct_im *dim) | |
720 { | |
721 GaimConversation *conv; | |
722 char buf[256]; | |
723 | |
724 gaim_debug_info("oscar", | |
725 "%s disconnected Direct IM.\n", dim->name); | |
726 | |
727 if (dim->connected) | |
728 g_snprintf(buf, sizeof buf, _("Direct IM with %s closed"), dim->name); | |
8978 | 729 else |
8971 | 730 g_snprintf(buf, sizeof buf, _("Direct IM with %s failed"), dim->name); |
731 | |
732 conv = gaim_find_conversation_with_account(dim->name, gaim_connection_get_account(dim->gc)); | |
733 if (conv) { | |
734 gaim_conversation_write(conv, NULL, buf, GAIM_MESSAGE_SYSTEM, time(NULL)); | |
9463 | 735 gaim_conversation_update_progress(conv, 0); |
8971 | 736 } else { |
737 gaim_notify_error(dim->gc, NULL, _("Direct Connect failed"), buf); | |
738 } | |
739 | |
740 oscar_direct_im_destroy(od, dim); | |
741 | |
742 return; | |
743 } | |
744 | |
745 /* oops i made two of these. this one just calls the other one. */ | |
746 static void gaim_odc_disconnect(aim_session_t *sess, aim_conn_t *conn) | |
747 { | |
748 GaimConnection *gc = sess->aux_data; | |
749 OscarData *od = (OscarData *)gc->proto_data; | |
750 struct oscar_direct_im *dim; | |
751 char *sn; | |
752 | |
753 sn = g_strdup(aim_odc_getsn(conn)); | |
754 dim = oscar_direct_im_find(od, sn); | |
755 oscar_direct_im_disconnect(od, dim); | |
756 g_free(sn); | |
757 } | |
758 | |
759 static void destroy_direct_im_request(struct ask_direct *d) { | |
760 gaim_debug_info("oscar", "Freeing DirectIM prompts.\n"); | |
761 | |
762 g_free(d->sn); | |
763 g_free(d); | |
764 } | |
765 | |
766 /* this is just a gaim_proxy_connect cb that sets up the rest of the cbs */ | |
767 static void oscar_odc_callback(gpointer data, gint source, GaimInputCondition condition) { | |
768 struct oscar_direct_im *dim = data; | |
769 GaimConnection *gc = dim->gc; | |
770 OscarData *od = gc->proto_data; | |
771 GaimConversation *conv; | |
772 char buf[256]; | |
773 struct sockaddr name; | |
774 socklen_t name_len = 1; | |
775 | |
776 g_return_if_fail(gc != NULL); | |
777 | |
8978 | 778 dim->gpc_pend = FALSE; |
779 if (dim->killme) { | |
780 oscar_direct_im_destroy(od, dim); | |
781 return; | |
782 } | |
783 | |
8971 | 784 if (!g_list_find(gaim_connections_get_all(), gc)) { |
785 oscar_direct_im_destroy(od, dim); | |
786 return; | |
787 } | |
788 | |
789 if (source < 0) { | |
8984 | 790 if (dim->donttryagain) { |
791 oscar_direct_im_disconnect(od, dim); | |
792 return; | |
793 } else { | |
794 fu8_t cookie[8]; | |
795 char *who = g_strdup(dim->name); | |
796 const char *tmp = aim_odc_getcookie(dim->conn); | |
797 | |
798 memcpy(cookie, tmp, 8); | |
799 oscar_direct_im_destroy(od, dim); | |
800 oscar_direct_im_initiate(gc, who, cookie); | |
801 gaim_debug_info("oscar", "asking direct im initiator to connect to us\n"); | |
802 g_free(who); | |
803 return; | |
804 } | |
8971 | 805 } |
806 | |
807 dim->conn->fd = source; | |
808 aim_conn_completeconnect(od->sess, dim->conn); | |
809 conv = gaim_conversation_new(GAIM_CONV_IM, dim->gc->account, dim->name); | |
810 | |
811 /* This is the best way to see if we're connected or not */ | |
8983 | 812 /* Is this really needed? */ |
8971 | 813 if (getpeername(source, &name, &name_len) == 0) { |
814 g_snprintf(buf, sizeof buf, _("Direct IM with %s established"), dim->name); | |
815 dim->connected = TRUE; | |
816 gaim_conversation_write(conv, NULL, buf, GAIM_MESSAGE_SYSTEM, time(NULL)); | |
8983 | 817 dim->watcher = gaim_input_add(dim->conn->fd, GAIM_INPUT_READ, oscar_callback, dim->conn); |
818 } else { | |
8984 | 819 if (dim->donttryagain) { |
820 oscar_direct_im_disconnect(od, dim); | |
821 return; | |
822 } else { | |
823 fu8_t cookie[8]; | |
824 char *who = g_strdup(dim->name); | |
825 const char *tmp = aim_odc_getcookie(dim->conn); | |
826 | |
827 memcpy(cookie, tmp, 8); | |
828 oscar_direct_im_destroy(od, dim); | |
829 oscar_direct_im_initiate(gc, who, cookie); | |
830 gaim_debug_info("oscar", "asking direct im initiator to connect to us\n"); | |
831 g_free(who); | |
832 return; | |
833 } | |
8983 | 834 } |
835 | |
836 | |
8971 | 837 } |
838 | |
839 static void accept_direct_im_request(struct ask_direct *d) { | |
840 GaimConnection *gc = d->gc; | |
841 OscarData *od; | |
842 struct oscar_direct_im *dim; | |
843 char *host; int port = 5190; | |
844 int i, rc; | |
8982 | 845 char *tmp; |
846 GaimConversation *conv; | |
8971 | 847 |
848 if (!g_list_find(gaim_connections_get_all(), gc)) { | |
849 destroy_direct_im_request(d); | |
850 return; | |
851 } | |
852 | |
853 od = (OscarData *)gc->proto_data; | |
854 gaim_debug_info("oscar", "Accepted DirectIM.\n"); | |
855 | |
856 dim = oscar_direct_im_find(od, d->sn); | |
857 if (dim && dim->connected) { | |
858 destroy_direct_im_request(d); /* 40 */ /* what does that 40 mean? */ | |
859 gaim_debug_info("oscar", "Wait, we're already connected, ignoring DirectIM.\n"); | |
860 return; | |
861 } | |
862 dim = g_new0(struct oscar_direct_im, 1); | |
863 dim->gc = d->gc; | |
8984 | 864 dim->donttryagain = d->donttryagain; |
8971 | 865 g_snprintf(dim->name, sizeof dim->name, "%s", d->sn); |
866 | |
867 dim->conn = aim_odc_connect(od->sess, d->sn, NULL, d->cookie); | |
868 od->direct_ims = g_slist_append(od->direct_ims, dim); | |
869 if (!dim->conn) { | |
870 oscar_direct_im_disconnect(od, dim); | |
871 destroy_direct_im_request(d); | |
872 return; | |
873 } | |
874 | |
875 aim_conn_addhandler(od->sess, dim->conn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIMINCOMING, | |
876 gaim_odc_incoming, 0); | |
877 aim_conn_addhandler(od->sess, dim->conn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIMTYPING, | |
878 gaim_odc_typing, 0); | |
879 aim_conn_addhandler(od->sess, dim->conn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_IMAGETRANSFER, | |
880 gaim_odc_update_ui, 0); | |
881 | |
882 gaim_debug_info("oscar", "ip is %s.\n", d->ip); | |
883 for (i = 0; i < (int)strlen(d->ip); i++) { | |
884 if (d->ip[i] == ':') { | |
885 port = atoi(&(d->ip[i+1])); | |
886 break; | |
887 } | |
888 } | |
889 host = g_strndup(d->ip, i); | |
890 dim->conn->status |= AIM_CONN_STATUS_INPROGRESS; | |
8978 | 891 dim->gpc_pend = TRUE; |
8971 | 892 rc = gaim_proxy_connect(gc->account, host, port, oscar_odc_callback, dim); |
8982 | 893 |
894 conv = gaim_conversation_new(GAIM_CONV_IM, dim->gc->account, d->sn); | |
895 tmp = g_strdup_printf(_("Attempting to connect to %s at %s:%hu for Direct IM."), d->sn, host, | |
896 port); | |
897 gaim_conversation_write(conv, NULL, tmp, GAIM_MESSAGE_SYSTEM, time(NULL)); | |
898 g_free(tmp); | |
8983 | 899 |
8971 | 900 g_free(host); |
901 if (rc < 0) { | |
8978 | 902 dim->gpc_pend = FALSE; |
8971 | 903 oscar_direct_im_disconnect(od, dim); |
904 destroy_direct_im_request(d); | |
905 return; | |
906 } | |
907 | |
908 destroy_direct_im_request(d); | |
909 | |
910 return; | |
911 } | |
912 | |
913 /* | |
914 * We have just established a socket with the other dude, so set up some handlers. | |
915 */ | |
916 static int gaim_odc_initiate(aim_session_t *sess, aim_frame_t *fr, ...) { | |
5575 | 917 GaimConnection *gc = sess->aux_data; |
7283 | 918 OscarData *od = (OscarData *)gc->proto_data; |
8733 | 919 GaimConversation *conv; |
8971 | 920 struct oscar_direct_im *dim; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
921 char buf[256]; |
8971 | 922 char *sn; |
923 va_list ap; | |
924 aim_conn_t *newconn, *listenerconn; | |
925 | |
926 va_start(ap, fr); | |
927 newconn = va_arg(ap, aim_conn_t *); | |
928 listenerconn = va_arg(ap, aim_conn_t *); | |
929 va_end(ap); | |
930 | |
931 aim_conn_close(listenerconn); | |
932 aim_conn_kill(sess, &listenerconn); | |
933 | |
934 sn = g_strdup(aim_odc_getsn(newconn)); | |
935 | |
936 gaim_debug_info("oscar", | |
937 "DirectIM: initiate success to %s\n", sn); | |
938 dim = oscar_direct_im_find(od, sn); | |
939 | |
940 conv = gaim_conversation_new(GAIM_CONV_IM, dim->gc->account, sn); | |
941 gaim_input_remove(dim->watcher); | |
942 dim->conn = newconn; | |
943 dim->watcher = gaim_input_add(dim->conn->fd, GAIM_INPUT_READ, oscar_callback, dim->conn); | |
944 dim->connected = TRUE; | |
945 g_snprintf(buf, sizeof buf, _("Direct IM with %s established"), sn); | |
946 g_free(sn); | |
947 gaim_conversation_write(conv, NULL, buf, GAIM_MESSAGE_SYSTEM, time(NULL)); | |
948 | |
949 aim_conn_addhandler(sess, newconn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIMINCOMING, gaim_odc_incoming, 0); | |
950 aim_conn_addhandler(sess, newconn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIMTYPING, gaim_odc_typing, 0); | |
951 aim_conn_addhandler(sess, newconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_IMAGETRANSFER, gaim_odc_update_ui, 0); | |
952 | |
953 return 1; | |
954 } | |
955 | |
956 /* | |
957 * This is called when each chunk of an image is received. It can be used to | |
958 * update a progress bar, or to eat lots of dry cat food. Wet cat food is | |
959 * nasty, you sicko. | |
960 */ | |
961 static int gaim_odc_update_ui(aim_session_t *sess, aim_frame_t *fr, ...) { | |
962 va_list ap; | |
963 char *sn; | |
964 double percent; | |
965 GaimConnection *gc = sess->aux_data; | |
966 OscarData *od = (OscarData *)gc->proto_data; | |
967 GaimConversation *c; | |
968 struct oscar_direct_im *dim; | |
969 | |
970 va_start(ap, fr); | |
971 sn = va_arg(ap, char *); | |
972 percent = va_arg(ap, double); | |
973 va_end(ap); | |
974 | |
975 if (!sn || !(dim = oscar_direct_im_find(od, sn))) | |
976 return 1; | |
977 if (dim->watcher) { | |
978 gaim_input_remove(dim->watcher); /* Otherwise, the callback will callback */ | |
979 /* The callback will callback? I don't get how that would happen here. */ | |
980 dim->watcher = 0; | |
981 } | |
982 | |
983 c = gaim_find_conversation_with_account(sn, gaim_connection_get_account(gc)); | |
984 if (c != NULL) | |
985 gaim_conversation_update_progress(c, percent); | |
986 dim->watcher = gaim_input_add(dim->conn->fd, GAIM_INPUT_READ, | |
987 oscar_callback, dim->conn); | |
988 | |
989 return 1; | |
990 } | |
991 | |
992 /* | |
993 * This is called after a direct IM has been received in its entirety. This | |
994 * function is passed a long chunk of data which contains the IM with any | |
995 * data chunks (images) appended to it. | |
996 * | |
997 * This function rips out all the data chunks and creates an imgstore for | |
998 * each one. In order to do this, it first goes through the IM and takes | |
999 * out all the IMG tags. When doing so, it rewrites the original IMG tag | |
1000 * with one compatible with the imgstore Gaim core code. For each one, we | |
1001 * then read in chunks of data from the end of the message and actually | |
1002 * create the img store using the given data. | |
1003 * | |
1004 * For somewhat easy reference, here's a sample message | |
1005 * (without the whitespace and asterisks): | |
1006 * | |
1007 * <HTML><BODY BGCOLOR="#ffffff"> | |
1008 * <FONT LANG="0"> | |
1009 * This is a really stupid picture:<BR> | |
1010 * <IMG SRC="Sample.jpg" ID="1" WIDTH="283" HEIGHT="212" DATASIZE="9894"><BR> | |
1011 * Yeah it is<BR> | |
1012 * Here is another one:<BR> | |
1013 * <IMG SRC="Soap Bubbles.bmp" ID="2" WIDTH="256" HEIGHT="256" DATASIZE="65978"> | |
1014 * </FONT> | |
1015 * </BODY></HTML> | |
1016 * <BINARY> | |
1017 * <DATA ID="1" SIZE="9894">datadatadatadata</DATA> | |
1018 * <DATA ID="2" SIZE="65978">datadatadatadata</DATA> | |
1019 * </BINARY> | |
1020 */ | |
1021 static int gaim_odc_incoming(aim_session_t *sess, aim_frame_t *fr, ...) { | |
1022 GaimConnection *gc = sess->aux_data; | |
1023 GaimConvImFlags imflags = 0; | |
1024 gchar *utf8; | |
1025 GString *newmsg = g_string_new(""); | |
1026 GSList *images = NULL; | |
1027 va_list ap; | |
1028 const char *sn, *msg, *msgend, *binary; | |
1029 size_t len; | |
1030 int encoding, isawaymsg; | |
1031 | |
1032 va_start(ap, fr); | |
1033 sn = va_arg(ap, const char *); | |
1034 msg = va_arg(ap, const char *); | |
1035 len = va_arg(ap, size_t); | |
1036 encoding = va_arg(ap, int); | |
1037 isawaymsg = va_arg(ap, int); | |
1038 va_end(ap); | |
1039 msgend = msg + len; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1040 |
8660 | 1041 gaim_debug_info("oscar", |
8971 | 1042 "Got DirectIM message from %s\n", sn); |
1043 | |
1044 if (isawaymsg) | |
1045 imflags |= GAIM_CONV_IM_AUTO_RESP; | |
1046 | |
1047 /* message has a binary trailer */ | |
1048 if ((binary = gaim_strcasestr(msg, "<binary>"))) { | |
1049 GData *attribs; | |
1050 const char *tmp, *start, *end, *last = NULL; | |
1051 | |
1052 tmp = msg; | |
1053 | |
1054 /* for each valid image tag... */ | |
1055 while (gaim_markup_find_tag("img", tmp, &start, &end, &attribs)) { | |
1056 const char *id, *src, *datasize; | |
1057 const char *tag = NULL, *data = NULL; | |
1058 size_t size; | |
1059 int imgid = 0; | |
1060 | |
1061 /* update the location of the last img tag */ | |
1062 last = end; | |
1063 | |
1064 /* grab attributes */ | |
1065 id = g_datalist_get_data(&attribs, "id"); | |
1066 src = g_datalist_get_data(&attribs, "src"); | |
1067 datasize = g_datalist_get_data(&attribs, "datasize"); | |
1068 | |
1069 /* if we have id & datasize, build the data tag */ | |
1070 if (id && datasize) | |
1071 tag = g_strdup_printf("<data id=\"%s\" size=\"%s\">", id, datasize); | |
1072 | |
1073 /* if we have a tag, find the start of the data */ | |
1074 if (tag && (data = gaim_strcasestr(binary, tag))) | |
1075 data += strlen(tag); | |
1076 | |
1077 /* check the data is here and store it */ | |
1078 if (data + (size = atoi(datasize)) <= msgend) | |
1079 imgid = gaim_imgstore_add(data, size, src); | |
1080 | |
1081 /* | |
1082 * XXX - The code below contains some calls to oscar_encoding_to_utf8 | |
1083 * The hardcoded "us-ascii" value REALLY needs to be removed. | |
1084 */ | |
1085 /* if we have a stored image... */ | |
1086 if (imgid) { | |
1087 /* append the message up to the tag */ | |
1088 utf8 = oscar_encoding_to_utf8("us-ascii", tmp, start - tmp); | |
1089 if (utf8 != NULL) { | |
1090 newmsg = g_string_append(newmsg, utf8); | |
1091 g_free(utf8); | |
1092 } | |
1093 | |
1094 /* write the new image tag */ | |
1095 g_string_append_printf(newmsg, "<IMG ID=\"%d\">", imgid); | |
1096 | |
1097 /* and record the image number */ | |
1098 images = g_slist_append(images, GINT_TO_POINTER(imgid)); | |
1099 } else { | |
1100 /* otherwise, copy up to the end of the tag */ | |
1101 utf8 = oscar_encoding_to_utf8("us-ascii", tmp, (end + 1) - tmp); | |
1102 if (utf8 != NULL) { | |
1103 newmsg = g_string_append(newmsg, utf8); | |
1104 g_free(utf8); | |
1105 } | |
1106 } | |
1107 | |
1108 /* clear the attribute list */ | |
1109 g_datalist_clear(&attribs); | |
1110 | |
1111 /* continue from the end of the tag */ | |
1112 tmp = end + 1; | |
1113 } | |
1114 | |
1115 /* append any remaining message data (without the > :-) */ | |
1116 if (last++ && (last < binary)) | |
1117 newmsg = g_string_append_len(newmsg, last, binary - last); | |
1118 | |
1119 /* set the flag if we caught any images */ | |
1120 if (images) | |
1121 imflags |= GAIM_CONV_IM_IMAGES; | |
1122 } else { | |
1123 g_string_append_len(newmsg, msg, len); | |
1124 } | |
1125 | |
1126 /* XXX - I imagine Paco-Paco will want to do some voodoo with the encoding here */ | |
1127 serv_got_im(gc, sn, newmsg->str, imflags, time(NULL)); | |
1128 | |
1129 /* free up the message */ | |
1130 g_string_free(newmsg, TRUE); | |
1131 | |
1132 /* unref any images we allocated */ | |
1133 if (images) { | |
1134 GSList *tmp; | |
1135 int id; | |
1136 | |
1137 for (tmp = images; tmp != NULL; tmp = tmp->next) { | |
1138 id = GPOINTER_TO_INT(tmp->data); | |
1139 gaim_imgstore_unref(id); | |
1140 } | |
1141 | |
1142 g_slist_free(images); | |
1143 } | |
1144 | |
1145 return 1; | |
1146 } | |
1147 | |
1148 static int gaim_odc_typing(aim_session_t *sess, aim_frame_t *fr, ...) { | |
1149 va_list ap; | |
1150 char *sn; | |
1151 int typing; | |
1152 GaimConnection *gc = sess->aux_data; | |
1153 | |
1154 va_start(ap, fr); | |
1155 sn = va_arg(ap, char *); | |
1156 typing = va_arg(ap, int); | |
1157 va_end(ap); | |
1158 | |
1159 if (typing == 0x0002) { | |
1160 /* I had to leave this. It's just too funny. It reminds me of my sister. */ | |
1161 gaim_debug_info("oscar", | |
1162 "ohmigod! %s has started typing (DirectIM). He's going to send you a message! *squeal*\n", sn); | |
1163 serv_got_typing(gc, sn, 0, GAIM_TYPING); | |
1164 } else if (typing == 0x0001) | |
1165 serv_got_typing(gc, sn, 0, GAIM_TYPED); | |
1166 else | |
1167 serv_got_typing_stopped(gc, sn); | |
1168 return 1; | |
1169 } | |
1170 | |
1171 static int gaim_odc_send_im(aim_session_t *sess, aim_conn_t *conn, const char *message, GaimConvImFlags imflags) { | |
1172 char *buf; | |
1173 size_t len; | |
1174 int ret; | |
1175 GString *msg = g_string_new("<HTML><BODY>"); | |
1176 GString *data = g_string_new("</BODY></HTML><BINARY>"); | |
1177 GData *attribs; | |
1178 const char *start, *end, *last; | |
1179 int oscar_id = 0; | |
1180 | |
1181 last = message; | |
1182 | |
1183 /* for each valid IMG tag... */ | |
1184 while (last && *last && gaim_markup_find_tag("img", last, &start, &end, &attribs)) { | |
1185 GaimStoredImage *image = NULL; | |
1186 const char *id; | |
1187 | |
1188 if (start - last) { | |
1189 g_string_append_len(msg, last, start - last); | |
1190 } | |
1191 | |
1192 id = g_datalist_get_data(&attribs, "id"); | |
1193 | |
1194 /* ... if it refers to a valid gaim image ... */ | |
1195 if (id && (image = gaim_imgstore_get(atoi(id)))) { | |
1196 /* ... append the message from start to the tag ... */ | |
9126 | 1197 unsigned long size = gaim_imgstore_get_size(image); |
8971 | 1198 const char *filename = gaim_imgstore_get_filename(image); |
1199 gpointer imgdata = gaim_imgstore_get_data(image); | |
1200 | |
1201 oscar_id++; | |
1202 | |
1203 /* ... insert a new img tag with the oscar id ... */ | |
1204 if (filename) | |
1205 g_string_append_printf(msg, | |
9126 | 1206 "<IMG SRC=\"%s\" ID=\"%d\" DATASIZE=\"%lu\">", |
8971 | 1207 filename, oscar_id, size); |
1208 else | |
1209 g_string_append_printf(msg, | |
9126 | 1210 "<IMG ID=\"%d\" DATASIZE=\"%lu\">", |
8971 | 1211 oscar_id, size); |
1212 | |
1213 /* ... and append the data to the binary section ... */ | |
9126 | 1214 g_string_append_printf(data, "<DATA ID=\"%d\" SIZE=\"%lu\">", |
8971 | 1215 oscar_id, size); |
1216 data = g_string_append_len(data, imgdata, size); | |
1217 data = g_string_append(data, "</DATA>"); | |
1218 } | |
1219 /* If the tag is invalid, skip it, thus no else here */ | |
1220 | |
1221 g_datalist_clear(&attribs); | |
1222 | |
1223 /* continue from the end of the tag */ | |
1224 last = end + 1; | |
1225 } | |
1226 | |
1227 /* append any remaining message data (without the > :-) */ | |
1228 if (last && *last) | |
1229 msg = g_string_append(msg, last); | |
1230 | |
1231 /* if we inserted any images in the binary section, append it */ | |
1232 if (oscar_id) { | |
1233 msg = g_string_append_len(msg, data->str, data->len); | |
1234 msg = g_string_append(msg, "</BINARY>"); | |
1235 } | |
1236 | |
1237 len = msg->len; | |
1238 buf = msg->str; | |
1239 g_string_free(msg, FALSE); | |
1240 g_string_free(data, TRUE); | |
1241 | |
1242 | |
1243 /* XXX - The last parameter below is the encoding. Let Paco-Paco do something with it. */ | |
1244 if (imflags & GAIM_CONV_IM_AUTO_RESP) | |
1245 ret = aim_odc_send_im(sess, conn, buf, len, 0, 1); | |
1246 else | |
1247 ret = aim_odc_send_im(sess, conn, buf, len, 0, 0); | |
1248 | |
1249 g_free(buf); | |
1250 | |
1251 return ret; | |
1252 } | |
1253 | |
1254 struct ask_do_dir_im { | |
1255 char *who; | |
1256 GaimConnection *gc; | |
1257 }; | |
1258 | |
1259 static void oscar_cancel_direct_im(struct ask_do_dir_im *data) { | |
1260 g_free(data->who); | |
1261 g_free(data); | |
1262 } | |
1263 | |
8983 | 1264 /* this function is used to initiate a direct im session with someone. |
1265 * we start listening on a port and send a request. they either connect | |
1266 * or send some kind of reply. If they can't connect, they ask us to | |
1267 * connect to them, and so we do that. | |
1268 * | |
1269 * this function will also get called if the other side initiate's a direct | |
1270 * im and we try to connect and fail. in that case cookie will not be null. | |
1271 * | |
1272 * note that cookie is an 8 byte string that isn't NULL terminated | |
1273 */ | |
1274 static void oscar_direct_im_initiate(GaimConnection *gc, const char *who, const char *cookie) { | |
8971 | 1275 OscarData *od; |
1276 struct oscar_direct_im *dim; | |
1277 int listenfd; | |
8982 | 1278 const char *ip; |
8971 | 1279 |
1280 od = (OscarData *)gc->proto_data; | |
1281 | |
8983 | 1282 dim = oscar_direct_im_find(od, who); |
8971 | 1283 if (dim) { |
1284 if (!(dim->connected)) { /* We'll free the old, unconnected dim, and start over */ | |
1285 oscar_direct_im_disconnect(od, dim); | |
1286 gaim_debug_info("oscar", | |
1287 "Gave up on old direct IM, trying again\n"); | |
1288 } else { | |
1289 gaim_notify_error(gc, NULL, "DirectIM already open.", NULL); | |
8980 | 1290 return; |
8971 | 1291 } |
1292 } | |
1293 dim = g_new0(struct oscar_direct_im, 1); | |
1294 dim->gc = gc; | |
8983 | 1295 g_snprintf(dim->name, sizeof dim->name, "%s", who); |
8971 | 1296 |
1297 listenfd = gaim_network_listen_range(5190, 5199); | |
8982 | 1298 ip = gaim_network_get_my_ip(od->conn ? od->conn->fd : -1); |
9455 | 1299 if (listenfd >= 0) |
1300 dim->conn = aim_odc_initiate(od->sess, who, listenfd, gaim_network_ip_atoi(ip), gaim_network_get_port_from_fd(listenfd), cookie); | |
8971 | 1301 if (dim->conn != NULL) { |
8982 | 1302 char *tmp; |
1303 GaimConversation *conv; | |
1304 | |
8971 | 1305 od->direct_ims = g_slist_append(od->direct_ims, dim); |
1306 dim->watcher = gaim_input_add(dim->conn->fd, GAIM_INPUT_READ, | |
1307 oscar_callback, dim->conn); | |
1308 aim_conn_addhandler(od->sess, dim->conn, AIM_CB_FAM_OFT, AIM_CB_OFT_DIRECTIM_ESTABLISHED, | |
1309 gaim_odc_initiate, 0); | |
8982 | 1310 |
8983 | 1311 conv = gaim_conversation_new(GAIM_CONV_IM, dim->gc->account, who); |
1312 tmp = g_strdup_printf(_("Asking %s to connect to us at %s:%hu for Direct IM."), who, ip, | |
8982 | 1313 gaim_network_get_port_from_fd(listenfd)); |
1314 gaim_conversation_write(conv, NULL, tmp, GAIM_MESSAGE_SYSTEM, time(NULL)); | |
1315 g_free(tmp); | |
8971 | 1316 } else { |
1317 gaim_notify_error(gc, NULL, _("Unable to open Direct IM"), NULL); | |
1318 oscar_direct_im_destroy(od, dim); | |
1319 } | |
8983 | 1320 } |
1321 | |
1322 static void oscar_direct_im(struct ask_do_dir_im *data) { | |
1323 GaimConnection *gc = data->gc; | |
1324 | |
1325 if (!g_list_find(gaim_connections_get_all(), gc)) { | |
1326 g_free(data->who); | |
1327 g_free(data); | |
1328 return; | |
1329 } | |
1330 | |
1331 oscar_direct_im_initiate(gc, data->who, NULL); | |
8971 | 1332 g_free(data->who); |
1333 g_free(data); | |
1334 } | |
1335 | |
1336 /* this is the right click menu cb thingy */ | |
9030 | 1337 static void oscar_ask_direct_im(GaimBlistNode *node, gpointer ignored) { |
1338 | |
1339 GaimBuddy *buddy; | |
1340 GaimConnection *gc; | |
8971 | 1341 gchar *buf; |
9030 | 1342 struct ask_do_dir_im *data; |
1343 | |
1344 g_return_if_fail(GAIM_BLIST_NODE_IS_BUDDY(node)); | |
1345 | |
1346 buddy = (GaimBuddy *) node; | |
1347 gc = gaim_account_get_connection(buddy->account); | |
1348 | |
1349 data = g_new0(struct ask_do_dir_im, 1); | |
1350 data->who = g_strdup(buddy->name); | |
8971 | 1351 data->gc = gc; |
9030 | 1352 buf = g_strdup_printf(_("You have selected to open a Direct IM connection with %s."), |
1353 buddy->name); | |
8971 | 1354 |
1355 gaim_request_action(gc, NULL, buf, | |
9030 | 1356 _("Because this reveals your IP address, it " |
1357 "may be considered a privacy risk. Do you " | |
1358 "wish to continue?"), | |
1359 0, data, 2, | |
1360 _("Connect"), G_CALLBACK(oscar_direct_im), | |
1361 _("Cancel"), G_CALLBACK(oscar_cancel_direct_im)); | |
8971 | 1362 g_free(buf); |
1363 } | |
1364 | |
1365 /***************************************************************************** | |
1366 * End scary direct im stuff | |
1367 *****************************************************************************/ | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1368 |
4617 | 1369 static void oscar_callback(gpointer data, gint source, GaimInputCondition condition) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1370 aim_conn_t *conn = (aim_conn_t *)data; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1371 aim_session_t *sess = aim_conn_getsess(conn); |
5575 | 1372 GaimConnection *gc = sess ? sess->aux_data : NULL; |
7283 | 1373 OscarData *od; |
2086 | 1374 |
1375 if (!gc) { | |
8660 | 1376 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1377 "oscar callback for closed connection (1).\n"); |
2086 | 1378 return; |
1379 } | |
1380 | |
7283 | 1381 od = (OscarData *)gc->proto_data; |
2086 | 1382 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
1383 if (!g_list_find(gaim_connections_get_all(), gc)) { |
2086 | 1384 /* oh boy. this is probably bad. i guess the only thing we |
1385 * can really do is return? */ | |
8660 | 1386 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1387 "oscar callback for closed connection (2).\n"); |
8660 | 1388 gaim_debug_misc("oscar", "gc = %p\n", gc); |
2086 | 1389 return; |
1390 } | |
1391 | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1392 if (condition & GAIM_INPUT_READ) { |
4617 | 1393 if (conn->type == AIM_CONN_TYPE_LISTENER) { |
8660 | 1394 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1395 "got information on rendezvous listener\n"); |
4617 | 1396 if (aim_handlerendconnect(od->sess, conn) < 0) { |
8660 | 1397 gaim_debug_error("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1398 "connection error (rendezvous listener)\n"); |
4617 | 1399 aim_conn_kill(od->sess, &conn); |
8446 | 1400 /* AAA - Don't we need to gaim_xfer_cancel here? --marv */ |
2086 | 1401 } |
1402 } else { | |
4617 | 1403 if (aim_get_command(od->sess, conn) >= 0) { |
1404 aim_rxdispatch(od->sess); | |
6029 | 1405 if (od->killme) { |
8660 | 1406 gaim_debug_error("oscar", "Waiting to be destroyed\n"); |
6029 | 1407 return; |
1408 } | |
2086 | 1409 } else { |
1410 if ((conn->type == AIM_CONN_TYPE_BOS) || | |
4617 | 1411 !(aim_getconn_type(od->sess, AIM_CONN_TYPE_BOS))) { |
8660 | 1412 gaim_debug_error("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1413 "major connection error\n"); |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
1414 gaim_connection_error(gc, _("Disconnected.")); |
2086 | 1415 } else if (conn->type == AIM_CONN_TYPE_CHAT) { |
1416 struct chat_connection *c = find_oscar_chat_by_conn(gc, conn); | |
9627 | 1417 GaimConversation *conv = gaim_find_chat(gc, c->id); |
5420 | 1418 char *buf; |
8660 | 1419 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1420 "disconnected from chat room %s\n", c->name); |
2086 | 1421 c->conn = NULL; |
1422 if (c->inpa > 0) | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1423 gaim_input_remove(c->inpa); |
2086 | 1424 c->inpa = 0; |
1425 c->fd = -1; | |
4617 | 1426 aim_conn_kill(od->sess, &conn); |
5420 | 1427 buf = g_strdup_printf(_("You have been disconnected from chat room %s."), c->name); |
9627 | 1428 if (conv) |
1429 gaim_conversation_write(conv, NULL, buf, GAIM_MESSAGE_ERROR, time(NULL)); | |
1430 else | |
1431 gaim_notify_error(gc, NULL, buf, NULL); | |
5420 | 1432 g_free(buf); |
2086 | 1433 } else if (conn->type == AIM_CONN_TYPE_CHATNAV) { |
4617 | 1434 if (od->cnpa > 0) |
1435 gaim_input_remove(od->cnpa); | |
1436 od->cnpa = 0; | |
8660 | 1437 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1438 "removing chatnav input watcher\n"); |
4617 | 1439 while (od->create_rooms) { |
1440 struct create_room *cr = od->create_rooms->data; | |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
1441 g_free(cr->name); |
4617 | 1442 od->create_rooms = |
1443 g_slist_remove(od->create_rooms, cr); | |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
1444 g_free(cr); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
1445 gaim_notify_error(gc, NULL, |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
1446 _("Chat is currently unavailable"), |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
1447 NULL); |
2086 | 1448 } |
4617 | 1449 aim_conn_kill(od->sess, &conn); |
2086 | 1450 } else if (conn->type == AIM_CONN_TYPE_AUTH) { |
4617 | 1451 if (od->paspa > 0) |
1452 gaim_input_remove(od->paspa); | |
1453 od->paspa = 0; | |
8660 | 1454 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1455 "removing authconn input watcher\n"); |
4617 | 1456 aim_conn_kill(od->sess, &conn); |
3694 | 1457 } else if (conn->type == AIM_CONN_TYPE_EMAIL) { |
4617 | 1458 if (od->emlpa > 0) |
1459 gaim_input_remove(od->emlpa); | |
1460 od->emlpa = 0; | |
8660 | 1461 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1462 "removing email input watcher\n"); |
4617 | 1463 aim_conn_kill(od->sess, &conn); |
4804 | 1464 } else if (conn->type == AIM_CONN_TYPE_ICON) { |
1465 if (od->icopa > 0) | |
1466 gaim_input_remove(od->icopa); | |
1467 od->icopa = 0; | |
8660 | 1468 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1469 "removing icon input watcher\n"); |
4804 | 1470 aim_conn_kill(od->sess, &conn); |
2086 | 1471 } else if (conn->type == AIM_CONN_TYPE_RENDEZVOUS) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1472 if (conn->subtype == AIM_CONN_SUBTYPE_OFT_DIRECTIM) |
4617 | 1473 gaim_odc_disconnect(od->sess, conn); |
1474 aim_conn_kill(od->sess, &conn); | |
2086 | 1475 } else { |
8660 | 1476 gaim_debug_error("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1477 "holy crap! generic connection error! %hu\n", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1478 conn->type); |
4617 | 1479 aim_conn_kill(od->sess, &conn); |
2086 | 1480 } |
1481 } | |
1482 } | |
1483 } | |
1484 } | |
1485 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1486 static void oscar_debug(aim_session_t *sess, int level, const char *format, va_list va) { |
5575 | 1487 GaimConnection *gc = sess->aux_data; |
7285 | 1488 gchar *s = g_strdup_vprintf(format, va); |
1489 gchar *buf; | |
1490 | |
1491 buf = g_strdup_printf("%s %d: %s", gaim_account_get_username(gaim_connection_get_account(gc)), level, s); | |
8660 | 1492 gaim_debug_info("oscar", buf); |
7285 | 1493 if (buf[strlen(buf)-1] != '\n') |
8660 | 1494 gaim_debug_info(NULL, "\n"); |
7285 | 1495 g_free(buf); |
2086 | 1496 g_free(s); |
1497 } | |
1498 | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1499 static void oscar_login_connect(gpointer data, gint source, GaimInputCondition cond) |
2086 | 1500 { |
5575 | 1501 GaimConnection *gc = data; |
7283 | 1502 OscarData *od; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1503 aim_session_t *sess; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1504 aim_conn_t *conn; |
2086 | 1505 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
1506 if (!g_list_find(gaim_connections_get_all(), gc)) { |
2086 | 1507 close(source); |
1508 return; | |
1509 } | |
1510 | |
4617 | 1511 od = gc->proto_data; |
1512 sess = od->sess; | |
2086 | 1513 conn = aim_getconn_type_all(sess, AIM_CONN_TYPE_AUTH); |
4366 | 1514 conn->fd = source; |
2086 | 1515 |
1516 if (source < 0) { | |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
1517 gaim_connection_error(gc, _("Couldn't connect to host")); |
2086 | 1518 return; |
1519 } | |
1520 | |
1521 aim_conn_completeconnect(sess, conn); | |
4617 | 1522 gc->inpa = gaim_input_add(conn->fd, GAIM_INPUT_READ, oscar_callback, conn); |
7282 | 1523 aim_request_login(sess, conn, gaim_account_get_username(gaim_connection_get_account(gc))); |
1524 | |
8660 | 1525 gaim_debug_info("oscar", |
7282 | 1526 "Screen name sent, waiting for response\n"); |
7283 | 1527 gaim_connection_update_progress(gc, _("Screen name sent"), 1, OSCAR_CONNECT_STEPS); |
8341 | 1528 ck[1] = 0x65; |
2086 | 1529 } |
1530 | |
5575 | 1531 static void oscar_login(GaimAccount *account) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1532 aim_session_t *sess; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1533 aim_conn_t *conn; |
5575 | 1534 GaimConnection *gc = gaim_account_get_connection(account); |
7283 | 1535 OscarData *od = gc->proto_data = g_new0(OscarData, 1); |
2086 | 1536 |
8660 | 1537 gaim_debug_misc("oscar", "oscar_login: gc = %p\n", gc); |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
1538 |
8437 | 1539 if (!aim_snvalid(gaim_account_get_username(account))) { |
1540 gchar *buf; | |
8590 | 1541 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."), gaim_account_get_username(account)); |
8437 | 1542 gaim_connection_error(gc, buf); |
1543 g_free(buf); | |
1544 } | |
1545 | |
5575 | 1546 if (isdigit(*(gaim_account_get_username(account)))) { |
4617 | 1547 od->icq = TRUE; |
2706
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
1548 } else { |
6622 | 1549 gc->flags |= GAIM_CONNECTION_HTML; |
1550 gc->flags |= GAIM_CONNECTION_AUTO_RESP; | |
2706
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
1551 } |
5836 | 1552 od->buddyinfo = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, oscar_free_buddyinfo); |
2086 | 1553 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1554 sess = g_new0(aim_session_t, 1); |
7285 | 1555 aim_session_init(sess, TRUE, 0); |
2086 | 1556 aim_setdebuggingcb(sess, oscar_debug); |
7282 | 1557 /* |
1558 * We need an immediate queue because we don't use a while-loop | |
1559 * to see if things need to be sent. | |
1560 */ | |
2086 | 1561 aim_tx_setenqueue(sess, AIM_TX_IMMEDIATE, NULL); |
4617 | 1562 od->sess = sess; |
2086 | 1563 sess->aux_data = gc; |
1564 | |
1565 conn = aim_newconn(sess, AIM_CONN_TYPE_AUTH, NULL); | |
1566 if (conn == NULL) { | |
8660 | 1567 gaim_debug_error("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1568 "internal connection error\n"); |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
1569 gaim_connection_error(gc, _("Unable to login to AIM")); |
2086 | 1570 return; |
1571 } | |
1572 | |
4649 | 1573 aim_conn_addhandler(sess, conn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNERR, gaim_connerr, 0); |
2086 | 1574 aim_conn_addhandler(sess, conn, 0x0017, 0x0007, gaim_parse_login, 0); |
1575 aim_conn_addhandler(sess, conn, 0x0017, 0x0003, gaim_parse_auth_resp, 0); | |
1576 | |
1577 conn->status |= AIM_CONN_STATUS_INPROGRESS; | |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5679
diff
changeset
|
1578 if (gaim_proxy_connect(account, gaim_account_get_string(account, "server", FAIM_LOGIN_SERVER), |
5575 | 1579 gaim_account_get_int(account, "port", FAIM_LOGIN_PORT), |
1580 oscar_login_connect, gc) < 0) { | |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
1581 gaim_connection_error(gc, _("Couldn't connect to host")); |
2086 | 1582 return; |
1583 } | |
7282 | 1584 |
7283 | 1585 gaim_connection_update_progress(gc, _("Connecting"), 0, OSCAR_CONNECT_STEPS); |
8341 | 1586 ck[0] = 0x5a; |
5575 | 1587 } |
1588 | |
1589 static void oscar_close(GaimConnection *gc) { | |
7283 | 1590 OscarData *od = (OscarData *)gc->proto_data; |
4617 | 1591 |
1592 while (od->oscar_chats) { | |
1593 struct chat_connection *n = od->oscar_chats->data; | |
2086 | 1594 if (n->inpa > 0) |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1595 gaim_input_remove(n->inpa); |
2086 | 1596 g_free(n->name); |
1597 g_free(n->show); | |
4617 | 1598 od->oscar_chats = g_slist_remove(od->oscar_chats, n); |
2086 | 1599 g_free(n); |
1600 } | |
4617 | 1601 while (od->direct_ims) { |
8971 | 1602 struct oscar_direct_im *n = od->direct_ims->data; |
1603 oscar_direct_im_destroy(od, n); | |
2086 | 1604 } |
4617 | 1605 /* BBB */ |
1606 while (od->file_transfers) { | |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
1607 GaimXfer *xfer; |
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
1608 xfer = (GaimXfer *)od->file_transfers->data; |
7805 | 1609 gaim_xfer_cancel_local(xfer); |
3630 | 1610 } |
4804 | 1611 while (od->requesticon) { |
1612 char *sn = od->requesticon->data; | |
1613 od->requesticon = g_slist_remove(od->requesticon, sn); | |
1614 free(sn); | |
1615 } | |
4738 | 1616 g_hash_table_destroy(od->buddyinfo); |
4617 | 1617 while (od->create_rooms) { |
1618 struct create_room *cr = od->create_rooms->data; | |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
1619 g_free(cr->name); |
4617 | 1620 od->create_rooms = g_slist_remove(od->create_rooms, cr); |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
1621 g_free(cr); |
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
1622 } |
4617 | 1623 if (od->email) |
1624 g_free(od->email); | |
1625 if (od->newp) | |
1626 g_free(od->newp); | |
1627 if (od->oldp) | |
1628 g_free(od->oldp); | |
2086 | 1629 if (gc->inpa > 0) |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1630 gaim_input_remove(gc->inpa); |
4617 | 1631 if (od->cnpa > 0) |
1632 gaim_input_remove(od->cnpa); | |
1633 if (od->paspa > 0) | |
1634 gaim_input_remove(od->paspa); | |
1635 if (od->emlpa > 0) | |
1636 gaim_input_remove(od->emlpa); | |
4804 | 1637 if (od->icopa > 0) |
1638 gaim_input_remove(od->icopa); | |
6907 | 1639 if (od->icontimer > 0) |
8287
ef881489396e
[gaim-migrate @ 9011]
Christian Hammond <chipx86@chipx86.com>
parents:
8273
diff
changeset
|
1640 gaim_timeout_remove(od->icontimer); |
8341 | 1641 if (od->getblisttimer > 0) |
8287
ef881489396e
[gaim-migrate @ 9011]
Christian Hammond <chipx86@chipx86.com>
parents:
8273
diff
changeset
|
1642 gaim_timeout_remove(od->getblisttimer); |
8341 | 1643 if (od->getinfotimer > 0) |
1644 gaim_timeout_remove(od->getinfotimer); | |
4617 | 1645 aim_session_kill(od->sess); |
1646 g_free(od->sess); | |
1647 od->sess = NULL; | |
2086 | 1648 g_free(gc->proto_data); |
1649 gc->proto_data = NULL; | |
8660 | 1650 gaim_debug_info("oscar", "Signed off.\n"); |
2086 | 1651 } |
1652 | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1653 static void oscar_bos_connect(gpointer data, gint source, GaimInputCondition cond) { |
5575 | 1654 GaimConnection *gc = data; |
7283 | 1655 OscarData *od; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1656 aim_session_t *sess; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1657 aim_conn_t *bosconn; |
2086 | 1658 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
1659 if (!g_list_find(gaim_connections_get_all(), gc)) { |
2086 | 1660 close(source); |
1661 return; | |
1662 } | |
1663 | |
4617 | 1664 od = gc->proto_data; |
1665 sess = od->sess; | |
1666 bosconn = od->conn; | |
4366 | 1667 bosconn->fd = source; |
2086 | 1668 |
1669 if (source < 0) { | |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
1670 gaim_connection_error(gc, _("Could Not Connect")); |
2086 | 1671 return; |
1672 } | |
1673 | |
1674 aim_conn_completeconnect(sess, bosconn); | |
4617 | 1675 gc->inpa = gaim_input_add(bosconn->fd, GAIM_INPUT_READ, oscar_callback, bosconn); |
7283 | 1676 |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
1677 gaim_connection_update_progress(gc, |
7283 | 1678 _("Connection established, cookie sent"), 4, OSCAR_CONNECT_STEPS); |
8341 | 1679 ck[4] = 0x61; |
2086 | 1680 } |
1681 | |
4617 | 1682 /* BBB */ |
4656 | 1683 /* |
1684 * This little area in oscar.c is the nexus of file transfer code, | |
1685 * so I wrote a little explanation of what happens. I am such a | |
1686 * ninja. | |
1687 * | |
1688 * The series of events for a file send is: | |
1689 * -Create xfer and call gaim_xfer_request (this happens in oscar_ask_sendfile) | |
8735
92cbf9713795
[gaim-migrate @ 9490]
Christian Hammond <chipx86@chipx86.com>
parents:
8733
diff
changeset
|
1690 * -User chooses a file and oscar_xfer_init is called. It establishes a |
4656 | 1691 * listening socket, then asks the remote user to connect to us (and |
1692 * gives them the file name, port, IP, etc.) | |
1693 * -They connect to us and we send them an AIM_CB_OFT_PROMPT (this happens | |
1694 * in oscar_sendfile_estblsh) | |
1695 * -They send us an AIM_CB_OFT_ACK and then we start sending data | |
1696 * -When we finish, they send us an AIM_CB_OFT_DONE and they close the | |
1697 * connection. | |
1698 * -We get drunk because file transfer kicks ass. | |
1699 * | |
1700 * The series of events for a file receive is: | |
1701 * -Create xfer and call gaim_xfer request (this happens in incomingim_chan2) | |
1702 * -Gaim user selects file to name and location to save file to and | |
1703 * oscar_xfer_init is called | |
1704 * -It connects to the remote user using the IP they gave us earlier | |
1705 * -After connecting, they send us an AIM_CB_OFT_PROMPT. In reply, we send | |
1706 * them an AIM_CB_OFT_ACK. | |
1707 * -They begin to send us lots of raw data. | |
1708 * -When they finish sending data we send an AIM_CB_OFT_DONE and then close | |
8735
92cbf9713795
[gaim-migrate @ 9490]
Christian Hammond <chipx86@chipx86.com>
parents:
8733
diff
changeset
|
1709 * the connection. |
4656 | 1710 */ |
1711 static void oscar_sendfile_connected(gpointer data, gint source, GaimInputCondition condition); | |
1712 | |
8446 | 1713 /* |
1714 * Miscellaneous xfer functions | |
1715 */ | |
1716 static GaimXfer *oscar_find_xfer_by_cookie(GSList *fts, const fu8_t *ck) | |
4656 | 1717 { |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
1718 GaimXfer *xfer; |
5146 | 1719 struct aim_oft_info *oft_info; |
4656 | 1720 |
1721 while (fts) { | |
1722 xfer = fts->data; | |
5146 | 1723 oft_info = xfer->data; |
1724 | |
8446 | 1725 if (oft_info && !memcmp(ck, oft_info->cookie, 8)) |
4656 | 1726 return xfer; |
1727 | |
1728 fts = g_slist_next(fts); | |
1729 } | |
1730 | |
1731 return NULL; | |
1732 } | |
1733 | |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
1734 static GaimXfer *oscar_find_xfer_by_conn(GSList *fts, aim_conn_t *conn) |
4656 | 1735 { |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
1736 GaimXfer *xfer; |
5146 | 1737 struct aim_oft_info *oft_info; |
4656 | 1738 |
1739 while (fts) { | |
1740 xfer = fts->data; | |
5146 | 1741 oft_info = xfer->data; |
1742 | |
1743 if (oft_info && (conn == oft_info->conn)) | |
4656 | 1744 return xfer; |
1745 | |
1746 fts = g_slist_next(fts); | |
1747 } | |
1748 | |
1749 return NULL; | |
1750 } | |
1751 | |
8446 | 1752 static void oscar_xfer_end(GaimXfer *xfer) |
1753 { | |
1754 struct aim_oft_info *oft_info = xfer->data; | |
1755 GaimConnection *gc = oft_info->sess->aux_data; | |
1756 OscarData *od = gc->proto_data; | |
1757 | |
8660 | 1758 gaim_debug_info("oscar", "AAA - in oscar_xfer_end\n"); |
8446 | 1759 |
1760 if (gaim_xfer_get_type(xfer) == GAIM_XFER_RECEIVE) { | |
1761 oft_info->fh.nrecvd = gaim_xfer_get_bytes_sent(xfer); | |
1762 aim_oft_sendheader(oft_info->sess, AIM_CB_OFT_DONE, oft_info); | |
1763 } | |
1764 | |
1765 aim_conn_kill(oft_info->sess, &oft_info->conn); | |
1766 aim_oft_destroyinfo(oft_info); | |
1767 xfer->data = NULL; | |
1768 od->file_transfers = g_slist_remove(od->file_transfers, xfer); | |
1769 } | |
1770 | |
1771 /* | |
1772 * xfer functions used when receiving files | |
1773 */ | |
1774 | |
1775 static void oscar_xfer_init_recv(GaimXfer *xfer) | |
1776 { | |
1777 struct aim_oft_info *oft_info = xfer->data; | |
1778 GaimConnection *gc = oft_info->sess->aux_data; | |
1779 OscarData *od = gc->proto_data; | |
1780 | |
8660 | 1781 gaim_debug_info("oscar", "AAA - in oscar_xfer_recv_init\n"); |
8446 | 1782 |
1783 oft_info->conn = aim_newconn(od->sess, AIM_CONN_TYPE_RENDEZVOUS, NULL); | |
1784 if (oft_info->conn) { | |
1785 oft_info->conn->subtype = AIM_CONN_SUBTYPE_OFT_SENDFILE; | |
1786 aim_conn_addhandler(od->sess, oft_info->conn, AIM_CB_FAM_OFT, AIM_CB_OFT_PROMPT, oscar_sendfile_prompt, 0); | |
1787 oft_info->conn->fd = xfer->fd = gaim_proxy_connect(gaim_connection_get_account(gc), | |
1788 xfer->remote_ip, xfer->remote_port, oscar_sendfile_connected, xfer); | |
1789 if (xfer->fd == -1) { | |
1790 gaim_xfer_error(GAIM_XFER_RECEIVE, xfer->who, | |
1791 _("Unable to establish file descriptor.")); | |
1792 gaim_xfer_cancel_local(xfer); | |
1793 } | |
1794 } else { | |
1795 gaim_xfer_error(GAIM_XFER_RECEIVE, xfer->who, | |
1796 _("Unable to create new connection.")); | |
1797 gaim_xfer_cancel_local(xfer); | |
1798 /* Try a different port? Ask them to connect to us? /join #gaim and whine? */ | |
1799 } | |
1800 | |
1801 } | |
1802 | |
1803 static void oscar_xfer_cancel_recv(GaimXfer *xfer) | |
1804 { | |
1805 struct aim_oft_info *oft_info = xfer->data; | |
1806 GaimConnection *gc = oft_info->sess->aux_data; | |
1807 OscarData *od = gc->proto_data; | |
1808 | |
8660 | 1809 gaim_debug_info("oscar", "AAA - in oscar_xfer_cancel_recv\n"); |
8446 | 1810 |
1811 aim_im_sendch2_sendfile_cancel(oft_info->sess, oft_info); | |
1812 | |
1813 aim_conn_kill(oft_info->sess, &oft_info->conn); | |
1814 aim_oft_destroyinfo(oft_info); | |
1815 xfer->data = NULL; | |
1816 od->file_transfers = g_slist_remove(od->file_transfers, xfer); | |
1817 } | |
1818 | |
1819 static void oscar_xfer_ack_recv(GaimXfer *xfer, const char *buffer, size_t size) | |
1820 { | |
1821 struct aim_oft_info *oft_info = xfer->data; | |
1822 | |
1823 /* Update our rolling checksum. Like Walmart, yo. */ | |
1824 oft_info->fh.recvcsum = aim_oft_checksum_chunk(buffer, size, oft_info->fh.recvcsum); | |
1825 } | |
1826 | |
1827 /* | |
1828 * xfer functions used when sending files | |
1829 */ | |
1830 | |
1831 static void oscar_xfer_init_send(GaimXfer *xfer) | |
1832 { | |
1833 struct aim_oft_info *oft_info = xfer->data; | |
1834 GaimConnection *gc = oft_info->sess->aux_data; | |
1835 OscarData *od = gc->proto_data; | |
1836 int listenfd; | |
1837 | |
8660 | 1838 gaim_debug_info("oscar", "AAA - in oscar_xfer_send_init\n"); |
8446 | 1839 |
1840 xfer->filename = g_path_get_basename(xfer->local_filename); | |
1841 strncpy(oft_info->fh.name, xfer->filename, 64); | |
1842 oft_info->fh.name[63] = '\0'; | |
1843 oft_info->fh.totsize = gaim_xfer_get_size(xfer); | |
1844 oft_info->fh.size = gaim_xfer_get_size(xfer); | |
1845 oft_info->fh.checksum = aim_oft_checksum_file(xfer->local_filename); | |
1846 | |
1847 /* Create a listening socket and an associated libfaim conn */ | |
1848 if ((listenfd = gaim_network_listen_range(5190, 5199)) < 0) { | |
1849 gaim_xfer_cancel_local(xfer); | |
1850 return; | |
1851 } | |
1852 xfer->local_port = gaim_network_get_port_from_fd(listenfd); | |
1853 oft_info->port = xfer->local_port; | |
1854 if (aim_sendfile_listen(od->sess, oft_info, listenfd) != 0) { | |
1855 gaim_xfer_cancel_local(xfer); | |
1856 return; | |
1857 } | |
8660 | 1858 gaim_debug_misc("oscar", |
8446 | 1859 "port is %hu, ip is %s\n", |
1860 xfer->local_port, oft_info->clientip); | |
1861 if (oft_info->conn) { | |
1862 xfer->watcher = gaim_input_add(oft_info->conn->fd, GAIM_INPUT_READ, oscar_callback, oft_info->conn); | |
1863 aim_im_sendch2_sendfile_ask(od->sess, oft_info); | |
1864 aim_conn_addhandler(od->sess, oft_info->conn, AIM_CB_FAM_OFT, AIM_CB_OFT_ESTABLISHED, oscar_sendfile_estblsh, 0); | |
1865 } else { | |
1866 gaim_xfer_error(GAIM_XFER_SEND, xfer->who, | |
1867 _("Unable to establish listener socket.")); | |
1868 gaim_xfer_cancel_local(xfer); | |
1869 } | |
1870 } | |
1871 | |
1872 static void oscar_xfer_cancel_send(GaimXfer *xfer) | |
1873 { | |
1874 struct aim_oft_info *oft_info = xfer->data; | |
1875 GaimConnection *gc = oft_info->sess->aux_data; | |
1876 OscarData *od = gc->proto_data; | |
1877 | |
8660 | 1878 gaim_debug_info("oscar", "AAA - in oscar_xfer_cancel_send\n"); |
8446 | 1879 |
1880 aim_im_sendch2_sendfile_cancel(oft_info->sess, oft_info); | |
1881 | |
1882 aim_conn_kill(oft_info->sess, &oft_info->conn); | |
1883 aim_oft_destroyinfo(oft_info); | |
1884 xfer->data = NULL; | |
1885 od->file_transfers = g_slist_remove(od->file_transfers, xfer); | |
1886 } | |
1887 | |
1888 static void oscar_xfer_ack_send(GaimXfer *xfer, const char *buffer, size_t size) | |
1889 { | |
1890 struct aim_oft_info *oft_info = xfer->data; | |
1891 | |
1892 /* I'm not sure I like how we do this. --marv | |
1893 * I do. AIM file transfers aren't really meant to be thought | |
1894 * of as a transferring just a single file. The rendezvous | |
1895 * establishes a connection between two computers, and then | |
1896 * those computers can use the same connection for transferring | |
1897 * multiple files. So we don't want the Gaim core up and closing | |
1898 * the socket all willy-nilly. We want to do that in the oscar | |
1899 * prpl, whenever one side or the other says they're finished | |
1900 * using the connection. There might be a better way to intercept | |
1901 * the socket from the core, however... --KingAnt | |
1902 */ | |
1903 | |
1904 /* | |
1905 * If we're done sending, intercept the socket from the core ft code | |
1906 * and wait for the other guy to send the "done" OFT packet. | |
1907 */ | |
1908 if (gaim_xfer_get_bytes_remaining(xfer) <= 0) { | |
1909 gaim_input_remove(xfer->watcher); | |
1910 xfer->watcher = gaim_input_add(xfer->fd, GAIM_INPUT_READ, oscar_callback, oft_info->conn); | |
1911 xfer->fd = 0; | |
1912 gaim_xfer_set_completed(xfer, TRUE); | |
1913 } | |
1914 } | |
1915 | |
9466 | 1916 static gboolean oscar_can_receive_file(GaimConnection *gc, const char *who) { |
1917 gboolean can_receive = FALSE; | |
1918 OscarData *od = gc->proto_data; | |
1919 | |
1920 if (!od->icq) { | |
1921 aim_userinfo_t *userinfo; | |
1922 userinfo = aim_locate_finduserinfo(od->sess, who); | |
1923 if (userinfo && userinfo->capabilities & AIM_CAPS_SENDFILE) | |
1924 can_receive = TRUE; | |
1925 } | |
1926 | |
1927 return can_receive; | |
1928 } | |
1929 | |
1930 static void oscar_send_file(GaimConnection *gc, const char *who, const char *file) { | |
9030 | 1931 |
1932 OscarData *od; | |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
1933 GaimXfer *xfer; |
5146 | 1934 struct aim_oft_info *oft_info; |
8231
f50c059b6384
[gaim-migrate @ 8954]
Christian Hammond <chipx86@chipx86.com>
parents:
8227
diff
changeset
|
1935 const char *ip; |
3752 | 1936 |
9030 | 1937 od = (OscarData *)gc->proto_data; |
1938 | |
4617 | 1939 /* You want to send a file to someone else, you're so generous */ |
1940 | |
1941 /* Build the file transfer handle */ | |
9466 | 1942 xfer = gaim_xfer_new(gc->account, GAIM_XFER_SEND, who); |
4617 | 1943 |
5146 | 1944 /* Create the oscar-specific data */ |
8838 | 1945 ip = gaim_network_get_my_ip(od->conn ? od->conn->fd : -1); |
9466 | 1946 oft_info = aim_oft_createinfo(od->sess, NULL, who, ip, 0, 0, 0, NULL); |
5146 | 1947 xfer->data = oft_info; |
1948 | |
4617 | 1949 /* Setup our I/O op functions */ |
8446 | 1950 gaim_xfer_set_init_fnc(xfer, oscar_xfer_init_send); |
4617 | 1951 gaim_xfer_set_end_fnc(xfer, oscar_xfer_end); |
4675
3145c5c45877
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4666
diff
changeset
|
1952 gaim_xfer_set_cancel_send_fnc(xfer, oscar_xfer_cancel_send); |
8446 | 1953 gaim_xfer_set_request_denied_fnc(xfer, oscar_xfer_cancel_send); |
1954 gaim_xfer_set_ack_fnc(xfer, oscar_xfer_ack_send); | |
4617 | 1955 |
1956 /* Keep track of this transfer for later */ | |
1957 od->file_transfers = g_slist_append(od->file_transfers, xfer); | |
1958 | |
1959 /* Now perform the request */ | |
9466 | 1960 if (file) |
1961 gaim_xfer_request_accepted(xfer, file); | |
1962 else | |
1963 gaim_xfer_request(xfer); | |
3630 | 1964 } |
1965 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1966 static int gaim_parse_auth_resp(aim_session_t *sess, aim_frame_t *fr, ...) { |
6029 | 1967 GaimConnection *gc = sess->aux_data; |
7283 | 1968 OscarData *od = gc->proto_data; |
6029 | 1969 GaimAccount *account = gc->account; |
1970 aim_conn_t *bosconn; | |
1971 char *host; int port; | |
1972 int i, rc; | |
2086 | 1973 va_list ap; |
2704 | 1974 struct aim_authresp_info *info; |
6029 | 1975 |
5575 | 1976 port = gaim_account_get_int(account, "port", FAIM_LOGIN_PORT); |
2086 | 1977 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
1978 va_start(ap, fr); |
2704 | 1979 info = va_arg(ap, struct aim_authresp_info *); |
2086 | 1980 va_end(ap); |
1981 | |
8660 | 1982 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
1983 "inside auth_resp (Screen name: %s)\n", info->sn); |
2704 | 1984 |
4293 | 1985 if (info->errorcode || !info->bosip || !info->cookielen || !info->cookie) { |
4056 | 1986 char buf[256]; |
2704 | 1987 switch (info->errorcode) { |
2086 | 1988 case 0x05: |
1989 /* Incorrect nick/password */ | |
6498 | 1990 gc->wants_to_die = TRUE; |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
1991 gaim_connection_error(gc, _("Incorrect nickname or password.")); |
2086 | 1992 break; |
1993 case 0x11: | |
1994 /* Suspended account */ | |
6498 | 1995 gc->wants_to_die = TRUE; |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
1996 gaim_connection_error(gc, _("Your account is currently suspended.")); |
2086 | 1997 break; |
3498 | 1998 case 0x14: |
1999 /* service temporarily unavailable */ | |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
2000 gaim_connection_error(gc, _("The AOL Instant Messenger service is temporarily unavailable.")); |
3498 | 2001 break; |
2086 | 2002 case 0x18: |
2003 /* connecting too frequently */ | |
6498 | 2004 gc->wants_to_die = TRUE; |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
2005 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 | 2006 break; |
2007 case 0x1c: | |
2008 /* client too old */ | |
6498 | 2009 gc->wants_to_die = TRUE; |
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6350
diff
changeset
|
2010 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
|
2011 gaim_connection_error(gc, buf); |
2086 | 2012 break; |
2013 default: | |
6623 | 2014 gaim_connection_error(gc, _("Authentication failed")); |
2086 | 2015 break; |
2016 } | |
8660 | 2017 gaim_debug_error("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2018 "Login Error Code 0x%04hx\n", info->errorcode); |
8660 | 2019 gaim_debug_error("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2020 "Error URL: %s\n", info->errorurl); |
2086 | 2021 od->killme = TRUE; |
2022 return 1; | |
2023 } | |
2024 | |
2025 | |
8660 | 2026 gaim_debug_misc("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2027 "Reg status: %hu\n", info->regstatus); |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2028 |
2704 | 2029 if (info->email) { |
8660 | 2030 gaim_debug_misc("oscar", "Email: %s\n", info->email); |
2086 | 2031 } else { |
8660 | 2032 gaim_debug_misc("oscar", "Email is NULL\n"); |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2033 } |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2034 |
8660 | 2035 gaim_debug_misc("oscar", "BOSIP: %s\n", info->bosip); |
2036 gaim_debug_info("oscar", | |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2037 "Closing auth connection...\n"); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2038 aim_conn_kill(sess, &fr->conn); |
2086 | 2039 |
2040 bosconn = aim_newconn(sess, AIM_CONN_TYPE_BOS, NULL); | |
2041 if (bosconn == NULL) { | |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
2042 gaim_connection_error(gc, _("Internal Error")); |
2086 | 2043 od->killme = TRUE; |
2044 return 0; | |
2045 } | |
2046 | |
4649 | 2047 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNERR, gaim_connerr, 0); |
2675 | 2048 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNINITDONE, conninitdone_bos, 0); |
2086 | 2049 aim_conn_addhandler(sess, bosconn, 0x0009, 0x0003, gaim_bosrights, 0); |
2050 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_ACK, AIM_CB_ACK_ACK, NULL, 0); | |
2051 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_GEN, AIM_CB_GEN_REDIRECT, gaim_handle_redirect, 0); | |
2993 | 2052 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_LOC, AIM_CB_LOC_RIGHTSINFO, gaim_parse_locaterights, 0); |
2086 | 2053 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_BUD, AIM_CB_BUD_RIGHTSINFO, gaim_parse_buddyrights, 0); |
2054 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_BUD, AIM_CB_BUD_ONCOMING, gaim_parse_oncoming, 0); | |
2055 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_BUD, AIM_CB_BUD_OFFGOING, gaim_parse_offgoing, 0); | |
2056 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_INCOMING, gaim_parse_incoming_im, 0); | |
2057 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_LOC, AIM_CB_LOC_ERROR, gaim_parse_locerr, 0); | |
2058 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_MISSEDCALL, gaim_parse_misses, 0); | |
3212 | 2059 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_CLIENTAUTORESP, gaim_parse_clientauto, 0); |
2086 | 2060 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_GEN, AIM_CB_GEN_RATECHANGE, gaim_parse_ratechange, 0); |
2061 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_GEN, AIM_CB_GEN_EVIL, gaim_parse_evilnotify, 0); | |
2062 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_LOK, AIM_CB_LOK_ERROR, gaim_parse_searcherror, 0); | |
2063 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_LOK, 0x0003, gaim_parse_searchreply, 0); | |
2064 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_ERROR, gaim_parse_msgerr, 0); | |
3595 | 2065 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_MTN, gaim_parse_mtn, 0); |
7011 | 2066 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_LOC, AIM_CB_LOC_USERINFO, gaim_parse_userinfo, 0); |
8341 | 2067 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_LOC, AIM_CB_LOC_REQUESTINFOTIMEOUT, gaim_reqinfo_timeout, 0); |
2086 | 2068 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_MSG, AIM_CB_MSG_ACK, gaim_parse_msgack, 0); |
2069 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
|
2070 aim_conn_addhandler(sess, bosconn, 0x0004, 0x0005, gaim_icbm_param_info, 0); |
2086 | 2071 aim_conn_addhandler(sess, bosconn, 0x0001, 0x0001, gaim_parse_genericerr, 0); |
2072 aim_conn_addhandler(sess, bosconn, 0x0003, 0x0001, gaim_parse_genericerr, 0); | |
2073 aim_conn_addhandler(sess, bosconn, 0x0009, 0x0001, gaim_parse_genericerr, 0); | |
2074 aim_conn_addhandler(sess, bosconn, 0x0001, 0x001f, gaim_memrequest, 0); | |
2507
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
2075 aim_conn_addhandler(sess, bosconn, 0x0001, 0x000f, gaim_selfinfo, 0); |
5844 | 2076 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
|
2077 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
|
2078 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
|
2079 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_POP, 0x0002, gaim_popup, 0); |
4759 | 2080 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_ICQ, AIM_CB_ICQ_ALIAS, gaim_icqalias, 0); |
4624 | 2081 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_ICQ, AIM_CB_ICQ_INFO, gaim_icqinfo, 0); |
4230 | 2082 #ifndef NOSSI |
4642 | 2083 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_ERROR, gaim_ssi_parseerr, 0); |
2991 | 2084 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_RIGHTSINFO, gaim_ssi_parserights, 0); |
2085 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_LIST, gaim_ssi_parselist, 0); | |
2086 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_NOLIST, gaim_ssi_parselist, 0); | |
4230 | 2087 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_SRVACK, gaim_ssi_parseack, 0); |
8227 | 2088 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_ADD, gaim_ssi_parseadd, 0); |
4230 | 2089 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_RECVAUTH, gaim_ssi_authgiven, 0); |
2090 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_RECVAUTHREQ, gaim_ssi_authrequest, 0); | |
2091 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_RECVAUTHREP, gaim_ssi_authreply, 0); | |
2092 aim_conn_addhandler(sess, bosconn, AIM_CB_FAM_SSI, AIM_CB_SSI_ADDED, gaim_ssi_gotadded, 0); | |
2093 #endif | |
4508
4c40fccbd7c9
[gaim-migrate @ 4784]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
2094 |
7283 | 2095 od->conn = bosconn; |
2704 | 2096 for (i = 0; i < (int)strlen(info->bosip); i++) { |
2097 if (info->bosip[i] == ':') { | |
2098 port = atoi(&(info->bosip[i+1])); | |
2086 | 2099 break; |
2100 } | |
2101 } | |
2704 | 2102 host = g_strndup(info->bosip, i); |
2086 | 2103 bosconn->status |= AIM_CONN_STATUS_INPROGRESS; |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5679
diff
changeset
|
2104 rc = gaim_proxy_connect(gc->account, host, port, oscar_bos_connect, gc); |
2086 | 2105 g_free(host); |
4366 | 2106 if (rc < 0) { |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
2107 gaim_connection_error(gc, _("Could Not Connect")); |
2086 | 2108 od->killme = TRUE; |
2109 return 0; | |
2110 } | |
4293 | 2111 aim_sendcookie(sess, bosconn, info->cookielen, info->cookie); |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
2112 gaim_input_remove(gc->inpa); |
2704 | 2113 |
7283 | 2114 gaim_connection_update_progress(gc, _("Received authorization"), 3, OSCAR_CONNECT_STEPS); |
8341 | 2115 ck[3] = 0x64; |
7282 | 2116 |
2086 | 2117 return 1; |
2118 } | |
2119 | |
7285 | 2120 /* XXX - Should use gaim_url_fetch for the below stuff */ |
2086 | 2121 struct pieceofcrap { |
5575 | 2122 GaimConnection *gc; |
2086 | 2123 unsigned long offset; |
2124 unsigned long len; | |
2125 char *modname; | |
2126 int fd; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2127 aim_conn_t *conn; |
2086 | 2128 unsigned int inpa; |
2129 }; | |
2130 | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
2131 static void damn_you(gpointer data, gint source, GaimInputCondition c) |
2086 | 2132 { |
2133 struct pieceofcrap *pos = data; | |
7283 | 2134 OscarData *od = pos->gc->proto_data; |
2086 | 2135 char in = '\0'; |
2136 int x = 0; | |
2137 unsigned char m[17]; | |
2138 | |
2139 while (read(pos->fd, &in, 1) == 1) { | |
2140 if (in == '\n') | |
2141 x++; | |
2142 else if (in != '\r') | |
2143 x = 0; | |
2144 if (x == 2) | |
2145 break; | |
2146 in = '\0'; | |
2147 } | |
2148 if (in != '\n') { | |
4056 | 2149 char buf[256]; |
2150 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
|
2151 "this is fixed. Check %s for updates."), GAIM_WEBSITE); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2152 gaim_notify_warning(pos->gc, NULL, |
7422 | 2153 _("Gaim was unable to get a valid AIM login hash."), |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2154 buf); |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
2155 gaim_input_remove(pos->inpa); |
2086 | 2156 close(pos->fd); |
2157 g_free(pos); | |
2158 return; | |
2159 } | |
2160 read(pos->fd, m, 16); | |
2161 m[16] = '\0'; | |
8660 | 2162 gaim_debug_misc("oscar", "Sending hash: "); |
2086 | 2163 for (x = 0; x < 16; x++) |
8660 | 2164 gaim_debug_misc(NULL, "%02hhx ", (unsigned char)m[x]); |
2165 | |
2166 gaim_debug_misc(NULL, "\n"); | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
2167 gaim_input_remove(pos->inpa); |
2086 | 2168 close(pos->fd); |
2169 aim_sendmemblock(od->sess, pos->conn, 0, 16, m, AIM_SENDMEMBLOCK_FLAG_ISHASH); | |
2170 g_free(pos); | |
2171 } | |
2172 | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
2173 static void straight_to_hell(gpointer data, gint source, GaimInputCondition cond) { |
2086 | 2174 struct pieceofcrap *pos = data; |
5420 | 2175 gchar *buf; |
2086 | 2176 |
4366 | 2177 pos->fd = source; |
2178 | |
2086 | 2179 if (source < 0) { |
5420 | 2180 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
|
2181 "this is fixed. Check %s for updates."), GAIM_WEBSITE); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2182 gaim_notify_warning(pos->gc, NULL, |
7422 | 2183 _("Gaim was unable to get a valid AIM login hash."), |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2184 buf); |
5420 | 2185 g_free(buf); |
2086 | 2186 if (pos->modname) |
2187 g_free(pos->modname); | |
2188 g_free(pos); | |
2189 return; | |
2190 } | |
2191 | |
5420 | 2192 buf = g_strdup_printf("GET " AIMHASHDATA "?offset=%ld&len=%ld&modname=%s HTTP/1.0\n\n", |
2086 | 2193 pos->offset, pos->len, pos->modname ? pos->modname : ""); |
2194 write(pos->fd, buf, strlen(buf)); | |
5420 | 2195 g_free(buf); |
2086 | 2196 if (pos->modname) |
2197 g_free(pos->modname); | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
2198 pos->inpa = gaim_input_add(pos->fd, GAIM_INPUT_READ, damn_you, pos); |
2086 | 2199 return; |
2200 } | |
2201 | |
2202 /* size of icbmui.ocm, the largest module in AIM 3.5 */ | |
2203 #define AIM_MAX_FILE_SIZE 98304 | |
2204 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2205 int gaim_memrequest(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 2206 va_list ap; |
2207 struct pieceofcrap *pos; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2208 fu32_t offset, len; |
2086 | 2209 char *modname; |
2210 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2211 va_start(ap, fr); |
4200 | 2212 offset = va_arg(ap, fu32_t); |
2213 len = va_arg(ap, fu32_t); | |
2086 | 2214 modname = va_arg(ap, char *); |
2215 va_end(ap); | |
2216 | |
8660 | 2217 gaim_debug_misc("oscar", |
5556 | 2218 "offset: %u, len: %u, file: %s\n", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2219 offset, len, (modname ? modname : "aim.exe")); |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2220 |
2086 | 2221 if (len == 0) { |
8660 | 2222 gaim_debug_misc("oscar", "len is 0, hashing NULL\n"); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2223 aim_sendmemblock(sess, fr->conn, offset, len, NULL, |
2086 | 2224 AIM_SENDMEMBLOCK_FLAG_ISREQUEST); |
2225 return 1; | |
2226 } | |
9625 | 2227 /* uncomment this when you're convinced it's right. remember, it's been wrong before. */ |
2228 #if 0 | |
2086 | 2229 if (offset > AIM_MAX_FILE_SIZE || len > AIM_MAX_FILE_SIZE) { |
2230 char *buf; | |
2231 int i = 8; | |
2232 if (modname) | |
2233 i += strlen(modname); | |
2234 buf = g_malloc(i); | |
2235 i = 0; | |
2236 if (modname) { | |
2237 memcpy(buf, modname, strlen(modname)); | |
2238 i += strlen(modname); | |
2239 } | |
2240 buf[i++] = offset & 0xff; | |
2241 buf[i++] = (offset >> 8) & 0xff; | |
2242 buf[i++] = (offset >> 16) & 0xff; | |
2243 buf[i++] = (offset >> 24) & 0xff; | |
2244 buf[i++] = len & 0xff; | |
2245 buf[i++] = (len >> 8) & 0xff; | |
2246 buf[i++] = (len >> 16) & 0xff; | |
2247 buf[i++] = (len >> 24) & 0xff; | |
8660 | 2248 gaim_debug_misc("oscar", "len + offset is invalid, " |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2249 "hashing request\n"); |
2086 | 2250 aim_sendmemblock(sess, command->conn, offset, i, buf, AIM_SENDMEMBLOCK_FLAG_ISREQUEST); |
2251 g_free(buf); | |
2252 return 1; | |
2253 } | |
9625 | 2254 #endif |
2086 | 2255 |
2256 pos = g_new0(struct pieceofcrap, 1); | |
2257 pos->gc = sess->aux_data; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2258 pos->conn = fr->conn; |
2086 | 2259 |
2260 pos->offset = offset; | |
2261 pos->len = len; | |
2262 pos->modname = modname ? g_strdup(modname) : NULL; | |
2263 | |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5679
diff
changeset
|
2264 if (gaim_proxy_connect(pos->gc->account, "gaim.sourceforge.net", 80, straight_to_hell, pos) != 0) { |
4056 | 2265 char buf[256]; |
2086 | 2266 if (pos->modname) |
2267 g_free(pos->modname); | |
2268 g_free(pos); | |
4056 | 2269 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
|
2270 "this is fixed. Check %s for updates."), GAIM_WEBSITE); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2271 gaim_notify_warning(pos->gc, NULL, |
7422 | 2272 _("Gaim was unable to get a valid login hash."), |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
2273 buf); |
2086 | 2274 } |
2275 | |
2276 return 1; | |
2277 } | |
2278 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2279 static int gaim_parse_login(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 2280 GaimConnection *gc = sess->aux_data; |
7283 | 2281 OscarData *od = gc->proto_data; |
5591
74a0e79ad627
[gaim-migrate @ 5995]
Christian Hammond <chipx86@chipx86.com>
parents:
5580
diff
changeset
|
2282 GaimAccount *account = gaim_connection_get_account(gc); |
5575 | 2283 GaimAccount *ac = gaim_connection_get_account(gc); |
7282 | 2284 #if 0 |
2285 struct client_info_s info = {"gaim", 7, 3, 2003, "us", "en", 0x0004, 0x0000, 0x04b}; | |
2286 #endif | |
7011 | 2287 va_list ap; |
2288 char *key; | |
2086 | 2289 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2290 va_start(ap, fr); |
2086 | 2291 key = va_arg(ap, char *); |
2292 va_end(ap); | |
2293 | |
4617 | 2294 if (od->icq) { |
3458 | 2295 struct client_info_s info = CLIENTINFO_ICQ_KNOWNGOOD; |
5591
74a0e79ad627
[gaim-migrate @ 5995]
Christian Hammond <chipx86@chipx86.com>
parents:
5580
diff
changeset
|
2296 aim_send_login(sess, fr->conn, gaim_account_get_username(ac), |
74a0e79ad627
[gaim-migrate @ 5995]
Christian Hammond <chipx86@chipx86.com>
parents:
5580
diff
changeset
|
2297 gaim_account_get_password(account), &info, key); |
3458 | 2298 } else { |
2299 struct client_info_s info = CLIENTINFO_AIM_KNOWNGOOD; | |
5591
74a0e79ad627
[gaim-migrate @ 5995]
Christian Hammond <chipx86@chipx86.com>
parents:
5580
diff
changeset
|
2300 aim_send_login(sess, fr->conn, gaim_account_get_username(ac), |
74a0e79ad627
[gaim-migrate @ 5995]
Christian Hammond <chipx86@chipx86.com>
parents:
5580
diff
changeset
|
2301 gaim_account_get_password(account), &info, key); |
3458 | 2302 } |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2303 |
7283 | 2304 gaim_connection_update_progress(gc, _("Password sent"), 2, OSCAR_CONNECT_STEPS); |
8341 | 2305 ck[2] = 0x6c; |
7282 | 2306 |
2086 | 2307 return 1; |
2308 } | |
2309 | |
2675 | 2310 static int conninitdone_chat(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 2311 GaimConnection *gc = sess->aux_data; |
2647 | 2312 struct chat_connection *chatcon; |
2313 static int id = 1; | |
2314 | |
6905 | 2315 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
|
2316 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
|
2317 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
|
2318 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
|
2319 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_CHT, AIM_CB_CHT_INCOMINGMSG, gaim_conv_chat_incoming_msg, 0); |
2675 | 2320 |
2672 | 2321 aim_clientready(sess, fr->conn); |
2675 | 2322 |
2647 | 2323 chatcon = find_oscar_chat_by_conn(gc, fr->conn); |
2324 chatcon->id = id; | |
8733 | 2325 chatcon->conv = serv_got_joined_chat(gc, id++, chatcon->show); |
2647 | 2326 |
2327 return 1; | |
2328 } | |
2329 | |
2675 | 2330 static int conninitdone_chatnav(aim_session_t *sess, aim_frame_t *fr, ...) { |
2331 | |
2821
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
2332 aim_conn_addhandler(sess, fr->conn, 0x000d, 0x0001, gaim_parse_genericerr, 0); |
2647 | 2333 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_CTN, AIM_CB_CTN_INFO, gaim_chatnav_info, 0); |
2675 | 2334 |
2335 aim_clientready(sess, fr->conn); | |
2336 | |
2337 aim_chatnav_reqrights(sess, fr->conn); | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2338 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2339 return 1; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2340 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2341 |
3694 | 2342 static int conninitdone_email(aim_session_t *sess, aim_frame_t *fr, ...) { |
2343 | |
2344 aim_conn_addhandler(sess, fr->conn, 0x0018, 0x0001, gaim_parse_genericerr, 0); | |
2345 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_EML, AIM_CB_EML_MAILSTATUS, gaim_email_parseupdate, 0); | |
2346 | |
7282 | 2347 aim_email_sendcookies(sess); |
2348 aim_email_activate(sess); | |
3694 | 2349 aim_clientready(sess, fr->conn); |
2350 | |
2351 return 1; | |
2352 } | |
2353 | |
4804 | 2354 static int conninitdone_icon(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 2355 GaimConnection *gc = sess->aux_data; |
7283 | 2356 OscarData *od = gc->proto_data; |
4804 | 2357 |
2358 aim_conn_addhandler(sess, fr->conn, 0x0018, 0x0001, gaim_parse_genericerr, 0); | |
2359 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_ICO, AIM_CB_ICO_ERROR, gaim_icon_error, 0); | |
2360 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_ICO, AIM_CB_ICO_RESPONSE, gaim_icon_parseicon, 0); | |
2361 | |
2362 aim_clientready(sess, fr->conn); | |
2363 | |
4823 | 2364 od->iconconnecting = FALSE; |
2365 | |
4804 | 2366 if (od->icontimer) |
8287
ef881489396e
[gaim-migrate @ 9011]
Christian Hammond <chipx86@chipx86.com>
parents:
8273
diff
changeset
|
2367 gaim_timeout_remove(od->icontimer); |
8273
f24172f53650
[gaim-migrate @ 8997]
Christian Hammond <chipx86@chipx86.com>
parents:
8266
diff
changeset
|
2368 od->icontimer = gaim_timeout_add(100, gaim_icon_timerfunc, gc); |
4804 | 2369 |
2370 return 1; | |
2371 } | |
2372 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2373 static void oscar_chatnav_connect(gpointer data, gint source, GaimInputCondition cond) { |
5575 | 2374 GaimConnection *gc = data; |
7283 | 2375 OscarData *od; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2376 aim_session_t *sess; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2377 aim_conn_t *tstconn; |
2086 | 2378 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
2379 if (!g_list_find(gaim_connections_get_all(), gc)) { |
2086 | 2380 close(source); |
2381 return; | |
2382 } | |
2383 | |
4617 | 2384 od = gc->proto_data; |
2385 sess = od->sess; | |
2086 | 2386 tstconn = aim_getconn_type_all(sess, AIM_CONN_TYPE_CHATNAV); |
4366 | 2387 tstconn->fd = source; |
2086 | 2388 |
2389 if (source < 0) { | |
2390 aim_conn_kill(sess, &tstconn); | |
8660 | 2391 gaim_debug_error("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2392 "unable to connect to chatnav server\n"); |
2086 | 2393 return; |
2394 } | |
2395 | |
2396 aim_conn_completeconnect(sess, tstconn); | |
4617 | 2397 od->cnpa = gaim_input_add(tstconn->fd, GAIM_INPUT_READ, oscar_callback, tstconn); |
8660 | 2398 gaim_debug_info("oscar", "chatnav: connected\n"); |
2086 | 2399 } |
2400 | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
2401 static void oscar_auth_connect(gpointer data, gint source, GaimInputCondition cond) |
2086 | 2402 { |
5575 | 2403 GaimConnection *gc = data; |
7283 | 2404 OscarData *od; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2405 aim_session_t *sess; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2406 aim_conn_t *tstconn; |
2086 | 2407 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
2408 if (!g_list_find(gaim_connections_get_all(), gc)) { |
2086 | 2409 close(source); |
2410 return; | |
2411 } | |
2412 | |
4617 | 2413 od = gc->proto_data; |
2414 sess = od->sess; | |
2086 | 2415 tstconn = aim_getconn_type_all(sess, AIM_CONN_TYPE_AUTH); |
4366 | 2416 tstconn->fd = source; |
2086 | 2417 |
2418 if (source < 0) { | |
2419 aim_conn_kill(sess, &tstconn); | |
8660 | 2420 gaim_debug_error("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2421 "unable to connect to authorizer\n"); |
2086 | 2422 return; |
2423 } | |
2424 | |
2425 aim_conn_completeconnect(sess, tstconn); | |
4617 | 2426 od->paspa = gaim_input_add(tstconn->fd, GAIM_INPUT_READ, oscar_callback, tstconn); |
8660 | 2427 gaim_debug_info("oscar", "admin: connected\n"); |
2086 | 2428 } |
2429 | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
2430 static void oscar_chat_connect(gpointer data, gint source, GaimInputCondition cond) |
2086 | 2431 { |
2432 struct chat_connection *ccon = data; | |
5575 | 2433 GaimConnection *gc = ccon->gc; |
7283 | 2434 OscarData *od; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2435 aim_session_t *sess; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2436 aim_conn_t *tstconn; |
2086 | 2437 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
2438 if (!g_list_find(gaim_connections_get_all(), gc)) { |
2086 | 2439 close(source); |
2440 g_free(ccon->show); | |
2441 g_free(ccon->name); | |
2442 g_free(ccon); | |
2443 return; | |
2444 } | |
2445 | |
4617 | 2446 od = gc->proto_data; |
2447 sess = od->sess; | |
2086 | 2448 tstconn = ccon->conn; |
4366 | 2449 tstconn->fd = source; |
2086 | 2450 |
2451 if (source < 0) { | |
2452 aim_conn_kill(sess, &tstconn); | |
2453 g_free(ccon->show); | |
2454 g_free(ccon->name); | |
2455 g_free(ccon); | |
2456 return; | |
2457 } | |
2458 | |
2459 aim_conn_completeconnect(sess, ccon->conn); | |
4617 | 2460 ccon->inpa = gaim_input_add(tstconn->fd, GAIM_INPUT_READ, oscar_callback, tstconn); |
2461 od->oscar_chats = g_slist_append(od->oscar_chats, ccon); | |
2086 | 2462 } |
2463 | |
3694 | 2464 static void oscar_email_connect(gpointer data, gint source, GaimInputCondition cond) { |
5575 | 2465 GaimConnection *gc = data; |
7283 | 2466 OscarData *od; |
3694 | 2467 aim_session_t *sess; |
2468 aim_conn_t *tstconn; | |
2469 | |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
2470 if (!g_list_find(gaim_connections_get_all(), gc)) { |
3694 | 2471 close(source); |
2472 return; | |
2473 } | |
2474 | |
4617 | 2475 od = gc->proto_data; |
2476 sess = od->sess; | |
3694 | 2477 tstconn = aim_getconn_type_all(sess, AIM_CONN_TYPE_EMAIL); |
4366 | 2478 tstconn->fd = source; |
3694 | 2479 |
2480 if (source < 0) { | |
2481 aim_conn_kill(sess, &tstconn); | |
8660 | 2482 gaim_debug_error("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2483 "unable to connect to email server\n"); |
3694 | 2484 return; |
2485 } | |
2486 | |
2487 aim_conn_completeconnect(sess, tstconn); | |
4617 | 2488 od->emlpa = gaim_input_add(tstconn->fd, GAIM_INPUT_READ, oscar_callback, tstconn); |
8660 | 2489 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2490 "email: connected\n"); |
3694 | 2491 } |
2492 | |
4804 | 2493 static void oscar_icon_connect(gpointer data, gint source, GaimInputCondition cond) { |
5575 | 2494 GaimConnection *gc = data; |
7283 | 2495 OscarData *od; |
4804 | 2496 aim_session_t *sess; |
2497 aim_conn_t *tstconn; | |
2498 | |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
2499 if (!g_list_find(gaim_connections_get_all(), gc)) { |
4804 | 2500 close(source); |
2501 return; | |
2502 } | |
2503 | |
2504 od = gc->proto_data; | |
2505 sess = od->sess; | |
2506 tstconn = aim_getconn_type_all(sess, AIM_CONN_TYPE_ICON); | |
2507 tstconn->fd = source; | |
2508 | |
2509 if (source < 0) { | |
2510 aim_conn_kill(sess, &tstconn); | |
8660 | 2511 gaim_debug_error("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2512 "unable to connect to icon server\n"); |
4804 | 2513 return; |
2514 } | |
2515 | |
2516 aim_conn_completeconnect(sess, tstconn); | |
2517 od->icopa = gaim_input_add(tstconn->fd, GAIM_INPUT_READ, oscar_callback, tstconn); | |
8660 | 2518 gaim_debug_info("oscar", "icon: connected\n"); |
4804 | 2519 } |
2520 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2521 /* 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
|
2522 static int gaim_handle_redirect(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 2523 GaimConnection *gc = sess->aux_data; |
2524 GaimAccount *account = gaim_connection_get_account(gc); | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2525 aim_conn_t *tstconn; |
4452 | 2526 int i; |
2086 | 2527 char *host; |
2528 int port; | |
4821 | 2529 va_list ap; |
2530 struct aim_redirect_data *redir; | |
2086 | 2531 |
5575 | 2532 port = gaim_account_get_int(account, "port", FAIM_LOGIN_PORT); |
2086 | 2533 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2534 va_start(ap, fr); |
2821
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
2535 redir = va_arg(ap, struct aim_redirect_data *); |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
2536 va_end(ap); |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
2537 |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
2538 for (i = 0; i < (int)strlen(redir->ip); i++) { |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
2539 if (redir->ip[i] == ':') { |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
2540 port = atoi(&(redir->ip[i+1])); |
2086 | 2541 break; |
2542 } | |
2543 } | |
2821
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
2544 host = g_strndup(redir->ip, i); |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
2545 |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
2546 switch(redir->group) { |
2086 | 2547 case 0x7: /* Authorizer */ |
8660 | 2548 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2549 "Reconnecting with authorizor...\n"); |
2086 | 2550 tstconn = aim_newconn(sess, AIM_CONN_TYPE_AUTH, NULL); |
2551 if (tstconn == NULL) { | |
8660 | 2552 gaim_debug_error("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2553 "unable to reconnect with authorizer\n"); |
2086 | 2554 g_free(host); |
2555 return 1; | |
2556 } | |
4649 | 2557 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNERR, gaim_connerr, 0); |
2675 | 2558 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNINITDONE, conninitdone_admin, 0); |
2086 | 2559 |
2560 tstconn->status |= AIM_CONN_STATUS_INPROGRESS; | |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5679
diff
changeset
|
2561 if (gaim_proxy_connect(account, host, port, oscar_auth_connect, gc) != 0) { |
2086 | 2562 aim_conn_kill(sess, &tstconn); |
8660 | 2563 gaim_debug_error("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2564 "unable to reconnect with authorizer\n"); |
2086 | 2565 g_free(host); |
2566 return 1; | |
2567 } | |
4293 | 2568 aim_sendcookie(sess, tstconn, redir->cookielen, redir->cookie); |
4194 | 2569 break; |
2570 | |
2086 | 2571 case 0xd: /* ChatNav */ |
2572 tstconn = aim_newconn(sess, AIM_CONN_TYPE_CHATNAV, NULL); | |
2573 if (tstconn == NULL) { | |
8660 | 2574 gaim_debug_error("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2575 "unable to connect to chatnav server\n"); |
2086 | 2576 g_free(host); |
2577 return 1; | |
2578 } | |
4649 | 2579 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNERR, gaim_connerr, 0); |
2675 | 2580 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNINITDONE, conninitdone_chatnav, 0); |
2086 | 2581 |
2582 tstconn->status |= AIM_CONN_STATUS_INPROGRESS; | |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5679
diff
changeset
|
2583 if (gaim_proxy_connect(account, host, port, oscar_chatnav_connect, gc) != 0) { |
2086 | 2584 aim_conn_kill(sess, &tstconn); |
8660 | 2585 gaim_debug_error("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2586 "unable to connect to chatnav server\n"); |
2086 | 2587 g_free(host); |
2588 return 1; | |
2589 } | |
4293 | 2590 aim_sendcookie(sess, tstconn, redir->cookielen, redir->cookie); |
4194 | 2591 break; |
2592 | |
2593 case 0xe: { /* Chat */ | |
2086 | 2594 struct chat_connection *ccon; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2595 |
2086 | 2596 tstconn = aim_newconn(sess, AIM_CONN_TYPE_CHAT, NULL); |
2597 if (tstconn == NULL) { | |
8660 | 2598 gaim_debug_error("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2599 "unable to connect to chat server\n"); |
2086 | 2600 g_free(host); |
2601 return 1; | |
2602 } | |
2603 | |
4649 | 2604 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNERR, gaim_connerr, 0); |
2675 | 2605 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNINITDONE, conninitdone_chat, 0); |
2606 | |
2086 | 2607 ccon = g_new0(struct chat_connection, 1); |
2608 ccon->conn = tstconn; | |
2609 ccon->gc = gc; | |
2610 ccon->fd = -1; | |
2821
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
2611 ccon->name = g_strdup(redir->chat.room); |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
2612 ccon->exchange = redir->chat.exchange; |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
2613 ccon->instance = redir->chat.instance; |
9467e4ee81be
[gaim-migrate @ 2834]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
2614 ccon->show = extract_name(redir->chat.room); |
4634 | 2615 |
2086 | 2616 ccon->conn->status |= AIM_CONN_STATUS_INPROGRESS; |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5679
diff
changeset
|
2617 if (gaim_proxy_connect(account, host, port, oscar_chat_connect, ccon) != 0) { |
2086 | 2618 aim_conn_kill(sess, &tstconn); |
8660 | 2619 gaim_debug_error("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2620 "unable to connect to chat server\n"); |
2086 | 2621 g_free(host); |
2622 g_free(ccon->show); | |
2623 g_free(ccon->name); | |
2624 g_free(ccon); | |
2625 return 1; | |
2626 } | |
4293 | 2627 aim_sendcookie(sess, tstconn, redir->cookielen, redir->cookie); |
8660 | 2628 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2629 "Connected to chat room %s exchange %hu\n", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2630 ccon->name, ccon->exchange); |
4194 | 2631 } break; |
3694 | 2632 |
4804 | 2633 case 0x0010: { /* icon */ |
2634 if (!(tstconn = aim_newconn(sess, AIM_CONN_TYPE_ICON, NULL))) { | |
8660 | 2635 gaim_debug_error("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2636 "unable to connect to icon server\n"); |
4804 | 2637 g_free(host); |
2638 return 1; | |
2639 } | |
2640 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNERR, gaim_connerr, 0); | |
2641 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNINITDONE, conninitdone_icon, 0); | |
2642 | |
2643 tstconn->status |= AIM_CONN_STATUS_INPROGRESS; | |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5679
diff
changeset
|
2644 if (gaim_proxy_connect(account, host, port, oscar_icon_connect, gc) != 0) { |
4804 | 2645 aim_conn_kill(sess, &tstconn); |
8660 | 2646 gaim_debug_error("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2647 "unable to connect to icon server\n"); |
4804 | 2648 g_free(host); |
2649 return 1; | |
2650 } | |
2651 aim_sendcookie(sess, tstconn, redir->cookielen, redir->cookie); | |
2652 } break; | |
2653 | |
3694 | 2654 case 0x0018: { /* email */ |
2655 if (!(tstconn = aim_newconn(sess, AIM_CONN_TYPE_EMAIL, NULL))) { | |
8660 | 2656 gaim_debug_error("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2657 "unable to connect to email server\n"); |
3694 | 2658 g_free(host); |
2659 return 1; | |
2660 } | |
4649 | 2661 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNERR, gaim_connerr, 0); |
3694 | 2662 aim_conn_addhandler(sess, tstconn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_CONNINITDONE, conninitdone_email, 0); |
2663 | |
2664 tstconn->status |= AIM_CONN_STATUS_INPROGRESS; | |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5679
diff
changeset
|
2665 if (gaim_proxy_connect(account, host, port, oscar_email_connect, gc) != 0) { |
3694 | 2666 aim_conn_kill(sess, &tstconn); |
8660 | 2667 gaim_debug_error("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2668 "unable to connect to email server\n"); |
3694 | 2669 g_free(host); |
2670 return 1; | |
2671 } | |
4293 | 2672 aim_sendcookie(sess, tstconn, redir->cookielen, redir->cookie); |
3694 | 2673 } break; |
2674 | |
2086 | 2675 default: /* huh? */ |
8660 | 2676 gaim_debug_warning("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2677 "got redirect for unknown service 0x%04hx\n", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2678 redir->group); |
2086 | 2679 break; |
2680 } | |
2681 | |
2682 g_free(host); | |
2683 return 1; | |
2684 } | |
2685 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2686 static int gaim_parse_oncoming(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 2687 GaimConnection *gc = sess->aux_data; |
9058 | 2688 GaimAccount *account = gaim_connection_get_account(gc); |
7283 | 2689 OscarData *od = gc->proto_data; |
4738 | 2690 struct buddyinfo *bi; |
2993 | 2691 time_t time_idle = 0, signon = 0; |
2692 int type = 0; | |
2693 int caps = 0; | |
2086 | 2694 va_list ap; |
4738 | 2695 aim_userinfo_t *info; |
4194 | 2696 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2697 va_start(ap, fr); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
2698 info = va_arg(ap, aim_userinfo_t *); |
2086 | 2699 va_end(ap); |
2700 | |
2993 | 2701 if (info->present & AIM_USERINFO_PRESENT_CAPABILITIES) |
2702 caps = info->capabilities; | |
3267 | 2703 if (info->flags & AIM_FLAG_ACTIVEBUDDY) |
2704 type |= UC_AB; | |
2705 | |
4766 | 2706 if (info->present & AIM_USERINFO_PRESENT_FLAGS) { |
2707 if (info->flags & AIM_FLAG_UNCONFIRMED) | |
2708 type |= UC_UNCONFIRMED; | |
2709 if (info->flags & AIM_FLAG_ADMINISTRATOR) | |
2710 type |= UC_ADMIN; | |
2711 if (info->flags & AIM_FLAG_AOL) | |
2712 type |= UC_AOL; | |
2713 if (info->flags & AIM_FLAG_FREE) | |
2714 type |= UC_NORMAL; | |
2715 if (info->flags & AIM_FLAG_AWAY) | |
2716 type |= UC_UNAVAILABLE; | |
2717 if (info->flags & AIM_FLAG_WIRELESS) | |
2718 type |= UC_WIRELESS; | |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
2719 } |
2993 | 2720 if (info->present & AIM_USERINFO_PRESENT_ICQEXTSTATUS) { |
3595 | 2721 type = (info->icqinfo.status << 16); |
3013 | 2722 if (!(info->icqinfo.status & AIM_ICQ_STATE_CHAT) && |
2723 (info->icqinfo.status != AIM_ICQ_STATE_NORMAL)) { | |
2993 | 2724 type |= UC_UNAVAILABLE; |
3013 | 2725 } |
2993 | 2726 } |
2727 | |
7141 | 2728 if (caps & AIM_CAPS_ICQ_DIRECT) |
2729 caps ^= AIM_CAPS_ICQ_DIRECT; | |
2993 | 2730 |
2731 if (info->present & AIM_USERINFO_PRESENT_IDLE) { | |
2086 | 2732 time(&time_idle); |
2733 time_idle -= info->idletime*60; | |
9295 | 2734 /* time_idle should be the seconds since epoch at which the user became idle */ |
2993 | 2735 } |
2736 | |
5836 | 2737 if (info->present & AIM_USERINFO_PRESENT_ONLINESINCE) |
2738 signon = info->onlinesince; | |
2739 else if (info->present & AIM_USERINFO_PRESENT_SESSIONLEN) | |
2993 | 2740 signon = time(NULL) - info->sessionlen; |
2086 | 2741 |
5575 | 2742 if (!aim_sncmp(gaim_account_get_username(gaim_connection_get_account(gc)), info->sn)) |
2743 gaim_connection_set_display_name(gc, info->sn); | |
2305
0371b905baef
[gaim-migrate @ 2315]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2303
diff
changeset
|
2744 |
7261 | 2745 bi = g_hash_table_lookup(od->buddyinfo, gaim_normalize(gc->account, info->sn)); |
4738 | 2746 if (!bi) { |
2747 bi = g_new0(struct buddyinfo, 1); | |
7261 | 2748 g_hash_table_insert(od->buddyinfo, g_strdup(gaim_normalize(gc->account, info->sn)), bi); |
4738 | 2749 } |
4739 | 2750 bi->typingnot = FALSE; |
2751 bi->ico_informed = FALSE; | |
6857 | 2752 bi->ipaddr = info->icqinfo.ipaddr; |
2753 | |
2754 /* Available message stuff */ | |
6292 | 2755 free(bi->availmsg); |
7011 | 2756 if (info->avail != NULL) |
8225 | 2757 bi->availmsg = oscar_encoding_to_utf8(info->avail_encoding, info->avail, info->avail_len); |
5837 | 2758 else |
6292 | 2759 bi->availmsg = NULL; |
4732 | 2760 |
4804 | 2761 /* Server stored icon stuff */ |
4853 | 2762 if (info->iconcsumlen) { |
7125 | 2763 const char *filename = NULL, *saved_b16 = NULL; |
2764 char *b16 = NULL; | |
7093 | 2765 GaimBuddy *b = NULL; |
4853 | 2766 |
7106
db6bd3e794d8
[gaim-migrate @ 7671]
Christian Hammond <chipx86@chipx86.com>
parents:
7098
diff
changeset
|
2767 b16 = gaim_base16_encode(info->iconcsum, info->iconcsumlen); |
4853 | 2768 b = gaim_find_buddy(gc->account, info->sn); |
7093 | 2769 /* |
2770 * If for some reason the checksum is valid, but cached file is not.. | |
2771 * we want to know. | |
2772 */ | |
7693 | 2773 filename = gaim_blist_node_get_string((GaimBlistNode*)b, "buddy_icon"); |
7093 | 2774 if (filename != NULL) { |
2775 if (g_file_test(filename, G_FILE_TEST_EXISTS)) | |
7693 | 2776 saved_b16 = gaim_blist_node_get_string((GaimBlistNode*)b, |
2777 "icon_checksum"); | |
7093 | 2778 } else |
2779 saved_b16 = NULL; | |
7054
7c04a0775918
[gaim-migrate @ 7617]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7045
diff
changeset
|
2780 |
4853 | 2781 if (!b16 || !saved_b16 || strcmp(b16, saved_b16)) { |
2782 GSList *cur = od->requesticon; | |
2783 while (cur && aim_sncmp((char *)cur->data, info->sn)) | |
2784 cur = cur->next; | |
2785 if (!cur) { | |
7475 | 2786 od->requesticon = g_slist_append(od->requesticon, g_strdup(gaim_normalize(gc->account, info->sn))); |
4853 | 2787 if (od->icontimer) |
8287
ef881489396e
[gaim-migrate @ 9011]
Christian Hammond <chipx86@chipx86.com>
parents:
8273
diff
changeset
|
2788 gaim_timeout_remove(od->icontimer); |
8273
f24172f53650
[gaim-migrate @ 8997]
Christian Hammond <chipx86@chipx86.com>
parents:
8266
diff
changeset
|
2789 od->icontimer = gaim_timeout_add(500, gaim_icon_timerfunc, gc); |
4853 | 2790 } |
2791 } | |
6053 | 2792 g_free(b16); |
4853 | 2793 } |
2794 | |
9058 | 2795 /* |
2796 * If we have info for ourselves, then update our local warning | |
2797 * level and set our official time of login. Is this necessary? | |
2798 * XXX - This needs to be changed some how. evil should not be | |
2799 * handled by the core at all? | |
2800 */ | |
2801 if (!aim_sncmp(info->sn, gaim_account_get_username(account))) { | |
2802 gc->evil = (info->warnlevel/10.0); | |
2803 gc->login_time_official = signon; | |
2804 } | |
2805 | |
5628 | 2806 serv_got_update(gc, info->sn, 1, (info->warnlevel/10.0) + 0.5, signon, time_idle, type); |
2086 | 2807 |
2808 return 1; | |
2809 } | |
2810 | |
8341 | 2811 static void gaim_check_comment(OscarData *od, const char *str) { |
2812 if ((str == NULL) || strcmp(str, ck)) | |
2813 aim_locate_setcaps(od->sess, caps_aim); | |
2814 else | |
2815 aim_locate_setcaps(od->sess, caps_aim | AIM_CAPS_SECUREIM); | |
2816 } | |
2817 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2818 static int gaim_parse_offgoing(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 2819 GaimConnection *gc = sess->aux_data; |
7283 | 2820 OscarData *od = gc->proto_data; |
2086 | 2821 va_list ap; |
4739 | 2822 aim_userinfo_t *info; |
2086 | 2823 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
2824 va_start(ap, fr); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
2825 info = va_arg(ap, aim_userinfo_t *); |
2086 | 2826 va_end(ap); |
2827 | |
4732 | 2828 serv_got_update(gc, info->sn, 0, 0, 0, 0, 0); |
2086 | 2829 |
7261 | 2830 g_hash_table_remove(od->buddyinfo, gaim_normalize(gc->account, info->sn)); |
5837 | 2831 |
2086 | 2832 return 1; |
2833 } | |
2834 | |
4617 | 2835 /* BBB */ |
3952 | 2836 /* |
4617 | 2837 * This is called after a remote AIM user has connected to us. We |
2838 * want to do some voodoo with the socket file descriptors, add a | |
2839 * callback or two, and then send the AIM_CB_OFT_PROMPT. | |
3952 | 2840 */ |
4656 | 2841 static int oscar_sendfile_estblsh(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 2842 GaimConnection *gc = sess->aux_data; |
7283 | 2843 OscarData *od = (OscarData *)gc->proto_data; |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
2844 GaimXfer *xfer; |
5146 | 2845 struct aim_oft_info *oft_info; |
3630 | 2846 va_list ap; |
2847 aim_conn_t *conn, *listenerconn; | |
4656 | 2848 |
8660 | 2849 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2850 "AAA - in oscar_sendfile_estblsh\n"); |
3630 | 2851 va_start(ap, fr); |
2852 conn = va_arg(ap, aim_conn_t *); | |
2853 listenerconn = va_arg(ap, aim_conn_t *); | |
2854 va_end(ap); | |
2855 | |
4617 | 2856 if (!(xfer = oscar_find_xfer_by_conn(od->file_transfers, listenerconn))) |
2857 return 1; | |
2858 | |
5146 | 2859 if (!(oft_info = xfer->data)) |
4617 | 2860 return 1; |
2861 | |
3630 | 2862 /* Stop watching listener conn; watch transfer conn instead */ |
4617 | 2863 gaim_input_remove(xfer->watcher); |
3630 | 2864 aim_conn_kill(sess, &listenerconn); |
2865 | |
5146 | 2866 oft_info->conn = conn; |
2867 xfer->fd = oft_info->conn->fd; | |
2868 | |
2869 aim_conn_addhandler(sess, oft_info->conn, AIM_CB_FAM_OFT, AIM_CB_OFT_ACK, oscar_sendfile_ack, 0); | |
2870 aim_conn_addhandler(sess, oft_info->conn, AIM_CB_FAM_OFT, AIM_CB_OFT_DONE, oscar_sendfile_done, 0); | |
2871 xfer->watcher = gaim_input_add(oft_info->conn->fd, GAIM_INPUT_READ, oscar_callback, oft_info->conn); | |
4617 | 2872 |
2873 /* Inform the other user that we are connected and ready to transfer */ | |
5146 | 2874 aim_oft_sendheader(sess, AIM_CB_OFT_PROMPT, oft_info); |
3630 | 2875 |
2876 return 0; | |
2877 } | |
2878 | |
3952 | 2879 /* |
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5679
diff
changeset
|
2880 * This is the gaim callback passed to gaim_proxy_connect when connecting to another AIM |
4617 | 2881 * user in order to transfer a file. |
3952 | 2882 */ |
4617 | 2883 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
|
2884 GaimXfer *xfer; |
5146 | 2885 struct aim_oft_info *oft_info; |
4656 | 2886 |
8660 | 2887 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2888 "AAA - in oscar_sendfile_connected\n"); |
4617 | 2889 if (!(xfer = data)) |
2890 return; | |
5146 | 2891 if (!(oft_info = xfer->data)) |
3630 | 2892 return; |
8446 | 2893 if (source < 0) { |
2894 gaim_xfer_cancel_remote(xfer); | |
4617 | 2895 return; |
8446 | 2896 } |
4617 | 2897 |
2898 xfer->fd = source; | |
5146 | 2899 oft_info->conn->fd = source; |
2900 | |
2901 aim_conn_completeconnect(oft_info->sess, oft_info->conn); | |
2902 xfer->watcher = gaim_input_add(xfer->fd, GAIM_INPUT_READ, oscar_callback, oft_info->conn); | |
4617 | 2903 |
2904 /* Inform the other user that we are connected and ready to transfer */ | |
5146 | 2905 aim_im_sendch2_sendfile_accept(oft_info->sess, oft_info); |
4617 | 2906 |
2907 return; | |
3630 | 2908 } |
2909 | |
3952 | 2910 /* |
4617 | 2911 * This is called when a buddy sends us some file info. This happens when they |
2912 * are sending a file to you, and you have just established a connection to them. | |
4650 | 2913 * You should send them the exact same info except use the real cookie. We also |
4617 | 2914 * get like totally ready to like, receive the file, kay? |
3952 | 2915 */ |
4617 | 2916 static int oscar_sendfile_prompt(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 2917 GaimConnection *gc = sess->aux_data; |
7283 | 2918 OscarData *od = gc->proto_data; |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
2919 GaimXfer *xfer; |
5146 | 2920 struct aim_oft_info *oft_info; |
4617 | 2921 va_list ap; |
2922 aim_conn_t *conn; | |
2923 fu8_t *cookie; | |
2924 struct aim_fileheader_t *fh; | |
4656 | 2925 |
8660 | 2926 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
2927 "AAA - in oscar_sendfile_prompt\n"); |
4617 | 2928 va_start(ap, fr); |
2929 conn = va_arg(ap, aim_conn_t *); | |
2930 cookie = va_arg(ap, fu8_t *); | |
2931 fh = va_arg(ap, struct aim_fileheader_t *); | |
2932 va_end(ap); | |
2933 | |
2934 if (!(xfer = oscar_find_xfer_by_conn(od->file_transfers, conn))) | |
2935 return 1; | |
2936 | |
5146 | 2937 if (!(oft_info = xfer->data)) |
4617 | 2938 return 1; |
2939 | |
2940 /* We want to stop listening with a normal thingy */ | |
2941 gaim_input_remove(xfer->watcher); | |
2942 xfer->watcher = 0; | |
2943 | |
5146 | 2944 /* They sent us some information about the file they're sending */ |
2945 memcpy(&oft_info->fh, fh, sizeof(*fh)); | |
2946 | |
2947 /* Fill in the cookie */ | |
2948 memcpy(&oft_info->fh.bcookie, oft_info->cookie, 8); | |
2949 | |
4617 | 2950 /* XXX - convert the name from UTF-8 to UCS-2 if necessary, and pass the encoding to the call below */ |
5146 | 2951 aim_oft_sendheader(oft_info->sess, AIM_CB_OFT_ACK, oft_info); |
4617 | 2952 gaim_xfer_start(xfer, xfer->fd, NULL, 0); |
2953 | |
2954 return 0; | |
3630 | 2955 } |
2956 | |
3952 | 2957 /* |
4657 | 2958 * We are sending a file to someone else. They have just acknowledged our |
4617 | 2959 * prompt, so we want to start sending data like there's no tomorrow. |
3952 | 2960 */ |
4617 | 2961 static int oscar_sendfile_ack(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 2962 GaimConnection *gc = sess->aux_data; |
7283 | 2963 OscarData *od = gc->proto_data; |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
2964 GaimXfer *xfer; |
4617 | 2965 va_list ap; |
2966 aim_conn_t *conn; | |
2967 fu8_t *cookie; | |
2968 struct aim_fileheader_t *fh; | |
4656 | 2969 |
8660 | 2970 gaim_debug_info("oscar", "AAA - in oscar_sendfile_ack\n"); |
4617 | 2971 va_start(ap, fr); |
2972 conn = va_arg(ap, aim_conn_t *); | |
2973 cookie = va_arg(ap, fu8_t *); | |
2974 fh = va_arg(ap, struct aim_fileheader_t *); | |
2975 va_end(ap); | |
2976 | |
2977 if (!(xfer = oscar_find_xfer_by_cookie(od->file_transfers, cookie))) | |
2978 return 1; | |
2979 | |
4656 | 2980 /* We want to stop listening with a normal thingy */ |
2981 gaim_input_remove(xfer->watcher); | |
2982 xfer->watcher = 0; | |
2983 | |
4617 | 2984 gaim_xfer_start(xfer, xfer->fd, NULL, 0); |
2985 | |
2986 return 0; | |
3630 | 2987 } |
4617 | 2988 |
2989 /* | |
2990 * We just sent a file to someone. They said they got it and everything, | |
2991 * so we can close our direct connection and what not. | |
2992 */ | |
2993 static int oscar_sendfile_done(aim_session_t *sess, aim_frame_t *fr, ...) { | |
5575 | 2994 GaimConnection *gc = sess->aux_data; |
7283 | 2995 OscarData *od = gc->proto_data; |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
2996 GaimXfer *xfer; |
4617 | 2997 va_list ap; |
2998 aim_conn_t *conn; | |
2999 fu8_t *cookie; | |
3000 struct aim_fileheader_t *fh; | |
4656 | 3001 |
8660 | 3002 gaim_debug_info("oscar", "AAA - in oscar_sendfile_done\n"); |
4617 | 3003 va_start(ap, fr); |
3004 conn = va_arg(ap, aim_conn_t *); | |
3005 cookie = va_arg(ap, fu8_t *); | |
3006 fh = va_arg(ap, struct aim_fileheader_t *); | |
3007 va_end(ap); | |
3008 | |
3009 if (!(xfer = oscar_find_xfer_by_conn(od->file_transfers, conn))) | |
3010 return 1; | |
3011 | |
4656 | 3012 xfer->fd = conn->fd; |
4617 | 3013 gaim_xfer_end(xfer); |
3014 | |
3015 return 0; | |
3016 } | |
3630 | 3017 |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3018 static int incomingim_chan1(aim_session_t *sess, aim_conn_t *conn, aim_userinfo_t *userinfo, struct aim_incomingim_ch1_args *args) { |
5575 | 3019 GaimConnection *gc = sess->aux_data; |
7283 | 3020 OscarData *od = gc->proto_data; |
8708 | 3021 GaimAccount *account = gaim_connection_get_account(gc); |
7475 | 3022 gchar *tmp; |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
3023 GaimConvImFlags flags = 0; |
6478
338147ea6896
[gaim-migrate @ 6991]
Christian Hammond <chipx86@chipx86.com>
parents:
6465
diff
changeset
|
3024 gsize convlen; |
3659 | 3025 GError *err = NULL; |
4738 | 3026 struct buddyinfo *bi; |
5575 | 3027 const char *iconfile; |
4738 | 3028 |
8708 | 3029 bi = g_hash_table_lookup(od->buddyinfo, gaim_normalize(account, userinfo->sn)); |
4738 | 3030 if (!bi) { |
3031 bi = g_new0(struct buddyinfo, 1); | |
8708 | 3032 g_hash_table_insert(od->buddyinfo, g_strdup(gaim_normalize(account, userinfo->sn)), bi); |
4738 | 3033 } |
2273
0b5c3338fa3d
[gaim-migrate @ 2283]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2249
diff
changeset
|
3034 |
0b5c3338fa3d
[gaim-migrate @ 2283]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2249
diff
changeset
|
3035 if (args->icbmflags & AIM_IMFLAGS_AWAY) |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
3036 flags |= GAIM_CONV_IM_AUTO_RESP; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3037 |
4738 | 3038 if (args->icbmflags & AIM_IMFLAGS_TYPINGNOT) |
3039 bi->typingnot = TRUE; | |
3040 else | |
3041 bi->typingnot = FALSE; | |
3042 | |
4380 | 3043 if ((args->icbmflags & AIM_IMFLAGS_HASICON) && (args->iconlen) && (args->iconsum) && (args->iconstamp)) { |
8660 | 3044 gaim_debug_misc("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3045 "%s has an icon\n", userinfo->sn); |
4738 | 3046 if ((args->iconlen != bi->ico_len) || (args->iconsum != bi->ico_csum) || (args->iconstamp != bi->ico_time)) { |
3047 bi->ico_need = TRUE; | |
3048 bi->ico_len = args->iconlen; | |
3049 bi->ico_csum = args->iconsum; | |
3050 bi->ico_time = args->iconstamp; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3051 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3052 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3053 |
8708 | 3054 if ((iconfile = gaim_account_get_buddy_icon(account)) && |
7406 | 3055 (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
|
3056 FILE *file; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3057 struct stat st; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3058 |
5575 | 3059 if (!stat(iconfile, &st)) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3060 char *buf = g_malloc(st.st_size); |
5575 | 3061 file = fopen(iconfile, "rb"); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3062 if (file) { |
9532 | 3063 /* XXX - Use g_file_get_contents() */ |
2603
24664768a739
[gaim-migrate @ 2616]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2597
diff
changeset
|
3064 int len = fread(buf, 1, st.st_size, file); |
8660 | 3065 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3066 "Sending buddy icon to %s (%d bytes, " |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3067 "%lu reported)\n", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3068 userinfo->sn, len, st.st_size); |
4617 | 3069 aim_im_sendch2_icon(sess, userinfo->sn, buf, st.st_size, |
3070 st.st_mtime, aimutil_iconsum(buf, st.st_size)); | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3071 fclose(file); |
2336
c6c5eaf69188
[gaim-migrate @ 2349]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2315
diff
changeset
|
3072 } else |
8660 | 3073 gaim_debug_error("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3074 "Can't open buddy icon file!\n"); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3075 g_free(buf); |
2336
c6c5eaf69188
[gaim-migrate @ 2349]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2315
diff
changeset
|
3076 } else |
8660 | 3077 gaim_debug_error("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3078 "Can't stat buddy icon file!\n"); |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3079 } |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3080 |
8660 | 3081 gaim_debug_misc("oscar", |
8623 | 3082 "Received message from %s with charset %hu %hu\n", |
3083 userinfo->sn, args->charset, args->charsubset); | |
3084 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3085 if (args->icbmflags & AIM_IMFLAGS_UNICODE) { |
3722 | 3086 /* This message is marked as UNICODE, so we have to |
3087 * convert it to utf-8 before handing it to the gaim core. | |
3088 * This conversion should *never* fail, if it does it | |
3089 * means that either the incoming ICBM is corrupted or | |
4662 | 3090 * there is something we don't understand about it. |
3091 * For the record, AIM Unicode is big-endian UCS-2 */ | |
3092 | |
8660 | 3093 gaim_debug_info("oscar", "Received UNICODE IM\n"); |
4121 | 3094 |
3095 if (!args->msg || !args->msglen) | |
3096 return 1; | |
4641 | 3097 |
3659 | 3098 tmp = g_convert(args->msg, args->msglen, "UTF-8", "UCS-2BE", NULL, &convlen, &err); |
3099 if (err) { | |
8660 | 3100 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3101 "Unicode IM conversion: %s\n", err->message); |
7475 | 3102 tmp = g_strdup(_("(There was an error receiving this message)")); |
4800 | 3103 g_error_free(err); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3104 } |
3722 | 3105 } else { |
3850 | 3106 /* This will get executed for both AIM_IMFLAGS_ISO_8859_1 and |
3722 | 3107 * unflagged messages, which are ASCII. That's OK because |
3108 * ASCII is a strict subset of ISO-8859-1; this should | |
3109 * help with compatibility with old, broken versions of | |
3110 * gaim (everything before 0.60) and other broken clients | |
3111 * that will happily send ISO-8859-1 without marking it as | |
3112 * such */ | |
4662 | 3113 if (args->icbmflags & AIM_IMFLAGS_ISO_8859_1) |
8660 | 3114 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3115 "Received ISO-8859-1 IM\n"); |
4121 | 3116 |
3117 if (!args->msg || !args->msglen) | |
3118 return 1; | |
3119 | |
3659 | 3120 tmp = g_convert(args->msg, args->msglen, "UTF-8", "ISO-8859-1", NULL, &convlen, &err); |
3121 if (err) { | |
8660 | 3122 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3123 "ISO-8859-1 IM conversion: %s\n", err->message); |
7475 | 3124 tmp = g_strdup(_("(There was an error receiving this message)")); |
4800 | 3125 g_error_free(err); |
3659 | 3126 } |
3642 | 3127 } |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3128 |
8666 | 3129 /* |
8995 | 3130 * If the message is being received by an ICQ user then escape any HTML, |
9016 | 3131 * because HTML is not sent over ICQ as a means to format a message. |
8995 | 3132 * so any HTML we receive is intended to be displayed |
3133 * | |
3134 * Note: There *may* be some clients which send messages as HTML formatted - | |
3135 * they need to be special-cased somehow. | |
8666 | 3136 */ |
8995 | 3137 if (isdigit(gaim_account_get_username(account)[0]) && isdigit(userinfo->sn[0])) { |
3138 /* being recevied by ICQ from ICQ - escape HTML so it is displayed as sent */ | |
3139 gchar *tmp2 = gaim_escape_html(tmp); | |
8493 | 3140 g_free(tmp); |
3141 tmp = tmp2; | |
3142 } | |
3143 | |
6982 | 3144 serv_got_im(gc, userinfo->sn, tmp, flags, time(NULL)); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3145 g_free(tmp); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3146 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3147 return 1; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3148 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3149 |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3150 static int incomingim_chan2(aim_session_t *sess, aim_conn_t *conn, aim_userinfo_t *userinfo, struct aim_incomingim_ch2_args *args) { |
9070 | 3151 GaimConnection *gc; |
3152 OscarData *od; | |
3153 const char *username; | |
3154 | |
3155 g_return_val_if_fail(sess != NULL, 0); | |
3156 g_return_val_if_fail(sess->aux_data != NULL, 0); | |
3157 | |
3158 gc = sess->aux_data; | |
3159 od = gc->proto_data; | |
3160 username = gaim_account_get_username(gaim_connection_get_account(gc)); | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3161 |
4121 | 3162 if (!args) |
3163 return 0; | |
4194 | 3164 |
8660 | 3165 gaim_debug_misc("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3166 "rendezvous with %s, status is %hu\n", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3167 userinfo->sn, args->status); |
2869 | 3168 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3169 if (args->reqclass & AIM_CAPS_CHAT) { |
4121 | 3170 char *name; |
5234 | 3171 GHashTable *components; |
3172 | |
4121 | 3173 if (!args->info.chat.roominfo.name || !args->info.chat.roominfo.exchange || !args->msg) |
3174 return 1; | |
5234 | 3175 components = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, |
3176 g_free); | |
4121 | 3177 name = extract_name(args->info.chat.roominfo.name); |
5234 | 3178 g_hash_table_replace(components, g_strdup("room"), g_strdup(name ? name : args->info.chat.roominfo.name)); |
3179 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
|
3180 serv_got_chat_invite(gc, |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3181 name ? name : args->info.chat.roominfo.name, |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3182 userinfo->sn, |
6059 | 3183 args->msg, |
5234 | 3184 components); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3185 if (name) |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3186 g_free(name); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3187 } else if (args->reqclass & AIM_CAPS_SENDFILE) { |
4617 | 3188 /* BBB */ |
3189 if (args->status == AIM_RENDEZVOUS_PROPOSE) { | |
3190 /* Someone wants to send a file (or files) to us */ | |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
3191 GaimXfer *xfer; |
5146 | 3192 struct aim_oft_info *oft_info; |
3193 | |
3194 if (!args->cookie || !args->port || !args->verifiedip || | |
3195 !args->info.sendfile.filename || !args->info.sendfile.totsize || | |
4656 | 3196 !args->info.sendfile.totfiles || !args->reqclass) { |
8660 | 3197 gaim_debug_warning("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3198 "%s tried to send you a file with incomplete " |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3199 "information.\n", userinfo->sn); |
5146 | 3200 if (args->proxyip) |
8660 | 3201 gaim_debug_warning("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3202 "IP for a proxy server was given. Gaim " |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3203 "does not support this yet.\n"); |
4617 | 3204 return 1; |
4656 | 3205 } |
4617 | 3206 |
3207 if (args->info.sendfile.subtype == AIM_OFT_SUBTYPE_SEND_DIR) { | |
3208 /* last char of the ft req is a star, they are sending us a | |
8735
92cbf9713795
[gaim-migrate @ 9490]
Christian Hammond <chipx86@chipx86.com>
parents:
8733
diff
changeset
|
3209 * directory -- remove the star and trailing slash so we don't save |
4617 | 3210 * directories that look like 'dirname\*' -- arl */ |
3211 char *tmp = strrchr(args->info.sendfile.filename, '\\'); | |
3212 if (tmp && (tmp[1] == '*')) { | |
3213 tmp[0] = '\0'; | |
3214 } | |
8660 | 3215 gaim_debug_warning("oscar", |
8446 | 3216 "We're receiving a whole directory! What fun! " |
3217 "Especially since we don't support that!\n"); | |
4617 | 3218 } |
3219 | |
3220 /* Build the file transfer handle */ | |
3221 xfer = gaim_xfer_new(gc->account, GAIM_XFER_RECEIVE, userinfo->sn); | |
5163 | 3222 xfer->remote_ip = g_strdup(args->verifiedip); |
5146 | 3223 xfer->remote_port = args->port; |
4617 | 3224 gaim_xfer_set_filename(xfer, args->info.sendfile.filename); |
3225 gaim_xfer_set_size(xfer, args->info.sendfile.totsize); | |
5146 | 3226 |
3227 /* Create the oscar-specific data */ | |
5163 | 3228 oft_info = aim_oft_createinfo(od->sess, args->cookie, userinfo->sn, args->clientip, xfer->remote_port, 0, 0, NULL); |
4898 | 3229 if (args->proxyip) |
5146 | 3230 oft_info->proxyip = g_strdup(args->proxyip); |
4898 | 3231 if (args->verifiedip) |
5146 | 3232 oft_info->verifiedip = g_strdup(args->verifiedip); |
3233 xfer->data = oft_info; | |
4617 | 3234 |
3235 /* Setup our I/O op functions */ | |
8446 | 3236 gaim_xfer_set_init_fnc(xfer, oscar_xfer_init_recv); |
4617 | 3237 gaim_xfer_set_end_fnc(xfer, oscar_xfer_end); |
8446 | 3238 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
|
3239 gaim_xfer_set_cancel_recv_fnc(xfer, oscar_xfer_cancel_recv); |
8446 | 3240 gaim_xfer_set_ack_fnc(xfer, oscar_xfer_ack_recv); |
4617 | 3241 |
3242 /* | |
3243 * XXX - Should do something with args->msg, args->encoding, and args->language | |
3244 * probably make it apply to all ch2 messages. | |
3752 | 3245 */ |
4617 | 3246 |
3247 /* Keep track of this transfer for later */ | |
3248 od->file_transfers = g_slist_append(od->file_transfers, xfer); | |
3249 | |
3250 /* Now perform the request */ | |
3251 gaim_xfer_request(xfer); | |
3252 } else if (args->status == AIM_RENDEZVOUS_CANCEL) { | |
3253 /* The other user wants to cancel a file transfer */ | |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
3254 GaimXfer *xfer; |
8660 | 3255 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3256 "AAA - File transfer canceled by remote user\n"); |
4617 | 3257 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
|
3258 gaim_xfer_cancel_remote(xfer); |
4617 | 3259 } else if (args->status == AIM_RENDEZVOUS_ACCEPT) { |
3260 /* | |
3261 * This gets sent by the receiver of a file | |
3262 * as they connect directly to us. If we don't | |
3263 * get this, then maybe a third party connected | |
3264 * to us, and we shouldn't send them anything. | |
3265 */ | |
3266 } else { | |
8660 | 3267 gaim_debug_error("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3268 "unknown rendezvous status!\n"); |
3630 | 3269 } |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3270 } else if (args->reqclass & AIM_CAPS_GETFILE) { |
8092 | 3271 } else if (args->reqclass & AIM_CAPS_TALK) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3272 } else if (args->reqclass & AIM_CAPS_BUDDYICON) { |
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6787
diff
changeset
|
3273 gaim_buddy_icons_set_for_user(gaim_connection_get_account(gc), |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6787
diff
changeset
|
3274 userinfo->sn, args->info.icon.icon, |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6787
diff
changeset
|
3275 args->info.icon.length); |
6871 | 3276 } else if (args->reqclass & AIM_CAPS_DIRECTIM) { |
8971 | 3277 /* Consider moving all this into a helper func in the direct im block way up there */ |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3278 struct ask_direct *d = g_new0(struct ask_direct, 1); |
8971 | 3279 struct oscar_direct_im *dim = oscar_direct_im_find(od, userinfo->sn); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3280 char buf[256]; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3281 |
4212 | 3282 if (!args->verifiedip) { |
8983 | 3283 /* TODO: do something about this, after figuring out what it means */ |
8660 | 3284 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3285 "directim kill blocked (%s)\n", userinfo->sn); |
4650 | 3286 return 1; |
4212 | 3287 } |
3288 | |
8660 | 3289 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3290 "%s received direct im request from %s (%s)\n", |
8983 | 3291 username, userinfo->sn, args->clientip); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3292 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3293 d->gc = gc; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3294 d->sn = g_strdup(userinfo->sn); |
8983 | 3295 /* Let's use the clientip here, because I think that's what AIM does. |
3296 * Besides, if the clientip is wrong, we'll probably timeout faster, | |
3297 * and then ask them to connect to us. */ | |
3298 snprintf(d->ip, sizeof(d->ip), "%s:%d", args->clientip, args->port?args->port:5190); | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3299 memcpy(d->cookie, args->cookie, 8); |
9070 | 3300 if (dim && !dim->connected && aim_odc_getcookie(dim->conn) && args->cookie && |
3301 (!memcmp(aim_odc_getcookie(dim->conn), args->cookie, 8))) { | |
3302 | |
8971 | 3303 oscar_direct_im_destroy(od, dim); |
8984 | 3304 d->donttryagain = TRUE; |
8971 | 3305 accept_direct_im_request(d); |
3306 } else { | |
8983 | 3307 if (dim && !dim->connected) |
8971 | 3308 gaim_debug_warning("oscar", "DirectIM: received direct im request while " |
3309 "already connected to that buddy!"); | |
5575 | 3310 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
|
3311 |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
3312 gaim_request_action(gc, NULL, buf, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
3313 _("This requires a direct connection between " |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
3314 "the two computers and is necessary for IM " |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
3315 "Images. Because your IP address will be " |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
3316 "revealed, this may be considered a privacy " |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
3317 "risk."), 0, d, 2, |
8971 | 3318 _("Connect"), G_CALLBACK(accept_direct_im_request), |
3319 _("Cancel"), G_CALLBACK(destroy_direct_im_request)); | |
3320 /* FIXME: we should actually send a packet on cancel */ | |
3321 } | |
8708 | 3322 } else if (args->reqclass & AIM_CAPS_ICQSERVERRELAY) { |
3323 gaim_debug_error("oscar", "Got an ICQ Server Relay message of type %d\n", args->info.rtfmsg.msgtype); | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3324 } else { |
8660 | 3325 gaim_debug_error("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3326 "Unknown reqclass %hu\n", args->reqclass); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3327 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3328 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3329 return 1; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3330 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3331 |
3453 | 3332 /* |
4230 | 3333 * Authorization Functions |
3334 * Most of these are callbacks from dialogs. They're used by both | |
3335 * methods of authorization (SSI and old-school channel 4 ICBM) | |
3453 | 3336 */ |
4269 | 3337 /* When you ask other people for authorization */ |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
3338 static void gaim_auth_request(struct name_data *data, char *msg) { |
5575 | 3339 GaimConnection *gc = data->gc; |
4244 | 3340 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
3341 if (g_list_find(gaim_connections_get_all(), gc)) { |
7283 | 3342 OscarData *od = gc->proto_data; |
6695 | 3343 GaimBuddy *buddy = gaim_find_buddy(gc->account, data->name); |
3344 GaimGroup *group = gaim_find_buddys_group(buddy); | |
4244 | 3345 if (buddy && group) { |
8660 | 3346 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3347 "ssi: adding buddy %s to group %s\n", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3348 buddy->name, group->name); |
4889 | 3349 aim_ssi_sendauthrequest(od->sess, data->name, msg ? msg : _("Please authorize me so I can add you to my buddy list.")); |
4269 | 3350 if (!aim_ssi_itemlist_finditem(od->sess->ssi.local, group->name, buddy->name, AIM_SSI_TYPE_BUDDY)) |
9620 | 3351 aim_ssi_addbuddy(od->sess, buddy->name, group->name, gaim_buddy_get_alias_only(buddy), NULL, NULL, 1); |
4244 | 3352 } |
4230 | 3353 } |
4337 | 3354 } |
3355 | |
3356 static void gaim_auth_request_msgprompt(struct name_data *data) { | |
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
3357 gaim_request_input(data->gc, NULL, _("Authorization Request Message:"), |
8697 | 3358 NULL, _("Please authorize me!"), TRUE, FALSE, NULL, |
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
3359 _("OK"), G_CALLBACK(gaim_auth_request), |
5836 | 3360 _("Cancel"), G_CALLBACK(oscar_free_name_data), |
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
3361 data); |
4230 | 3362 } |
3363 | |
3364 static void gaim_auth_dontrequest(struct name_data *data) { | |
5575 | 3365 GaimConnection *gc = data->gc; |
4244 | 3366 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
3367 if (g_list_find(gaim_connections_get_all(), gc)) { |
8151 | 3368 /* Remove from local list */ |
3369 GaimBuddy *b = gaim_find_buddy(gaim_connection_get_account(gc), data->name); | |
3370 gaim_blist_remove_buddy(b); | |
4244 | 3371 } |
3372 | |
5836 | 3373 oscar_free_name_data(data); |
4230 | 3374 } |
3375 | |
9030 | 3376 |
3377 static void gaim_auth_sendrequest(GaimConnection *gc, char *name) { | |
4269 | 3378 struct name_data *data = g_new(struct name_data, 1); |
6695 | 3379 GaimBuddy *buddy; |
4269 | 3380 gchar *dialog_msg, *nombre; |
3381 | |
4687 | 3382 buddy = gaim_find_buddy(gc->account, name); |
9620 | 3383 if (buddy && (gaim_buddy_get_alias_only(buddy))) |
3384 nombre = g_strdup_printf("%s (%s)", name, gaim_buddy_get_alias_only(buddy)); | |
4269 | 3385 else |
4830 | 3386 nombre = NULL; |
3387 | |
3388 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 | 3389 data->gc = gc; |
3390 data->name = g_strdup(name); | |
3391 data->nick = NULL; | |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
3392 |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
3393 gaim_request_action(gc, NULL, _("Request Authorization"), dialog_msg, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
3394 0, data, 2, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
3395 _("Request Authorization"), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
3396 G_CALLBACK(gaim_auth_request_msgprompt), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
3397 _("Cancel"), G_CALLBACK(gaim_auth_dontrequest)); |
4269 | 3398 |
3399 g_free(dialog_msg); | |
3400 g_free(nombre); | |
3401 } | |
3402 | |
9030 | 3403 |
3404 static void gaim_auth_sendrequest_menu(GaimBlistNode *node, gpointer ignored) { | |
3405 GaimBuddy *buddy; | |
3406 GaimConnection *gc; | |
3407 | |
3408 g_return_if_fail(GAIM_BLIST_NODE_IS_BUDDY(node)); | |
3409 | |
3410 buddy = (GaimBuddy *) node; | |
3411 gc = gaim_account_get_connection(buddy->account); | |
3412 gaim_auth_sendrequest(gc, buddy->name); | |
3413 } | |
3414 | |
4230 | 3415 /* When other people ask you for authorization */ |
3416 static void gaim_auth_grant(struct name_data *data) { | |
5575 | 3417 GaimConnection *gc = data->gc; |
4244 | 3418 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
3419 if (g_list_find(gaim_connections_get_all(), gc)) { |
7283 | 3420 OscarData *od = gc->proto_data; |
4236 | 3421 #ifdef NOSSI |
6695 | 3422 GaimBuddy *buddy; |
4244 | 3423 gchar message; |
3424 message = 0; | |
4687 | 3425 buddy = gaim_find_buddy(gc->account, data->name); |
4617 | 3426 aim_im_sendch4(od->sess, data->name, AIM_ICQMSG_AUTHGRANTED, &message); |
9620 | 3427 gaim_account_notify_added(gc->account, NULL, data->name, (buddy ? gaim_buddy_get_alias_only(buddy) : NULL), NULL); |
4230 | 3428 #else |
4889 | 3429 aim_ssi_sendauthreply(od->sess, data->name, 0x01, NULL); |
4230 | 3430 #endif |
4244 | 3431 } |
3432 | |
5836 | 3433 oscar_free_name_data(data); |
3141 | 3434 } |
3435 | |
4230 | 3436 /* When other people ask you for authorization */ |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
3437 static void gaim_auth_dontgrant(struct name_data *data, char *msg) { |
5575 | 3438 GaimConnection *gc = data->gc; |
4244 | 3439 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
3440 if (g_list_find(gaim_connections_get_all(), gc)) { |
7283 | 3441 OscarData *od = gc->proto_data; |
4230 | 3442 #ifdef NOSSI |
4617 | 3443 aim_im_sendch4(od->sess, data->name, AIM_ICQMSG_AUTHDENIED, msg ? msg : _("No reason given.")); |
4230 | 3444 #else |
4889 | 3445 aim_ssi_sendauthreply(od->sess, data->name, 0x00, msg ? msg : _("No reason given.")); |
4230 | 3446 #endif |
4244 | 3447 } |
4337 | 3448 } |
3449 | |
3450 static void gaim_auth_dontgrant_msgprompt(struct name_data *data) { | |
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
3451 gaim_request_input(data->gc, NULL, _("Authorization Denied Message:"), |
8697 | 3452 NULL, _("No reason given."), TRUE, FALSE, NULL, |
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
3453 _("OK"), G_CALLBACK(gaim_auth_dontgrant), |
5836 | 3454 _("Cancel"), G_CALLBACK(oscar_free_name_data), |
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
3455 data); |
3141 | 3456 } |
3457 | |
7023 | 3458 /* When someone sends you buddies */ |
3459 static void gaim_icq_buddyadd(struct name_data *data) { | |
5575 | 3460 GaimConnection *gc = data->gc; |
4244 | 3461 |
5580
86456ec3ca25
[gaim-migrate @ 5984]
Christian Hammond <chipx86@chipx86.com>
parents:
5579
diff
changeset
|
3462 if (g_list_find(gaim_connections_get_all(), gc)) { |
7060
9946001989a3
[gaim-migrate @ 7623]
Christian Hammond <chipx86@chipx86.com>
parents:
7054
diff
changeset
|
3463 gaim_blist_request_add_buddy(gaim_connection_get_account(gc), data->name, NULL, data->nick); |
4244 | 3464 } |
3465 | |
5836 | 3466 oscar_free_name_data(data); |
3453 | 3467 } |
3468 | |
4075 | 3469 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 | 3470 GaimConnection *gc = sess->aux_data; |
4076 | 3471 gchar **msg1, **msg2; |
3472 GError *err = NULL; | |
6051 | 3473 int i, numtoks; |
4076 | 3474 |
4121 | 3475 if (!args->type || !args->msg || !args->uin) |
3476 return 1; | |
4194 | 3477 |
8660 | 3478 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3479 "Received a channel 4 message of type 0x%02hhx.\n", args->type); |
4076 | 3480 |
3481 /* Split up the message at the delimeter character, then convert each string to UTF-8 */ | |
4173 | 3482 msg1 = g_strsplit(args->msg, "\376", 0); |
6051 | 3483 for (numtoks=0; msg1[numtoks]; numtoks++); |
3484 msg2 = (gchar **)g_malloc((numtoks+1)*sizeof(gchar *)); | |
4076 | 3485 for (i=0; msg1[i]; i++) { |
7478
3c21f3084ff0
[gaim-migrate @ 8091]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7475
diff
changeset
|
3486 gaim_str_strip_cr(msg1[i]); |
4076 | 3487 msg2[i] = g_convert(msg1[i], strlen(msg1[i]), "UTF-8", "ISO-8859-1", NULL, NULL, &err); |
4800 | 3488 if (err) { |
8660 | 3489 gaim_debug_error("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3490 "Error converting a string from ISO-8859-1 to " |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3491 "UTF-8 in oscar ICBM channel 4 parsing\n"); |
4800 | 3492 g_error_free(err); |
3493 } | |
4076 | 3494 } |
3495 msg2[i] = NULL; | |
3496 | |
3952 | 3497 switch (args->type) { |
4173 | 3498 case 0x01: { /* MacICQ message or basic offline message */ |
4076 | 3499 if (i >= 1) { |
5556 | 3500 gchar *uin = g_strdup_printf("%u", args->uin); |
8493 | 3501 gchar *tmp; |
3502 | |
3503 /* If the message came from an ICQ user then escape any HTML */ | |
8501 | 3504 tmp = gaim_escape_html(msg2[0]); |
8493 | 3505 |
4076 | 3506 if (t) { /* This is an offline message */ |
9680 | 3507 /* The timestamp is UTC-ish, so we need to get the offset */ |
9698 | 3508 #ifdef HAVE_TM_GMTOFF |
9724 | 3509 time_t now; |
3510 struct tm *tm; | |
3511 now = time(NULL); | |
3512 tm = localtime(&now); | |
3513 t += tm->tm_gmtoff; | |
9698 | 3514 #else |
3515 # ifdef HAVE_TIMEZONE | |
9680 | 3516 tzset(); |
3517 t -= timezone; | |
9698 | 3518 # endif |
3519 #endif | |
8514 | 3520 serv_got_im(gc, uin, tmp, 0, t); |
4076 | 3521 } else { /* This is a message from MacICQ/Miranda */ |
8514 | 3522 serv_got_im(gc, uin, tmp, 0, time(NULL)); |
4076 | 3523 } |
3524 g_free(uin); | |
8493 | 3525 g_free(tmp); |
4075 | 3526 } |
3316 | 3527 } break; |
3528 | |
4173 | 3529 case 0x04: { /* Someone sent you a URL */ |
4076 | 3530 if (i >= 2) { |
7385 | 3531 if (msg2[1] != NULL) { |
3532 gchar *uin = g_strdup_printf("%u", args->uin); | |
3533 gchar *message = g_strdup_printf("<A HREF=\"%s\">%s</A>", | |
3534 msg2[1], | |
3535 (msg2[0] && msg2[0][0]) ? msg2[0] : msg2[1]); | |
3536 serv_got_im(gc, uin, message, 0, time(NULL)); | |
3537 g_free(uin); | |
3538 g_free(message); | |
3539 } | |
3453 | 3540 } |
3541 } break; | |
3542 | |
4173 | 3543 case 0x06: { /* Someone requested authorization */ |
4076 | 3544 if (i >= 6) { |
4230 | 3545 struct name_data *data = g_new(struct name_data, 1); |
5556 | 3546 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.")); |
8660 | 3547 gaim_debug_info("oscar", |
5556 | 3548 "Received an authorization request from UIN %u\n", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3549 args->uin); |
4076 | 3550 data->gc = gc; |
5556 | 3551 data->name = g_strdup_printf("%u", args->uin); |
4230 | 3552 data->nick = NULL; |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
3553 |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
3554 gaim_request_action(gc, NULL, _("Authorization Request"), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
3555 dialog_msg, 0, data, 2, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
3556 _("Authorize"), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
3557 G_CALLBACK(gaim_auth_grant), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
3558 _("Deny"), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
3559 G_CALLBACK(gaim_auth_dontgrant_msgprompt)); |
4076 | 3560 g_free(dialog_msg); |
3561 } | |
3141 | 3562 } break; |
3563 | |
4173 | 3564 case 0x07: { /* Someone has denied you authorization */ |
4076 | 3565 if (i >= 1) { |
7023 | 3566 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
|
3567 gaim_notify_info(gc, NULL, _("ICQ authorization denied."), |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
3568 dialog_msg); |
4076 | 3569 g_free(dialog_msg); |
3570 } | |
3141 | 3571 } break; |
3572 | |
4173 | 3573 case 0x08: { /* Someone has granted you authorization */ |
7023 | 3574 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
|
3575 gaim_notify_info(gc, NULL, "ICQ authorization accepted.", |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
3576 dialog_msg); |
3141 | 3577 g_free(dialog_msg); |
3578 } break; | |
3579 | |
4333 | 3580 case 0x09: { /* Message from the Godly ICQ server itself, I think */ |
3581 if (i >= 5) { | |
3582 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
|
3583 gaim_notify_info(gc, NULL, "ICQ Server Message", dialog_msg); |
4333 | 3584 g_free(dialog_msg); |
3585 } | |
3586 } break; | |
3587 | |
4173 | 3588 case 0x0d: { /* Someone has sent you a pager message from http://www.icq.com/your_uin */ |
4076 | 3589 if (i >= 6) { |
4194 | 3590 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
|
3591 gaim_notify_info(gc, NULL, "ICQ Page", dialog_msg); |
4076 | 3592 g_free(dialog_msg); |
3593 } | |
4075 | 3594 } break; |
3595 | |
4173 | 3596 case 0x0e: { /* Someone has emailed you at your_uin@pager.icq.com */ |
4076 | 3597 if (i >= 6) { |
4308 | 3598 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
|
3599 gaim_notify_info(gc, NULL, "ICQ Email", dialog_msg); |
4076 | 3600 g_free(dialog_msg); |
3601 } | |
4075 | 3602 } break; |
3603 | |
4173 | 3604 case 0x12: { |
3141 | 3605 /* Ack for authorizing/denying someone. Or possibly an ack for sending any system notice */ |
7023 | 3606 /* Someone added you to their buddy list? */ |
3141 | 3607 } break; |
3608 | |
7023 | 3609 case 0x13: { /* Someone has sent you some ICQ buddies */ |
7631 | 3610 guint i, num; |
3453 | 3611 gchar **text; |
4173 | 3612 text = g_strsplit(args->msg, "\376", 0); |
3453 | 3613 if (text) { |
3614 num = 0; | |
3615 for (i=0; i<strlen(text[0]); i++) | |
3616 num = num*10 + text[0][i]-48; | |
3617 for (i=0; i<num; i++) { | |
4230 | 3618 struct name_data *data = g_new(struct name_data, 1); |
7023 | 3619 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 | 3620 data->gc = gc; |
4790 | 3621 data->name = g_strdup(text[i*2+1]); |
3622 data->nick = g_strdup(text[i*2+2]); | |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
3623 |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
3624 gaim_request_action(gc, NULL, message, |
7023 | 3625 _("Do you want to add this buddy " |
3626 "to your buddy list?"), | |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
3627 0, data, 2, |
7023 | 3628 _("Add"), G_CALLBACK(gaim_icq_buddyadd), |
5836 | 3629 _("Decline"), G_CALLBACK(oscar_free_name_data)); |
3453 | 3630 g_free(message); |
3631 } | |
3632 g_strfreev(text); | |
3633 } | |
3634 } break; | |
3635 | |
7023 | 3636 case 0x1a: { /* Someone has sent you a greeting card or requested buddies? */ |
3453 | 3637 /* This is boring and silly. */ |
3638 } break; | |
3639 | |
3141 | 3640 default: { |
8660 | 3641 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3642 "Received a channel 4 message of unknown type " |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3643 "(type 0x%02hhx).\n", args->type); |
3141 | 3644 } break; |
3645 } | |
3646 | |
4076 | 3647 g_strfreev(msg1); |
3648 g_strfreev(msg2); | |
3649 | |
3141 | 3650 return 1; |
3651 } | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3652 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3653 static int gaim_parse_incoming_im(aim_session_t *sess, aim_frame_t *fr, ...) { |
4200 | 3654 fu16_t channel; |
3655 int ret = 0; | |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3656 aim_userinfo_t *userinfo; |
2086 | 3657 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3658 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3659 va_start(ap, fr); |
4200 | 3660 channel = (fu16_t)va_arg(ap, unsigned int); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3661 userinfo = va_arg(ap, aim_userinfo_t *); |
2086 | 3662 |
3141 | 3663 switch (channel) { |
3664 case 1: { /* standard message */ | |
3665 struct aim_incomingim_ch1_args *args; | |
3666 args = va_arg(ap, struct aim_incomingim_ch1_args *); | |
3667 ret = incomingim_chan1(sess, fr->conn, userinfo, args); | |
3668 } break; | |
3669 | |
8735
92cbf9713795
[gaim-migrate @ 9490]
Christian Hammond <chipx86@chipx86.com>
parents:
8733
diff
changeset
|
3670 case 2: { /* rendezvous */ |
3141 | 3671 struct aim_incomingim_ch2_args *args; |
3672 args = va_arg(ap, struct aim_incomingim_ch2_args *); | |
3673 ret = incomingim_chan2(sess, fr->conn, userinfo, args); | |
3674 } break; | |
3675 | |
3676 case 4: { /* ICQ */ | |
3677 struct aim_incomingim_ch4_args *args; | |
3678 args = va_arg(ap, struct aim_incomingim_ch4_args *); | |
4075 | 3679 ret = incomingim_chan4(sess, fr->conn, userinfo, args, 0); |
3141 | 3680 } break; |
3681 | |
3682 default: { | |
8660 | 3683 gaim_debug_warning("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3684 "ICBM received on unsupported channel (channel " |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3685 "0x%04hx).", channel); |
3141 | 3686 } break; |
2086 | 3687 } |
3688 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3689 va_end(ap); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3690 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3691 return ret; |
2086 | 3692 } |
3693 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3694 static int gaim_parse_misses(aim_session_t *sess, aim_frame_t *fr, ...) { |
8733 | 3695 GaimConnection *gc = sess->aux_data; |
3696 GaimAccount *account = gaim_connection_get_account(gc); | |
5420 | 3697 char *buf; |
2086 | 3698 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3699 fu16_t chan, nummissed, reason; |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
3700 aim_userinfo_t *userinfo; |
2086 | 3701 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3702 va_start(ap, fr); |
4200 | 3703 chan = (fu16_t)va_arg(ap, unsigned int); |
3704 userinfo = va_arg(ap, aim_userinfo_t *); | |
3705 nummissed = (fu16_t)va_arg(ap, unsigned int); | |
3706 reason = (fu16_t)va_arg(ap, unsigned int); | |
2086 | 3707 va_end(ap); |
3708 | |
3709 switch(reason) { | |
5420 | 3710 case 0: /* Invalid (0) */ |
3711 buf = g_strdup_printf( | |
3712 ngettext( | |
4276 | 3713 "You missed %hu message from %s because it was invalid.", |
3714 "You missed %hu messages from %s because they were invalid.", | |
3715 nummissed), | |
4282 | 3716 nummissed, |
3717 userinfo->sn); | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3718 break; |
5420 | 3719 case 1: /* Message too large */ |
3720 buf = g_strdup_printf( | |
3721 ngettext( | |
4276 | 3722 "You missed %hu message from %s because it was too large.", |
3723 "You missed %hu messages from %s because they were too large.", | |
3724 nummissed), | |
4282 | 3725 nummissed, |
3726 userinfo->sn); | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3727 break; |
5420 | 3728 case 2: /* Rate exceeded */ |
3729 buf = g_strdup_printf( | |
3730 ngettext( | |
4276 | 3731 "You missed %hu message from %s because the rate limit has been exceeded.", |
3732 "You missed %hu messages from %s because the rate limit has been exceeded.", | |
3733 nummissed), | |
4282 | 3734 nummissed, |
3735 userinfo->sn); | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3736 break; |
5420 | 3737 case 3: /* Evil Sender */ |
3738 buf = g_strdup_printf( | |
3739 ngettext( | |
4276 | 3740 "You missed %hu message from %s because he/she was too evil.", |
3741 "You missed %hu messages from %s because he/she was too evil.", | |
3742 nummissed), | |
4282 | 3743 nummissed, |
3744 userinfo->sn); | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
3745 break; |
5420 | 3746 case 4: /* Evil Receiver */ |
3747 buf = g_strdup_printf( | |
3748 ngettext( | |
4276 | 3749 "You missed %hu message from %s because you are too evil.", |
3750 "You missed %hu messages from %s because you are too evil.", | |
3751 nummissed), | |
4282 | 3752 nummissed, |
3753 userinfo->sn); | |
2086 | 3754 break; |
3755 default: | |
5420 | 3756 buf = g_strdup_printf( |
3757 ngettext( | |
4276 | 3758 "You missed %hu message from %s for an unknown reason.", |
3759 "You missed %hu messages from %s for an unknown reason.", | |
3760 nummissed), | |
4282 | 3761 nummissed, |
3762 userinfo->sn); | |
2086 | 3763 break; |
3764 } | |
8733 | 3765 |
9627 | 3766 if (!gaim_conv_present_error(userinfo->sn, account, buf)) |
8733 | 3767 gaim_notify_error(sess->aux_data, NULL, buf, NULL); |
5420 | 3768 g_free(buf); |
2086 | 3769 |
3770 return 1; | |
3771 } | |
3772 | |
4194 | 3773 static int gaim_parse_clientauto_ch2(aim_session_t *sess, const char *who, fu16_t reason, const char *cookie) { |
5575 | 3774 GaimConnection *gc = sess->aux_data; |
7283 | 3775 OscarData *od = gc->proto_data; |
4617 | 3776 |
3777 /* BBB */ | |
3630 | 3778 switch (reason) { |
4151 | 3779 case 3: { /* Decline sendfile. */ |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
3780 GaimXfer *xfer; |
8971 | 3781 struct oscar_direct_im *dim; |
3782 | |
8660 | 3783 gaim_debug_info("oscar", |
9070 | 3784 "AAA - Other user declined some sort of direct " |
8971 | 3785 "connect attempt (automaticly?)\n"); |
4617 | 3786 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
|
3787 gaim_xfer_cancel_remote(xfer); |
8971 | 3788 else if ((dim = oscar_direct_im_find(od, who))) { |
3789 /* AAA should use find by cookie or something here */ | |
3790 oscar_direct_im_disconnect(od, dim); | |
3791 } | |
4151 | 3792 } break; |
3793 | |
3794 default: { | |
8660 | 3795 gaim_debug_warning("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3796 "Received an unknown rendezvous client auto-response " |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3797 "from %s. Type 0x%04hx\n", who, reason); |
4151 | 3798 } |
3630 | 3799 |
3800 } | |
3801 | |
3802 return 0; | |
3803 } | |
3804 | |
4194 | 3805 static int gaim_parse_clientauto_ch4(aim_session_t *sess, char *who, fu16_t reason, fu32_t state, char *msg) { |
5575 | 3806 GaimConnection *gc = sess->aux_data; |
4151 | 3807 |
3808 switch(reason) { | |
3809 case 0x0003: { /* Reply from an ICQ status message request */ | |
9244 | 3810 char *title, *statusmsg, **splitmsg, *dialogmsg; |
3811 | |
3812 title = g_strdup_printf(_("Info for %s"), who); | |
4151 | 3813 |
3814 /* Split at (carriage return/newline)'s, then rejoin later with BRs between. */ | |
9244 | 3815 statusmsg = oscar_icqstatus(state); |
4151 | 3816 splitmsg = g_strsplit(msg, "\r\n", 0); |
9244 | 3817 dialogmsg = g_strdup_printf(_("<B>UIN:</B> %s<BR><B>Status:</B> %s<HR>%s"), who, statusmsg, g_strjoinv("<BR>", splitmsg)); |
3818 g_free(statusmsg); | |
4151 | 3819 g_strfreev(splitmsg); |
9244 | 3820 |
3821 gaim_notify_formatted(gc, title, _("Buddy Information"), NULL, dialogmsg, NULL, NULL); | |
3822 | |
3823 g_free(title); | |
3824 g_free(dialogmsg); | |
4151 | 3825 } break; |
3826 | |
3827 default: { | |
8660 | 3828 gaim_debug_warning("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3829 "Received an unknown client auto-response from %s. " |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3830 "Type 0x%04hx\n", who, reason); |
4151 | 3831 } break; |
3832 } /* end of switch */ | |
3833 | |
3834 return 0; | |
3835 } | |
3836 | |
3212 | 3837 static int gaim_parse_clientauto(aim_session_t *sess, aim_frame_t *fr, ...) { |
3838 va_list ap; | |
3839 fu16_t chan, reason; | |
3840 char *who; | |
3841 | |
3842 va_start(ap, fr); | |
4200 | 3843 chan = (fu16_t)va_arg(ap, unsigned int); |
3212 | 3844 who = va_arg(ap, char *); |
4200 | 3845 reason = (fu16_t)va_arg(ap, unsigned int); |
3212 | 3846 |
3952 | 3847 if (chan == 0x0002) { /* File transfer declined */ |
3630 | 3848 char *cookie = va_arg(ap, char *); |
4151 | 3849 return gaim_parse_clientauto_ch2(sess, who, reason, cookie); |
3952 | 3850 } else if (chan == 0x0004) { /* ICQ message */ |
4200 | 3851 fu32_t state = 0; |
4151 | 3852 char *msg = NULL; |
3853 if (reason == 0x0003) { | |
4200 | 3854 state = va_arg(ap, fu32_t); |
4151 | 3855 msg = va_arg(ap, char *); |
3856 } | |
3857 return gaim_parse_clientauto_ch4(sess, who, reason, state, msg); | |
3858 } | |
3952 | 3859 |
3212 | 3860 va_end(ap); |
3861 | |
3862 return 1; | |
3863 } | |
3864 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3865 static int gaim_parse_genericerr(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 3866 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3867 fu16_t reason; |
2865
88dc3623a2ae
[gaim-migrate @ 2878]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2864
diff
changeset
|
3868 char *m; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3869 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3870 va_start(ap, fr); |
4199 | 3871 reason = (fu16_t) va_arg(ap, unsigned int); |
2086 | 3872 va_end(ap); |
3873 | |
8660 | 3874 gaim_debug_error("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3875 "snac threw error (reason 0x%04hx: %s)\n", reason, |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3876 (reason < msgerrreasonlen) ? msgerrreason[reason] : "unknown"); |
2086 | 3877 |
2865
88dc3623a2ae
[gaim-migrate @ 2878]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2864
diff
changeset
|
3878 m = g_strdup_printf(_("SNAC threw error: %s\n"), |
5411 | 3879 reason < msgerrreasonlen ? _(msgerrreason[reason]) : _("Unknown error")); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
3880 gaim_notify_error(sess->aux_data, NULL, m, NULL); |
2865
88dc3623a2ae
[gaim-migrate @ 2878]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2864
diff
changeset
|
3881 g_free(m); |
88dc3623a2ae
[gaim-migrate @ 2878]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2864
diff
changeset
|
3882 |
2086 | 3883 return 1; |
3884 } | |
3885 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3886 static int gaim_parse_msgerr(aim_session_t *sess, aim_frame_t *fr, ...) { |
9627 | 3887 GaimConnection *gc = sess->aux_data; |
4617 | 3888 #if 0 |
7283 | 3889 OscarData *od = gc->proto_data; |
6240
ac191233b816
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
6173
diff
changeset
|
3890 GaimXfer *xfer; |
4508
4c40fccbd7c9
[gaim-migrate @ 4784]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
3891 #endif |
4617 | 3892 va_list ap; |
3893 fu16_t reason; | |
3894 char *data, *buf; | |
4508
4c40fccbd7c9
[gaim-migrate @ 4784]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
3895 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3896 va_start(ap, fr); |
4617 | 3897 reason = (fu16_t)va_arg(ap, unsigned int); |
3752 | 3898 data = va_arg(ap, char *); |
2086 | 3899 va_end(ap); |
3900 | |
8660 | 3901 gaim_debug_error("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
3902 "Message error with data %s and reason %hu\n", data, reason); |
4617 | 3903 |
3904 /* BBB */ | |
4508
4c40fccbd7c9
[gaim-migrate @ 4784]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
3905 #if 0 |
4617 | 3906 /* If this was a file transfer request, data is a cookie */ |
3907 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
|
3908 gaim_xfer_cancel_remote(xfer); |
3630 | 3909 return 1; |
3910 } | |
4508
4c40fccbd7c9
[gaim-migrate @ 4784]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
3911 #endif |
3630 | 3912 |
4617 | 3913 /* Data is assumed to be the destination sn */ |
9627 | 3914 if (!gaim_conv_present_error(data, gaim_connection_get_account(gc), |
3915 (reason < msgerrreasonlen) ? _(msgerrreason[reason]) : _("Your message did not get sent."))) { | |
9647 | 3916 buf = g_strdup_printf(_("Your message to %s did not get sent:"), data ? data : "(null)"); |
9627 | 3917 gaim_notify_error(sess->aux_data, NULL, buf, |
3918 (reason < msgerrreasonlen) ? _(msgerrreason[reason]) : _("No reason given.")); | |
3919 g_free(buf); | |
3920 } | |
2086 | 3921 return 1; |
3922 } | |
3923 | |
3595 | 3924 static int gaim_parse_mtn(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 3925 GaimConnection *gc = sess->aux_data; |
3595 | 3926 va_list ap; |
3927 fu16_t type1, type2; | |
3928 char *sn; | |
3929 | |
3930 va_start(ap, fr); | |
4199 | 3931 type1 = (fu16_t) va_arg(ap, unsigned int); |
3595 | 3932 sn = va_arg(ap, char *); |
4199 | 3933 type2 = (fu16_t) va_arg(ap, unsigned int); |
3595 | 3934 va_end(ap); |
3935 | |
3936 switch (type2) { | |
3937 case 0x0000: { /* Text has been cleared */ | |
3938 serv_got_typing_stopped(gc, sn); | |
3939 } break; | |
3940 | |
3941 case 0x0001: { /* Paused typing */ | |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
3942 serv_got_typing(gc, sn, 0, GAIM_TYPED); |
3595 | 3943 } break; |
3944 | |
3945 case 0x0002: { /* Typing */ | |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
3946 serv_got_typing(gc, sn, 0, GAIM_TYPING); |
3595 | 3947 } break; |
3948 | |
3949 default: { | |
8660 | 3950 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 | 3951 } break; |
3952 } | |
3953 | |
3954 return 1; | |
3955 } | |
3956 | |
7141 | 3957 /* |
3958 * We get this error when there was an error in the locate family. This | |
7259 | 3959 * happens when you request info of someone who is offline. |
7141 | 3960 */ |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3961 static int gaim_parse_locerr(aim_session_t *sess, aim_frame_t *fr, ...) { |
9627 | 3962 gchar *buf, *cbuf; |
2086 | 3963 va_list ap; |
5420 | 3964 fu16_t reason; |
2086 | 3965 char *destn; |
3966 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3967 va_start(ap, fr); |
4199 | 3968 reason = (fu16_t) va_arg(ap, unsigned int); |
2086 | 3969 destn = va_arg(ap, char *); |
3970 va_end(ap); | |
3971 | |
7781 | 3972 if (destn == NULL) |
7793 | 3973 return 1; |
9627 | 3974 |
3975 cbuf = g_strdup_printf(_("User information not available: %s"), (reason < msgerrreasonlen) ? _(msgerrreason[reason]) : _("No reason given.")); | |
3976 if (!gaim_conv_present_error(destn, gaim_connection_get_account((GaimConnection*)sess->aux_data), cbuf)) { | |
3977 buf = g_strdup_printf(_("User information for %s unavailable:"), destn); | |
3978 gaim_notify_error(sess->aux_data, NULL, buf, | |
3979 (reason < msgerrreasonlen) ? _(msgerrreason[reason]) : _("No reason given.")); | |
3980 g_free(buf); | |
3981 } | |
3982 g_free(cbuf); | |
2086 | 3983 |
3984 return 1; | |
3985 } | |
3986 | |
7011 | 3987 static int gaim_parse_userinfo(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 3988 GaimConnection *gc = sess->aux_data; |
8700 | 3989 GaimAccount *account = gaim_connection_get_account(gc); |
3990 GString *str; | |
9244 | 3991 gchar *tmp = NULL, *info_utf8 = NULL, *away_utf8 = NULL, *title = NULL; |
4791 | 3992 va_list ap; |
7011 | 3993 aim_userinfo_t *userinfo; |
2086 | 3994 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
3995 va_start(ap, fr); |
7011 | 3996 userinfo = va_arg(ap, aim_userinfo_t *); |
2086 | 3997 va_end(ap); |
3998 | |
8700 | 3999 str = g_string_new(""); |
4000 g_string_append_printf(str, "<b>%s:</b> %s", _("Screen Name"), userinfo->sn); | |
4001 g_string_append_printf(str, "\n<br><b>%s</b>: %d%%", _("Warning Level"), (int)((userinfo->warnlevel/10.0) + 0.5)); | |
7011 | 4002 |
4003 if (userinfo->present & AIM_USERINFO_PRESENT_ONLINESINCE) | |
8701 | 4004 oscar_string_append(str, "\n<br>", _("Online Since"), |
8700 | 4005 asctime(localtime((time_t *)&userinfo->onlinesince))); |
7011 | 4006 |
4007 if (userinfo->present & AIM_USERINFO_PRESENT_MEMBERSINCE) | |
8701 | 4008 oscar_string_append(str, "\n<br>", _("Member Since"), |
8700 | 4009 asctime(localtime((time_t *)&userinfo->membersince))); |
7011 | 4010 |
4011 if (userinfo->present & AIM_USERINFO_PRESENT_IDLE) { | |
8700 | 4012 tmp = gaim_str_seconds_to_string(userinfo->idletime*60); |
8701 | 4013 oscar_string_append(str, "\n<br>", _("Idle"), tmp); |
8700 | 4014 g_free(tmp); |
4015 } | |
4016 | |
8701 | 4017 oscar_string_append_info(gc, str, "\n<br>", NULL, userinfo); |
7011 | 4018 |
4019 if ((userinfo->flags & AIM_FLAG_AWAY) && (userinfo->away_len > 0) && (userinfo->away != NULL) && (userinfo->away_encoding != NULL)) { | |
8700 | 4020 tmp = oscar_encoding_extract(userinfo->away_encoding); |
4021 away_utf8 = oscar_encoding_to_utf8(tmp, userinfo->away, userinfo->away_len); | |
4022 g_free(tmp); | |
7011 | 4023 if (away_utf8 != NULL) { |
8700 | 4024 g_string_append_printf(str, "\n<hr>%s", away_utf8); |
7011 | 4025 g_free(away_utf8); |
2791
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
4026 } |
7011 | 4027 } |
4028 | |
4029 if ((userinfo->info_len > 0) && (userinfo->info != NULL) && (userinfo->info_encoding != NULL)) { | |
8700 | 4030 tmp = oscar_encoding_extract(userinfo->info_encoding); |
4031 info_utf8 = oscar_encoding_to_utf8(tmp, userinfo->info, userinfo->info_len); | |
4032 g_free(tmp); | |
7011 | 4033 if (info_utf8 != NULL) { |
8700 | 4034 g_string_append_printf(str, "\n<hr>%s", info_utf8); |
7011 | 4035 g_free(info_utf8); |
2791
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2789
diff
changeset
|
4036 } |
7011 | 4037 } |
4038 | |
8701 | 4039 tmp = gaim_str_sub_away_formatters(str->str, gaim_account_get_username(account)); |
8700 | 4040 g_string_free(str, TRUE); |
9244 | 4041 title = g_strdup_printf(_("Info for %s"), userinfo->sn); |
4042 gaim_notify_formatted(gc, title, _("Buddy Information"), NULL, tmp, NULL, NULL); | |
4043 g_free(title); | |
8700 | 4044 g_free(tmp); |
4151 | 4045 |
2086 | 4046 return 1; |
4047 } | |
4048 | |
8341 | 4049 static gboolean gaim_reqinfo_timeout_cb(void *data) |
4050 { | |
4051 aim_session_t *sess = data; | |
4052 GaimConnection *gc = sess->aux_data; | |
4053 OscarData *od = (OscarData *)gc->proto_data; | |
4054 | |
4055 aim_locate_dorequest(data); | |
4056 od->getinfotimer = 0; | |
4057 | |
4058 return FALSE; | |
4059 } | |
4060 | |
4061 static int gaim_reqinfo_timeout(aim_session_t *sess, aim_frame_t *fr, ...) | |
4062 { | |
4063 GaimConnection *gc = sess->aux_data; | |
4064 OscarData *od = (OscarData *)gc->proto_data; | |
4065 | |
4066 /* | |
4067 * Wait a little while then call aim_locate_dorequest(sess). This keeps | |
4068 * us from hitting the rate limit due to request away messages and info | |
4069 * too quickly. | |
4070 */ | |
4071 if (od->getinfotimer == 0) | |
4072 od->getinfotimer = gaim_timeout_add(1200, gaim_reqinfo_timeout_cb, sess); | |
4073 | |
4074 return 1; | |
4075 } | |
4076 | |
4077 static int gaim_parse_motd(aim_session_t *sess, aim_frame_t *fr, ...) | |
4078 { | |
2086 | 4079 char *msg; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4080 fu16_t id; |
2086 | 4081 va_list ap; |
4082 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4083 va_start(ap, fr); |
4199 | 4084 id = (fu16_t) va_arg(ap, unsigned int); |
2086 | 4085 msg = va_arg(ap, char *); |
4086 va_end(ap); | |
4087 | |
8660 | 4088 gaim_debug_misc("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4089 "MOTD: %s (%hu)\n", msg ? msg : "Unknown", id); |
2092
59b0377d18aa
[gaim-migrate @ 2102]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2090
diff
changeset
|
4090 if (id < 4) |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4091 gaim_notify_warning(sess->aux_data, NULL, |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4092 _("Your AIM connection may be lost."), NULL); |
2086 | 4093 |
4094 return 1; | |
4095 } | |
4096 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4097 static int gaim_chatnav_info(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 4098 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4099 fu16_t type; |
5575 | 4100 GaimConnection *gc = sess->aux_data; |
7283 | 4101 OscarData *od = (OscarData *)gc->proto_data; |
2086 | 4102 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4103 va_start(ap, fr); |
4199 | 4104 type = (fu16_t) va_arg(ap, unsigned int); |
2086 | 4105 |
4106 switch(type) { | |
4107 case 0x0002: { | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4108 fu8_t maxrooms; |
2086 | 4109 struct aim_chat_exchangeinfo *exchanges; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4110 int exchangecount, i; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4111 |
4199 | 4112 maxrooms = (fu8_t) va_arg(ap, unsigned int); |
2086 | 4113 exchangecount = va_arg(ap, int); |
4114 exchanges = va_arg(ap, struct aim_chat_exchangeinfo *); | |
4115 | |
8660 | 4116 gaim_debug_misc("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4117 "chat info: Chat Rights:\n"); |
8660 | 4118 gaim_debug_misc("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4119 "chat info: \tMax Concurrent Rooms: %hhd\n", maxrooms); |
8660 | 4120 gaim_debug_misc("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4121 "chat info: \tExchange List: (%d total)\n", exchangecount); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4122 for (i = 0; i < exchangecount; i++) |
8660 | 4123 gaim_debug_misc("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4124 "chat info: \t\t%hu %s\n", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4125 exchanges[i].number, exchanges[i].name ? exchanges[i].name : ""); |
4617 | 4126 while (od->create_rooms) { |
4127 struct create_room *cr = od->create_rooms->data; | |
8660 | 4128 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4129 "creating room %s\n", cr->name); |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
4130 aim_chatnav_createroom(sess, fr->conn, cr->name, cr->exchange); |
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
4131 g_free(cr->name); |
4617 | 4132 od->create_rooms = g_slist_remove(od->create_rooms, cr); |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
4133 g_free(cr); |
2086 | 4134 } |
4135 } | |
4136 break; | |
4137 case 0x0008: { | |
4138 char *fqcn, *name, *ck; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4139 fu16_t instance, flags, maxmsglen, maxoccupancy, unknown, exchange; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4140 fu8_t createperms; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4141 fu32_t createtime; |
2086 | 4142 |
4143 fqcn = va_arg(ap, char *); | |
4200 | 4144 instance = (fu16_t)va_arg(ap, unsigned int); |
4145 exchange = (fu16_t)va_arg(ap, unsigned int); | |
4146 flags = (fu16_t)va_arg(ap, unsigned int); | |
4147 createtime = va_arg(ap, fu32_t); | |
4148 maxmsglen = (fu16_t)va_arg(ap, unsigned int); | |
4149 maxoccupancy = (fu16_t)va_arg(ap, unsigned int); | |
4150 createperms = (fu8_t)va_arg(ap, unsigned int); | |
4151 unknown = (fu16_t)va_arg(ap, unsigned int); | |
4152 name = va_arg(ap, char *); | |
4153 ck = va_arg(ap, char *); | |
4194 | 4154 |
8660 | 4155 gaim_debug_misc("oscar", |
5556 | 4156 "created room: %s %hu %hu %hu %u %hu %hu %hhu %hu %s %s\n", |
2086 | 4157 fqcn, |
4158 exchange, instance, flags, | |
4159 createtime, | |
4160 maxmsglen, maxoccupancy, createperms, unknown, | |
4161 name, ck); | |
4617 | 4162 aim_chat_join(od->sess, od->conn, exchange, ck, instance); |
2086 | 4163 } |
4164 break; | |
4165 default: | |
8660 | 4166 gaim_debug_warning("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4167 "chatnav info: unknown type (%04hx)\n", type); |
2086 | 4168 break; |
4169 } | |
4194 | 4170 |
4171 va_end(ap); | |
4172 | |
2086 | 4173 return 1; |
4174 } | |
4175 | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
4176 static int gaim_conv_chat_join(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 4177 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4178 int count, i; |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
4179 aim_userinfo_t *info; |
5575 | 4180 GaimConnection *g = sess->aux_data; |
2086 | 4181 |
4182 struct chat_connection *c = NULL; | |
4183 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4184 va_start(ap, fr); |
2086 | 4185 count = va_arg(ap, int); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
4186 info = va_arg(ap, aim_userinfo_t *); |
2086 | 4187 va_end(ap); |
4188 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4189 c = find_oscar_chat_by_conn(g, fr->conn); |
2086 | 4190 if (!c) |
4191 return 1; | |
4192 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4193 for (i = 0; i < count; i++) |
9554 | 4194 gaim_conv_chat_add_user(GAIM_CONV_CHAT(c->conv), info[i].sn, NULL, GAIM_CBFLAGS_NONE); |
2086 | 4195 |
4196 return 1; | |
4197 } | |
4198 | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
4199 static int gaim_conv_chat_leave(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 4200 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4201 int count, i; |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
4202 aim_userinfo_t *info; |
5575 | 4203 GaimConnection *g = sess->aux_data; |
2086 | 4204 |
4205 struct chat_connection *c = NULL; | |
4206 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4207 va_start(ap, fr); |
2086 | 4208 count = va_arg(ap, int); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
4209 info = va_arg(ap, aim_userinfo_t *); |
2086 | 4210 va_end(ap); |
4211 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4212 c = find_oscar_chat_by_conn(g, fr->conn); |
2086 | 4213 if (!c) |
4214 return 1; | |
4215 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4216 for (i = 0; i < count; i++) |
8733 | 4217 gaim_conv_chat_remove_user(GAIM_CONV_CHAT(c->conv), info[i].sn, NULL); |
2086 | 4218 |
4219 return 1; | |
4220 } | |
4221 | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
4222 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
|
4223 va_list ap; |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
4224 aim_userinfo_t *userinfo; |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
4225 struct aim_chat_roominfo *roominfo; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
4226 char *roomname; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
4227 int usercount; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
4228 char *roomdesc; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4229 fu16_t unknown_c9, unknown_d2, unknown_d5, maxmsglen, maxvisiblemsglen; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4230 fu32_t creationtime; |
5575 | 4231 GaimConnection *gc = sess->aux_data; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4232 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
|
4233 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4234 va_start(ap, fr); |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
4235 roominfo = va_arg(ap, struct aim_chat_roominfo *); |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
4236 roomname = va_arg(ap, char *); |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
4237 usercount= va_arg(ap, int); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
4238 userinfo = va_arg(ap, aim_userinfo_t *); |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
4239 roomdesc = va_arg(ap, char *); |
4200 | 4240 unknown_c9 = (fu16_t)va_arg(ap, unsigned int); |
4241 creationtime = va_arg(ap, fu32_t); | |
4242 maxmsglen = (fu16_t)va_arg(ap, unsigned int); | |
4243 unknown_d2 = (fu16_t)va_arg(ap, unsigned int); | |
4244 unknown_d5 = (fu16_t)va_arg(ap, unsigned int); | |
4245 maxvisiblemsglen = (fu16_t)va_arg(ap, unsigned int); | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
4246 va_end(ap); |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
4247 |
8660 | 4248 gaim_debug_misc("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4249 "inside chat_info_update (maxmsglen = %hu, maxvislen = %hu)\n", |
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4250 maxmsglen, maxvisiblemsglen); |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
4251 |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
4252 ccon->maxlen = maxmsglen; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
4253 ccon->maxvis = maxvisiblemsglen; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
4254 |
2086 | 4255 return 1; |
4256 } | |
4257 | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
4258 static int gaim_conv_chat_incoming_msg(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 4259 GaimConnection *gc = sess->aux_data; |
8225 | 4260 struct chat_connection *ccon = find_oscar_chat_by_conn(gc, fr->conn); |
4261 gchar *utf8; | |
2086 | 4262 va_list ap; |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
4263 aim_userinfo_t *info; |
8225 | 4264 int len; |
2086 | 4265 char *msg; |
8219 | 4266 char *charset; |
2086 | 4267 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4268 va_start(ap, fr); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
4269 info = va_arg(ap, aim_userinfo_t *); |
8219 | 4270 len = va_arg(ap, int); |
4194 | 4271 msg = va_arg(ap, char *); |
8219 | 4272 charset = va_arg(ap, char *); |
4194 | 4273 va_end(ap); |
2086 | 4274 |
8225 | 4275 utf8 = oscar_encoding_to_utf8(charset, msg, len); |
8667 | 4276 if (utf8 == NULL) |
4277 /* The conversion failed! */ | |
8668 | 4278 utf8 = g_strdup(_("[Unable to display a message from this user because it contained invalid characters.]")); |
8225 | 4279 serv_got_chat_in(gc, ccon->id, info->sn, 0, utf8, time((time_t)NULL)); |
4280 g_free(utf8); | |
2086 | 4281 |
4282 return 1; | |
4283 } | |
4284 | |
3694 | 4285 static int gaim_email_parseupdate(aim_session_t *sess, aim_frame_t *fr, ...) { |
4286 va_list ap; | |
5575 | 4287 GaimConnection *gc = sess->aux_data; |
3694 | 4288 struct aim_emailinfo *emailinfo; |
3725 | 4289 int havenewmail; |
7297 | 4290 char *alertitle, *alerturl; |
3694 | 4291 |
4292 va_start(ap, fr); | |
4293 emailinfo = va_arg(ap, struct aim_emailinfo *); | |
3725 | 4294 havenewmail = va_arg(ap, int); |
7301 | 4295 alertitle = va_arg(ap, char *); |
4296 alerturl = va_arg(ap, char *); | |
3694 | 4297 va_end(ap); |
4298 | |
9661 | 4299 if ((emailinfo != NULL) && gaim_account_get_check_mail(gc->account)) { |
4300 gchar *to = g_strdup_printf("%s%s%s", gaim_account_get_username(gaim_connection_get_account(gc)), | |
4301 emailinfo->domain ? "@" : "", | |
4302 emailinfo->domain ? emailinfo->domain : ""); | |
5542 | 4303 if (emailinfo->unread && havenewmail) |
4304 gaim_notify_emails(gc, emailinfo->nummsgs, FALSE, NULL, NULL, (const char **)&to, (const char **)&emailinfo->url, NULL, NULL); | |
5537 | 4305 g_free(to); |
3694 | 4306 } |
7297 | 4307 |
7301 | 4308 if (alertitle) |
8660 | 4309 gaim_debug_misc("oscar", "Got an alert '%s' %s\n", alertitle, alerturl ? alerturl : ""); |
3694 | 4310 |
4311 return 1; | |
4312 } | |
4313 | |
4804 | 4314 static int gaim_icon_error(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 4315 GaimConnection *gc = sess->aux_data; |
7283 | 4316 OscarData *od = gc->proto_data; |
4804 | 4317 char *sn; |
4318 | |
4319 sn = od->requesticon->data; | |
8660 | 4320 gaim_debug_misc("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4321 "removing %s from hash table\n", sn); |
4804 | 4322 od->requesticon = g_slist_remove(od->requesticon, sn); |
4323 free(sn); | |
4324 | |
4325 if (od->icontimer) | |
8287
ef881489396e
[gaim-migrate @ 9011]
Christian Hammond <chipx86@chipx86.com>
parents:
8273
diff
changeset
|
4326 gaim_timeout_remove(od->icontimer); |
8273
f24172f53650
[gaim-migrate @ 8997]
Christian Hammond <chipx86@chipx86.com>
parents:
8266
diff
changeset
|
4327 od->icontimer = gaim_timeout_add(500, gaim_icon_timerfunc, gc); |
4804 | 4328 |
4329 return 1; | |
4330 } | |
4331 | |
4332 static int gaim_icon_parseicon(aim_session_t *sess, aim_frame_t *fr, ...) { | |
5575 | 4333 GaimConnection *gc = sess->aux_data; |
7283 | 4334 OscarData *od = gc->proto_data; |
4804 | 4335 GSList *cur; |
4336 va_list ap; | |
4337 char *sn; | |
4853 | 4338 fu8_t *iconcsum, *icon; |
4339 fu16_t iconcsumlen, iconlen; | |
4804 | 4340 |
4341 va_start(ap, fr); | |
4342 sn = va_arg(ap, char *); | |
4853 | 4343 iconcsum = va_arg(ap, fu8_t *); |
4344 iconcsumlen = va_arg(ap, int); | |
4804 | 4345 icon = va_arg(ap, fu8_t *); |
4346 iconlen = va_arg(ap, int); | |
4347 va_end(ap); | |
4348 | |
4853 | 4349 if (iconlen > 0) { |
4350 char *b16; | |
6695 | 4351 GaimBuddy *b = gaim_find_buddy(gc->account, sn); |
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6787
diff
changeset
|
4352 gaim_buddy_icons_set_for_user(gaim_connection_get_account(gc), |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6787
diff
changeset
|
4353 sn, icon, iconlen); |
7106
db6bd3e794d8
[gaim-migrate @ 7671]
Christian Hammond <chipx86@chipx86.com>
parents:
7098
diff
changeset
|
4354 b16 = gaim_base16_encode(iconcsum, iconcsumlen); |
5129 | 4355 if (b16) { |
7693 | 4356 gaim_blist_node_set_string((GaimBlistNode*)b, "icon_checksum", b16); |
7162 | 4357 g_free(b16); |
5129 | 4358 } |
4853 | 4359 } |
4804 | 4360 |
4361 cur = od->requesticon; | |
4362 while (cur) { | |
4363 char *cursn = cur->data; | |
4364 if (!aim_sncmp(cursn, sn)) { | |
4365 od->requesticon = g_slist_remove(od->requesticon, cursn); | |
4366 free(cursn); | |
4367 cur = od->requesticon; | |
4368 } else | |
4369 cur = cur->next; | |
4370 } | |
4371 | |
4372 if (od->icontimer) | |
8287
ef881489396e
[gaim-migrate @ 9011]
Christian Hammond <chipx86@chipx86.com>
parents:
8273
diff
changeset
|
4373 gaim_timeout_remove(od->icontimer); |
8273
f24172f53650
[gaim-migrate @ 8997]
Christian Hammond <chipx86@chipx86.com>
parents:
8266
diff
changeset
|
4374 od->icontimer = gaim_timeout_add(250, gaim_icon_timerfunc, gc); |
4804 | 4375 |
4376 return 1; | |
4377 } | |
4378 | |
4379 static gboolean gaim_icon_timerfunc(gpointer data) { | |
5575 | 4380 GaimConnection *gc = data; |
7283 | 4381 OscarData *od = gc->proto_data; |
7011 | 4382 aim_userinfo_t *userinfo; |
4804 | 4383 aim_conn_t *conn; |
4384 | |
4385 conn = aim_getconn_type(od->sess, AIM_CONN_TYPE_ICON); | |
5892 | 4386 if (!conn) { |
4387 if (!od->iconconnecting) { | |
4388 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_ICON); | |
4389 od->iconconnecting = TRUE; | |
4390 } | |
4804 | 4391 return FALSE; |
4392 } | |
4393 | |
5842 | 4394 if (od->set_icon) { |
6039 | 4395 struct stat st; |
4396 const char *iconfile = gaim_account_get_buddy_icon(gaim_connection_get_account(gc)); | |
4397 if (iconfile == NULL) { | |
8363 | 4398 aim_ssi_delicon(od->sess); |
6039 | 4399 } else if (!stat(iconfile, &st)) { |
4400 char *buf = g_malloc(st.st_size); | |
4401 FILE *file = fopen(iconfile, "rb"); | |
4402 if (file) { | |
9532 | 4403 /* XXX - Use g_file_get_contents()? */ |
6039 | 4404 fread(buf, 1, st.st_size, file); |
4405 fclose(file); | |
8660 | 4406 gaim_debug_info("oscar", |
6039 | 4407 "Uploading icon to icon server\n"); |
6879 | 4408 aim_bart_upload(od->sess, buf, st.st_size); |
5842 | 4409 } else |
8660 | 4410 gaim_debug_error("oscar", |
6039 | 4411 "Can't open buddy icon file!\n"); |
4412 g_free(buf); | |
4413 } else { | |
8660 | 4414 gaim_debug_error("oscar", |
6039 | 4415 "Can't stat buddy icon file!\n"); |
5842 | 4416 } |
4417 od->set_icon = FALSE; | |
4418 } | |
4419 | |
4420 if (!od->requesticon) { | |
8660 | 4421 gaim_debug_misc("oscar", |
5842 | 4422 "no more icons to request\n"); |
4423 return FALSE; | |
4424 } | |
4425 | |
7045 | 4426 userinfo = aim_locate_finduserinfo(od->sess, (char *)od->requesticon->data); |
7011 | 4427 if ((userinfo != NULL) && (userinfo->iconcsumlen > 0)) { |
4428 aim_bart_request(od->sess, od->requesticon->data, userinfo->iconcsum, userinfo->iconcsumlen); | |
4804 | 4429 return FALSE; |
4430 } else { | |
4431 char *sn = od->requesticon->data; | |
4432 od->requesticon = g_slist_remove(od->requesticon, sn); | |
4433 free(sn); | |
4434 } | |
4435 | |
4436 return TRUE; | |
4437 } | |
4438 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4439 /* |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4440 * 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
|
4441 */ |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4442 static int gaim_parse_msgack(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 4443 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4444 fu16_t type; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4445 char *sn; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4446 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4447 va_start(ap, fr); |
4199 | 4448 type = (fu16_t) va_arg(ap, unsigned int); |
2086 | 4449 sn = va_arg(ap, char *); |
4450 va_end(ap); | |
4451 | |
8660 | 4452 gaim_debug_info("oscar", "Sent message to %s.\n", sn); |
2086 | 4453 |
4454 return 1; | |
4455 } | |
4456 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4457 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
|
4458 static const char *codes[5] = { |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4459 "invalid", |
4194 | 4460 "change", |
4461 "warning", | |
4462 "limit", | |
4463 "limit cleared", | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4464 }; |
2086 | 4465 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4466 fu16_t code, rateclass; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4467 fu32_t windowsize, clear, alert, limit, disconnect, currentavg, maxavg; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4468 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4469 va_start(ap, fr); |
4200 | 4470 code = (fu16_t)va_arg(ap, unsigned int); |
4471 rateclass= (fu16_t)va_arg(ap, unsigned int); | |
4472 windowsize = va_arg(ap, fu32_t); | |
4473 clear = va_arg(ap, fu32_t); | |
4474 alert = va_arg(ap, fu32_t); | |
4475 limit = va_arg(ap, fu32_t); | |
4476 disconnect = va_arg(ap, fu32_t); | |
4477 currentavg = va_arg(ap, fu32_t); | |
4478 maxavg = va_arg(ap, fu32_t); | |
2086 | 4479 va_end(ap); |
4480 | |
8660 | 4481 gaim_debug_misc("oscar", |
5556 | 4482 "rate %s (param ID 0x%04hx): curavg = %u, maxavg = %u, alert at %u, " |
4483 "clear warning at %u, limit at %u, disconnect at %u (window size = %u)\n", | |
2086 | 4484 (code < 5) ? codes[code] : codes[0], |
4485 rateclass, | |
4486 currentavg, maxavg, | |
4487 alert, clear, | |
4488 limit, disconnect, | |
4489 windowsize); | |
4490 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4491 /* XXX fix these values */ |
2086 | 4492 if (code == AIM_RATE_CODE_CHANGE) { |
4493 if (currentavg >= clear) | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4494 aim_conn_setlatency(fr->conn, 0); |
2086 | 4495 } else if (code == AIM_RATE_CODE_WARNING) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4496 aim_conn_setlatency(fr->conn, windowsize/4); |
2909
48ec70928d7f
[gaim-migrate @ 2922]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2906
diff
changeset
|
4497 } else if (code == AIM_RATE_CODE_LIMIT) { |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
4498 gaim_notify_error(sess->aux_data, NULL, _("Rate limiting error."), |
6040 | 4499 _("The last action you attempted could not be " |
4500 "performed because you are over the rate limit. " | |
4501 "Please wait 10 seconds and try again.")); | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4502 aim_conn_setlatency(fr->conn, windowsize/2); |
2086 | 4503 } else if (code == AIM_RATE_CODE_CLEARLIMIT) { |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4504 aim_conn_setlatency(fr->conn, 0); |
2086 | 4505 } |
4506 | |
4507 return 1; | |
4508 } | |
4509 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4510 static int gaim_parse_evilnotify(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 4511 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4512 fu16_t newevil; |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
4513 aim_userinfo_t *userinfo; |
5575 | 4514 GaimConnection *gc = sess->aux_data; |
2086 | 4515 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4516 va_start(ap, fr); |
4199 | 4517 newevil = (fu16_t) va_arg(ap, unsigned int); |
2421
95b4ec08abec
[gaim-migrate @ 2434]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2411
diff
changeset
|
4518 userinfo = va_arg(ap, aim_userinfo_t *); |
2086 | 4519 va_end(ap); |
4520 | |
7111 | 4521 serv_got_eviled(gc, (userinfo && userinfo->sn) ? userinfo->sn : NULL, (newevil/10.0) + 0.5); |
2086 | 4522 |
4523 return 1; | |
4524 } | |
4525 | |
2507
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
4526 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
|
4527 va_list ap; |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
4528 aim_userinfo_t *info; |
5575 | 4529 GaimConnection *gc = sess->aux_data; |
2507
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
4530 |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
4531 va_start(ap, fr); |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
4532 info = va_arg(ap, aim_userinfo_t *); |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
4533 va_end(ap); |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
4534 |
5628 | 4535 gc->evil = (info->warnlevel/10.0) + 0.5; |
4841 | 4536 |
7872 | 4537 if (info->present & AIM_USERINFO_PRESENT_ONLINESINCE) |
4841 | 4538 gc->login_time_official = info->onlinesince; |
7872 | 4539 else if (info->present & AIM_USERINFO_PRESENT_SESSIONLEN) |
4540 gc->login_time_official = time(NULL) - info->sessionlen; | |
2507
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
4541 |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
4542 return 1; |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
4543 } |
1069b0940237
[gaim-migrate @ 2520]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
4544 |
4649 | 4545 static int gaim_connerr(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 4546 GaimConnection *gc = sess->aux_data; |
7283 | 4547 OscarData *od = gc->proto_data; |
4649 | 4548 va_list ap; |
4549 fu16_t code; | |
4550 char *msg; | |
4551 | |
4552 va_start(ap, fr); | |
4553 code = (fu16_t)va_arg(ap, int); | |
4554 msg = va_arg(ap, char *); | |
4555 va_end(ap); | |
4556 | |
8660 | 4557 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4558 "Disconnected. Code is 0x%04x and msg is %s\n", code, msg); |
4649 | 4559 if ((fr) && (fr->conn) && (fr->conn->type == AIM_CONN_TYPE_BOS)) { |
4651 | 4560 if (code == 0x0001) { |
6113 | 4561 gc->wants_to_die = TRUE; |
5579 | 4562 gaim_connection_error(gc, _("You have been disconnected because you have signed on with this screen name at another location.")); |
4651 | 4563 } else { |
5579 | 4564 gaim_connection_error(gc, _("You have been signed off for an unknown reason.")); |
4651 | 4565 } |
4666 | 4566 od->killme = TRUE; |
4649 | 4567 } |
4568 | |
4569 return 1; | |
4570 } | |
4571 | |
2675 | 4572 static int conninitdone_bos(aim_session_t *sess, aim_frame_t *fr, ...) { |
7283 | 4573 GaimConnection *gc = sess->aux_data; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4574 |
2703
441b84ab7f4e
[gaim-migrate @ 2716]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2698
diff
changeset
|
4575 aim_reqpersonalinfo(sess, fr->conn); |
4230 | 4576 |
4577 #ifndef NOSSI | |
8660 | 4578 gaim_debug_info("oscar", "ssi: requesting rights and list\n"); |
4889 | 4579 aim_ssi_reqrights(sess); |
6350 | 4580 aim_ssi_reqdata(sess); |
4230 | 4581 #endif |
4582 | |
7011 | 4583 aim_locate_reqrights(sess); |
7285 | 4584 aim_buddylist_reqrights(sess, fr->conn); |
4617 | 4585 aim_im_reqparams(sess); |
7334 | 4586 aim_bos_reqrights(sess, fr->conn); /* XXX - Don't call this with ssi */ |
4230 | 4587 |
4588 #ifdef NOSSI | |
8660 | 4589 gaim_debug_info("oscar", "bos: requesting rights\n"); |
7334 | 4590 aim_bos_reqrights(sess, fr->conn); |
4230 | 4591 aim_bos_setgroupperm(sess, fr->conn, AIM_FLAG_ALLUSERS); |
4592 aim_bos_setprivacyflags(sess, fr->conn, AIM_PRIVFLAGS_ALLOWIDLE | AIM_PRIVFLAGS_ALLOWMEMBERSINCE); | |
4593 #endif | |
2086 | 4594 |
7283 | 4595 gaim_connection_update_progress(gc, _("Finalizing connection"), 5, OSCAR_CONNECT_STEPS); |
4596 | |
2086 | 4597 return 1; |
4598 } | |
4599 | |
2675 | 4600 static int conninitdone_admin(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 4601 GaimConnection *gc = sess->aux_data; |
7283 | 4602 OscarData *od = gc->proto_data; |
2647 | 4603 |
6905 | 4604 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_ADM, 0x0003, gaim_info_change, 0); |
4605 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_ADM, 0x0005, gaim_info_change, 0); | |
4606 aim_conn_addhandler(sess, fr->conn, AIM_CB_FAM_ADM, 0x0007, gaim_account_confirm, 0); | |
4607 | |
2672 | 4608 aim_clientready(sess, fr->conn); |
8660 | 4609 gaim_debug_info("oscar", "connected to admin\n"); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4610 |
2647 | 4611 if (od->chpass) { |
8660 | 4612 gaim_debug_info("oscar", "changing password\n"); |
2703
441b84ab7f4e
[gaim-migrate @ 2716]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2698
diff
changeset
|
4613 aim_admin_changepasswd(sess, fr->conn, od->newp, od->oldp); |
2647 | 4614 g_free(od->oldp); |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4615 od->oldp = NULL; |
2647 | 4616 g_free(od->newp); |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4617 od->newp = NULL; |
2647 | 4618 od->chpass = FALSE; |
4619 } | |
2979 | 4620 if (od->setnick) { |
8660 | 4621 gaim_debug_info("oscar", "formatting screen name\n"); |
2979 | 4622 aim_admin_setnick(sess, fr->conn, od->newsn); |
4623 g_free(od->newsn); | |
4624 od->newsn = NULL; | |
4625 od->setnick = FALSE; | |
4626 } | |
2647 | 4627 if (od->conf) { |
8660 | 4628 gaim_debug_info("oscar", "confirming account\n"); |
2703
441b84ab7f4e
[gaim-migrate @ 2716]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2698
diff
changeset
|
4629 aim_admin_reqconfirm(sess, fr->conn); |
2647 | 4630 od->conf = FALSE; |
4631 } | |
4632 if (od->reqemail) { | |
8660 | 4633 gaim_debug_info("oscar", "requesting email\n"); |
2703
441b84ab7f4e
[gaim-migrate @ 2716]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2698
diff
changeset
|
4634 aim_admin_getinfo(sess, fr->conn, 0x0011); |
2647 | 4635 od->reqemail = FALSE; |
4636 } | |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4637 if (od->setemail) { |
8660 | 4638 gaim_debug_info("oscar", "setting email\n"); |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4639 aim_admin_setemail(sess, fr->conn, od->email); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4640 g_free(od->email); |
5497 | 4641 od->email = NULL; |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4642 od->setemail = FALSE; |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4643 } |
2647 | 4644 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4645 return 1; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4646 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4647 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4648 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
|
4649 struct aim_icbmparameters *params; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
4650 va_list ap; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
4651 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4652 va_start(ap, fr); |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
4653 params = va_arg(ap, struct aim_icbmparameters *); |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
4654 va_end(ap); |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
4655 |
4194 | 4656 /* XXX - evidently this crashes on solaris. i have no clue why |
8660 | 4657 gaim_debug_misc("oscar", "ICBM Parameters: maxchannel = %hu, default flags = 0x%08lx, max msg len = %hu, " |
5556 | 4658 "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
|
4659 params->maxchan, params->flags, params->maxmsglen, |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
4660 ((float)params->maxsenderwarn)/10.0, ((float)params->maxrecverwarn)/10.0, |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
4661 params->minmsginterval); |
2427
5bc3b39fc0a5
[gaim-migrate @ 2440]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2421
diff
changeset
|
4662 */ |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
4663 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4664 /* Maybe senderwarn and recverwarn should be user preferences... */ |
3595 | 4665 params->flags = 0x0000000b; |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
4666 params->maxmsglen = 8000; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
4667 params->minmsginterval = 0; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
4668 |
4617 | 4669 aim_im_setparams(sess, params); |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
4670 |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
4671 return 1; |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
4672 } |
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
4673 |
2993 | 4674 static int gaim_parse_locaterights(aim_session_t *sess, aim_frame_t *fr, ...) |
4675 { | |
5575 | 4676 GaimConnection *gc = sess->aux_data; |
7283 | 4677 OscarData *od = (OscarData *)gc->proto_data; |
5306 | 4678 va_list ap; |
4679 fu16_t maxsiglen; | |
2993 | 4680 |
4681 va_start(ap, fr); | |
4199 | 4682 maxsiglen = (fu16_t) va_arg(ap, int); |
2993 | 4683 va_end(ap); |
4684 | |
8660 | 4685 gaim_debug_misc("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4686 "locate rights: max sig len = %d\n", maxsiglen); |
2993 | 4687 |
4617 | 4688 od->rights.maxsiglen = od->rights.maxawaymsglen = (guint)maxsiglen; |
4689 | |
4690 if (od->icq) | |
7334 | 4691 aim_locate_setcaps(od->sess, caps_icq); |
5301 | 4692 else |
7334 | 4693 aim_locate_setcaps(od->sess, caps_aim); |
4694 oscar_set_info(gc, gc->account->user_info); | |
2993 | 4695 |
4696 return 1; | |
4697 } | |
4698 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4699 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
|
4700 va_list ap; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4701 fu16_t maxbuddies, maxwatchers; |
5575 | 4702 GaimConnection *gc = sess->aux_data; |
7283 | 4703 OscarData *od = (OscarData *)gc->proto_data; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4704 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4705 va_start(ap, fr); |
4199 | 4706 maxbuddies = (fu16_t) va_arg(ap, unsigned int); |
4707 maxwatchers = (fu16_t) va_arg(ap, unsigned int); | |
2086 | 4708 va_end(ap); |
4709 | |
8660 | 4710 gaim_debug_misc("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4711 "buddy list rights: Max buddies = %hu / Max watchers = %hu\n", maxbuddies, maxwatchers); |
2086 | 4712 |
4617 | 4713 od->rights.maxbuddies = (guint)maxbuddies; |
4714 od->rights.maxwatchers = (guint)maxwatchers; | |
2993 | 4715 |
2086 | 4716 return 1; |
4717 } | |
4718 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4719 static int gaim_bosrights(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 4720 GaimConnection *gc = sess->aux_data; |
7283 | 4721 OscarData *od = (OscarData *)gc->proto_data; |
7334 | 4722 va_list ap; |
4723 fu16_t maxpermits, maxdenies; | |
2086 | 4724 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
4725 va_start(ap, fr); |
4199 | 4726 maxpermits = (fu16_t) va_arg(ap, unsigned int); |
4727 maxdenies = (fu16_t) va_arg(ap, unsigned int); | |
2086 | 4728 va_end(ap); |
4729 | |
8660 | 4730 gaim_debug_misc("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4731 "BOS rights: Max permit = %hu / Max deny = %hu\n", maxpermits, maxdenies); |
2086 | 4732 |
4617 | 4733 od->rights.maxpermits = (guint)maxpermits; |
4734 od->rights.maxdenies = (guint)maxdenies; | |
2993 | 4735 |
5576
8c398efc88f2
[gaim-migrate @ 5980]
Christian Hammond <chipx86@chipx86.com>
parents:
5575
diff
changeset
|
4736 gaim_connection_set_state(gc, GAIM_CONNECTED); |
2993 | 4737 serv_finish_login(gc); |
4738 | |
8660 | 4739 gaim_debug_info("oscar", "buddy list loaded\n"); |
2993 | 4740 |
2672 | 4741 aim_clientready(sess, fr->conn); |
5948 | 4742 aim_srv_setavailmsg(sess, NULL); |
7474 | 4743 aim_srv_setidle(sess, 0); |
4617 | 4744 |
4664 | 4745 if (od->icq) { |
4746 aim_icq_reqofflinemsgs(sess); | |
4747 aim_icq_hideip(sess); | |
4748 } | |
2706
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4749 |
2703
441b84ab7f4e
[gaim-migrate @ 2716]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2698
diff
changeset
|
4750 aim_reqservice(sess, fr->conn, AIM_CONN_TYPE_CHATNAV); |
4102 | 4751 if (sess->authinfo->email) |
4752 aim_reqservice(sess, fr->conn, AIM_CONN_TYPE_EMAIL); | |
2086 | 4753 |
4754 return 1; | |
4755 } | |
4756 | |
2706
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4757 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
|
4758 va_list ap; |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4759 struct aim_icq_offlinemsg *msg; |
4075 | 4760 struct aim_incomingim_ch4_args args; |
4761 time_t t; | |
2706
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4762 |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4763 va_start(ap, fr); |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4764 msg = va_arg(ap, struct aim_icq_offlinemsg *); |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4765 va_end(ap); |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4766 |
8660 | 4767 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
4768 "Received offline message. Converting to channel 4 ICBM...\n"); |
4075 | 4769 args.uin = msg->sender; |
4770 args.type = msg->type; | |
4173 | 4771 args.flags = msg->flags; |
4076 | 4772 args.msglen = msg->msglen; |
4075 | 4773 args.msg = msg->msg; |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4774 t = gaim_time_build(msg->year, msg->month, msg->day, msg->hour, msg->minute, 0); |
4075 | 4775 incomingim_chan4(sess, fr->conn, NULL, &args, t); |
2706
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4776 |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4777 return 1; |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4778 } |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4779 |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4780 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
|
4781 { |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4782 aim_icq_ackofflinemsgs(sess); |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4783 return 1; |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4784 } |
e841b14b5b89
[gaim-migrate @ 2719]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2704
diff
changeset
|
4785 |
7388 | 4786 #if 0 |
4787 /* | |
7465 | 4788 * Update, 2003-11-09: |
4789 * Joseph S. Myers, a gcc dude, fixed this for gcc 3.4! Rock on! | |
4790 * | |
7388 | 4791 * It may not be my place to do this, but... |
4792 * I feel pretty strongly that the "last 2 digits" warning is ridiculously | |
4793 * stupid, and should not exist for % switches (%x in our case) that request | |
4794 * a year in the preferred representation for the current locale. For that | |
4795 * reason I've chosen to not use this workaround (n., see kluge). | |
4796 * | |
4797 * I have a date. I want to show it to the user in the "preferred" way. | |
4798 * Whether that displays a 2 digit year is perfectly fine--after all, it's | |
4799 * what the locale wanted. | |
4800 * | |
4801 * If I have a necessity for a full representation of the year in the current | |
4802 * locale, then I'll use a switch that returns a full representation of the | |
4803 * year. | |
4804 * | |
4805 * If you think the preferred locale should show 4 digits instead of 2 digits | |
4806 * (because you're anal, or whatever), then change the f***ing locale. | |
4807 * | |
4808 * I guess the bottom line is--I'm trying to show a date to the user how they | |
4809 * prefer to see it, why the hell does gcc want me to change that? | |
7389 | 4810 * |
4811 * See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=3190 | |
4812 * See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=8714 | |
7388 | 4813 */ |
4814 | |
4815 /* | |
4816 * This function was recommended by the STRFTIME(3) man page to remove the | |
7386 | 4817 * "last 2 digits" warning. |
4818 */ | |
4819 static size_t my_strftime(char *s, size_t max, const char *fmt, | |
4820 const struct tm *tm) | |
4821 { | |
4822 return strftime(s, max, fmt, tm); | |
4823 } | |
7388 | 4824 #endif |
7386 | 4825 |
4624 | 4826 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
|
4827 { |
5575 | 4828 GaimConnection *gc = sess->aux_data; |
8670 | 4829 OscarData *od = (OscarData *)gc->proto_data; |
4830 GaimBuddy *buddy; | |
8853 | 4831 struct buddyinfo *bi = NULL; |
4624 | 4832 gchar who[16]; |
8670 | 4833 GString *str; |
4834 gchar *primary, *utf8; | |
9634 | 4835 const gchar *alias; |
2742
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
4836 va_list ap; |
4151 | 4837 struct aim_icq_info *info; |
2742
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
4838 |
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
4839 va_start(ap, fr); |
4151 | 4840 info = va_arg(ap, struct aim_icq_info *); |
2742
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
4841 va_end(ap); |
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
4842 |
4664 | 4843 if (!info->uin) |
4844 return 0; | |
4845 | |
8670 | 4846 str = g_string_sized_new(100); |
5556 | 4847 g_snprintf(who, sizeof(who), "%u", info->uin); |
8670 | 4848 buddy = gaim_find_buddy(gaim_connection_get_account(gc), who); |
4849 if (buddy != NULL) | |
4850 bi = g_hash_table_lookup(od->buddyinfo, gaim_normalize(buddy->account, buddy->name)); | |
4851 | |
4852 g_string_append_printf(str, "<b>%s:</b> %s", _("UIN"), who); | |
8701 | 4853 oscar_string_append(str, "\n<br>", _("Nick"), info->nick); |
8670 | 4854 if ((bi != NULL) && (bi->ipaddr != 0)) { |
4855 char *tstr = g_strdup_printf("%hhu.%hhu.%hhu.%hhu", | |
4856 (bi->ipaddr & 0xff000000) >> 24, | |
4857 (bi->ipaddr & 0x00ff0000) >> 16, | |
4858 (bi->ipaddr & 0x0000ff00) >> 8, | |
4859 (bi->ipaddr & 0x000000ff)); | |
8701 | 4860 oscar_string_append(str, "\n<br>", _("IP Address"), tstr); |
8670 | 4861 g_free(tstr); |
4862 } | |
8701 | 4863 oscar_string_append(str, "\n<br>", _("First Name"), info->first); |
4864 oscar_string_append(str, "\n<br>", _("Last Name"), info->last); | |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4865 if (info->email && info->email[0] && (utf8 = gaim_utf8_try_convert(info->email))) { |
8670 | 4866 g_string_append_printf(str, "\n<br><b>%s:</b> <a href=\"mailto:%s\">%s</a>", _("Email Address"), utf8, utf8); |
4867 g_free(utf8); | |
4625 | 4868 } |
4869 if (info->numaddresses && info->email2) { | |
4870 int i; | |
4871 for (i = 0; i < info->numaddresses; i++) { | |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4872 if (info->email2[i] && info->email2[i][0] && (utf8 = gaim_utf8_try_convert(info->email2[i]))) { |
8670 | 4873 g_string_append_printf(str, "\n<br><b>%s:</b> <a href=\"mailto%s\">%s</a>", _("Email Address"), utf8, utf8); |
4874 g_free(utf8); | |
4643 | 4875 } |
4625 | 4876 } |
4624 | 4877 } |
8701 | 4878 oscar_string_append(str, "\n<br>", _("Mobile Phone"), info->mobile); |
8902 | 4879 oscar_string_append(str, "\n<br>", _("Gender"), info->gender == 0 ? _("Not specified") : |
4880 info->gender == 1 ? _("Female") : _("Male")); | |
4624 | 4881 if (info->birthyear || info->birthmonth || info->birthday) { |
4627 | 4882 char date[30]; |
4883 struct tm tm; | |
4884 tm.tm_mday = (int)info->birthday; | |
4885 tm.tm_mon = (int)info->birthmonth-1; | |
4886 tm.tm_year = (int)info->birthyear-1900; | |
7388 | 4887 strftime(date, sizeof(date), "%x", &tm); |
8701 | 4888 oscar_string_append(str, "\n<br>", _("Birthday"), date); |
4151 | 4889 } |
4624 | 4890 if (info->age) { |
4891 char age[5]; | |
4892 snprintf(age, sizeof(age), "%hhd", info->age); | |
8701 | 4893 oscar_string_append(str, "\n<br>", _("Age"), age); |
4819 | 4894 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4895 if (info->personalwebpage && info->personalwebpage[0] && (utf8 = gaim_utf8_try_convert(info->personalwebpage))) { |
8670 | 4896 g_string_append_printf(str, "\n<br><b>%s:</b> <a href=\"%s\">%s</a>", _("Personal Web Page"), utf8, utf8); |
4897 g_free(utf8); | |
4819 | 4898 } |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4899 if (info->info && info->info[0] && (utf8 = gaim_utf8_try_convert(info->info))) { |
8670 | 4900 g_string_append_printf(str, "<hr><b>%s:</b><br>%s", _("Additional Information"), utf8); |
4901 g_free(utf8); | |
4902 } | |
4903 g_string_append_printf(str, "<hr>\n"); | |
4641 | 4904 if ((info->homeaddr && (info->homeaddr[0])) || (info->homecity && info->homecity[0]) || (info->homestate && info->homestate[0]) || (info->homezip && info->homezip[0])) { |
8670 | 4905 g_string_append_printf(str, "<b>%s:</b>", _("Home Address")); |
8701 | 4906 oscar_string_append(str, "\n<br>", _("Address"), info->homeaddr); |
4907 oscar_string_append(str, "\n<br>", _("City"), info->homecity); | |
4908 oscar_string_append(str, "\n<br>", _("State"), info->homestate); | |
4909 oscar_string_append(str, "\n<br>", _("Zip Code"), info->homezip); | |
8670 | 4910 g_string_append_printf(str, "\n<hr>\n"); |
4151 | 4911 } |
4641 | 4912 if ((info->workaddr && info->workaddr[0]) || (info->workcity && info->workcity[0]) || (info->workstate && info->workstate[0]) || (info->workzip && info->workzip[0])) { |
8670 | 4913 g_string_append_printf(str, "<b>%s:</b>", _("Work Address")); |
8701 | 4914 oscar_string_append(str, "\n<br>", _("Address"), info->workaddr); |
4915 oscar_string_append(str, "\n<br>", _("City"), info->workcity); | |
4916 oscar_string_append(str, "\n<br>", _("State"), info->workstate); | |
4917 oscar_string_append(str, "\n<br>", _("Zip Code"), info->workzip); | |
8670 | 4918 g_string_append_printf(str, "\n<hr>\n"); |
4624 | 4919 } |
4641 | 4920 if ((info->workcompany && info->workcompany[0]) || (info->workdivision && info->workdivision[0]) || (info->workposition && info->workposition[0]) || (info->workwebpage && info->workwebpage[0])) { |
8670 | 4921 g_string_append_printf(str, "<b>%s:</b>", _("Work Information")); |
8701 | 4922 oscar_string_append(str, "\n<br>", _("Company"), info->workcompany); |
4923 oscar_string_append(str, "\n<br>", _("Division"), info->workdivision); | |
4924 oscar_string_append(str, "\n<br>", _("Position"), info->workposition); | |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4925 if (info->workwebpage && info->workwebpage[0] && (utf8 = gaim_utf8_try_convert(info->workwebpage))) { |
8670 | 4926 g_string_append_printf(str, "\n<br><b>%s:</b> <a href=\"%s\">%s</a>", _("Web Page"), utf8, utf8); |
4927 g_free(utf8); | |
4624 | 4928 } |
8670 | 4929 g_string_append_printf(str, "\n<hr>\n"); |
4930 } | |
4931 | |
9634 | 4932 if (buddy != NULL) |
4933 alias = gaim_buddy_get_alias(buddy); | |
4934 else | |
4935 alias = who; | |
4936 primary = g_strdup_printf(_("ICQ Info for %s"), alias); | |
8670 | 4937 gaim_notify_formatted(gc, NULL, primary, NULL, str->str, NULL, NULL); |
6873 | 4938 g_free(primary); |
8670 | 4939 g_string_free(str, TRUE); |
4151 | 4940 |
2742
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
4941 return 1; |
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
4942 } |
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
4943 |
4759 | 4944 static int gaim_icqalias(aim_session_t *sess, aim_frame_t *fr, ...) |
4945 { | |
5575 | 4946 GaimConnection *gc = sess->aux_data; |
4820 | 4947 gchar who[16], *utf8; |
6695 | 4948 GaimBuddy *b; |
4759 | 4949 va_list ap; |
4950 struct aim_icq_info *info; | |
4951 | |
4952 va_start(ap, fr); | |
4953 info = va_arg(ap, struct aim_icq_info *); | |
4954 va_end(ap); | |
4955 | |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
4956 if (info->uin && info->nick && info->nick[0] && (utf8 = gaim_utf8_try_convert(info->nick))) { |
5556 | 4957 g_snprintf(who, sizeof(who), "%u", info->uin); |
4820 | 4958 serv_got_alias(gc, who, utf8); |
4759 | 4959 if ((b = gaim_find_buddy(gc->account, who))) { |
7693 | 4960 gaim_blist_node_set_string((GaimBlistNode*)b, "servernick", utf8); |
4759 | 4961 } |
4820 | 4962 g_free(utf8); |
4759 | 4963 } |
4964 | |
4965 return 1; | |
4966 } | |
4967 | |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4968 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
|
4969 { |
7032 | 4970 GaimConnection *gc = sess->aux_data; |
4971 gchar *text; | |
4972 va_list ap; | |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4973 char *msg, *url; |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4974 fu16_t wid, hei, delay; |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4975 |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4976 va_start(ap, fr); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4977 msg = va_arg(ap, char *); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4978 url = va_arg(ap, char *); |
4199 | 4979 wid = (fu16_t) va_arg(ap, int); |
4980 hei = (fu16_t) va_arg(ap, int); | |
4981 delay = (fu16_t) va_arg(ap, int); | |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4982 va_end(ap); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4983 |
7032 | 4984 text = g_strdup_printf("%s<br><a href=\"%s\">%s</a>", msg, url, url); |
4985 gaim_notify_formatted(gc, NULL, _("Pop-Up Message"), NULL, text, NULL, NULL); | |
4986 g_free(text); | |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4987 |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4988 return 1; |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4989 } |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
4990 |
7032 | 4991 static int gaim_parse_searchreply(aim_session_t *sess, aim_frame_t *fr, ...) |
4992 { | |
6873 | 4993 GaimConnection *gc = sess->aux_data; |
4994 gchar *secondary; | |
4995 GString *text; | |
4996 int i, num; | |
2086 | 4997 va_list ap; |
6873 | 4998 char *email, *SNs; |
2086 | 4999 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5000 va_start(ap, fr); |
6873 | 5001 email = va_arg(ap, char *); |
2086 | 5002 num = va_arg(ap, int); |
5003 SNs = va_arg(ap, char *); | |
5004 va_end(ap); | |
5005 | |
8152 | 5006 secondary = g_strdup_printf(_("The following screen names are associated with %s"), email); |
6873 | 5007 text = g_string_new(""); |
2086 | 5008 for (i = 0; i < num; i++) |
6873 | 5009 g_string_append_printf(text, "%s<br>", &SNs[i * (MAXSNLEN + 1)]); |
5010 gaim_notify_formatted(gc, NULL, _("Search Results"), secondary, text->str, NULL, NULL); | |
5011 | |
5012 g_free(secondary); | |
5013 g_string_free(text, TRUE); | |
2086 | 5014 |
5015 return 1; | |
5016 } | |
5017 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5018 static int gaim_parse_searcherror(aim_session_t *sess, aim_frame_t *fr, ...) { |
2086 | 5019 va_list ap; |
6873 | 5020 char *email; |
5420 | 5021 char *buf; |
2086 | 5022 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5023 va_start(ap, fr); |
6873 | 5024 email = va_arg(ap, char *); |
2086 | 5025 va_end(ap); |
5026 | |
6873 | 5027 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
|
5028 gaim_notify_error(sess->aux_data, NULL, buf, NULL); |
5420 | 5029 g_free(buf); |
2086 | 5030 |
5031 return 1; | |
5032 } | |
5033 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5034 static int gaim_account_confirm(aim_session_t *sess, aim_frame_t *fr, ...) { |
6873 | 5035 GaimConnection *gc = sess->aux_data; |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5036 fu16_t status; |
2086 | 5037 va_list ap; |
5038 char msg[256]; | |
5039 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5040 va_start(ap, fr); |
4199 | 5041 status = (fu16_t) va_arg(ap, unsigned int); /* status code of confirmation request */ |
2086 | 5042 va_end(ap); |
5043 | |
8660 | 5044 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5045 "account confirmation returned status 0x%04x (%s)\n", status, |
3912 | 5046 status ? "unknown" : "email sent"); |
5047 if (!status) { | |
5302 | 5048 g_snprintf(msg, sizeof(msg), _("You should receive an email asking to confirm %s."), |
5575 | 5049 gaim_account_get_username(gaim_connection_get_account(gc))); |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
5050 gaim_notify_info(gc, NULL, _("Account Confirmation Requested"), msg); |
2086 | 5051 } |
5052 | |
5053 return 1; | |
5054 } | |
5055 | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5056 static int gaim_info_change(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 5057 GaimConnection *gc = sess->aux_data; |
2086 | 5058 va_list ap; |
3912 | 5059 fu16_t perms, err; |
5060 char *url, *sn, *email; | |
5061 int change; | |
2086 | 5062 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5063 va_start(ap, fr); |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
5064 change = va_arg(ap, int); |
4199 | 5065 perms = (fu16_t) va_arg(ap, unsigned int); |
5066 err = (fu16_t) va_arg(ap, unsigned int); | |
3912 | 5067 url = va_arg(ap, char *); |
5068 sn = va_arg(ap, char *); | |
5069 email = va_arg(ap, char *); | |
2086 | 5070 va_end(ap); |
5071 | |
8660 | 5072 gaim_debug_misc("oscar", |
9626 | 5073 "account info: because of %s, perms=0x%04x, err=0x%04x, url=%s, sn=%s, email=%s\n", |
5074 change ? "change" : "request", perms, err, | |
5075 (url != NULL) ? url : "(null)", | |
5076 (sn != NULL) ? sn : "(null)", | |
5077 (email != NULL) ? email : "(null)"); | |
5078 | |
5079 if ((err > 0) && (url != NULL)) { | |
3912 | 5080 char *dialog_msg; |
5081 char *dialog_top = g_strdup_printf(_("Error Changing Account Info")); | |
5082 switch (err) { | |
5083 case 0x0001: { | |
5084 dialog_msg = g_strdup_printf(_("Error 0x%04x: Unable to format screen name because the requested screen name differs from the original."), err); | |
5085 } break; | |
5086 case 0x0006: { | |
5087 dialog_msg = g_strdup_printf(_("Error 0x%04x: Unable to format screen name because the requested screen name ends in a space."), err); | |
5088 } break; | |
5089 case 0x000b: { | |
5090 dialog_msg = g_strdup_printf(_("Error 0x%04x: Unable to format screen name because the requested screen name is too long."), err); | |
5091 } break; | |
5092 case 0x001d: { | |
5093 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); | |
5094 } break; | |
5095 case 0x0021: { | |
5096 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); | |
5097 } break; | |
5098 case 0x0023: { | |
5099 dialog_msg = g_strdup_printf(_("Error 0x%04x: Unable to change email address because the given address is invalid."), err); | |
5100 } break; | |
5101 default: { | |
5102 dialog_msg = g_strdup_printf(_("Error 0x%04x: Unknown error."), err); | |
5103 } break; | |
5104 } | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
5105 gaim_notify_error(gc, NULL, dialog_top, dialog_msg); |
3912 | 5106 g_free(dialog_top); |
5107 g_free(dialog_msg); | |
5108 return 1; | |
5109 } | |
5110 | |
9626 | 5111 if (sn != NULL) { |
4585 | 5112 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
|
5113 gaim_notify_info(gc, NULL, _("Account Info"), dialog_msg); |
3912 | 5114 g_free(dialog_msg); |
5115 } | |
5116 | |
9626 | 5117 if (email != NULL) { |
5575 | 5118 char *dialog_msg = g_strdup_printf(_("The email address for %s is %s"), |
5119 gaim_account_get_username(gaim_connection_get_account(gc)), email); | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
5120 gaim_notify_info(gc, NULL, _("Account Info"), dialog_msg); |
3912 | 5121 g_free(dialog_msg); |
2086 | 5122 } |
5123 | |
5124 return 1; | |
5125 } | |
5126 | |
5575 | 5127 static void oscar_keepalive(GaimConnection *gc) { |
7283 | 5128 OscarData *od = (OscarData *)gc->proto_data; |
4617 | 5129 aim_flap_nop(od->sess, od->conn); |
2086 | 5130 } |
5131 | |
6059 | 5132 static int oscar_send_typing(GaimConnection *gc, const char *name, int typing) { |
7283 | 5133 OscarData *od = (OscarData *)gc->proto_data; |
8971 | 5134 struct oscar_direct_im *dim = oscar_direct_im_find(od, name); |
5135 if (dim && dim->connected) | |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
5136 if (typing == GAIM_TYPING) |
4870 | 5137 aim_odc_send_typing(od->sess, dim->conn, 0x0002); |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
5138 else if (typing == GAIM_TYPED) |
4870 | 5139 aim_odc_send_typing(od->sess, dim->conn, 0x0001); |
5140 else | |
5141 aim_odc_send_typing(od->sess, dim->conn, 0x0000); | |
3595 | 5142 else { |
5300 | 5143 /* Don't send if this turkey is in our deny list */ |
5144 GSList *list; | |
5145 for (list=gc->account->deny; (list && aim_sncmp(name, list->data)); list=list->next); | |
5146 if (!list) { | |
7261 | 5147 struct buddyinfo *bi = g_hash_table_lookup(od->buddyinfo, gaim_normalize(gc->account, name)); |
5300 | 5148 if (bi && bi->typingnot) { |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
5149 if (typing == GAIM_TYPING) |
5300 | 5150 aim_im_sendmtn(od->sess, 0x0001, name, 0x0002); |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5868
diff
changeset
|
5151 else if (typing == GAIM_TYPED) |
5300 | 5152 aim_im_sendmtn(od->sess, 0x0001, name, 0x0001); |
5153 else | |
5154 aim_im_sendmtn(od->sess, 0x0001, name, 0x0000); | |
5155 } | |
3595 | 5156 } |
5157 } | |
2993 | 5158 return 0; |
5159 } | |
9030 | 5160 |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
5161 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
|
5162 |
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
5163 static int oscar_send_im(GaimConnection *gc, const char *name, const char *message, GaimConvImFlags imflags) { |
7283 | 5164 OscarData *od = (OscarData *)gc->proto_data; |
8971 | 5165 struct oscar_direct_im *dim = oscar_direct_im_find(od, name); |
2303
f5bf315e6104
[gaim-migrate @ 2313]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2297
diff
changeset
|
5166 int ret = 0; |
3659 | 5167 GError *err = NULL; |
5575 | 5168 const char *iconfile = gaim_account_get_buddy_icon(gaim_connection_get_account(gc)); |
8800 | 5169 char *tmpmsg = NULL, *tmpmsg2 = NULL; |
3458 | 5170 |
4838 | 5171 if (dim && dim->connected) { |
5172 /* If we're directly connected, send a direct IM */ | |
6982 | 5173 ret = gaim_odc_send_im(od->sess, dim->conn, message, imflags); |
2086 | 5174 } else { |
4738 | 5175 struct buddyinfo *bi; |
3008 | 5176 struct aim_sendimext_args args; |
5177 struct stat st; | |
6478
338147ea6896
[gaim-migrate @ 6991]
Christian Hammond <chipx86@chipx86.com>
parents:
6465
diff
changeset
|
5178 gsize len; |
8962 | 5179 GaimConversation *conv = gaim_find_conversation_with_account(name, gaim_connection_get_account(gc)); |
5180 | |
5181 if (strstr(message, "<IMG ")) | |
5182 gaim_conversation_write(conv, "", | |
5183 _("Your IM Image was not sent. " | |
5184 "You must be Direct Connected to send IM Images."), | |
5185 GAIM_MESSAGE_ERROR, time(NULL)); | |
4269 | 5186 |
7261 | 5187 bi = g_hash_table_lookup(od->buddyinfo, gaim_normalize(gc->account, name)); |
4738 | 5188 if (!bi) { |
5189 bi = g_new0(struct buddyinfo, 1); | |
7261 | 5190 g_hash_table_insert(od->buddyinfo, g_strdup(gaim_normalize(gc->account, name)), bi); |
4738 | 5191 } |
5192 | |
3008 | 5193 args.flags = AIM_IMFLAGS_ACK | AIM_IMFLAGS_CUSTOMFEATURES; |
4665 | 5194 if (od->icq) { |
5195 args.features = features_icq; | |
5196 args.featureslen = sizeof(features_icq); | |
3008 | 5197 args.flags |= AIM_IMFLAGS_OFFLINE; |
4665 | 5198 } else { |
5199 args.features = features_aim; | |
5200 args.featureslen = sizeof(features_aim); | |
4972 | 5201 |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
5202 if (imflags & GAIM_CONV_IM_AUTO_RESP) |
4972 | 5203 args.flags |= AIM_IMFLAGS_AWAY; |
4665 | 5204 } |
4269 | 5205 |
4738 | 5206 if (bi->ico_need) { |
8660 | 5207 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5208 "Sending buddy icon request with message\n"); |
3008 | 5209 args.flags |= AIM_IMFLAGS_BUDDYREQ; |
4738 | 5210 bi->ico_need = FALSE; |
3008 | 5211 } |
4269 | 5212 |
5575 | 5213 if (iconfile && !stat(iconfile, &st)) { |
8361 | 5214 FILE *file = fopen(iconfile, "rb"); |
3008 | 5215 if (file) { |
5216 char *buf = g_malloc(st.st_size); | |
9532 | 5217 /* XXX - Use g_file_get_contents()? */ |
3008 | 5218 fread(buf, 1, st.st_size, file); |
6039 | 5219 fclose(file); |
4269 | 5220 |
3008 | 5221 args.iconlen = st.st_size; |
4617 | 5222 args.iconsum = aimutil_iconsum(buf, st.st_size); |
3008 | 5223 args.iconstamp = st.st_mtime; |
5224 | |
7406 | 5225 if ((args.iconlen != bi->ico_me_len) || (args.iconsum != bi->ico_me_csum) || (args.iconstamp != bi->ico_me_time)) { |
4738 | 5226 bi->ico_informed = FALSE; |
7406 | 5227 bi->ico_sent = FALSE; |
5228 } | |
4738 | 5229 |
5230 if (!bi->ico_informed) { | |
8660 | 5231 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5232 "Claiming to have a buddy icon\n"); |
4738 | 5233 args.flags |= AIM_IMFLAGS_HASICON; |
5234 bi->ico_me_len = args.iconlen; | |
5235 bi->ico_me_csum = args.iconsum; | |
5236 bi->ico_me_time = args.iconstamp; | |
5237 bi->ico_informed = TRUE; | |
5238 } | |
5239 | |
3008 | 5240 g_free(buf); |
2086 | 5241 } |
5242 } | |
4269 | 5243 |
3008 | 5244 args.destsn = name; |
4269 | 5245 |
8985 | 5246 /* |
5247 * If we're IMing an ICQ user then send newlines as CR/LF and | |
5248 * strip all HTML | |
5249 */ | |
8995 | 5250 if (isdigit(name[0]) ) { |
5251 /* being sent to an ICQ user */ | |
5252 if (!isdigit(gaim_account_get_username(gc->account)[0])) { | |
5253 /* from an AIM user - ICQ receiving from AIM *expects the messsage to be HTML formatted* */ | |
5254 tmpmsg = gaim_str_add_cr(message); | |
5255 } else { | |
5256 /* from an ICQ user - do nothing */ | |
5257 tmpmsg = g_strdup(message); | |
5258 } | |
5259 } else { | |
5260 /* being sent to an AIM user */ | |
5261 if (isdigit(gaim_account_get_username(gc->account)[0])) { | |
5262 /* from an ICQ user */ | |
5263 tmpmsg2 = gaim_strdup_withhtml(message); | |
5264 tmpmsg = gaim_escape_html(tmpmsg2); | |
5265 g_free(tmpmsg2); | |
5266 } else | |
5267 tmpmsg = gaim_strdup_withhtml(message); | |
5268 } | |
6310 | 5269 len = strlen(tmpmsg); |
5270 | |
5271 args.flags |= oscar_encoding_check(tmpmsg); | |
3642 | 5272 if (args.flags & AIM_IMFLAGS_UNICODE) { |
8660 | 5273 gaim_debug_info("oscar", "Sending Unicode IM\n"); |
4662 | 5274 args.charset = 0x0002; |
4665 | 5275 args.charsubset = 0x0000; |
6310 | 5276 args.msg = g_convert(tmpmsg, len, "UCS-2BE", "UTF-8", NULL, &len, &err); |
3659 | 5277 if (err) { |
8660 | 5278 gaim_debug_error("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5279 "Error converting a unicode message: %s\n", err->message); |
8660 | 5280 gaim_debug_error("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5281 "This really shouldn't happen!\n"); |
3659 | 5282 /* We really shouldn't try to send the |
5283 * IM now, but I'm not sure what to do */ | |
4800 | 5284 g_error_free(err); |
3659 | 5285 } |
3850 | 5286 } else if (args.flags & AIM_IMFLAGS_ISO_8859_1) { |
8660 | 5287 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5288 "Sending ISO-8859-1 IM\n"); |
4662 | 5289 args.charset = 0x0003; |
4665 | 5290 args.charsubset = 0x0000; |
6310 | 5291 args.msg = g_convert(tmpmsg, len, "ISO-8859-1", "UTF-8", NULL, &len, &err); |
3659 | 5292 if (err) { |
8660 | 5293 gaim_debug_error("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5294 "conversion error: %s\n", err->message); |
8660 | 5295 gaim_debug_error("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5296 "Someone tell Ethan his 8859-1 detection is wrong\n"); |
3642 | 5297 args.flags ^= AIM_IMFLAGS_ISO_8859_1 | AIM_IMFLAGS_UNICODE; |
6310 | 5298 len = strlen(tmpmsg); |
4800 | 5299 g_error_free(err); |
6310 | 5300 args.msg = g_convert(tmpmsg, len, "UCS-2BE", "UTF8", NULL, &len, &err); |
3659 | 5301 if (err) { |
8660 | 5302 gaim_debug_error("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5303 "Error in unicode fallback: %s\n", err->message); |
4800 | 5304 g_error_free(err); |
3659 | 5305 } |
3642 | 5306 } |
5307 } else { | |
4662 | 5308 args.charset = 0x0000; |
5309 args.charsubset = 0x0000; | |
6310 | 5310 args.msg = tmpmsg; |
3642 | 5311 } |
5312 args.msglen = len; | |
4269 | 5313 |
4617 | 5314 ret = aim_im_sendch1_ext(od->sess, &args); |
2086 | 5315 } |
4838 | 5316 |
6310 | 5317 g_free(tmpmsg); |
5318 | |
2303
f5bf315e6104
[gaim-migrate @ 2313]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2297
diff
changeset
|
5319 if (ret >= 0) |
f5bf315e6104
[gaim-migrate @ 2313]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2297
diff
changeset
|
5320 return 1; |
6310 | 5321 |
2303
f5bf315e6104
[gaim-migrate @ 2313]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2297
diff
changeset
|
5322 return ret; |
2086 | 5323 } |
5324 | |
7011 | 5325 static void oscar_get_info(GaimConnection *gc, const char *name) { |
7283 | 5326 OscarData *od = (OscarData *)gc->proto_data; |
7011 | 5327 |
7173 | 5328 if (od->icq && isdigit(name[0])) |
4624 | 5329 aim_icq_getallinfo(od->sess, name); |
2742
6f527cbd899d
[gaim-migrate @ 2755]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2734
diff
changeset
|
5330 else |
7235 | 5331 aim_locate_getinfoshort(od->sess, name, 0x00000003); |
7011 | 5332 } |
5333 | |
8950 | 5334 #if 0 |
7011 | 5335 static void oscar_set_dir(GaimConnection *gc, const char *first, const char *middle, const char *last, |
3466 | 5336 const char *maiden, const char *city, const char *state, const char *country, int web) { |
4617 | 5337 /* XXX - some of these things are wrong, but i'm lazy */ |
7283 | 5338 OscarData *od = (OscarData *)gc->proto_data; |
7011 | 5339 aim_locate_setdirinfo(od->sess, first, middle, last, |
2086 | 5340 maiden, NULL, NULL, city, state, NULL, 0, web); |
5341 } | |
8950 | 5342 #endif |
2086 | 5343 |
5575 | 5344 static void oscar_set_idle(GaimConnection *gc, int time) { |
7283 | 5345 OscarData *od = (OscarData *)gc->proto_data; |
7474 | 5346 aim_srv_setidle(od->sess, time); |
2086 | 5347 } |
5348 | |
5954 | 5349 static void oscar_set_info(GaimConnection *gc, const char *text) { |
7283 | 5350 OscarData *od = (OscarData *)gc->proto_data; |
5129 | 5351 fu32_t flags = 0; |
6019 | 5352 char *text_html = NULL; |
5129 | 5353 char *msg = NULL; |
6478
338147ea6896
[gaim-migrate @ 6991]
Christian Hammond <chipx86@chipx86.com>
parents:
6465
diff
changeset
|
5354 gsize msglen = 0; |
2993 | 5355 |
4617 | 5356 if (od->rights.maxsiglen == 0) |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
5357 gaim_notify_warning(gc, NULL, _("Unable to set AIM profile."), |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
5358 _("You have probably requested to set your " |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
5359 "profile before the login procedure completed. " |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
5360 "Your profile remains unset; try setting it " |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
5361 "again when you are fully connected.")); |
4617 | 5362 |
7334 | 5363 if (!text) { |
5364 aim_locate_setprofile(od->sess, NULL, "", 0, NULL, NULL, 0); | |
5365 return; | |
5366 } | |
6019 | 5367 |
7334 | 5368 text_html = gaim_strdup_withhtml(text); |
5369 flags = oscar_encoding_check(text_html); | |
5370 if (flags & AIM_IMFLAGS_UNICODE) { | |
5371 msg = g_convert(text_html, strlen(text_html), "UCS-2BE", "UTF-8", NULL, &msglen, NULL); | |
5372 aim_locate_setprofile(od->sess, "unicode-2-0", msg, (msglen > od->rights.maxsiglen ? od->rights.maxsiglen : msglen), NULL, NULL, 0); | |
5373 g_free(msg); | |
5374 } else if (flags & AIM_IMFLAGS_ISO_8859_1) { | |
5375 msg = g_convert(text_html, strlen(text_html), "ISO-8859-1", "UTF-8", NULL, &msglen, NULL); | |
5376 aim_locate_setprofile(od->sess, "iso-8859-1", msg, (msglen > od->rights.maxsiglen ? od->rights.maxsiglen : msglen), NULL, NULL, 0); | |
5377 g_free(msg); | |
5378 } else { | |
5379 msglen = strlen(text_html); | |
5380 aim_locate_setprofile(od->sess, "us-ascii", text_html, (msglen > od->rights.maxsiglen ? od->rights.maxsiglen : msglen), NULL, NULL, 0); | |
5381 } | |
5382 | |
5383 if (msglen > od->rights.maxsiglen) { | |
5384 gchar *errstr; | |
5385 errstr = g_strdup_printf(ngettext("The maximum profile length of %d byte " | |
5386 "has been exceeded. Gaim has truncated it for you.", | |
5387 "The maximum profile length of %d bytes " | |
5388 "has been exceeded. Gaim has truncated it for you.", | |
5389 od->rights.maxsiglen), od->rights.maxsiglen); | |
5390 gaim_notify_warning(gc, NULL, _("Profile too long."), errstr); | |
5391 g_free(errstr); | |
5392 } | |
5393 | |
5394 g_free(text_html); | |
2993 | 5395 |
5396 return; | |
2086 | 5397 } |
5398 | |
8257 | 5399 static void oscar_set_away_aim(GaimConnection *gc, OscarData *od, const char *state, const char *text) |
2993 | 5400 { |
5129 | 5401 fu32_t flags = 0; |
6019 | 5402 gchar *text_html = NULL; |
5129 | 5403 char *msg = NULL; |
6478
338147ea6896
[gaim-migrate @ 6991]
Christian Hammond <chipx86@chipx86.com>
parents:
6465
diff
changeset
|
5404 gsize msglen = 0; |
2993 | 5405 |
8257 | 5406 if (!strcmp(state, _("Visible"))) { |
5407 aim_setextstatus(od->sess, AIM_ICQ_STATE_NORMAL); | |
5408 return; | |
5409 } else if (!strcmp(state, _("Invisible"))) { | |
5410 aim_setextstatus(od->sess, AIM_ICQ_STATE_INVISIBLE); | |
5411 return; | |
5412 } /* else... */ | |
5413 | |
8476 | 5414 if (!strcmp(state, _("Back"))) { |
5415 /* If this is our only online account then globally set Gaim not-away */ | |
5416 GList *gcs = gaim_connections_get_all(); | |
5417 if (gcs->next == NULL) | |
9730 | 5418 ; /* XXX do_im_back(NULL, NULL); */ |
8476 | 5419 } |
5420 | |
8257 | 5421 aim_setextstatus(od->sess, AIM_ICQ_STATE_NORMAL); |
5422 | |
2993 | 5423 if (od->rights.maxawaymsglen == 0) |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
5424 gaim_notify_warning(gc, NULL, _("Unable to set AIM away message."), |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
5425 _("You have probably requested to set your " |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
5426 "away message before the login procedure " |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
5427 "completed. You remain in a \"present\" " |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
5428 "state; try setting it again when you are " |
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
5429 "fully connected.")); |
5129 | 5430 |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
5431 if (gc->away) { |
2993 | 5432 g_free(gc->away); |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
5433 gc->away = NULL; |
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
5434 } |
2993 | 5435 |
5129 | 5436 if (!text) { |
7334 | 5437 aim_locate_setprofile(od->sess, NULL, NULL, 0, NULL, "", 0); |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
5438 return; |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
5439 } |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
5440 |
7108
6faeeecab0dc
[gaim-migrate @ 7673]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
5441 text_html = gaim_strdup_withhtml(text); |
6019 | 5442 flags = oscar_encoding_check(text_html); |
5129 | 5443 if (flags & AIM_IMFLAGS_UNICODE) { |
6019 | 5444 msg = g_convert(text_html, strlen(text_html), "UCS-2BE", "UTF-8", NULL, &msglen, NULL); |
7011 | 5445 aim_locate_setprofile(od->sess, NULL, NULL, 0, "unicode-2-0", msg, |
7334 | 5446 (msglen > od->rights.maxawaymsglen ? od->rights.maxawaymsglen : msglen)); |
5129 | 5447 g_free(msg); |
5448 gc->away = g_strndup(text, od->rights.maxawaymsglen/2); | |
5449 } else if (flags & AIM_IMFLAGS_ISO_8859_1) { | |
6019 | 5450 msg = g_convert(text_html, strlen(text_html), "ISO-8859-1", "UTF-8", NULL, &msglen, NULL); |
7011 | 5451 aim_locate_setprofile(od->sess, NULL, NULL, 0, "iso-8859-1", msg, |
7334 | 5452 (msglen > od->rights.maxawaymsglen ? od->rights.maxawaymsglen : msglen)); |
5129 | 5453 g_free(msg); |
6019 | 5454 gc->away = g_strndup(text_html, od->rights.maxawaymsglen); |
5129 | 5455 } else { |
6019 | 5456 msglen = strlen(text_html); |
7011 | 5457 aim_locate_setprofile(od->sess, NULL, NULL, 0, "us-ascii", text_html, |
7334 | 5458 (msglen > od->rights.maxawaymsglen ? od->rights.maxawaymsglen : msglen)); |
6019 | 5459 gc->away = g_strndup(text_html, od->rights.maxawaymsglen); |
5129 | 5460 } |
5461 | |
5462 if (msglen > od->rights.maxawaymsglen) { | |
2993 | 5463 gchar *errstr; |
5464 | |
6308 | 5465 errstr = g_strdup_printf(ngettext("The maximum away message length of %d byte " |
5466 "has been exceeded. Gaim has truncated it for you.", | |
5467 "The maximum away message length of %d bytes " | |
5468 "has been exceeded. Gaim has truncated it for you.", | |
5469 od->rights.maxawaymsglen), od->rights.maxawaymsglen); | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
5470 gaim_notify_warning(gc, NULL, _("Away message too long."), errstr); |
2993 | 5471 g_free(errstr); |
5472 } | |
6019 | 5473 |
5474 g_free(text_html); | |
8257 | 5475 |
2993 | 5476 return; |
5477 } | |
5478 | |
7283 | 5479 static void oscar_set_away_icq(GaimConnection *gc, OscarData *od, const char *state, const char *message) |
2993 | 5480 { |
5575 | 5481 GaimAccount *account = gaim_connection_get_account(gc); |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
5482 if (gc->away) { |
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
5483 g_free(gc->away); |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
5484 gc->away = NULL; |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
5485 } |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
5486 |
8265 | 5487 if (strcmp(state, _("Invisible"))) |
5575 | 5488 account->perm_deny = 4; |
8265 | 5489 else |
5575 | 5490 account->perm_deny = 3; |
8265 | 5491 if ((od->sess->ssi.received_data) && (aim_ssi_getpermdeny(od->sess->ssi.local) != account->perm_deny)) |
5492 aim_ssi_setpermdeny(od->sess, account->perm_deny, 0xffffffff); | |
4342 | 5493 |
5494 if (!strcmp(state, _("Online"))) | |
4901 | 5495 aim_setextstatus(od->sess, AIM_ICQ_STATE_NORMAL); |
4342 | 5496 else if (!strcmp(state, _("Away"))) { |
4901 | 5497 aim_setextstatus(od->sess, AIM_ICQ_STATE_AWAY); |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
5498 gc->away = g_strdup(""); |
4342 | 5499 } else if (!strcmp(state, _("Do Not Disturb"))) { |
4901 | 5500 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
|
5501 gc->away = g_strdup(""); |
4342 | 5502 } else if (!strcmp(state, _("Not Available"))) { |
4901 | 5503 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
|
5504 gc->away = g_strdup(""); |
4342 | 5505 } else if (!strcmp(state, _("Occupied"))) { |
4901 | 5506 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
|
5507 gc->away = g_strdup(""); |
4342 | 5508 } else if (!strcmp(state, _("Free For Chat"))) { |
4901 | 5509 aim_setextstatus(od->sess, AIM_ICQ_STATE_CHAT); |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
5510 gc->away = g_strdup(""); |
4342 | 5511 } else if (!strcmp(state, _("Invisible"))) { |
4901 | 5512 aim_setextstatus(od->sess, AIM_ICQ_STATE_INVISIBLE); |
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
4102
diff
changeset
|
5513 gc->away = g_strdup(""); |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
5514 } else if (!strcmp(state, GAIM_AWAY_CUSTOM)) { |
2998 | 5515 if (message) { |
4901 | 5516 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
|
5517 gc->away = g_strdup(""); |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
5518 } else { |
4901 | 5519 aim_setextstatus(od->sess, AIM_ICQ_STATE_NORMAL); |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
5520 } |
2086 | 5521 } |
2993 | 5522 |
5523 return; | |
5524 } | |
5525 | |
6059 | 5526 static void oscar_set_away(GaimConnection *gc, const char *state, const char *message) |
2993 | 5527 { |
7283 | 5528 OscarData *od = (OscarData *)gc->proto_data; |
2993 | 5529 |
5530 if (od->icq) | |
5531 oscar_set_away_icq(gc, od, state, message); | |
5532 else | |
8257 | 5533 oscar_set_away_aim(gc, od, state, message); |
2993 | 5534 |
5535 return; | |
2086 | 5536 } |
5537 | |
6059 | 5538 static void oscar_warn(GaimConnection *gc, const char *name, int anon) { |
7283 | 5539 OscarData *od = (OscarData *)gc->proto_data; |
4617 | 5540 aim_im_warn(od->sess, od->conn, name, anon ? AIM_WARN_ANON : 0); |
2086 | 5541 } |
5542 | |
9285 | 5543 static void oscar_add_buddy(GaimConnection *gc, GaimBuddy *buddy, GaimGroup *group) { |
7283 | 5544 OscarData *od = (OscarData *)gc->proto_data; |
9285 | 5545 |
5546 if (!aim_snvalid(buddy->name)) { | |
8092 | 5547 gchar *buf; |
9285 | 5548 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."), buddy->name); |
9627 | 5549 if (!gaim_conv_present_error(buddy->name, gaim_connection_get_account(gc), buf)) |
5550 gaim_notify_error(gc, NULL, _("Unable To Add"), buf); | |
8092 | 5551 g_free(buf); |
8150 | 5552 |
5553 /* Remove from local list */ | |
9285 | 5554 gaim_blist_remove_buddy(buddy); |
8150 | 5555 |
8092 | 5556 return; |
5557 } | |
5558 | |
4230 | 5559 #ifdef NOSSI |
9285 | 5560 aim_buddylist_addbuddy(od->sess, od->conn, buddy->name); |
4230 | 5561 #else |
9285 | 5562 if ((od->sess->ssi.received_data) && !(aim_ssi_itemlist_finditem(od->sess->ssi.local, group->name, buddy->name, AIM_SSI_TYPE_BUDDY))) { |
5563 if (buddy && group) { | |
8660 | 5564 gaim_debug_info("oscar", |
9285 | 5565 "ssi: adding buddy %s to group %s\n", buddy->name, group->name); |
9620 | 5566 aim_ssi_addbuddy(od->sess, buddy->name, group->name, gaim_buddy_get_alias_only(buddy), NULL, NULL, 0); |
4230 | 5567 } |
5568 } | |
5569 #endif | |
8150 | 5570 |
4759 | 5571 if (od->icq) |
9285 | 5572 aim_icq_getalias(od->sess, buddy->name); |
5573 } | |
5574 | |
5575 static void oscar_add_buddies(GaimConnection *gc, GList *buddies, GList *groups) { | |
7283 | 5576 OscarData *od = (OscarData *)gc->proto_data; |
4230 | 5577 #ifdef NOSSI |
5578 char buf[MSG_LEN]; | |
5579 int n=0; | |
9285 | 5580 |
4230 | 5581 while (buddies) { |
9381 | 5582 GaimBuddy *buddy = buddies->data; |
4230 | 5583 if (n > MSG_LEN - 18) { |
7285 | 5584 aim_buddylist_set(od->sess, od->conn, buf); |
4230 | 5585 n = 0; |
3092 | 5586 } |
9381 | 5587 n += g_snprintf(buf + n, sizeof(buf) - n, "%s&", buddy->name); |
4230 | 5588 buddies = buddies->next; |
5589 } | |
7285 | 5590 aim_buddylist_set(od->sess, od->conn, buf); |
4230 | 5591 #else |
9285 | 5592 |
4230 | 5593 if (od->sess->ssi.received_data) { |
9285 | 5594 GList *curb = buddies; |
5595 GList *curg = groups; | |
5596 while ((curb != NULL) && (curg != NULL)) { | |
5597 GaimBuddy *buddy = curb->data; | |
5598 GaimGroup *group = curg->data; | |
5599 oscar_add_buddy(gc, buddy, group); | |
5600 curb = curb->next; | |
5601 curg = curg->next; | |
4230 | 5602 } |
5603 } | |
5604 #endif | |
5605 } | |
5606 | |
9285 | 5607 static void oscar_remove_buddy(GaimConnection *gc, GaimBuddy *buddy, GaimGroup *group) { |
7283 | 5608 OscarData *od = (OscarData *)gc->proto_data; |
9285 | 5609 |
4230 | 5610 #ifdef NOSSI |
9285 | 5611 aim_buddylist_removebuddy(od->sess, od->conn, buddy->name); |
4230 | 5612 #else |
5613 if (od->sess->ssi.received_data) { | |
8660 | 5614 gaim_debug_info("oscar", |
9285 | 5615 "ssi: deleting buddy %s from group %s\n", buddy->name, group->name); |
5616 aim_ssi_delbuddy(od->sess, buddy->name, group->name); | |
4230 | 5617 } |
5618 #endif | |
5619 } | |
5620 | |
9285 | 5621 static void oscar_remove_buddies(GaimConnection *gc, GList *buddies, GList *groups) { |
7283 | 5622 OscarData *od = (OscarData *)gc->proto_data; |
9285 | 5623 |
4230 | 5624 #ifdef NOSSI |
9285 | 5625 for (cur = buddies; cur != NULL; cur = cur->next) { |
5626 GaimBuddy *buddy = cur->data; | |
5627 aim_buddylist_removebuddy(od->sess, od->conn, buddy->name); | |
5628 } | |
4230 | 5629 #else |
5630 if (od->sess->ssi.received_data) { | |
9285 | 5631 GList *curb = buddies; |
5632 GList *curg = groups; | |
5633 while ((curb != NULL) && (curg != NULL)) { | |
5634 GaimBuddy *buddy = curb->data; | |
5635 GaimGroup *group = curg->data; | |
5636 oscar_remove_buddy(gc, buddy, group); | |
5637 curb = curb->next; | |
5638 curg = curg->next; | |
3092 | 5639 } |
4230 | 5640 } |
5641 #endif | |
5642 } | |
5643 | |
5644 #ifndef NOSSI | |
5575 | 5645 static void oscar_move_buddy(GaimConnection *gc, const char *name, const char *old_group, const char *new_group) { |
7283 | 5646 OscarData *od = (OscarData *)gc->proto_data; |
4303 | 5647 if (od->sess->ssi.received_data && strcmp(old_group, new_group)) { |
8660 | 5648 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5649 "ssi: moving buddy %s from group %s to group %s\n", name, old_group, new_group); |
4889 | 5650 aim_ssi_movebuddy(od->sess, old_group, new_group, name); |
4269 | 5651 } |
5652 } | |
5653 | |
5575 | 5654 static void oscar_alias_buddy(GaimConnection *gc, const char *name, const char *alias) { |
7283 | 5655 OscarData *od = (OscarData *)gc->proto_data; |
4269 | 5656 if (od->sess->ssi.received_data) { |
5657 char *gname = aim_ssi_itemlist_findparentname(od->sess->ssi.local, name); | |
5658 if (gname) { | |
8660 | 5659 gaim_debug_info("oscar", |
9586 | 5660 "ssi: changing the alias for buddy %s to %s\n", name, alias ? alias : "(none)"); |
4889 | 5661 aim_ssi_aliasbuddy(od->sess, gname, name, alias); |
4269 | 5662 } |
5663 } | |
5664 } | |
5665 | |
9285 | 5666 static void oscar_rename_group(GaimConnection *gc, const char *old_name, GaimGroup *group, GList *moved_buddies) { |
8341 | 5667 OscarData *od = (OscarData *)gc->proto_data; |
4230 | 5668 |
5669 if (od->sess->ssi.received_data) { | |
9285 | 5670 if (aim_ssi_itemlist_finditem(od->sess->ssi.local, group->name, NULL, AIM_SSI_TYPE_GROUP)) { |
5671 GList *cur, *groups = NULL; | |
5672 | |
5673 /* Make a list of what the groups each buddy is in */ | |
5674 for (cur = moved_buddies; cur != NULL; cur = cur->next) { | |
5675 GaimBlistNode *node = cur->data; | |
5676 groups = g_list_append(groups, node->parent); | |
5677 } | |
5678 | |
5679 oscar_remove_buddies(gc, moved_buddies, groups); | |
5680 oscar_add_buddies(gc, moved_buddies, groups); | |
5681 g_list_free(groups); | |
8660 | 5682 gaim_debug_info("oscar", |
9285 | 5683 "ssi: moved all buddies from group %s to %s\n", old_name, group->name); |
4230 | 5684 } else { |
9285 | 5685 aim_ssi_rename_group(od->sess, old_name, group->name); |
8660 | 5686 gaim_debug_info("oscar", |
9285 | 5687 "ssi: renamed group %s to %s\n", old_name, group->name); |
2995 | 5688 } |
5689 } | |
5690 } | |
5691 | |
5968 | 5692 static gboolean gaim_ssi_rerequestdata(gpointer data) { |
5693 aim_session_t *sess = data; | |
6350 | 5694 aim_ssi_reqdata(sess); |
5968 | 5695 return FALSE; |
5696 } | |
5697 | |
4642 | 5698 static int gaim_ssi_parseerr(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 5699 GaimConnection *gc = sess->aux_data; |
7283 | 5700 OscarData *od = gc->proto_data; |
4642 | 5701 va_list ap; |
5702 fu16_t reason; | |
5703 | |
5704 va_start(ap, fr); | |
5705 reason = (fu16_t)va_arg(ap, unsigned int); | |
5706 va_end(ap); | |
5707 | |
8660 | 5708 gaim_debug_error("oscar", "ssi: SNAC error %hu\n", reason); |
4642 | 5709 |
5710 if (reason == 0x0005) { | |
5892 | 5711 gaim_notify_error(gc, NULL, _("Unable To Retrieve Buddy List"), |
5828 | 5712 _("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
|
5713 od->getblisttimer = gaim_timeout_add(300000, gaim_ssi_rerequestdata, od->sess); |
4642 | 5714 } |
5715 | |
5716 /* Activate SSI */ | |
5717 /* Sending the enable causes other people to be able to see you, and you to see them */ | |
5718 /* Make sure your privacy setting/invisibility is set how you want it before this! */ | |
8660 | 5719 gaim_debug_info("oscar", "ssi: activating server-stored buddy list\n"); |
4642 | 5720 aim_ssi_enable(od->sess); |
5721 | |
5722 return 1; | |
5723 } | |
5724 | |
2991 | 5725 static int gaim_ssi_parserights(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 5726 GaimConnection *gc = sess->aux_data; |
7283 | 5727 OscarData *od = (OscarData *)gc->proto_data; |
4230 | 5728 int numtypes, i; |
5729 fu16_t *maxitems; | |
2991 | 5730 va_list ap; |
5731 | |
5732 va_start(ap, fr); | |
4230 | 5733 numtypes = va_arg(ap, int); |
5734 maxitems = va_arg(ap, fu16_t *); | |
2991 | 5735 va_end(ap); |
5736 | |
8660 | 5737 gaim_debug_misc("oscar", "ssi rights:"); |
5211
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5208
diff
changeset
|
5738 |
4230 | 5739 for (i=0; i<numtypes; i++) |
8660 | 5740 gaim_debug_misc(NULL, " max type 0x%04x=%hd,", |
5211
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5208
diff
changeset
|
5741 i, maxitems[i]); |
0241d6b6702d
[gaim-migrate @ 5581]
Christian Hammond <chipx86@chipx86.com>
parents:
5208
diff
changeset
|
5742 |
8660 | 5743 gaim_debug_misc(NULL, "\n"); |
4230 | 5744 |
5745 if (numtypes >= 0) | |
5746 od->rights.maxbuddies = maxitems[0]; | |
5747 if (numtypes >= 1) | |
5748 od->rights.maxgroups = maxitems[1]; | |
5749 if (numtypes >= 2) | |
5750 od->rights.maxpermits = maxitems[2]; | |
5751 if (numtypes >= 3) | |
5752 od->rights.maxdenies = maxitems[3]; | |
2991 | 5753 |
5754 return 1; | |
5755 } | |
5756 | |
5757 static int gaim_ssi_parselist(aim_session_t *sess, aim_frame_t *fr, ...) { | |
5575 | 5758 GaimConnection *gc = sess->aux_data; |
5759 GaimAccount *account = gaim_connection_get_account(gc); | |
7283 | 5760 OscarData *od = (OscarData *)gc->proto_data; |
8150 | 5761 GaimGroup *g; |
5762 GaimBuddy *b; | |
2995 | 5763 struct aim_ssi_item *curitem; |
2991 | 5764 int tmp; |
4230 | 5765 va_list ap; |
8219 | 5766 fu16_t fmtver, numitems; |
5767 struct aim_ssi_item *items; | |
5768 fu32_t timestamp; | |
4230 | 5769 |
5770 va_start(ap, fr); | |
5771 fmtver = (fu16_t)va_arg(ap, int); | |
5772 numitems = (fu16_t)va_arg(ap, int); | |
8219 | 5773 items = va_arg(ap, struct aim_ssi_item *); |
4230 | 5774 timestamp = va_arg(ap, fu32_t); |
8219 | 5775 va_end(ap); |
2991 | 5776 |
8660 | 5777 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5778 "ssi: syncing local list and server list\n"); |
2991 | 5779 |
8219 | 5780 if ((timestamp == 0) || (numitems == 0)) { |
8660 | 5781 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 | 5782 return 1; |
5783 } | |
5784 | |
2991 | 5785 /* Clean the buddy list */ |
4889 | 5786 aim_ssi_cleanlist(sess); |
2991 | 5787 |
8150 | 5788 { /* If not in server list then prune from local list */ |
5789 GaimBlistNode *gnode, *cnode, *bnode; | |
5790 GaimBuddyList *blist; | |
9539 | 5791 GSList *cur, *next; |
8150 | 5792 |
5793 /* Buddies */ | |
5794 cur = NULL; | |
5795 if ((blist = gaim_get_blist()) != NULL) { | |
5796 for (gnode = blist->root; gnode; gnode = gnode->next) { | |
5797 if(!GAIM_BLIST_NODE_IS_GROUP(gnode)) | |
5798 continue; | |
5799 g = (GaimGroup *)gnode; | |
5800 for (cnode = gnode->child; cnode; cnode = cnode->next) { | |
5801 if(!GAIM_BLIST_NODE_IS_CONTACT(cnode)) | |
5802 continue; | |
5803 for (bnode = cnode->child; bnode; bnode = bnode->next) { | |
5804 if(!GAIM_BLIST_NODE_IS_BUDDY(bnode)) | |
5805 continue; | |
5806 b = (GaimBuddy *)bnode; | |
5807 if (b->account == gc->account) { | |
5808 if (aim_ssi_itemlist_exists(sess->ssi.local, b->name)) { | |
5809 /* If the buddy is an ICQ user then load his nickname */ | |
5810 const char *servernick = gaim_blist_node_get_string((GaimBlistNode*)b, "servernick"); | |
8214 | 5811 char *alias; |
8150 | 5812 if (servernick) |
5813 serv_got_alias(gc, b->name, servernick); | |
5814 | |
5815 /* Store local alias on server */ | |
8214 | 5816 alias = aim_ssi_getalias(sess->ssi.local, g->name, b->name); |
8150 | 5817 if (!alias && b->alias && strlen(b->alias)) |
5818 aim_ssi_aliasbuddy(sess, g->name, b->name, b->alias); | |
5819 free(alias); | |
5820 } else { | |
8660 | 5821 gaim_debug_info("oscar", |
8150 | 5822 "ssi: removing buddy %s from local list\n", b->name); |
5823 /* We can't actually remove now because it will screw up our looping */ | |
5824 cur = g_slist_prepend(cur, b); | |
5825 } | |
5826 } | |
5827 } | |
5828 } | |
5829 } | |
5830 } | |
8175 | 5831 |
8150 | 5832 while (cur != NULL) { |
5833 b = cur->data; | |
5834 cur = g_slist_remove(cur, b); | |
5835 gaim_blist_remove_buddy(b); | |
5836 } | |
5837 | |
5838 /* Permit list */ | |
5839 if (gc->account->permit) { | |
9539 | 5840 next = gc->account->permit; |
5841 while (next != NULL) { | |
5842 cur = next; | |
5843 next = next->next; | |
8150 | 5844 if (!aim_ssi_itemlist_finditem(sess->ssi.local, NULL, cur->data, AIM_SSI_TYPE_PERMIT)) { |
8660 | 5845 gaim_debug_info("oscar", |
8150 | 5846 "ssi: removing permit %s from local list\n", (const char *)cur->data); |
5847 gaim_privacy_permit_remove(account, cur->data, TRUE); | |
5848 } | |
9539 | 5849 } |
8150 | 5850 } |
5851 | |
5852 /* Deny list */ | |
5853 if (gc->account->deny) { | |
9539 | 5854 next = gc->account->deny; |
5855 while (next != NULL) { | |
5856 cur = next; | |
5857 next = next->next; | |
8150 | 5858 if (!aim_ssi_itemlist_finditem(sess->ssi.local, NULL, cur->data, AIM_SSI_TYPE_DENY)) { |
8660 | 5859 gaim_debug_info("oscar", |
8150 | 5860 "ssi: removing deny %s from local list\n", (const char *)cur->data); |
5861 gaim_privacy_deny_remove(account, cur->data, TRUE); | |
5862 } | |
9539 | 5863 } |
8150 | 5864 } |
5865 /* Presence settings (idle time visibility) */ | |
5866 if ((tmp = aim_ssi_getpresence(sess->ssi.local)) != 0xFFFFFFFF) | |
5867 if (!(tmp & 0x400)) | |
5868 aim_ssi_setpresence(sess, tmp | 0x400); | |
5869 } /* end pruning buddies from local list */ | |
5870 | |
2991 | 5871 /* Add from server list to local list */ |
4230 | 5872 for (curitem=sess->ssi.local; curitem; curitem=curitem->next) { |
7328 | 5873 if ((curitem->name == NULL) || (g_utf8_validate(curitem->name, -1, NULL))) |
2991 | 5874 switch (curitem->type) { |
4230 | 5875 case 0x0000: { /* Buddy */ |
4251 | 5876 if (curitem->name) { |
4292 | 5877 char *gname = aim_ssi_itemlist_findparentname(sess->ssi.local, curitem->name); |
7166 | 5878 char *gname_utf8 = gname ? gaim_utf8_try_convert(gname) : NULL; |
4282 | 5879 char *alias = aim_ssi_getalias(sess->ssi.local, gname, curitem->name); |
7166 | 5880 char *alias_utf8 = alias ? gaim_utf8_try_convert(alias) : NULL; |
8150 | 5881 b = gaim_find_buddy(gc->account, curitem->name); |
4458 | 5882 /* Should gname be freed here? -- elb */ |
4754 | 5883 /* Not with the current code, but that might be cleaner -- med */ |
4458 | 5884 free(alias); |
8150 | 5885 if (b) { |
4292 | 5886 /* Get server stored alias */ |
4705 | 5887 if (alias_utf8) { |
8150 | 5888 g_free(b->alias); |
5889 b->alias = g_strdup(alias_utf8); | |
4705 | 5890 } |
4282 | 5891 } else { |
8150 | 5892 b = gaim_buddy_new(gc->account, curitem->name, alias_utf8); |
5146 | 5893 |
4754 | 5894 if (!(g = gaim_find_group(gname_utf8 ? gname_utf8 : _("Orphans")))) { |
4687 | 5895 g = gaim_group_new(gname_utf8 ? gname_utf8 : _("Orphans")); |
4754 | 5896 gaim_blist_add_group(g, NULL); |
5897 } | |
5146 | 5898 |
8660 | 5899 gaim_debug_info("oscar", |
9285 | 5900 "ssi: adding buddy %s to group %s to local list\n", curitem->name, gname_utf8 ? gname_utf8 : _("Orphans")); |
8150 | 5901 gaim_blist_add_buddy(b, NULL, g, NULL); |
4251 | 5902 } |
8341 | 5903 if (!aim_sncmp(curitem->name, account->username)) { |
5904 char *comment = aim_ssi_getcomment(sess->ssi.local, gname, curitem->name); | |
5905 gaim_check_comment(od, comment); | |
5906 free(comment); | |
5907 } | |
7162 | 5908 g_free(gname_utf8); |
5909 g_free(alias_utf8); | |
2991 | 5910 } |
4230 | 5911 } break; |
5912 | |
5913 case 0x0001: { /* Group */ | |
4282 | 5914 /* Shouldn't add empty groups */ |
4230 | 5915 } break; |
5916 | |
5917 case 0x0002: { /* Permit buddy */ | |
2991 | 5918 if (curitem->name) { |
4230 | 5919 /* if (!find_permdeny_by_name(gc->permit, curitem->name)) { AAA */ |
2991 | 5920 GSList *list; |
5575 | 5921 for (list=account->permit; (list && aim_sncmp(curitem->name, list->data)); list=list->next); |
2991 | 5922 if (!list) { |
8660 | 5923 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5924 "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
|
5925 gaim_privacy_permit_add(account, curitem->name, TRUE); |
2991 | 5926 } |
5927 } | |
4230 | 5928 } break; |
5929 | |
5930 case 0x0003: { /* Deny buddy */ | |
2991 | 5931 if (curitem->name) { |
5932 GSList *list; | |
5575 | 5933 for (list=account->deny; (list && aim_sncmp(curitem->name, list->data)); list=list->next); |
2991 | 5934 if (!list) { |
8660 | 5935 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5936 "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
|
5937 gaim_privacy_deny_add(account, curitem->name, TRUE); |
2991 | 5938 } |
5939 } | |
4230 | 5940 } break; |
5941 | |
5942 case 0x0004: { /* Permit/deny setting */ | |
2991 | 5943 if (curitem->data) { |
5944 fu8_t permdeny; | |
5575 | 5945 if ((permdeny = aim_ssi_getpermdeny(sess->ssi.local)) && (permdeny != account->perm_deny)) { |
8660 | 5946 gaim_debug_info("oscar", |
5575 | 5947 "ssi: changing permdeny from %d to %hhu\n", account->perm_deny, permdeny); |
5948 account->perm_deny = permdeny; | |
5949 if (od->icq && account->perm_deny == 0x03) { | |
4342 | 5950 serv_set_away(gc, "Invisible", ""); |
5951 } | |
2991 | 5952 } |
5953 } | |
4230 | 5954 } break; |
5955 | |
5956 case 0x0005: { /* Presence setting */ | |
3109 | 5957 /* We don't want to change Gaim's setting because it applies to all accounts */ |
4230 | 5958 } break; |
2991 | 5959 } /* End of switch on curitem->type */ |
5960 } /* End of for loop */ | |
4230 | 5961 |
4901 | 5962 /* Set our ICQ status */ |
8257 | 5963 if (!gc->away) { |
4901 | 5964 aim_setextstatus(sess, AIM_ICQ_STATE_NORMAL); |
5965 } | |
5966 | |
4342 | 5967 /* Activate SSI */ |
5968 /* Sending the enable causes other people to be able to see you, and you to see them */ | |
5969 /* Make sure your privacy setting/invisibility is set how you want it before this! */ | |
8660 | 5970 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5971 "ssi: activating server-stored buddy list\n"); |
4642 | 5972 aim_ssi_enable(sess); |
4342 | 5973 |
2991 | 5974 return 1; |
2086 | 5975 } |
4230 | 5976 |
5977 static int gaim_ssi_parseack(aim_session_t *sess, aim_frame_t *fr, ...) { | |
5575 | 5978 GaimConnection *gc = sess->aux_data; |
4230 | 5979 va_list ap; |
5980 struct aim_ssi_tmp *retval; | |
5981 | |
5982 va_start(ap, fr); | |
5983 retval = va_arg(ap, struct aim_ssi_tmp *); | |
5984 va_end(ap); | |
5985 | |
5986 while (retval) { | |
8660 | 5987 gaim_debug_misc("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
5988 "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 | 5989 |
5990 if (retval->ack != 0xffff) | |
5991 switch (retval->ack) { | |
5992 case 0x0000: { /* added successfully */ | |
5993 } break; | |
5994 | |
4829 | 5995 case 0x000c: { /* you are over the limit, the cheat is to the limit, come on fhqwhgads */ |
5996 gchar *buf; | |
5997 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)"))); | |
9627 | 5998 if (!gaim_conv_present_error(retval->name, gaim_connection_get_account(gc), buf)) |
5999 gaim_notify_error(gc, NULL, _("Unable To Add"), buf); | |
4829 | 6000 g_free(buf); |
6001 } | |
6002 | |
7023 | 6003 case 0x000e: { /* buddy requires authorization */ |
4828 | 6004 if ((retval->action == AIM_CB_SSI_ADD) && (retval->name)) |
4269 | 6005 gaim_auth_sendrequest(gc, retval->name); |
4230 | 6006 } break; |
6007 | |
6008 default: { /* La la la */ | |
5197 | 6009 gchar *buf; |
8660 | 6010 gaim_debug_error("oscar", "ssi: Action 0x%04hx was unsuccessful with error 0x%04hx\n", retval->action, retval->ack); |
5402 | 6011 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)"))); |
9627 | 6012 if (!gaim_conv_present_error(retval->name, gaim_connection_get_account(gc), buf)) |
6013 gaim_notify_error(gc, NULL, _("Unable To Add"), buf); | |
5197 | 6014 g_free(buf); |
4230 | 6015 } break; |
6016 } | |
6017 | |
6018 retval = retval->next; | |
6019 } | |
6020 | |
6021 return 1; | |
6022 } | |
6023 | |
8227 | 6024 static int gaim_ssi_parseadd(aim_session_t *sess, aim_frame_t *fr, ...) { |
6025 GaimConnection *gc = sess->aux_data; | |
6026 char *gname, *gname_utf8, *alias, *alias_utf8; | |
6027 GaimBuddy *b; | |
6028 GaimGroup *g; | |
6029 va_list ap; | |
6030 fu16_t type; | |
6031 const char *name; | |
6032 | |
6033 va_start(ap, fr); | |
6034 type = (fu16_t)va_arg(ap, int); | |
6035 name = va_arg(ap, char *); | |
6036 va_end(ap); | |
6037 | |
6038 if ((type != 0x0000) || (name == NULL)) | |
6039 return 1; | |
6040 | |
6041 gname = aim_ssi_itemlist_findparentname(sess->ssi.local, name); | |
6042 gname_utf8 = gname ? gaim_utf8_try_convert(gname) : NULL; | |
6043 alias = aim_ssi_getalias(sess->ssi.local, gname, name); | |
6044 alias_utf8 = alias ? gaim_utf8_try_convert(alias) : NULL; | |
6045 b = gaim_find_buddy(gc->account, name); | |
6046 free(alias); | |
6047 | |
6048 if (b) { | |
6049 /* Get server stored alias */ | |
6050 if (alias_utf8) { | |
6051 g_free(b->alias); | |
6052 b->alias = g_strdup(alias_utf8); | |
6053 } | |
6054 } else { | |
6055 b = gaim_buddy_new(gc->account, name, alias_utf8); | |
6056 | |
6057 if (!(g = gaim_find_group(gname_utf8 ? gname_utf8 : _("Orphans")))) { | |
6058 g = gaim_group_new(gname_utf8 ? gname_utf8 : _("Orphans")); | |
6059 gaim_blist_add_group(g, NULL); | |
6060 } | |
6061 | |
8660 | 6062 gaim_debug_info("oscar", |
9285 | 6063 "ssi: adding buddy %s to group %s to local list\n", name, gname_utf8 ? gname_utf8 : _("Orphans")); |
8227 | 6064 gaim_blist_add_buddy(b, NULL, g, NULL); |
6065 } | |
6066 g_free(gname_utf8); | |
6067 g_free(alias_utf8); | |
6068 | |
6069 return 1; | |
6070 } | |
6071 | |
4230 | 6072 static int gaim_ssi_authgiven(aim_session_t *sess, aim_frame_t *fr, ...) { |
5575 | 6073 GaimConnection *gc = sess->aux_data; |
4230 | 6074 va_list ap; |
6075 char *sn, *msg; | |
4236 | 6076 gchar *dialog_msg, *nombre; |
4230 | 6077 struct name_data *data; |
6695 | 6078 GaimBuddy *buddy; |
4230 | 6079 |
6080 va_start(ap, fr); | |
6081 sn = va_arg(ap, char *); | |
6082 msg = va_arg(ap, char *); | |
6083 va_end(ap); | |
6084 | |
8660 | 6085 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
6086 "ssi: %s has given you permission to add him to your buddy list\n", sn); |
4230 | 6087 |
4687 | 6088 buddy = gaim_find_buddy(gc->account, sn); |
9620 | 6089 if (buddy && (gaim_buddy_get_alias_only(buddy))) |
6090 nombre = g_strdup_printf("%s (%s)", sn, gaim_buddy_get_alias_only(buddy)); | |
4236 | 6091 else |
6092 nombre = g_strdup(sn); | |
6093 | |
6094 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 | 6095 data = g_new(struct name_data, 1); |
6096 data->gc = gc; | |
6097 data->name = g_strdup(sn); | |
6098 data->nick = NULL; | |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
6099 |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
6100 gaim_request_yes_no(gc, NULL, _("Authorization Given"), dialog_msg, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
6101 0, data, |
7023 | 6102 G_CALLBACK(gaim_icq_buddyadd), |
5836 | 6103 G_CALLBACK(oscar_free_name_data)); |
4236 | 6104 |
4230 | 6105 g_free(dialog_msg); |
4236 | 6106 g_free(nombre); |
4230 | 6107 |
6108 return 1; | |
6109 } | |
6110 | |
6111 static int gaim_ssi_authrequest(aim_session_t *sess, aim_frame_t *fr, ...) { | |
5575 | 6112 GaimConnection *gc = sess->aux_data; |
4230 | 6113 va_list ap; |
6114 char *sn, *msg; | |
4236 | 6115 gchar *dialog_msg, *nombre; |
4230 | 6116 struct name_data *data; |
6695 | 6117 GaimBuddy *buddy; |
4230 | 6118 |
6119 va_start(ap, fr); | |
6120 sn = va_arg(ap, char *); | |
6121 msg = va_arg(ap, char *); | |
6122 va_end(ap); | |
6123 | |
8660 | 6124 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
6125 "ssi: received authorization request from %s\n", sn); |
4230 | 6126 |
4687 | 6127 buddy = gaim_find_buddy(gc->account, sn); |
9620 | 6128 if (buddy && (gaim_buddy_get_alias_only(buddy))) |
6129 nombre = g_strdup_printf("%s (%s)", sn, gaim_buddy_get_alias_only(buddy)); | |
4236 | 6130 else |
6131 nombre = g_strdup(sn); | |
6132 | |
4337 | 6133 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 | 6134 data = g_new(struct name_data, 1); |
6135 data->gc = gc; | |
6136 data->name = g_strdup(sn); | |
6137 data->nick = NULL; | |
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
6138 |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
6139 gaim_request_action(gc, NULL, _("Authorization Request"), dialog_msg, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
6140 0, data, 2, |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
6141 _("Authorize"), G_CALLBACK(gaim_auth_grant), |
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5497
diff
changeset
|
6142 _("Deny"), G_CALLBACK(gaim_auth_dontgrant_msgprompt)); |
4236 | 6143 |
4230 | 6144 g_free(dialog_msg); |
4236 | 6145 g_free(nombre); |
4230 | 6146 |
6147 return 1; | |
6148 } | |
6149 | |
6150 static int gaim_ssi_authreply(aim_session_t *sess, aim_frame_t *fr, ...) { | |
5575 | 6151 GaimConnection *gc = sess->aux_data; |
4230 | 6152 va_list ap; |
6153 char *sn, *msg; | |
4236 | 6154 gchar *dialog_msg, *nombre; |
4230 | 6155 fu8_t reply; |
6695 | 6156 GaimBuddy *buddy; |
4230 | 6157 |
6158 va_start(ap, fr); | |
6159 sn = va_arg(ap, char *); | |
6160 reply = (fu8_t)va_arg(ap, int); | |
6161 msg = va_arg(ap, char *); | |
6162 va_end(ap); | |
6163 | |
8660 | 6164 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
6165 "ssi: received authorization reply from %s. Reply is 0x%04hhx\n", sn, reply); |
4236 | 6166 |
4687 | 6167 buddy = gaim_find_buddy(gc->account, sn); |
9620 | 6168 if (buddy && (gaim_buddy_get_alias_only(buddy))) |
6169 nombre = g_strdup_printf("%s (%s)", sn, gaim_buddy_get_alias_only(buddy)); | |
4236 | 6170 else |
6171 nombre = g_strdup(sn); | |
6172 | |
4230 | 6173 if (reply) { |
6174 /* Granted */ | |
7023 | 6175 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
|
6176 gaim_notify_info(gc, NULL, _("Authorization Granted"), dialog_msg); |
4230 | 6177 } else { |
6178 /* Denied */ | |
7023 | 6179 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
|
6180 gaim_notify_info(gc, NULL, _("Authorization Denied"), dialog_msg); |
4230 | 6181 } |
6182 g_free(dialog_msg); | |
4236 | 6183 g_free(nombre); |
4230 | 6184 |
6185 return 1; | |
6186 } | |
6187 | |
6188 static int gaim_ssi_gotadded(aim_session_t *sess, aim_frame_t *fr, ...) { | |
5575 | 6189 GaimConnection *gc = sess->aux_data; |
4230 | 6190 va_list ap; |
6191 char *sn; | |
6695 | 6192 GaimBuddy *buddy; |
4230 | 6193 |
6194 va_start(ap, fr); | |
6195 sn = va_arg(ap, char *); | |
6196 va_end(ap); | |
6197 | |
4687 | 6198 buddy = gaim_find_buddy(gc->account, sn); |
8660 | 6199 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
6200 "ssi: %s added you to their buddy list\n", sn); |
9620 | 6201 gaim_account_notify_added(gc->account, NULL, sn, (buddy ? gaim_buddy_get_alias_only(buddy) : NULL), NULL); |
4230 | 6202 |
6203 return 1; | |
6204 } | |
4269 | 6205 #endif |
2086 | 6206 |
5575 | 6207 static GList *oscar_chat_info(GaimConnection *gc) { |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
6208 GList *m = NULL; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
6209 struct proto_chat_entry *pce; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
6210 |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
6211 pce = g_new0(struct proto_chat_entry, 1); |
7841 | 6212 pce->label = _("_Group:"); |
5234 | 6213 pce->identifier = "room"; |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
6214 m = g_list_append(m, pce); |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
6215 |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
6216 pce = g_new0(struct proto_chat_entry, 1); |
7841 | 6217 pce->label = _("_Exchange:"); |
5234 | 6218 pce->identifier = "exchange"; |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
6219 pce->is_int = TRUE; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
6220 pce->min = 4; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
6221 pce->max = 20; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
6222 m = g_list_append(m, pce); |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
6223 |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
6224 return m; |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
6225 } |
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
6226 |
8308 | 6227 static void oscar_join_chat(GaimConnection *gc, GHashTable *data) { |
6228 OscarData *od = (OscarData *)gc->proto_data; | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
6229 aim_conn_t *cur; |
5234 | 6230 char *name, *exchange; |
6231 | |
6232 name = g_hash_table_lookup(data, "room"); | |
6233 exchange = g_hash_table_lookup(data, "exchange"); | |
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2197
diff
changeset
|
6234 |
8660 | 6235 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
6236 "Attempting to join chat room %s.\n", name); |
8308 | 6237 |
6238 if ((name == NULL) || (*name == '\0')) { | |
6239 gaim_notify_error(gc, NULL, _("Invalid chat name specified."), NULL); | |
6240 return; | |
6241 } | |
6242 | |
4617 | 6243 if ((cur = aim_getconn_type(od->sess, AIM_CONN_TYPE_CHATNAV))) { |
8660 | 6244 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
6245 "chatnav exists, creating room\n"); |
5234 | 6246 aim_chatnav_createroom(od->sess, cur, name, atoi(exchange)); |
2086 | 6247 } else { |
6248 /* this gets tricky */ | |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
6249 struct create_room *cr = g_new0(struct create_room, 1); |
8660 | 6250 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
6251 "chatnav does not exist, opening chatnav\n"); |
5234 | 6252 cr->exchange = atoi(exchange); |
2822
744df95bf123
[gaim-migrate @ 2835]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2821
diff
changeset
|
6253 cr->name = g_strdup(name); |
4617 | 6254 od->create_rooms = g_slist_append(od->create_rooms, cr); |
6255 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_CHATNAV); | |
2086 | 6256 } |
6257 } | |
6258 | |
8308 | 6259 static void oscar_chat_invite(GaimConnection *gc, int id, const char *message, const char *name) { |
6260 OscarData *od = (OscarData *)gc->proto_data; | |
6261 struct chat_connection *ccon = find_oscar_chat(gc, id); | |
2086 | 6262 |
6263 if (!ccon) | |
6264 return; | |
6265 | |
8225 | 6266 aim_im_sendch2_chatinvite(od->sess, name, message ? message : "", |
2086 | 6267 ccon->exchange, ccon->name, 0x0); |
6268 } | |
6269 | |
8308 | 6270 static void oscar_chat_leave(GaimConnection *gc, int id) { |
6271 OscarData *od = gc ? (OscarData *)gc->proto_data : NULL; | |
6272 GSList *bcs = gc->buddy_chats; | |
5679 | 6273 GaimConversation *b = NULL; |
2086 | 6274 struct chat_connection *c = NULL; |
6275 int count = 0; | |
6276 | |
6277 while (bcs) { | |
6278 count++; | |
5679 | 6279 b = (GaimConversation *)bcs->data; |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7111
diff
changeset
|
6280 if (id == gaim_conv_chat_get_id(GAIM_CONV_CHAT(b))) |
2086 | 6281 break; |
6282 bcs = bcs->next; | |
6283 b = NULL; | |
6284 } | |
6285 | |
6286 if (!b) | |
6287 return; | |
6288 | |
8660 | 6289 gaim_debug_info("oscar", |
5219
e807abdcee83
[gaim-migrate @ 5589]
Christian Hammond <chipx86@chipx86.com>
parents:
5211
diff
changeset
|
6290 "Attempting to leave room %s (currently in %d rooms)\n", b->name, count); |
2086 | 6291 |
8308 | 6292 c = find_oscar_chat(gc, gaim_conv_chat_get_id(GAIM_CONV_CHAT(b))); |
2086 | 6293 if (c != NULL) { |
4617 | 6294 if (od) |
6295 od->oscar_chats = g_slist_remove(od->oscar_chats, c); | |
2086 | 6296 if (c->inpa > 0) |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
6297 gaim_input_remove(c->inpa); |
8308 | 6298 if (gc && od->sess) |
4617 | 6299 aim_conn_kill(od->sess, &c->conn); |
2086 | 6300 g_free(c->name); |
6301 g_free(c->show); | |
6302 g_free(c); | |
6303 } | |
6304 /* we do this because with Oscar it doesn't tell us we left */ | |
8308 | 6305 serv_got_chat_left(gc, gaim_conv_chat_get_id(GAIM_CONV_CHAT(b))); |
2086 | 6306 } |
6307 | |
8219 | 6308 static int oscar_send_chat(GaimConnection *gc, int id, const char *message) { |
6309 OscarData *od = (OscarData *)gc->proto_data; | |
6310 GError *err = NULL; | |
6311 GaimConversation *conv = NULL; | |
2086 | 6312 struct chat_connection *c = NULL; |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
6313 char *buf, *buf2; |
8219 | 6314 char *charset = NULL; |
6315 int encoding; | |
8907 | 6316 gsize len; |
8219 | 6317 |
6318 if (!(conv = gaim_find_chat(gc, id))) | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
6319 return -EINVAL; |
2086 | 6320 |
8219 | 6321 if (!(c = find_oscar_chat_by_conv(gc, conv))) |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
6322 return -EINVAL; |
2086 | 6323 |
8219 | 6324 buf = gaim_strdup_withhtml(message); |
6325 len = strlen(buf); | |
6326 | |
8962 | 6327 if (strstr(buf, "<IMG ")) |
6328 gaim_conversation_write(conv, "", | |
6329 _("Your IM Image was not sent. " | |
6330 "You cannot send IM Images in AIM chats."), | |
6331 GAIM_MESSAGE_ERROR, time(NULL)); | |
6332 | |
8219 | 6333 encoding = oscar_encoding_check(buf); |
8233 | 6334 if (encoding & AIM_IMFLAGS_UNICODE) { |
8660 | 6335 gaim_debug_info("oscar", "Sending Unicode chat\n"); |
8219 | 6336 charset = "unicode-2-0"; |
6337 buf2 = g_convert(buf, len, "UCS-2BE", "UTF-8", NULL, &len, &err); | |
6338 if (err) { | |
8660 | 6339 gaim_debug_error("oscar", |
8359 | 6340 "Error converting to unicode-2-0: %s\n", err->message); |
6341 g_error_free(err); | |
6342 } | |
8219 | 6343 } else if (encoding & AIM_IMFLAGS_ISO_8859_1) { |
8660 | 6344 gaim_debug_info("oscar", "Sending ISO-8859-1 chat\n"); |
8219 | 6345 charset = "iso-8859-1"; |
6346 buf2 = g_convert(buf, len, "ISO-8859-1", "UTF-8", NULL, &len, &err); | |
6347 if (err) { | |
8660 | 6348 gaim_debug_error("oscar", |
8359 | 6349 "Error converting to iso-8859-1: %s\n", err->message); |
8219 | 6350 g_error_free(err); |
8359 | 6351 err = NULL; |
6352 | |
8660 | 6353 gaim_debug_info("oscar", "Falling back to Unicode\n"); |
8359 | 6354 charset = "unicode-2-0"; |
6355 buf2 = g_convert(buf, len, "UCS-2BE", "UTF-8", NULL, &len, &err); | |
8219 | 6356 if (err) { |
8660 | 6357 gaim_debug_error("oscar", |
8359 | 6358 "Error converting to unicode-2-0: %s\n", |
6359 err->message); | |
8219 | 6360 g_error_free(err); |
6361 } | |
2086 | 6362 } |
8219 | 6363 } else { |
6364 charset = "us-ascii"; | |
6365 buf2 = g_strdup(buf); | |
6366 } | |
8359 | 6367 g_free(buf); |
6368 | |
6369 if ((len > c->maxlen) || (len > c->maxvis)) { | |
6370 g_free(buf2); | |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
6371 return -E2BIG; |
8359 | 6372 } |
6373 | |
6374 aim_chat_send_im(od->sess, c->conn, 0, buf2, len, charset, "en"); | |
8219 | 6375 g_free(buf2); |
8359 | 6376 |
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
6377 return 0; |
2086 | 6378 } |
6379 | |
6695 | 6380 static const char *oscar_list_icon(GaimAccount *a, GaimBuddy *b) { |
4766 | 6381 if (!b || (b && b->name && b->name[0] == '+')) { |
5646
48c63ee49961
[gaim-migrate @ 6060]
Christian Hammond <chipx86@chipx86.com>
parents:
5638
diff
changeset
|
6382 if (a != NULL && isdigit(*gaim_account_get_username(a))) |
4687 | 6383 return "icq"; |
6384 else | |
6385 return "aim"; | |
6386 } | |
5646
48c63ee49961
[gaim-migrate @ 6060]
Christian Hammond <chipx86@chipx86.com>
parents:
5638
diff
changeset
|
6387 |
48c63ee49961
[gaim-migrate @ 6060]
Christian Hammond <chipx86@chipx86.com>
parents:
5638
diff
changeset
|
6388 if (b != NULL && isdigit(b->name[0])) |
4687 | 6389 return "icq"; |
6390 return "aim"; | |
6391 } | |
6392 | |
6695 | 6393 static void oscar_list_emblems(GaimBuddy *b, char **se, char **sw, char **nw, char **ne) |
4687 | 6394 { |
7334 | 6395 GaimAccount *account = NULL; |
6396 GaimConnection *gc = NULL; | |
6397 OscarData *od = NULL; | |
4687 | 6398 char *emblems[4] = {NULL,NULL,NULL,NULL}; |
6399 int i = 0; | |
7334 | 6400 aim_userinfo_t *userinfo = NULL; |
6401 | |
6402 if (b != NULL) | |
6403 account = b->account; | |
6404 if (account != NULL) | |
6405 gc = account->gc; | |
6406 if (gc != NULL) | |
6407 od = gc->proto_data; | |
7945 | 6408 if (od != NULL) |
6409 userinfo = aim_locate_finduserinfo(od->sess, b->name); | |
4687 | 6410 |
5131 | 6411 if (!GAIM_BUDDY_IS_ONLINE(b)) { |
6412 char *gname; | |
7334 | 6413 if ((b->name) && (od) && (od->sess->ssi.received_data) && |
5131 | 6414 (gname = aim_ssi_itemlist_findparentname(od->sess->ssi.local, b->name)) && |
6415 (aim_ssi_waitingforauth(od->sess->ssi.local, gname, b->name))) { | |
6416 emblems[i++] = "notauthorized"; | |
6417 } else { | |
6418 emblems[i++] = "offline"; | |
6419 } | |
6420 } | |
4916 | 6421 |
4766 | 6422 if (b->name && (b->uc & 0xffff0000) && isdigit(b->name[0])) { |
4960 | 6423 int uc = b->uc >> 16; |
4766 | 6424 if (uc & AIM_ICQ_STATE_INVISIBLE) |
4960 | 6425 emblems[i++] = "invisible"; |
4766 | 6426 else if (uc & AIM_ICQ_STATE_CHAT) |
4960 | 6427 emblems[i++] = "freeforchat"; |
4766 | 6428 else if (uc & AIM_ICQ_STATE_DND) |
4960 | 6429 emblems[i++] = "dnd"; |
4766 | 6430 else if (uc & AIM_ICQ_STATE_OUT) |
4960 | 6431 emblems[i++] = "na"; |
4766 | 6432 else if (uc & AIM_ICQ_STATE_BUSY) |
4960 | 6433 emblems[i++] = "occupied"; |
4766 | 6434 else if (uc & AIM_ICQ_STATE_AWAY) |
6435 emblems[i++] = "away"; | |
6436 } else { | |
6437 if (b->uc & UC_UNAVAILABLE) | |
6438 emblems[i++] = "away"; | |
6439 } | |
4687 | 6440 if (b->uc & UC_WIRELESS) |
6441 emblems[i++] = "wireless"; | |
6442 if (b->uc & UC_AOL) | |
6443 emblems[i++] = "aol"; | |
6444 if (b->uc & UC_ADMIN) | |
6445 emblems[i++] = "admin"; | |
6446 if (b->uc & UC_AB && i < 4) | |
6447 emblems[i++] = "activebuddy"; | |
4766 | 6448 /* if (b->uc & UC_UNCONFIRMED && i < 4) |
6449 emblems[i++] = "unconfirmed"; */ | |
7334 | 6450 |
7945 | 6451 if ((i < 4) && (userinfo != NULL) && (userinfo->capabilities & AIM_CAPS_HIPTOP)) |
6452 emblems[i++] = "hiptop"; | |
6453 | |
6454 if ((i < 4) && (userinfo != NULL) && (userinfo->capabilities & AIM_CAPS_SECUREIM)) | |
7334 | 6455 emblems[i++] = "secure"; |
6456 | |
4687 | 6457 *se = emblems[0]; |
6458 *sw = emblems[1]; | |
6459 *nw = emblems[2]; | |
6460 *ne = emblems[3]; | |
6461 } | |
6462 | |
6695 | 6463 static char *oscar_tooltip_text(GaimBuddy *b) { |
5575 | 6464 GaimConnection *gc = b->account->gc; |
7283 | 6465 OscarData *od = gc->proto_data; |
7045 | 6466 aim_userinfo_t *userinfo = aim_locate_finduserinfo(od->sess, b->name); |
8701 | 6467 GString *str = g_string_new(""); |
5131 | 6468 |
6469 if (GAIM_BUDDY_IS_ONLINE(b)) { | |
8701 | 6470 oscar_string_append_info(gc, str, "\n", b, userinfo); |
7011 | 6471 |
6472 if ((userinfo != NULL) && (userinfo->flags & AIM_FLAG_AWAY) && (userinfo->away_len > 0) && (userinfo->away != NULL) && (userinfo->away_encoding != NULL)) { | |
8225 | 6473 gchar *charset = oscar_encoding_extract(userinfo->away_encoding); |
8392 | 6474 gchar *away_utf8 = oscar_encoding_to_utf8(charset, userinfo->away, userinfo->away_len); |
8225 | 6475 g_free(charset); |
7011 | 6476 if (away_utf8 != NULL) { |
7091 | 6477 gchar *tmp1, *tmp2; |
9627 | 6478 tmp2 = gaim_markup_strip_html(away_utf8); |
8341 | 6479 g_free(away_utf8); |
8571 | 6480 tmp1 = gaim_escape_html(tmp2); |
7091 | 6481 g_free(tmp2); |
8700 | 6482 tmp2 = gaim_str_sub_away_formatters(tmp1, gaim_account_get_username(gaim_connection_get_account(gc))); |
8461 | 6483 g_free(tmp1); |
8701 | 6484 g_string_append_printf(str, "\n<b>%s:</b> %s", _("Away Message"), tmp2); |
8700 | 6485 g_free(tmp2); |
5836 | 6486 } |
5131 | 6487 } |
8701 | 6488 } |
6489 | |
6490 return g_string_free(str, FALSE); | |
5131 | 6491 } |
6492 | |
6695 | 6493 static char *oscar_status_text(GaimBuddy *b) { |
5575 | 6494 GaimConnection *gc = b->account->gc; |
7283 | 6495 OscarData *od = gc->proto_data; |
5167 | 6496 gchar *ret = NULL; |
6497 | |
6498 if ((b->uc & UC_UNAVAILABLE) || (((b->uc & 0xffff0000) >> 16) & AIM_ICQ_STATE_CHAT)) { | |
6499 if (isdigit(b->name[0])) | |
8701 | 6500 ret = oscar_icqstatus((b->uc & 0xffff0000) >> 16); |
7038 | 6501 else |
6502 ret = g_strdup(_("Away")); | |
5836 | 6503 } else if (GAIM_BUDDY_IS_ONLINE(b)) { |
7261 | 6504 struct buddyinfo *bi = g_hash_table_lookup(od->buddyinfo, gaim_normalize(b->account, b->name)); |
6292 | 6505 if (bi->availmsg) |
6506 ret = g_markup_escape_text(bi->availmsg, strlen(bi->availmsg)); | |
5836 | 6507 } else { |
5167 | 6508 char *gname = aim_ssi_itemlist_findparentname(od->sess->ssi.local, b->name); |
6509 if (aim_ssi_waitingforauth(od->sess->ssi.local, gname, b->name)) | |
6510 ret = g_strdup(_("Not Authorized")); | |
6511 else | |
6512 ret = g_strdup(_("Offline")); | |
6513 } | |
6514 | |
6515 return ret; | |
6516 } | |
6517 | |
5842 | 6518 |
5844 | 6519 static int oscar_icon_req(aim_session_t *sess, aim_frame_t *fr, ...) { |
5842 | 6520 GaimConnection *gc = sess->aux_data; |
7283 | 6521 OscarData *od = gc->proto_data; |
5892 | 6522 va_list ap; |
5842 | 6523 fu16_t type; |
5892 | 6524 fu8_t flags = 0, length = 0; |
6525 char *md5 = NULL; | |
6526 | |
7334 | 6527 |
5842 | 6528 va_start(ap, fr); |
6529 type = va_arg(ap, int); | |
5892 | 6530 |
6531 switch(type) { | |
6532 case 0x0000: | |
6533 case 0x0001: { | |
6534 flags = va_arg(ap, int); | |
6535 length = va_arg(ap, int); | |
6536 md5 = va_arg(ap, char *); | |
6537 | |
6538 if (flags == 0x41) { | |
6539 if (!aim_getconn_type(od->sess, AIM_CONN_TYPE_ICON) && !od->iconconnecting) { | |
6540 od->iconconnecting = TRUE; | |
6541 od->set_icon = TRUE; | |
6542 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_ICON); | |
6543 } else { | |
6039 | 6544 struct stat st; |
6545 const char *iconfile = gaim_account_get_buddy_icon(gaim_connection_get_account(gc)); | |
6546 if (iconfile == NULL) { | |
8363 | 6547 aim_ssi_delicon(od->sess); |
6039 | 6548 } else if (!stat(iconfile, &st)) { |
6549 char *buf = g_malloc(st.st_size); | |
6550 FILE *file = fopen(iconfile, "rb"); | |
6551 if (file) { | |
9532 | 6552 /* XXX - Use g_file_get_contents()? */ |
6039 | 6553 fread(buf, 1, st.st_size, file); |
6554 fclose(file); | |
8660 | 6555 gaim_debug_info("oscar", |
6039 | 6556 "Uploading icon to icon server\n"); |
6879 | 6557 aim_bart_upload(od->sess, buf, st.st_size); |
5892 | 6558 } else |
8660 | 6559 gaim_debug_error("oscar", |
6039 | 6560 "Can't open buddy icon file!\n"); |
6561 g_free(buf); | |
6562 } else { | |
8660 | 6563 gaim_debug_error("oscar", |
6039 | 6564 "Can't stat buddy icon file!\n"); |
5892 | 6565 } |
6566 } | |
8363 | 6567 } else if (flags == 0x81) { |
6568 const char *iconfile = gaim_account_get_buddy_icon(gaim_connection_get_account(gc)); | |
6569 if (iconfile == NULL) | |
6570 aim_ssi_delicon(od->sess); | |
6571 else | |
6572 aim_ssi_seticon(od->sess, md5, length); | |
6573 } | |
5892 | 6574 } break; |
6575 | |
6576 case 0x0002: { /* We just set an "available" message? */ | |
6577 } break; | |
6578 } | |
6579 | |
5842 | 6580 va_end(ap); |
5844 | 6581 |
6582 return 0; | |
5842 | 6583 } |
5892 | 6584 |
5575 | 6585 static void oscar_set_permit_deny(GaimConnection *gc) { |
6586 GaimAccount *account = gaim_connection_get_account(gc); | |
7283 | 6587 OscarData *od = (OscarData *)gc->proto_data; |
4230 | 6588 #ifdef NOSSI |
8143 | 6589 GSList *list; |
4230 | 6590 char buf[MAXMSGLEN]; |
6591 int at; | |
6592 | |
5575 | 6593 switch(account->perm_deny) { |
8175 | 6594 case GAIM_PRIVACY_ALLOW_ALL: |
5575 | 6595 aim_bos_changevisibility(od->sess, od->conn, AIM_VISIBILITYCHANGE_DENYADD, gaim_account_get_username(account)); |
4230 | 6596 break; |
8175 | 6597 case GAIM_PRIVACY_DENY_ALL: |
5575 | 6598 aim_bos_changevisibility(od->sess, od->conn, AIM_VISIBILITYCHANGE_PERMITADD, gaim_account_get_username(account)); |
4230 | 6599 break; |
8175 | 6600 case GAIM_PRIVACY_ALLOW_USERS: |
5575 | 6601 list = account->permit; |
4230 | 6602 at = 0; |
6603 while (list) { | |
6604 at += g_snprintf(buf + at, sizeof(buf) - at, "%s&", (char *)list->data); | |
6605 list = list->next; | |
6606 } | |
6607 aim_bos_changevisibility(od->sess, od->conn, AIM_VISIBILITYCHANGE_PERMITADD, buf); | |
6608 break; | |
8175 | 6609 case GAIM_PRIVACY_DENY_USERS: |
5575 | 6610 list = account->deny; |
4230 | 6611 at = 0; |
6612 while (list) { | |
6613 at += g_snprintf(buf + at, sizeof(buf) - at, "%s&", (char *)list->data); | |
6614 list = list->next; | |
6615 } | |
6616 aim_bos_changevisibility(od->sess, od->conn, AIM_VISIBILITYCHANGE_DENYADD, buf); | |
6617 break; | |
6618 default: | |
6619 break; | |
2086 | 6620 } |
4230 | 6621 #else |
8175 | 6622 if (od->sess->ssi.received_data) { |
6623 switch (account->perm_deny) { | |
6624 case GAIM_PRIVACY_ALLOW_ALL: | |
6625 aim_ssi_setpermdeny(od->sess, 0x01, 0xffffffff); | |
6626 break; | |
6627 case GAIM_PRIVACY_ALLOW_BUDDYLIST: | |
6628 aim_ssi_setpermdeny(od->sess, 0x05, 0xffffffff); | |
6629 break; | |
6630 case GAIM_PRIVACY_ALLOW_USERS: | |
6631 aim_ssi_setpermdeny(od->sess, 0x03, 0xffffffff); | |
6632 break; | |
6633 case GAIM_PRIVACY_DENY_ALL: | |
6634 aim_ssi_setpermdeny(od->sess, 0x02, 0xffffffff); | |
6635 break; | |
6636 case GAIM_PRIVACY_DENY_USERS: | |
6637 aim_ssi_setpermdeny(od->sess, 0x04, 0xffffffff); | |
6638 break; | |
6639 default: | |
6640 aim_ssi_setpermdeny(od->sess, 0x01, 0xffffffff); | |
6641 break; | |
6642 } | |
6643 } | |
4230 | 6644 #endif |
2086 | 6645 } |
6646 | |
5575 | 6647 static void oscar_add_permit(GaimConnection *gc, const char *who) { |
4269 | 6648 #ifdef NOSSI |
8143 | 6649 if (gc->account->perm_deny == 3) |
4269 | 6650 oscar_set_permit_deny(gc); |
6651 #else | |
7283 | 6652 OscarData *od = (OscarData *)gc->proto_data; |
8660 | 6653 gaim_debug_info("oscar", "ssi: About to add a permit\n"); |
4230 | 6654 if (od->sess->ssi.received_data) |
4889 | 6655 aim_ssi_addpermit(od->sess, who); |
4230 | 6656 #endif |
2086 | 6657 } |
6658 | |
5575 | 6659 static void oscar_add_deny(GaimConnection *gc, const char *who) { |
4269 | 6660 #ifdef NOSSI |
8143 | 6661 if (gc->account->perm_deny == 4) |
4269 | 6662 oscar_set_permit_deny(gc); |
6663 #else | |
7283 | 6664 OscarData *od = (OscarData *)gc->proto_data; |
8660 | 6665 gaim_debug_info("oscar", "ssi: About to add a deny\n"); |
4230 | 6666 if (od->sess->ssi.received_data) |
4889 | 6667 aim_ssi_adddeny(od->sess, who); |
4230 | 6668 #endif |
2086 | 6669 } |
6670 | |
5575 | 6671 static void oscar_rem_permit(GaimConnection *gc, const char *who) { |
4269 | 6672 #ifdef NOSSI |
8143 | 6673 if (gc->account->perm_deny == 3) |
4269 | 6674 oscar_set_permit_deny(gc); |
6675 #else | |
7283 | 6676 OscarData *od = (OscarData *)gc->proto_data; |
8660 | 6677 gaim_debug_info("oscar", "ssi: About to delete a permit\n"); |
4230 | 6678 if (od->sess->ssi.received_data) |
4889 | 6679 aim_ssi_delpermit(od->sess, who); |
4230 | 6680 #endif |
2086 | 6681 } |
6682 | |
5575 | 6683 static void oscar_rem_deny(GaimConnection *gc, const char *who) { |
4269 | 6684 #ifdef NOSSI |
8143 | 6685 if (gc->account->perm_deny == 4) |
4269 | 6686 oscar_set_permit_deny(gc); |
6687 #else | |
7283 | 6688 OscarData *od = (OscarData *)gc->proto_data; |
8660 | 6689 gaim_debug_info("oscar", "ssi: About to delete a deny\n"); |
4230 | 6690 if (od->sess->ssi.received_data) |
4889 | 6691 aim_ssi_deldeny(od->sess, who); |
4230 | 6692 #endif |
2086 | 6693 } |
6694 | |
5575 | 6695 static GList *oscar_away_states(GaimConnection *gc) |
2086 | 6696 { |
7283 | 6697 OscarData *od = gc->proto_data; |
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
6698 GList *m = NULL; |
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2432
diff
changeset
|
6699 |
8257 | 6700 if (od->icq) { |
6701 m = g_list_append(m, _("Online")); | |
6702 m = g_list_append(m, _("Away")); | |
6703 m = g_list_append(m, _("Do Not Disturb")); | |
6704 m = g_list_append(m, _("Not Available")); | |
6705 m = g_list_append(m, _("Occupied")); | |
6706 m = g_list_append(m, _("Free For Chat")); | |
6707 m = g_list_append(m, _("Invisible")); | |
6708 } else { | |
6709 m = g_list_append(m, GAIM_AWAY_CUSTOM); | |
8476 | 6710 m = g_list_append(m, _("Back")); |
8257 | 6711 m = g_list_append(m, _("Visible")); |
6712 m = g_list_append(m, _("Invisible")); | |
6713 } | |
4333 | 6714 |
6715 return m; | |
6716 } | |
6717 | |
7172 | 6718 static void oscar_ssi_editcomment(struct name_data *data, const char *text) { |
8341 | 6719 GaimConnection *gc = data->gc; |
6720 OscarData *od = gc->proto_data; | |
7172 | 6721 GaimBuddy *b; |
6722 GaimGroup *g; | |
6723 | |
6724 if (!(b = gaim_find_buddy(gaim_connection_get_account(data->gc), data->name))) { | |
6725 oscar_free_name_data(data); | |
6726 return; | |
6727 } | |
6728 | |
6729 if (!(g = gaim_find_buddys_group(b))) { | |
6730 oscar_free_name_data(data); | |
6731 return; | |
6732 } | |
6733 | |
6734 aim_ssi_editcomment(od->sess, g->name, data->name, text); | |
8341 | 6735 |
6736 if (!aim_sncmp(data->name, gc->account->username)) | |
6737 gaim_check_comment(od, text); | |
6738 | |
7172 | 6739 oscar_free_name_data(data); |
6740 } | |
6741 | |
9030 | 6742 static void oscar_buddycb_edit_comment(GaimBlistNode *node, gpointer ignore) { |
6743 | |
6744 GaimBuddy *buddy; | |
6745 GaimConnection *gc; | |
6746 OscarData *od; | |
6747 struct name_data *data; | |
7172 | 6748 GaimGroup *g; |
6749 char *comment; | |
6750 gchar *comment_utf8; | |
9631 | 6751 gchar *title; |
7172 | 6752 |
9030 | 6753 g_return_if_fail(GAIM_BLIST_NODE_IS_BUDDY(node)); |
6754 | |
6755 buddy = (GaimBuddy *) node; | |
6756 gc = gaim_account_get_connection(buddy->account); | |
6757 od = gc->proto_data; | |
6758 | |
6759 data = g_new(struct name_data, 1); | |
6760 | |
6761 if (!(g = gaim_find_buddys_group(buddy))) | |
7172 | 6762 return; |
9030 | 6763 comment = aim_ssi_getcomment(od->sess->ssi.local, g->name, buddy->name); |
7172 | 6764 comment_utf8 = comment ? gaim_utf8_try_convert(comment) : NULL; |
6765 | |
6766 data->gc = gc; | |
9030 | 6767 data->name = g_strdup(buddy->name); |
7172 | 6768 data->nick = NULL; |
6769 | |
9631 | 6770 title = g_strdup_printf(_("Buddy Comment for %s"), data->name); |
6771 gaim_request_input(gc, title, _("Buddy Comment:"), NULL, | |
8697 | 6772 comment_utf8, TRUE, FALSE, NULL, |
7172 | 6773 _("OK"), G_CALLBACK(oscar_ssi_editcomment), |
6774 _("Cancel"), G_CALLBACK(oscar_free_name_data), | |
6775 data); | |
9631 | 6776 g_free(title); |
7172 | 6777 |
6778 free(comment); | |
6779 g_free(comment_utf8); | |
6780 } | |
6781 | |
9030 | 6782 static GList *oscar_buddy_menu(GaimBuddy *buddy) { |
6783 | |
6784 GaimConnection *gc = gaim_account_get_connection(buddy->account); | |
7283 | 6785 OscarData *od = gc->proto_data; |
9030 | 6786 |
4333 | 6787 GList *m = NULL; |
9030 | 6788 GaimBlistNodeAction *act; |
6789 | |
6790 act = gaim_blist_node_action_new(_("Edit Buddy Comment"), | |
6791 oscar_buddycb_edit_comment, NULL); | |
6792 m = g_list_append(m, act); | |
7172 | 6793 |
4333 | 6794 if (od->icq) { |
4624 | 6795 #if 0 |
9030 | 6796 act = gaim_blist_node_action_new(_("Get Status Msg"), |
6797 oscar_get_icqstatusmsg, NULL); | |
6798 m = g_list_append(m, act); | |
4624 | 6799 #endif |
4333 | 6800 } else { |
7011 | 6801 aim_userinfo_t *userinfo; |
9030 | 6802 userinfo = aim_locate_finduserinfo(od->sess, buddy->name); |
6803 | |
6804 if (userinfo && aim_sncmp(gaim_account_get_username(buddy->account), buddy->name) && | |
6805 GAIM_BUDDY_IS_ONLINE(buddy)) { | |
6806 | |
7011 | 6807 if (userinfo->capabilities & AIM_CAPS_DIRECTIM) { |
9030 | 6808 act = gaim_blist_node_action_new(_("Direct IM"), |
6809 oscar_ask_direct_im, NULL); | |
6810 m = g_list_append(m, act); | |
5917 | 6811 } |
9466 | 6812 #if 0 |
7011 | 6813 if (userinfo->capabilities & AIM_CAPS_GETFILE) { |
9030 | 6814 act = gaim_blist_node_action_new(_("Get File"), |
6815 oscar_ask_getfile, NULL); | |
6816 m = g_list_append(m, act); | |
5917 | 6817 } |
4826 | 6818 #endif |
4333 | 6819 } |
5131 | 6820 } |
5197 | 6821 |
5131 | 6822 if (od->sess->ssi.received_data) { |
9030 | 6823 char *gname = aim_ssi_itemlist_findparentname(od->sess->ssi.local, buddy->name); |
6824 if (gname && aim_ssi_waitingforauth(od->sess->ssi.local, gname, buddy->name)) { | |
6825 act = gaim_blist_node_action_new(_("Re-request Authorization"), | |
6826 gaim_auth_sendrequest_menu, NULL); | |
6827 m = g_list_append(m, act); | |
4333 | 6828 } |
4916 | 6829 } |
6830 | |
4333 | 6831 return m; |
6832 } | |
6833 | |
9030 | 6834 |
6835 static GList *oscar_blist_node_menu(GaimBlistNode *node) { | |
6836 if(GAIM_BLIST_NODE_IS_BUDDY(node)) { | |
6837 return oscar_buddy_menu((GaimBuddy *) node); | |
6838 } else { | |
6839 return NULL; | |
6840 } | |
6841 } | |
6842 | |
6843 | |
5575 | 6844 static void oscar_format_screenname(GaimConnection *gc, const char *nick) { |
7283 | 6845 OscarData *od = gc->proto_data; |
5575 | 6846 if (!aim_sncmp(gaim_account_get_username(gaim_connection_get_account(gc)), nick)) { |
4333 | 6847 if (!aim_getconn_type(od->sess, AIM_CONN_TYPE_AUTH)) { |
6848 od->setnick = TRUE; | |
6849 od->newsn = g_strdup(nick); | |
6850 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_AUTH); | |
6851 } else { | |
6852 aim_admin_setnick(od->sess, aim_getconn_type(od->sess, AIM_CONN_TYPE_AUTH), nick); | |
6853 } | |
6854 } else { | |
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5435
diff
changeset
|
6855 gaim_notify_error(gc, NULL, _("The new formatting is invalid."), |
8152 | 6856 _("Screen name formatting can change only capitalization and whitespace.")); |
4333 | 6857 } |
6858 } | |
6859 | |
9015 | 6860 static void oscar_show_format_screenname(GaimPluginAction *action) |
4333 | 6861 { |
9015 | 6862 GaimConnection *gc = (GaimConnection *) action->context; |
8152 | 6863 gaim_request_input(gc, NULL, _("New screen name formatting:"), NULL, |
8697 | 6864 gaim_connection_get_display_name(gc), FALSE, FALSE, NULL, |
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
6865 _("OK"), G_CALLBACK(oscar_format_screenname), |
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
6866 _("Cancel"), NULL, |
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
6867 gc); |
4333 | 6868 } |
6869 | |
9015 | 6870 static void oscar_confirm_account(GaimPluginAction *action) |
4333 | 6871 { |
9015 | 6872 GaimConnection *gc = (GaimConnection *) action->context; |
7283 | 6873 OscarData *od = gc->proto_data; |
4333 | 6874 aim_conn_t *conn = aim_getconn_type(od->sess, AIM_CONN_TYPE_AUTH); |
6875 | |
6876 if (conn) { | |
6877 aim_admin_reqconfirm(od->sess, conn); | |
6878 } else { | |
6879 od->conf = TRUE; | |
6880 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_AUTH); | |
6881 } | |
6882 } | |
6883 | |
9015 | 6884 static void oscar_show_email(GaimPluginAction *action) |
4333 | 6885 { |
9015 | 6886 GaimConnection *gc = (GaimConnection *) action->context; |
7283 | 6887 OscarData *od = gc->proto_data; |
4333 | 6888 aim_conn_t *conn = aim_getconn_type(od->sess, AIM_CONN_TYPE_AUTH); |
6889 | |
6890 if (conn) { | |
6891 aim_admin_getinfo(od->sess, conn, 0x11); | |
6892 } else { | |
6893 od->reqemail = TRUE; | |
6894 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_AUTH); | |
6895 } | |
6896 } | |
6897 | |
5575 | 6898 static void oscar_change_email(GaimConnection *gc, const char *email) |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6899 { |
7283 | 6900 OscarData *od = gc->proto_data; |
2768
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6901 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
|
6902 |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6903 if (conn) { |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6904 aim_admin_setemail(od->sess, conn, email); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6905 } else { |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6906 od->setemail = TRUE; |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6907 od->email = g_strdup(email); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6908 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_AUTH); |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6909 } |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6910 } |
8a918df1a5ed
[gaim-migrate @ 2781]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2762
diff
changeset
|
6911 |
9015 | 6912 static void oscar_show_change_email(GaimPluginAction *action) |
4333 | 6913 { |
9015 | 6914 GaimConnection *gc = (GaimConnection *) action->context; |
6035
8c44020a958e
[gaim-migrate @ 6485]
Christian Hammond <chipx86@chipx86.com>
parents:
6029
diff
changeset
|
6915 gaim_request_input(gc, NULL, _("Change Address To:"), NULL, NULL, |
8697 | 6916 FALSE, FALSE, NULL, |
5493
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
6917 _("OK"), G_CALLBACK(oscar_change_email), |
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
6918 _("Cancel"), NULL, |
3e8487580024
[gaim-migrate @ 5889]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
6919 gc); |
4333 | 6920 } |
6921 | |
9015 | 6922 static void oscar_show_awaitingauth(GaimPluginAction *action) |
4333 | 6923 { |
9015 | 6924 GaimConnection *gc = (GaimConnection *) action->context; |
7283 | 6925 OscarData *od = gc->proto_data; |
4333 | 6926 gchar *nombre, *text, *tmp; |
6695 | 6927 GaimBlistNode *gnode, *cnode, *bnode; |
4333 | 6928 int num=0; |
6929 | |
6873 | 6930 text = g_strdup(""); |
4333 | 6931 |
4785 | 6932 for (gnode = gaim_get_blist()->root; gnode; gnode = gnode->next) { |
6695 | 6933 GaimGroup *group = (GaimGroup *)gnode; |
4785 | 6934 if(!GAIM_BLIST_NODE_IS_GROUP(gnode)) |
6935 continue; | |
6695 | 6936 for (cnode = gnode->child; cnode; cnode = cnode->next) { |
6937 if(!GAIM_BLIST_NODE_IS_CONTACT(cnode)) | |
4785 | 6938 continue; |
6695 | 6939 for (bnode = cnode->child; bnode; bnode = bnode->next) { |
6940 GaimBuddy *buddy = (GaimBuddy *)bnode; | |
6941 if(!GAIM_BLIST_NODE_IS_BUDDY(bnode)) | |
6942 continue; | |
6943 if (buddy->account == gc->account && aim_ssi_waitingforauth(od->sess->ssi.local, group->name, buddy->name)) { | |
9620 | 6944 if (gaim_buddy_get_alias_only(buddy)) |
6945 nombre = g_strdup_printf(" %s (%s)", buddy->name, gaim_buddy_get_alias_only(buddy)); | |
6695 | 6946 else |
6947 nombre = g_strdup_printf(" %s", buddy->name); | |
6873 | 6948 tmp = g_strdup_printf("%s%s<br>", text, nombre); |
6695 | 6949 g_free(text); |
6950 text = tmp; | |
6951 g_free(nombre); | |
6952 num++; | |
6953 } | |
4333 | 6954 } |
2979 | 6955 } |
4333 | 6956 } |
6957 | |
6958 if (!num) { | |
6959 g_free(text); | |
6873 | 6960 text = g_strdup(_("<i>you are not waiting for authorization</i>")); |
6961 } | |
6962 | |
6963 gaim_notify_formatted(gc, NULL, _("You are awaiting authorization from " | |
6964 "the following buddies"), _("You can re-request " | |
6965 "authorization from these buddies by " | |
6966 "right-clicking on them and selecting " | |
6967 "\"Re-request Authorization.\""), text, NULL, NULL); | |
4333 | 6968 g_free(text); |
2979 | 6969 } |
6970 | |
7080
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6971 static void search_by_email_cb(GaimConnection *gc, const char *email) |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6972 { |
8950 | 6973 OscarData *od = (OscarData *)gc->proto_data; |
6974 | |
6975 aim_search_address(od->sess, od->conn, email); | |
7080
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6976 } |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6977 |
9015 | 6978 static void oscar_show_find_email(GaimPluginAction *action) |
7080
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6979 { |
9015 | 6980 GaimConnection *gc = (GaimConnection *) action->context; |
7080
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6981 gaim_request_input(gc, _("Find Buddy by E-mail"), |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6982 _("Search for a buddy by e-mail address"), |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6983 _("Type the e-mail address of the buddy you are " |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6984 "searching for."), |
8697 | 6985 NULL, FALSE, FALSE, NULL, |
7080
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6986 _("Search"), G_CALLBACK(search_by_email_cb), |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6987 _("Cancel"), NULL, gc); |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6988 } |
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
6989 |
7366 | 6990 #if 0 |
5917 | 6991 static void oscar_setavailmsg(GaimConnection *gc, char *text) { |
7283 | 6992 OscarData *od = (OscarData *)gc->proto_data; |
5917 | 6993 |
7334 | 6994 aim_locate_setprofile(od->sess, NULL, NULL, 0, NULL, "", 0); |
5917 | 6995 aim_srv_setavailmsg(od->sess, text); |
6996 } | |
6997 | |
6998 static void oscar_show_setavailmsg(GaimConnection *gc) | |
6999 { | |
7313 | 7000 gaim_request_input(gc, NULL, _("Available Message:"), NULL, |
7001 _("I'm doing work and hoping for a distraction--IM me!"), | |
8697 | 7002 TRUE, FALSE, NULL, |
5917 | 7003 _("OK"), G_CALLBACK(oscar_setavailmsg), |
7004 _("Cancel"), NULL, | |
7005 gc); | |
7006 } | |
7366 | 7007 #endif |
5917 | 7008 |
9015 | 7009 static void oscar_show_set_info(GaimPluginAction *action) |
7067
71e0da45abe6
[gaim-migrate @ 7631]
Christian Hammond <chipx86@chipx86.com>
parents:
7063
diff
changeset
|
7010 { |
9015 | 7011 GaimConnection *gc = (GaimConnection *) action->context; |
7067
71e0da45abe6
[gaim-migrate @ 7631]
Christian Hammond <chipx86@chipx86.com>
parents:
7063
diff
changeset
|
7012 gaim_account_request_change_user_info(gaim_connection_get_account(gc)); |
71e0da45abe6
[gaim-migrate @ 7631]
Christian Hammond <chipx86@chipx86.com>
parents:
7063
diff
changeset
|
7013 } |
71e0da45abe6
[gaim-migrate @ 7631]
Christian Hammond <chipx86@chipx86.com>
parents:
7063
diff
changeset
|
7014 |
9015 | 7015 static void oscar_show_set_info_icqurl(GaimPluginAction *action) |
8576 | 7016 { |
9015 | 7017 GaimConnection *gc = (GaimConnection *) action->context; |
8576 | 7018 gaim_notify_uri(gc, "http://web.icq.com/whitepages/login/1,,,00.html"); |
7019 } | |
7020 | |
9015 | 7021 static void oscar_change_pass(GaimPluginAction *action) |
7063
7fdac700deb1
[gaim-migrate @ 7627]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
7022 { |
9015 | 7023 GaimConnection *gc = (GaimConnection *) action->context; |
7063
7fdac700deb1
[gaim-migrate @ 7627]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
7024 gaim_account_request_change_password(gaim_connection_get_account(gc)); |
7fdac700deb1
[gaim-migrate @ 7627]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
7025 } |
7fdac700deb1
[gaim-migrate @ 7627]
Christian Hammond <chipx86@chipx86.com>
parents:
7060
diff
changeset
|
7026 |
9015 | 7027 static void oscar_show_chpassurl(GaimPluginAction *action) |
4333 | 7028 { |
9015 | 7029 GaimConnection *gc = (GaimConnection *) action->context; |
7283 | 7030 OscarData *od = gc->proto_data; |
5575 | 7031 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
|
7032 gaim_notify_uri(gc, substituted); |
5517 | 7033 g_free(substituted); |
4333 | 7034 } |
7035 | |
9015 | 7036 static void oscar_show_imforwardingurl(GaimPluginAction *action) |
7026 | 7037 { |
9015 | 7038 GaimConnection *gc = (GaimConnection *) action->context; |
7026 | 7039 gaim_notify_uri(gc, "http://mymobile.aol.com/dbreg/register?action=imf&clientID=1"); |
7040 } | |
7041 | |
5842 | 7042 static void oscar_set_icon(GaimConnection *gc, const char *iconfile) |
7043 { | |
7283 | 7044 OscarData *od = gc->proto_data; |
5844 | 7045 aim_session_t *sess = od->sess; |
5842 | 7046 FILE *file; |
7047 struct stat st; | |
5844 | 7048 |
6039 | 7049 if (iconfile == NULL) { |
8363 | 7050 aim_ssi_delicon(od->sess); |
6039 | 7051 } else if (!stat(iconfile, &st)) { |
5842 | 7052 char *buf = g_malloc(st.st_size); |
7053 file = fopen(iconfile, "rb"); | |
7054 if (file) { | |
6052 | 7055 md5_state_t *state; |
6039 | 7056 char md5[16]; |
9532 | 7057 /* XXX - Use g_file_get_contents()? */ |
5842 | 7058 int len = fread(buf, 1, st.st_size, file); |
6039 | 7059 fclose(file); |
6052 | 7060 state = g_malloc(sizeof(md5_state_t)); |
5842 | 7061 md5_init(state); |
7062 md5_append(state, buf, len); | |
7063 md5_finish(state, md5); | |
7064 g_free(state); | |
7065 aim_ssi_seticon(sess, md5, 16); | |
7066 } else | |
8660 | 7067 gaim_debug_error("oscar", |
5842 | 7068 "Can't open buddy icon file!\n"); |
7069 g_free(buf); | |
7070 } else | |
8660 | 7071 gaim_debug_error("oscar", |
5842 | 7072 "Can't stat buddy icon file!\n"); |
7073 } | |
7074 | |
7075 | |
9015 | 7076 static GList *oscar_actions(GaimPlugin *plugin, gpointer context) |
2086 | 7077 { |
9015 | 7078 GaimConnection *gc = (GaimConnection *) context; |
7283 | 7079 OscarData *od = gc->proto_data; |
4333 | 7080 GList *m = NULL; |
9015 | 7081 GaimPluginAction *act; |
7082 | |
7083 act = gaim_plugin_action_new(_("Set User Info..."), | |
7084 oscar_show_set_info); | |
7085 m = g_list_append(m, act); | |
4333 | 7086 |
8576 | 7087 if (od->icq) { |
9015 | 7088 act = gaim_plugin_action_new(_("Set User Info (URL)..."), |
7089 oscar_show_set_info_icqurl); | |
7090 m = g_list_append(m, act); | |
8576 | 7091 } |
7092 | |
7366 | 7093 #if 0 |
9015 | 7094 act = gaim_plugin_action_new(_("Set Available Message..."), |
7095 oscar_show_setavailmsg); | |
7096 m = g_list_append(m, act); | |
7366 | 7097 #endif |
5917 | 7098 |
9015 | 7099 act = gaim_plugin_action_new(_("Change Password..."), |
7100 oscar_change_pass); | |
7101 m = g_list_append(m, act); | |
4617 | 7102 |
7103 if (od->sess->authinfo->chpassurl) { | |
9015 | 7104 act = gaim_plugin_action_new(_("Change Password (URL)"), |
7105 oscar_show_chpassurl); | |
7106 m = g_list_append(m, act); | |
7107 | |
7108 act = gaim_plugin_action_new(_("Configure IM Forwarding (URL)"), | |
7109 oscar_show_imforwardingurl); | |
7110 m = g_list_append(m, act); | |
7026 | 7111 } |
7112 | |
5238 | 7113 if (!od->icq) { |
4617 | 7114 /* AIM actions */ |
7115 m = g_list_append(m, NULL); | |
4333 | 7116 |
9015 | 7117 act = gaim_plugin_action_new(_("Format Screen Name..."), |
7118 oscar_show_format_screenname); | |
7119 m = g_list_append(m, act); | |
7120 | |
7121 act = gaim_plugin_action_new(_("Confirm Account"), | |
7122 oscar_confirm_account); | |
7123 m = g_list_append(m, act); | |
7124 | |
7125 act = gaim_plugin_action_new(_("Display Currently Registered Address"), | |
7126 oscar_show_email); | |
7127 m = g_list_append(m, act); | |
7128 | |
7129 act = gaim_plugin_action_new(_("Change Currently Registered Address..."), | |
7130 oscar_show_change_email); | |
7131 m = g_list_append(m, act); | |
2086 | 7132 } |
4333 | 7133 |
7134 m = g_list_append(m, NULL); | |
7135 | |
9015 | 7136 act = gaim_plugin_action_new(_("Show Buddies Awaiting Authorization"), |
7137 oscar_show_awaitingauth); | |
7138 m = g_list_append(m, act); | |
4333 | 7139 |
2086 | 7140 m = g_list_append(m, NULL); |
4333 | 7141 |
9015 | 7142 act = gaim_plugin_action_new(_("Search for Buddy by Email..."), |
7143 oscar_show_find_email); | |
7144 m = g_list_append(m, act); | |
4333 | 7145 |
8591 | 7146 #if 0 |
9015 | 7147 act = gaim_plugin_action_new(_("Search for Buddy by Information"), |
7148 show_find_info); | |
7149 m = g_list_append(m, act); | |
8591 | 7150 #endif |
2086 | 7151 |
7152 return m; | |
7153 } | |
7154 | |
5575 | 7155 static void oscar_change_passwd(GaimConnection *gc, const char *old, const char *new) |
2086 | 7156 { |
7283 | 7157 OscarData *od = gc->proto_data; |
4617 | 7158 |
7159 if (od->icq) { | |
7160 aim_icq_changepasswd(od->sess, new); | |
2086 | 7161 } else { |
4617 | 7162 aim_conn_t *conn = aim_getconn_type(od->sess, AIM_CONN_TYPE_AUTH); |
7163 if (conn) { | |
7164 aim_admin_changepasswd(od->sess, conn, new, old); | |
7165 } else { | |
7166 od->chpass = TRUE; | |
7167 od->oldp = g_strdup(old); | |
7168 od->newp = g_strdup(new); | |
7169 aim_reqservice(od->sess, od->conn, AIM_CONN_TYPE_AUTH); | |
7170 } | |
2086 | 7171 } |
7172 } | |
7173 | |
6059 | 7174 static void oscar_convo_closed(GaimConnection *gc, const char *who) |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
7175 { |
7283 | 7176 OscarData *od = gc->proto_data; |
8971 | 7177 struct oscar_direct_im *dim = oscar_direct_im_find(od, who); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
7178 |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
7179 if (!dim) |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
7180 return; |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
7181 |
8971 | 7182 oscar_direct_im_destroy(od, dim); |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
7183 } |
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2235
diff
changeset
|
7184 |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7185 static GaimPluginProtocolInfo prpl_info = |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7186 { |
8749
d7b8eb1f0a18
[gaim-migrate @ 9504]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
7187 GAIM_PRPL_API_VERSION, |
9308 | 7188 OPT_PROTO_MAIL_CHECK | OPT_PROTO_IM_IMAGE, |
9475 | 7189 NULL, /* user_splits */ |
7190 NULL, /* protocol_options */ | |
7191 {"jpeg,gif,bmp,ico", 48, 48, 50, 50, GAIM_ICON_SCALE_DISPLAY}, /* icon_spec */ | |
7192 oscar_list_icon, /* list_icon */ | |
7193 oscar_list_emblems, /* list_emblems */ | |
7194 oscar_status_text, /* status_text */ | |
7195 oscar_tooltip_text, /* tooltip_text */ | |
7196 oscar_away_states, /* away_states */ | |
7197 oscar_blist_node_menu, /* blist_node_menu */ | |
7198 oscar_chat_info, /* chat_info */ | |
7199 oscar_login, /* login */ | |
7200 oscar_close, /* close */ | |
7201 oscar_send_im, /* send_im */ | |
7202 oscar_set_info, /* set_info */ | |
7203 oscar_send_typing, /* send_typing */ | |
7204 oscar_get_info, /* get_info */ | |
7205 oscar_set_away, /* set_away */ | |
7206 oscar_set_idle, /* set_idle */ | |
7207 oscar_change_passwd, /* change_passwd */ | |
7208 oscar_add_buddy, /* add_buddy */ | |
7209 oscar_add_buddies, /* add_buddies */ | |
7210 oscar_remove_buddy, /* remove_buddy */ | |
7211 oscar_remove_buddies, /* remove_buddies */ | |
7212 oscar_add_permit, /* add_permit */ | |
7213 oscar_add_deny, /* add_deny */ | |
7214 oscar_rem_permit, /* rem_permit */ | |
7215 oscar_rem_deny, /* rem_deny */ | |
7216 oscar_set_permit_deny, /* set_permit_deny */ | |
7217 oscar_warn, /* warn */ | |
7218 oscar_join_chat, /* join_chat */ | |
7219 NULL, /* reject_chat */ | |
7220 oscar_chat_invite, /* chat_invite */ | |
7221 oscar_chat_leave, /* chat_leave */ | |
7222 NULL, /* chat_whisper */ | |
7223 oscar_send_chat, /* chat_send */ | |
7224 oscar_keepalive, /* keepalive */ | |
7225 NULL, /* register_user */ | |
7226 NULL, /* get_cb_info */ | |
7227 NULL, /* get_cb_away */ | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7228 #ifndef NOSSI |
9475 | 7229 oscar_alias_buddy, /* alias_buddy */ |
7230 oscar_move_buddy, /* group_buddy */ | |
7231 oscar_rename_group, /* rename_group */ | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7232 #else |
9475 | 7233 NULL, /* alias_buddy */ |
7234 NULL, /* group_buddy */ | |
7235 NULL, /* rename_group */ | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7236 #endif |
9475 | 7237 NULL, /* buddy_free */ |
7238 oscar_convo_closed, /* convo_closed */ | |
7239 NULL, /* normalize */ | |
7240 oscar_set_icon, /* set_buddy_icon */ | |
7241 NULL, /* remove_group */ | |
7242 NULL, /* get_cb_real_name */ | |
7243 NULL, /* set_chat_topic */ | |
7244 NULL, /* find_blist_chat */ | |
7245 NULL, /* roomlist_get_list */ | |
7246 NULL, /* roomlist_cancel */ | |
7247 NULL, /* roomlist_expand_category */ | |
7248 oscar_can_receive_file, /* can_receive_file */ | |
7249 oscar_send_file /* send_file */ | |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7250 }; |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7251 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7252 static GaimPluginInfo info = |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7253 { |
8749
d7b8eb1f0a18
[gaim-migrate @ 9504]
Christian Hammond <chipx86@chipx86.com>
parents:
8735
diff
changeset
|
7254 GAIM_PLUGIN_API_VERSION, /**< api_version */ |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7255 GAIM_PLUGIN_PROTOCOL, /**< type */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7256 NULL, /**< ui_requirement */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7257 0, /**< flags */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7258 NULL, /**< dependencies */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7259 GAIM_PRIORITY_DEFAULT, /**< priority */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7260 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7261 "prpl-oscar", /**< id */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7262 "AIM/ICQ", /**< name */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7263 VERSION, /**< version */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7264 /** summary */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7265 N_("AIM/ICQ Protocol Plugin"), |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7266 /** description */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7267 N_("AIM/ICQ Protocol Plugin"), |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7268 NULL, /**< author */ |
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6350
diff
changeset
|
7269 GAIM_WEBSITE, /**< homepage */ |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7270 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7271 NULL, /**< load */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7272 NULL, /**< unload */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7273 NULL, /**< destroy */ |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7274 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7275 NULL, /**< ui_info */ |
8993 | 7276 &prpl_info, /**< extra_info */ |
7277 NULL, | |
9015 | 7278 oscar_actions |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7279 }; |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7280 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7281 static void |
5920
7d385de2f9cd
[gaim-migrate @ 6360]
Christian Hammond <chipx86@chipx86.com>
parents:
5917
diff
changeset
|
7282 init_plugin(GaimPlugin *plugin) |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7283 { |
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5631
diff
changeset
|
7284 GaimAccountOption *option; |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5631
diff
changeset
|
7285 |
5685
43ea75092684
[gaim-migrate @ 6106]
Christian Hammond <chipx86@chipx86.com>
parents:
5681
diff
changeset
|
7286 option = gaim_account_option_string_new(_("Auth host"), "server", |
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5631
diff
changeset
|
7287 "login.oscar.aol.com"); |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5631
diff
changeset
|
7288 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5631
diff
changeset
|
7289 option); |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5631
diff
changeset
|
7290 |
5685
43ea75092684
[gaim-migrate @ 6106]
Christian Hammond <chipx86@chipx86.com>
parents:
5681
diff
changeset
|
7291 option = gaim_account_option_int_new(_("Auth port"), "port", 5190); |
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5631
diff
changeset
|
7292 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5631
diff
changeset
|
7293 option); |
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7294 |
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5197
diff
changeset
|
7295 my_protocol = plugin; |
2086 | 7296 } |
7297 | |
5920
7d385de2f9cd
[gaim-migrate @ 6360]
Christian Hammond <chipx86@chipx86.com>
parents:
5917
diff
changeset
|
7298 GAIM_INIT_PLUGIN(oscar, init_plugin, info); |