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