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