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