Mercurial > pidgin
annotate src/protocols/toc/toc.c @ 8586:5af95c2b1179
[gaim-migrate @ 9336]
Another patch from Pekka Riikonen, this one implementing a prpl-specific
blist chat menu similar to the prpl-specific blist buddy menu. I also
took the liberty of filling out the prpl callback structures with NULL
entries for those which were short -- not that it matters, but it soothes
my sense of aesthetics.
committer: Tailor Script <tailor@pidgin.im>
| author | Ethan Blanton <elb@pidgin.im> |
|---|---|
| date | Mon, 05 Apr 2004 20:42:13 +0000 |
| parents | 88988327a4e0 |
| children | 72a0759a37a2 |
| rev | line source |
|---|---|
| 2086 | 1 /* |
| 2 * gaim | |
| 3 * | |
| 4 * Copyright (C) 1998-1999, Mark Spencer <markster@marko.net> | |
| 5 * | |
| 6 * This program is free software; you can redistribute it and/or modify | |
| 7 * it under the terms of the GNU General Public License as published by | |
| 8 * the Free Software Foundation; either version 2 of the License, or | |
| 9 * (at your option) any later version. | |
| 10 * | |
| 11 * This program is distributed in the hope that it will be useful, | |
| 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 14 * GNU General Public License for more details. | |
| 15 * | |
| 16 * You should have received a copy of the GNU General Public License | |
| 17 * along with this program; if not, write to the Free Software | |
| 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 19 * | |
| 20 */ | |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
21 #include "internal.h" |
| 3630 | 22 |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
23 #include "account.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
24 #include "accountopt.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
25 #include "conversation.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
26 #include "debug.h" |
| 2086 | 27 #include "prpl.h" |
| 28 #include "multi.h" | |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
29 #include "notify.h" |
| 2086 | 30 #include "proxy.h" |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
31 #include "request.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5685
diff
changeset
|
32 #include "util.h" |
| 2086 | 33 |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
34 static GaimPlugin *my_protocol = NULL; |
| 4249 | 35 |
| 2086 | 36 #define REVISION "penguin" |
| 37 | |
| 38 #define TYPE_SIGNON 1 | |
| 39 #define TYPE_DATA 2 | |
| 40 #define TYPE_ERROR 3 | |
| 41 #define TYPE_SIGNOFF 4 | |
| 42 #define TYPE_KEEPALIVE 5 | |
| 43 | |
| 44 #define FLAPON "FLAPON\r\n\r\n" | |
| 45 #define ROAST "Tic/Toc" | |
| 46 | |
| 47 #define TOC_HOST "toc.oscar.aol.com" | |
| 48 #define TOC_PORT 9898 | |
| 49 #define AUTH_HOST "login.oscar.aol.com" | |
| 50 #define AUTH_PORT 5190 | |
| 51 #define LANGUAGE "english" | |
| 52 | |
| 53 #define STATE_OFFLINE 0 | |
| 54 #define STATE_FLAPON 1 | |
| 55 #define STATE_SIGNON_REQUEST 2 | |
| 56 #define STATE_ONLINE 3 | |
| 57 #define STATE_PAUSE 4 | |
| 58 | |
| 59 #define VOICE_UID "09461341-4C7F-11D1-8222-444553540000" | |
| 60 #define FILE_SEND_UID "09461343-4C7F-11D1-8222-444553540000" | |
| 61 #define IMAGE_UID "09461345-4C7F-11D1-8222-444553540000" | |
| 62 #define B_ICON_UID "09461346-4C7F-11D1-8222-444553540000" | |
| 63 #define STOCKS_UID "09461347-4C7F-11D1-8222-444553540000" | |
| 64 #define FILE_GET_UID "09461348-4C7F-11D1-8222-444553540000" | |
| 65 #define GAMES_UID "0946134a-4C7F-11D1-8222-444553540000" | |
| 66 | |
| 6500 | 67 #define UC_AOL 0x02 |
| 68 #define UC_ADMIN 0x04 | |
|
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2453
diff
changeset
|
69 #define UC_UNCONFIRMED 0x08 |
| 6500 | 70 #define UC_NORMAL 0x10 |
| 71 #define UC_WIRELESS 0x20 | |
|
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2453
diff
changeset
|
72 |
| 2086 | 73 struct ft_request { |
| 5605 | 74 GaimConnection *gc; |
| 6500 | 75 char *user; |
| 2086 | 76 char UID[2048]; |
| 6500 | 77 char *cookie; |
| 78 char *ip; | |
| 79 int port; | |
| 80 char *message; | |
| 81 char *filename; | |
| 2086 | 82 int files; |
| 6500 | 83 int size; |
| 2086 | 84 }; |
| 85 | |
| 86 struct buddy_icon { | |
| 87 guint32 hash; | |
| 88 guint32 len; | |
| 89 time_t time; | |
| 90 void *data; | |
| 91 }; | |
| 92 | |
| 93 struct toc_data { | |
| 94 int toc_fd; | |
| 4597 | 95 char toc_ip[20]; |
| 2086 | 96 int seqno; |
| 97 int state; | |
| 98 }; | |
| 99 | |
| 100 struct sflap_hdr { | |
| 101 unsigned char ast; | |
| 102 unsigned char type; | |
| 103 unsigned short seqno; | |
| 104 unsigned short len; | |
| 105 }; | |
| 106 | |
| 107 struct signon { | |
| 108 unsigned int ver; | |
| 109 unsigned short tag; | |
| 110 unsigned short namelen; | |
| 111 char username[80]; | |
| 112 }; | |
| 113 | |
| 114 /* constants to identify proto_opts */ | |
| 115 #define USEROPT_AUTH 0 | |
| 116 #define USEROPT_AUTHPORT 1 | |
| 117 | |
| 6061 | 118 #define TOC_CONNECT_STEPS 4 |
| 5605 | 119 |
|
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
120 static void toc_login_callback(gpointer, gint, GaimInputCondition); |
|
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
121 static void toc_callback(gpointer, gint, GaimInputCondition); |
| 2086 | 122 |
| 3630 | 123 /* The following were added for win32 port - Herman */ |
| 124 | |
| 125 int toc_write(int fd, const void *buffer, int len) | |
| 126 { | |
| 127 #ifndef _WIN32 | |
| 6500 | 128 return write(fd, buffer, len); |
| 3630 | 129 #else |
| 6500 | 130 return send(fd, buffer, len, 0); |
| 3630 | 131 #endif |
| 132 } | |
| 133 | |
| 134 int toc_read(int fd, void *buffer, int size) | |
| 135 { | |
| 136 #ifndef _WIN32 | |
| 6500 | 137 return read(fd, buffer, size); |
| 3630 | 138 #else |
| 6500 | 139 return recv(fd, buffer, size, 0); |
| 3630 | 140 #endif |
| 141 } | |
| 142 | |
| 143 int toc_soc_close( int fd ) | |
| 144 { | |
| 145 #ifndef _WIN32 | |
| 6500 | 146 return close(fd); |
| 3630 | 147 #else |
| 6500 | 148 return closesocket(fd); |
| 3630 | 149 #endif |
| 150 } | |
| 151 | |
| 152 | |
| 2086 | 153 /* ok. this function used to take username/password, and return 0 on success. |
| 154 * now, it takes username/password, and returns NULL on error or a new gaim_connection | |
| 155 * on success. */ | |
| 5605 | 156 static void toc_login(GaimAccount *account) |
| 2086 | 157 { |
| 5605 | 158 GaimConnection *gc; |
| 2086 | 159 struct toc_data *tdt; |
| 160 char buf[80]; | |
| 161 | |
| 5605 | 162 gc = gaim_account_get_connection(account); |
| 2086 | 163 gc->proto_data = tdt = g_new0(struct toc_data, 1); |
| 6622 | 164 gc->flags |= GAIM_CONNECTION_HTML; |
| 165 gc->flags |= GAIM_CONNECTION_AUTO_RESP; | |
| 2086 | 166 |
| 4834 | 167 g_snprintf(buf, sizeof buf, _("Looking up %s"), |
| 5605 | 168 gaim_account_get_string(account, "server", TOC_HOST)); |
| 169 gaim_connection_update_progress(gc, buf, 1, TOC_CONNECT_STEPS); | |
| 2086 | 170 |
|
6484
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
171 gaim_debug(GAIM_DEBUG_INFO, "toc", "Client connects to TOC\n"); |
|
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5679
diff
changeset
|
172 if (gaim_proxy_connect(account, |
| 5605 | 173 gaim_account_get_string(account, "server", TOC_HOST), |
| 174 gaim_account_get_int(account, "port", TOC_PORT), | |
| 4491 | 175 toc_login_callback, gc) != 0 || !account->gc) { |
| 6321 | 176 g_snprintf(buf, sizeof(buf), _("Connect to %s failed"), |
| 5605 | 177 gaim_account_get_string(account, "server", TOC_HOST)); |
| 178 gaim_connection_error(gc, buf); | |
| 2086 | 179 return; |
| 180 } | |
| 181 } | |
| 182 | |
|
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
183 static void toc_login_callback(gpointer data, gint source, GaimInputCondition cond) |
| 2086 | 184 { |
| 5605 | 185 GaimConnection *gc = data; |
| 2086 | 186 struct toc_data *tdt; |
| 187 char buf[80]; | |
| 4597 | 188 struct sockaddr_in name; |
| 189 socklen_t namelen; | |
| 2086 | 190 |
| 5605 | 191 if (!g_list_find(gaim_connections_get_all(), data)) { |
| 3630 | 192 toc_soc_close(source); |
| 2086 | 193 return; |
| 194 } | |
| 195 | |
| 196 tdt = gc->proto_data; | |
| 197 | |
| 198 if (source == -1) { | |
| 199 /* we didn't successfully connect. tdt->toc_fd is valid here */ | |
| 6321 | 200 gaim_connection_error(gc, _("Unable to connect.")); |
| 2086 | 201 return; |
| 202 } | |
| 4452 | 203 tdt->toc_fd = source; |
| 2086 | 204 |
| 4597 | 205 /* |
| 206 * Copy the IP that we're connected to. We need this because "GOTO_URL"'s | |
| 207 * should open on the exact server we're connected to. toc.oscar.aol.com | |
| 208 * doesn't work because that hostname resolves to multiple IP addresses. | |
| 209 */ | |
| 210 if (getpeername(tdt->toc_fd, (struct sockaddr *)&name, &namelen) == 0) | |
| 211 strncpy(tdt->toc_ip, inet_ntoa(name.sin_addr), sizeof(tdt->toc_ip)); | |
| 212 else | |
| 5605 | 213 strncpy(tdt->toc_ip, gaim_account_get_string(gc->account, "server", TOC_HOST), sizeof(tdt->toc_ip)); |
| 4597 | 214 |
|
6484
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
215 gaim_debug(GAIM_DEBUG_INFO, "toc", |
|
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
216 "Client sends \"FLAPON\\r\\n\\r\\n\"\n"); |
| 3630 | 217 if (toc_write(tdt->toc_fd, FLAPON, strlen(FLAPON)) < 0) { |
| 6321 | 218 gaim_connection_error(gc, _("Disconnected.")); |
| 2086 | 219 return; |
| 220 } | |
| 221 tdt->state = STATE_FLAPON; | |
| 222 | |
| 223 /* i know a lot of people like to look at gaim to see how TOC works. so i'll comment | |
| 224 * on what this does. it's really simple. when there's data ready to be read from the | |
| 225 * toc_fd file descriptor, toc_callback is called, with gc passed as its data arg. */ | |
|
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
226 gc->inpa = gaim_input_add(tdt->toc_fd, GAIM_INPUT_READ, toc_callback, gc); |
| 2086 | 227 |
| 5605 | 228 g_snprintf(buf, sizeof(buf), _("Signon: %s"), gaim_account_get_username(gc->account)); |
| 229 gaim_connection_update_progress(gc, buf, 2, TOC_CONNECT_STEPS); | |
| 2086 | 230 } |
| 231 | |
| 5605 | 232 static void toc_close(GaimConnection *gc) |
| 2086 | 233 { |
| 234 if (gc->inpa > 0) | |
|
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
235 gaim_input_remove(gc->inpa); |
| 2086 | 236 gc->inpa = 0; |
| 3630 | 237 toc_soc_close(((struct toc_data *)gc->proto_data)->toc_fd); |
| 2086 | 238 g_free(gc->proto_data); |
| 239 } | |
| 240 | |
| 5605 | 241 static void toc_build_config(GaimAccount *account, char *s, int len, gboolean show) |
| 4687 | 242 { |
| 6695 | 243 GaimBlistNode *gnode, *cnode, *bnode; |
| 244 GaimGroup *g; | |
| 245 GaimBuddy *b; | |
| 4687 | 246 GSList *plist = account->permit; |
| 247 GSList *dlist = account->deny; | |
| 248 | |
| 249 int pos = 0; | |
| 250 | |
| 5605 | 251 if (!account->perm_deny) |
| 252 account->perm_deny = 1; | |
| 4687 | 253 |
| 5605 | 254 pos += g_snprintf(&s[pos], len - pos, "m %d\n", account->perm_deny); |
| 4785 | 255 for(gnode = gaim_get_blist()->root; gnode && len > pos; gnode = gnode->next) { |
| 6695 | 256 g = (GaimGroup *)gnode; |
| 4785 | 257 if(!GAIM_BLIST_NODE_IS_GROUP(gnode)) |
| 258 continue; | |
| 4687 | 259 if(gaim_group_on_account(g, account)) { |
| 260 pos += g_snprintf(&s[pos], len - pos, "g %s\n", g->name); | |
| 6695 | 261 for(cnode = gnode->child; cnode; cnode = cnode->next) { |
| 262 if(!GAIM_BLIST_NODE_IS_CONTACT(cnode)) | |
| 4785 | 263 continue; |
| 6695 | 264 for(bnode = gnode->child; bnode && len > pos; bnode = bnode->next) { |
| 265 b = (GaimBuddy *)bnode; | |
| 266 if(!GAIM_BLIST_NODE_IS_BUDDY(bnode)) | |
| 267 continue; | |
| 268 if(b->account == account) { | |
| 269 pos += g_snprintf(&s[pos], len - pos, "b %s%s%s\n", | |
| 270 b->name, | |
| 271 (show && b->alias) ? ":" : "", | |
| 272 (show && b->alias) ? b->alias : ""); | |
| 273 } | |
| 4687 | 274 } |
| 275 } | |
| 276 } | |
| 277 } | |
| 278 | |
| 279 while (len > pos && plist) { | |
| 280 pos += g_snprintf(&s[pos], len - pos, "p %s\n", (char *)plist->data); | |
| 281 plist = plist->next; | |
| 282 } | |
| 283 | |
| 284 while (len > pos && dlist) { | |
| 285 pos += g_snprintf(&s[pos], len - pos, "d %s\n", (char *)dlist->data); | |
| 286 dlist = dlist->next; | |
| 287 } | |
| 288 } | |
| 289 | |
| 6306 | 290 char *escape_message(const char *msg) |
|
2371
db02399a9ad7
[gaim-migrate @ 2384]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2343
diff
changeset
|
291 { |
| 6306 | 292 char *ret; |
| 293 int i, j; | |
| 294 | |
| 295 if (!msg) | |
| 296 return NULL; | |
|
2371
db02399a9ad7
[gaim-migrate @ 2384]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2343
diff
changeset
|
297 |
| 6306 | 298 /* Calculate the length after escaping */ |
| 299 for (i=0, j=0; msg[i]; i++) | |
| 300 switch (msg[i]) { | |
| 301 case '$': | |
| 302 case '[': | |
| 303 case ']': | |
| 304 case '(': | |
| 305 case ')': | |
| 306 j++; | |
| 307 default: | |
| 308 j++; | |
|
2371
db02399a9ad7
[gaim-migrate @ 2384]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2343
diff
changeset
|
309 } |
| 6306 | 310 |
| 311 /* Allocate a string */ | |
| 7606 | 312 ret = (char *)g_malloc((j+1) * sizeof(char)); |
| 6306 | 313 |
| 314 /* Copy the string */ | |
| 315 for (i=0, j=0; msg[i]; i++) | |
| 316 switch (msg[i]) { | |
| 317 case '$': | |
| 318 case '[': | |
| 319 case ']': | |
| 320 case '(': | |
| 321 case ')': | |
| 322 ret[j++] = '\\'; | |
| 323 default: | |
| 324 ret[j++] = msg[i]; | |
| 325 } | |
| 326 ret[j] = '\0'; | |
| 327 | |
| 328 return ret; | |
|
2371
db02399a9ad7
[gaim-migrate @ 2384]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2343
diff
changeset
|
329 } |
|
db02399a9ad7
[gaim-migrate @ 2384]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2343
diff
changeset
|
330 |
| 6059 | 331 /* |
| 332 * Duplicates the input string, replacing each \n with a <BR>, and | |
| 333 * escaping a few other characters. | |
| 334 */ | |
| 335 char *escape_text(const char *msg) | |
|
2371
db02399a9ad7
[gaim-migrate @ 2384]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2343
diff
changeset
|
336 { |
| 6059 | 337 char *ret; |
| 338 int i, j; | |
|
2371
db02399a9ad7
[gaim-migrate @ 2384]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2343
diff
changeset
|
339 |
| 6059 | 340 if (!msg) |
| 341 return NULL; | |
| 342 | |
| 343 /* Calculate the length after escaping */ | |
| 6306 | 344 for (i=0, j=0; msg[i]; i++) |
| 6059 | 345 switch (msg[i]) { |
| 6306 | 346 case '\n': |
| 347 j += 4; | |
| 348 break; | |
| 349 case '{': | |
| 350 case '}': | |
| 351 case '\\': | |
| 352 case '"': | |
| 353 j += 1; | |
| 354 default: | |
| 355 j += 1; | |
|
2371
db02399a9ad7
[gaim-migrate @ 2384]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2343
diff
changeset
|
356 } |
| 6059 | 357 |
| 358 /* Allocate a string */ | |
| 359 ret = (char *)malloc((j+1) * sizeof(char)); | |
| 360 | |
| 361 /* Copy the string */ | |
| 6306 | 362 for (i=0, j=0; msg[i]; i++) |
| 6059 | 363 switch (msg[i]) { |
| 6306 | 364 case '\n': |
| 365 ret[j++] = '<'; | |
| 366 ret[j++] = 'B'; | |
| 367 ret[j++] = 'R'; | |
| 368 ret[j++] = '>'; | |
| 369 break; | |
| 370 case '{': | |
| 371 case '}': | |
| 372 case '\\': | |
| 373 case '"': | |
| 374 ret[j++] = '\\'; | |
| 375 default: | |
| 376 ret[j++] = msg[i]; | |
| 6059 | 377 } |
| 378 ret[j] = '\0'; | |
| 379 | |
| 380 return ret; | |
|
2371
db02399a9ad7
[gaim-migrate @ 2384]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2343
diff
changeset
|
381 } |
|
db02399a9ad7
[gaim-migrate @ 2384]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2343
diff
changeset
|
382 |
| 6306 | 383 static int sflap_send(GaimConnection *gc, const char *buf, int olen, int type) |
| 2086 | 384 { |
| 6306 | 385 struct toc_data *tdt = (struct toc_data *)gc->proto_data; |
| 2086 | 386 int len; |
| 387 int slen = 0; | |
| 6306 | 388 int ret; |
| 2086 | 389 struct sflap_hdr hdr; |
| 6306 | 390 char *escaped, *obuf; |
| 2086 | 391 |
| 392 if (tdt->state == STATE_PAUSE) | |
| 393 /* TOC has given us the PAUSE message; sending could cause a disconnect | |
| 394 * so we just return here like everything went through fine */ | |
| 395 return 0; | |
| 396 | |
| 6306 | 397 if (olen < 0) { |
| 398 escaped = escape_message(buf); | |
| 6500 | 399 len = strlen(escaped); |
| 6306 | 400 } else { |
| 401 escaped = g_memdup(buf, olen); | |
|
2281
cc462108c101
[gaim-migrate @ 2291]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2273
diff
changeset
|
402 len = olen; |
| 6306 | 403 } |
|
2281
cc462108c101
[gaim-migrate @ 2291]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2273
diff
changeset
|
404 |
| 6306 | 405 /* |
| 406 * One _last_ 2048 check here! This shouldn't ever | |
| 407 * get hit though, hopefully. If it gets hit on an IM | |
| 408 * It'll lose the last " and the message won't go through, | |
| 409 * but this'll stop a segfault. | |
| 410 */ | |
|
2281
cc462108c101
[gaim-migrate @ 2291]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2273
diff
changeset
|
411 if (len > MSG_LEN) { |
|
6484
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
412 gaim_debug(GAIM_DEBUG_WARNING, "toc", "message too long, truncating\n"); |
| 6306 | 413 escaped[MSG_LEN - 1] = '\0'; |
|
2281
cc462108c101
[gaim-migrate @ 2291]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2273
diff
changeset
|
414 len = MSG_LEN; |
| 2086 | 415 } |
| 416 | |
|
2334
b53cd5b63a99
[gaim-migrate @ 2347]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2309
diff
changeset
|
417 if (olen < 0) |
|
6484
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
418 gaim_debug(GAIM_DEBUG_INFO, "toc", "C: %s\n", escaped); |
|
2334
b53cd5b63a99
[gaim-migrate @ 2347]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2309
diff
changeset
|
419 |
| 2086 | 420 hdr.ast = '*'; |
| 421 hdr.type = type; | |
| 422 hdr.seqno = htons(tdt->seqno++ & 0xffff); | |
| 423 hdr.len = htons(len + (type == TYPE_SIGNON ? 0 : 1)); | |
| 424 | |
| 6306 | 425 obuf = (char *)malloc((sizeof(hdr)+len+1) * sizeof(char)); |
| 2086 | 426 memcpy(obuf, &hdr, sizeof(hdr)); |
| 427 slen += sizeof(hdr); | |
| 6306 | 428 |
| 429 memcpy(&obuf[slen], escaped, len); | |
| 2086 | 430 slen += len; |
| 6306 | 431 |
| 2086 | 432 if (type != TYPE_SIGNON) { |
| 433 obuf[slen] = '\0'; | |
| 434 slen += 1; | |
| 435 } | |
| 436 | |
| 6306 | 437 ret = toc_write(tdt->toc_fd, obuf, slen); |
| 438 free(obuf); | |
| 7606 | 439 g_free(escaped); |
| 6306 | 440 |
| 441 return ret; | |
| 2086 | 442 } |
| 443 | |
| 5605 | 444 static int wait_reply(GaimConnection *gc, char *buffer, size_t buflen) |
| 2086 | 445 { |
| 446 struct toc_data *tdt = (struct toc_data *)gc->proto_data; | |
| 447 struct sflap_hdr *hdr; | |
| 448 int ret; | |
| 449 | |
| 3630 | 450 if (toc_read(tdt->toc_fd, buffer, sizeof(struct sflap_hdr)) < 0) { |
|
6484
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
451 gaim_debug(GAIM_DEBUG_ERROR, "toc", "Couldn't read flap header\n"); |
| 2086 | 452 return -1; |
| 453 } | |
| 454 | |
| 455 hdr = (struct sflap_hdr *)buffer; | |
| 456 | |
| 457 if (buflen < ntohs(hdr->len)) { | |
| 458 /* fake like there's a read error */ | |
|
6484
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
459 gaim_debug(GAIM_DEBUG_ERROR, "toc", |
|
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
460 "buffer too small (have %d, need %d)\n", |
|
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
461 buflen, ntohs(hdr->len)); |
| 2086 | 462 return -1; |
| 463 } | |
| 464 | |
| 465 if (ntohs(hdr->len) > 0) { | |
| 466 int count = 0; | |
| 467 ret = 0; | |
| 468 do { | |
| 469 count += ret; | |
| 3630 | 470 ret = toc_read(tdt->toc_fd, |
| 2086 | 471 buffer + sizeof(struct sflap_hdr) + count, ntohs(hdr->len) - count); |
| 472 } while (count + ret < ntohs(hdr->len) && ret > 0); | |
| 473 buffer[sizeof(struct sflap_hdr) + count + ret] = '\0'; | |
| 474 return ret; | |
| 475 } else | |
| 476 return 0; | |
| 477 } | |
| 478 | |
| 5605 | 479 static unsigned char *roast_password(const char *pass) |
| 2086 | 480 { |
| 481 /* Trivial "encryption" */ | |
| 482 static unsigned char rp[256]; | |
| 483 static char *roast = ROAST; | |
| 484 int pos = 2; | |
| 485 int x; | |
| 486 strcpy(rp, "0x"); | |
| 487 for (x = 0; (x < 150) && pass[x]; x++) | |
| 488 pos += sprintf(&rp[pos], "%02x", pass[x] ^ roast[x % strlen(roast)]); | |
| 489 rp[pos] = '\0'; | |
| 490 return rp; | |
| 491 } | |
| 492 | |
|
7094
2343c3aa1dec
[gaim-migrate @ 7659]
Christian Hammond <chipx86@chipx86.com>
parents:
7084
diff
changeset
|
493 static void toc_got_info(void *data, const char *url_text, size_t len) |
| 2086 | 494 { |
| 495 if (!url_text) | |
| 496 return; | |
| 497 | |
|
7062
86ed8b2aa665
[gaim-migrate @ 7626]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
498 gaim_notify_formatted(data, NULL, _("Buddy Information"), NULL, |
|
86ed8b2aa665
[gaim-migrate @ 7626]
Christian Hammond <chipx86@chipx86.com>
parents:
6982
diff
changeset
|
499 url_text, NULL, NULL); |
| 2086 | 500 } |
| 501 | |
|
2453
b72143059ad4
[gaim-migrate @ 2466]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2382
diff
changeset
|
502 static char *show_error_message() |
|
2334
b53cd5b63a99
[gaim-migrate @ 2347]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2309
diff
changeset
|
503 { |
|
b53cd5b63a99
[gaim-migrate @ 2347]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2309
diff
changeset
|
504 int no = atoi(strtok(NULL, ":")); |
|
b53cd5b63a99
[gaim-migrate @ 2347]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2309
diff
changeset
|
505 char *w = strtok(NULL, ":"); |
|
b53cd5b63a99
[gaim-migrate @ 2347]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2309
diff
changeset
|
506 static char buf[256]; |
|
b53cd5b63a99
[gaim-migrate @ 2347]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2309
diff
changeset
|
507 |
| 6500 | 508 switch(no) { |
| 509 case 69: | |
| 510 g_snprintf(buf, sizeof(buf), _("Unable to write file %s."), w); | |
| 511 break; | |
| 512 case 169: | |
| 513 g_snprintf(buf, sizeof(buf), _("Unable to read file %s."), w); | |
| 514 break; | |
| 515 case 269: | |
| 516 g_snprintf(buf, sizeof(buf), _("Message too long, last %s bytes truncated."), w); | |
| 517 break; | |
| 518 case 901: | |
| 519 g_snprintf(buf, sizeof(buf), _("%s not currently logged in."), w); | |
| 520 break; | |
| 521 case 902: | |
| 522 g_snprintf(buf, sizeof(buf), _("Warning of %s not allowed."), w); | |
| 523 break; | |
| 524 case 903: | |
| 525 g_snprintf(buf, sizeof(buf), _("A message has been dropped, you are exceeding the server speed limit.")); | |
| 526 break; | |
| 527 case 950: | |
| 528 g_snprintf(buf, sizeof(buf), _("Chat in %s is not available."), w); | |
| 529 break; | |
| 530 case 960: | |
| 531 g_snprintf(buf, sizeof(buf), _("You are sending messages too fast to %s."), w); | |
| 532 break; | |
| 533 case 961: | |
| 534 g_snprintf(buf, sizeof(buf), _("You missed an IM from %s because it was too big."), w); | |
| 535 break; | |
| 536 case 962: | |
| 537 g_snprintf(buf, sizeof(buf), _("You missed an IM from %s because it was sent too fast."), w); | |
| 538 break; | |
| 539 case 970: | |
| 540 g_snprintf(buf, sizeof(buf), _("Failure.")); | |
| 541 break; | |
| 542 case 971: | |
| 543 g_snprintf(buf, sizeof(buf), _("Too many matches.")); | |
| 544 break; | |
| 545 case 972: | |
| 546 g_snprintf(buf, sizeof(buf), _("Need more qualifiers.")); | |
| 547 break; | |
| 548 case 973: | |
| 549 g_snprintf(buf, sizeof(buf), _("Dir service temporarily unavailable.")); | |
| 550 break; | |
| 551 case 974: | |
| 552 g_snprintf(buf, sizeof(buf), _("Email lookup restricted.")); | |
| 553 break; | |
| 554 case 975: | |
| 555 g_snprintf(buf, sizeof(buf), _("Keyword ignored.")); | |
| 556 break; | |
| 557 case 976: | |
| 558 g_snprintf(buf, sizeof(buf), _("No keywords.")); | |
| 559 break; | |
| 560 case 977: | |
| 561 g_snprintf(buf, sizeof(buf), _("User has no directory information.")); | |
| 562 /* g_snprintf(buf, sizeof(buf), _("Language not supported.")); */ | |
| 563 break; | |
| 564 case 978: | |
| 565 g_snprintf(buf, sizeof(buf), _("Country not supported.")); | |
| 566 break; | |
| 567 case 979: | |
| 568 g_snprintf(buf, sizeof(buf), _("Failure unknown: %s."), w); | |
| 569 break; | |
| 570 case 980: | |
| 571 g_snprintf(buf, sizeof(buf), _("Incorrect nickname or password.")); | |
| 572 break; | |
| 573 case 981: | |
| 574 g_snprintf(buf, sizeof(buf), _("The service is temporarily unavailable.")); | |
| 575 break; | |
| 576 case 982: | |
| 577 g_snprintf(buf, sizeof(buf), _("Your warning level is currently too high to log in.")); | |
| 578 break; | |
| 579 case 983: | |
| 580 g_snprintf(buf, sizeof(buf), _("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.")); | |
| 581 break; | |
| 582 g_snprintf(buf, sizeof(buf), _("An unknown signon error has occurred: %s."), w); | |
| 583 break; | |
| 584 default: | |
| 585 g_snprintf(buf, sizeof(buf), _("An unknown error, %d, has occurred. Info: %s"), no, w); | |
|
2334
b53cd5b63a99
[gaim-migrate @ 2347]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2309
diff
changeset
|
586 } |
|
b53cd5b63a99
[gaim-migrate @ 2347]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2309
diff
changeset
|
587 |
| 6500 | 588 return buf; |
|
2334
b53cd5b63a99
[gaim-migrate @ 2347]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2309
diff
changeset
|
589 } |
|
b53cd5b63a99
[gaim-migrate @ 2347]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2309
diff
changeset
|
590 |
|
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
591 static void toc_callback(gpointer data, gint source, GaimInputCondition condition) |
| 2086 | 592 { |
| 5605 | 593 GaimConnection *gc = (GaimConnection *)data; |
| 2086 | 594 struct toc_data *tdt = (struct toc_data *)gc->proto_data; |
| 595 struct sflap_hdr *hdr; | |
| 596 struct signon so; | |
| 597 char buf[8 * 1024], *c; | |
| 598 char snd[BUF_LEN * 2]; | |
| 599 | |
| 5605 | 600 const char *username = gaim_account_get_username(gc->account); |
| 601 char *password; | |
| 602 | |
| 2086 | 603 /* there's data waiting to be read, so read it. */ |
| 604 if (wait_reply(gc, buf, 8 * 1024) <= 0) { | |
| 5605 | 605 gaim_connection_error(gc, _("Connection Closed")); |
| 2086 | 606 return; |
| 607 } | |
| 608 | |
| 609 if (tdt->state == STATE_FLAPON) { | |
| 610 hdr = (struct sflap_hdr *)buf; | |
| 611 if (hdr->type != TYPE_SIGNON) | |
|
6484
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
612 gaim_debug(GAIM_DEBUG_ERROR, "toc", "hdr->type != TYPE_SIGNON\n"); |
| 2086 | 613 else |
|
6484
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
614 gaim_debug(GAIM_DEBUG_INFO, "toc", |
|
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
615 "TOC sends Client FLAP SIGNON\n"); |
| 2086 | 616 tdt->seqno = ntohs(hdr->seqno); |
| 617 tdt->state = STATE_SIGNON_REQUEST; | |
| 618 | |
|
6484
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
619 gaim_debug(GAIM_DEBUG_INFO, "toc", "Client sends TOC FLAP SIGNON\n"); |
| 5605 | 620 g_snprintf(so.username, sizeof(so.username), "%s", username); |
| 2086 | 621 so.ver = htonl(1); |
| 622 so.tag = htons(1); | |
| 623 so.namelen = htons(strlen(so.username)); | |
| 624 if (sflap_send(gc, (char *)&so, ntohs(so.namelen) + 8, TYPE_SIGNON) < 0) { | |
| 5605 | 625 gaim_connection_error(gc, _("Disconnected.")); |
| 2086 | 626 return; |
| 627 } | |
| 628 | |
|
6484
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
629 gaim_debug(GAIM_DEBUG_INFO, "toc", |
|
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
630 "Client sends TOC \"toc_signon\" message\n"); |
|
2853
f0633f458a1c
[gaim-migrate @ 2866]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2820
diff
changeset
|
631 /* i hate icq. */ |
| 5605 | 632 if (username[0] >= '0' && username[0] <= '9') |
| 633 password = g_strndup(gaim_account_get_password(gc->account), 8); | |
| 634 else | |
| 635 password = g_strdup(gaim_account_get_password(gc->account)); | |
| 2086 | 636 g_snprintf(snd, sizeof snd, "toc_signon %s %d %s %s %s \"%s\"", |
| 7261 | 637 AUTH_HOST, AUTH_PORT, gaim_normalize(gc->account, username), |
| 5605 | 638 roast_password(password), LANGUAGE, REVISION); |
| 639 g_free(password); | |
| 2086 | 640 if (sflap_send(gc, snd, -1, TYPE_DATA) < 0) { |
| 5605 | 641 gaim_connection_error(gc, _("Disconnected.")); |
| 2086 | 642 return; |
| 643 } | |
| 644 | |
| 5605 | 645 gaim_connection_update_progress(gc, _("Waiting for reply..."), 3, TOC_CONNECT_STEPS); |
| 2086 | 646 return; |
| 647 } | |
| 648 | |
| 649 if (tdt->state == STATE_SIGNON_REQUEST) { | |
|
6484
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
650 gaim_debug(GAIM_DEBUG_INFO, "toc", "TOC sends client SIGN_ON reply\n"); |
| 4793 | 651 if (g_ascii_strncasecmp(buf + sizeof(struct sflap_hdr), "SIGN_ON", strlen("SIGN_ON"))) { |
|
6484
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
652 gaim_debug(GAIM_DEBUG_ERROR, "toc", |
|
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
653 "Didn't get SIGN_ON! buf was: %s\n", |
| 2086 | 654 buf + sizeof(struct sflap_hdr)); |
| 4793 | 655 if (!g_ascii_strncasecmp(buf + sizeof(struct sflap_hdr), "ERROR", 5)) { |
|
2334
b53cd5b63a99
[gaim-migrate @ 2347]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2309
diff
changeset
|
656 strtok(buf + sizeof(struct sflap_hdr), ":"); |
| 5605 | 657 gaim_connection_error(gc, show_error_message()); |
|
2334
b53cd5b63a99
[gaim-migrate @ 2347]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2309
diff
changeset
|
658 } else |
| 6623 | 659 gaim_connection_error(gc, _("Authentication failed")); |
| 2086 | 660 return; |
| 661 } | |
| 662 /* we're supposed to check that it's really TOC v1 here but we know it is ;) */ | |
|
6484
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
663 gaim_debug(GAIM_DEBUG_INFO, "toc", |
|
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
664 "TOC version: %s\n", buf + sizeof(struct sflap_hdr) + 8); |
| 2086 | 665 |
| 666 /* we used to check for the CONFIG here, but we'll wait until we've sent our | |
| 667 * version of the config and then the toc_init_done message. we'll come back to | |
| 668 * the callback in a better state if we get CONFIG anyway */ | |
| 669 | |
| 670 tdt->state = STATE_ONLINE; | |
| 671 | |
| 5605 | 672 gaim_connection_set_state(gc, GAIM_CONNECTED); |
| 2086 | 673 serv_finish_login(gc); |
| 674 | |
| 675 /* Client sends TOC toc_init_done message */ | |
|
6484
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
676 gaim_debug(GAIM_DEBUG_INFO, "toc", |
|
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
677 "Client sends TOC toc_init_done message\n"); |
| 2086 | 678 g_snprintf(snd, sizeof snd, "toc_init_done"); |
| 679 sflap_send(gc, snd, -1, TYPE_DATA); | |
| 680 | |
| 681 /* | |
| 682 g_snprintf(snd, sizeof snd, "toc_set_caps %s %s %s", | |
| 683 FILE_SEND_UID, FILE_GET_UID, B_ICON_UID); | |
| 684 */ | |
| 685 g_snprintf(snd, sizeof snd, "toc_set_caps %s %s", FILE_SEND_UID, FILE_GET_UID); | |
| 686 sflap_send(gc, snd, -1, TYPE_DATA); | |
| 687 | |
| 688 return; | |
| 689 } | |
| 690 | |
|
6484
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
691 gaim_debug(GAIM_DEBUG_INFO, "toc", "S: %s\n", |
|
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
692 buf + sizeof(struct sflap_hdr)); |
| 2086 | 693 |
| 694 c = strtok(buf + sizeof(struct sflap_hdr), ":"); /* Ditch the first part */ | |
| 695 | |
| 4793 | 696 if (!g_ascii_strcasecmp(c, "SIGN_ON")) { |
| 2086 | 697 /* we should only get here after a PAUSE */ |
| 698 if (tdt->state != STATE_PAUSE) | |
|
6484
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
699 gaim_debug(GAIM_DEBUG_ERROR, "toc", |
|
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
700 "got SIGN_ON but not PAUSE!\n"); |
| 2086 | 701 else { |
| 702 tdt->state = STATE_ONLINE; | |
| 703 g_snprintf(snd, sizeof snd, "toc_signon %s %d %s %s %s \"%s\"", | |
| 5605 | 704 AUTH_HOST, AUTH_PORT, |
| 7261 | 705 gaim_normalize(gc->account, gaim_account_get_username(gc->account)), |
| 5605 | 706 roast_password(gaim_account_get_password(gc->account)), |
| 707 LANGUAGE, REVISION); | |
| 2086 | 708 if (sflap_send(gc, snd, -1, TYPE_DATA) < 0) { |
| 5605 | 709 gaim_connection_error(gc, _("Disconnected.")); |
| 2086 | 710 return; |
| 711 } | |
| 712 g_snprintf(snd, sizeof snd, "toc_init_done"); | |
| 713 sflap_send(gc, snd, -1, TYPE_DATA); | |
|
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5234
diff
changeset
|
714 gaim_notify_info(gc, NULL, |
|
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5234
diff
changeset
|
715 _("TOC has come back from its pause. You may " |
|
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5234
diff
changeset
|
716 "now send messages again."), NULL); |
| 2086 | 717 } |
| 4793 | 718 } else if (!g_ascii_strcasecmp(c, "CONFIG")) { |
| 2086 | 719 c = strtok(NULL, ":"); |
|
7117
943085b0ff8b
[gaim-migrate @ 7684]
Christian Hammond <chipx86@chipx86.com>
parents:
7107
diff
changeset
|
720 gaim_blist_parse_toc_buddy_list(gc->account, c); |
| 4793 | 721 } else if (!g_ascii_strcasecmp(c, "NICK")) { |
| 2086 | 722 /* ignore NICK so that things get imported/exported properly |
| 723 c = strtok(NULL, ":"); | |
| 724 g_snprintf(gc->username, sizeof(gc->username), "%s", c); | |
| 725 */ | |
| 4793 | 726 } else if (!g_ascii_strcasecmp(c, "IM_IN")) { |
| 2086 | 727 char *away, *message; |
| 728 int a = 0; | |
| 729 | |
| 730 c = strtok(NULL, ":"); | |
| 731 away = strtok(NULL, ":"); | |
| 732 | |
| 733 message = away; | |
| 734 while (*message && (*message != ':')) | |
| 735 message++; | |
| 736 message++; | |
| 737 | |
|
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
738 a = (away && (*away == 'T')) ? GAIM_CONV_IM_AUTO_RESP : 0; |
| 2086 | 739 |
| 6982 | 740 serv_got_im(gc, c, message, a, time(NULL)); |
| 4793 | 741 } else if (!g_ascii_strcasecmp(c, "UPDATE_BUDDY")) { |
|
2305
0371b905baef
[gaim-migrate @ 2315]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2303
diff
changeset
|
742 char *l, *uc, *tmp; |
| 2086 | 743 int logged, evil, idle, type = 0; |
| 744 time_t signon, time_idle; | |
| 745 | |
| 746 c = strtok(NULL, ":"); /* name */ | |
| 747 l = strtok(NULL, ":"); /* online */ | |
| 748 sscanf(strtok(NULL, ":"), "%d", &evil); | |
| 749 sscanf(strtok(NULL, ":"), "%ld", &signon); | |
| 750 sscanf(strtok(NULL, ":"), "%d", &idle); | |
| 751 uc = strtok(NULL, ":"); | |
| 752 | |
| 753 logged = (l && (*l == 'T')) ? 1 : 0; | |
| 754 | |
| 755 if (uc[0] == 'A') | |
| 756 type |= UC_AOL; | |
| 757 switch (uc[1]) { | |
| 758 case 'A': | |
| 759 type |= UC_ADMIN; | |
| 760 break; | |
| 761 case 'U': | |
| 762 type |= UC_UNCONFIRMED; | |
| 763 break; | |
| 764 case 'O': | |
| 765 type |= UC_NORMAL; | |
| 766 break; | |
| 3083 | 767 case 'C': |
| 768 type |= UC_WIRELESS; | |
| 769 break; | |
| 2086 | 770 default: |
| 771 break; | |
| 772 } | |
| 773 if (uc[2] == 'U') | |
| 774 type |= UC_UNAVAILABLE; | |
| 775 | |
| 776 if (idle) { | |
| 777 time(&time_idle); | |
| 778 time_idle -= idle * 60; | |
| 779 } else | |
| 780 time_idle = 0; | |
| 781 | |
| 7261 | 782 tmp = g_strdup(gaim_normalize(gc->account, gaim_account_get_username(gc->account))); |
| 783 if (!strcmp(tmp, gaim_normalize(gc->account, c))) | |
| 5605 | 784 gaim_connection_set_display_name(gc, c); |
|
2305
0371b905baef
[gaim-migrate @ 2315]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2303
diff
changeset
|
785 g_free(tmp); |
|
0371b905baef
[gaim-migrate @ 2315]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2303
diff
changeset
|
786 |
| 4732 | 787 serv_got_update(gc, c, logged, evil, signon, time_idle, type); |
| 4793 | 788 } else if (!g_ascii_strcasecmp(c, "ERROR")) { |
|
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5234
diff
changeset
|
789 gaim_notify_error(gc, NULL, show_error_message(), NULL); |
| 4793 | 790 } else if (!g_ascii_strcasecmp(c, "EVILED")) { |
| 2086 | 791 int lev; |
| 792 char *name; | |
| 793 | |
| 794 sscanf(strtok(NULL, ":"), "%d", &lev); | |
| 795 name = strtok(NULL, ":"); | |
| 796 | |
| 797 serv_got_eviled(gc, name, lev); | |
| 4793 | 798 } else if (!g_ascii_strcasecmp(c, "CHAT_JOIN")) { |
| 2086 | 799 char *name; |
| 800 int id; | |
| 801 | |
| 802 sscanf(strtok(NULL, ":"), "%d", &id); | |
| 803 name = strtok(NULL, ":"); | |
| 804 | |
| 805 serv_got_joined_chat(gc, id, name); | |
| 4793 | 806 } else if (!g_ascii_strcasecmp(c, "CHAT_IN")) { |
| 2086 | 807 int id, w; |
| 808 char *m, *who, *whisper; | |
| 809 | |
| 810 sscanf(strtok(NULL, ":"), "%d", &id); | |
| 811 who = strtok(NULL, ":"); | |
| 812 whisper = strtok(NULL, ":"); | |
| 813 m = whisper; | |
| 814 while (*m && (*m != ':')) | |
| 815 m++; | |
| 816 m++; | |
| 817 | |
| 818 w = (whisper && (*whisper == 'T')) ? 1 : 0; | |
| 819 | |
| 820 serv_got_chat_in(gc, id, who, w, m, time((time_t)NULL)); | |
| 4793 | 821 } else if (!g_ascii_strcasecmp(c, "CHAT_UPDATE_BUDDY")) { |
| 2086 | 822 int id; |
| 823 char *in, *buddy; | |
| 824 GSList *bcs = gc->buddy_chats; | |
| 5679 | 825 GaimConversation *b = NULL; |
|
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
826 GaimConvChat *chat; |
| 2086 | 827 |
| 828 sscanf(strtok(NULL, ":"), "%d", &id); | |
| 829 in = strtok(NULL, ":"); | |
| 830 | |
|
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
831 chat = GAIM_CONV_CHAT(b); |
|
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4349
diff
changeset
|
832 |
| 2086 | 833 while (bcs) { |
| 5679 | 834 b = (GaimConversation *)bcs->data; |
|
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
835 if (id == gaim_conv_chat_get_id(chat)) |
| 2086 | 836 break; |
| 837 bcs = bcs->next; | |
| 838 b = NULL; | |
| 839 } | |
| 840 | |
| 841 if (!b) | |
| 842 return; | |
| 843 | |
| 844 if (in && (*in == 'T')) | |
| 845 while ((buddy = strtok(NULL, ":")) != NULL) | |
|
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
846 gaim_conv_chat_add_user(chat, buddy, NULL); |
| 2086 | 847 else |
| 848 while ((buddy = strtok(NULL, ":")) != NULL) | |
|
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
849 gaim_conv_chat_remove_user(chat, buddy, NULL); |
| 4793 | 850 } else if (!g_ascii_strcasecmp(c, "CHAT_INVITE")) { |
| 2086 | 851 char *name, *who, *message; |
| 5234 | 852 int id; |
| 853 GHashTable *components = g_hash_table_new_full(g_str_hash, g_str_equal, | |
| 854 g_free, g_free); | |
| 2086 | 855 |
| 856 name = strtok(NULL, ":"); | |
| 5234 | 857 sscanf(strtok(NULL, ":"), "%d", &id); |
| 2086 | 858 who = strtok(NULL, ":"); |
| 859 message = strtok(NULL, ":"); | |
| 860 | |
| 5234 | 861 g_hash_table_replace(components, g_strdup("id"), g_strdup_printf("%d", id)); |
| 862 | |
| 863 serv_got_chat_invite(gc, name, who, message, components); | |
| 4793 | 864 } else if (!g_ascii_strcasecmp(c, "CHAT_LEFT")) { |
| 2086 | 865 GSList *bcs = gc->buddy_chats; |
| 5679 | 866 GaimConversation *b = NULL; |
| 2086 | 867 int id; |
| 868 | |
| 869 sscanf(strtok(NULL, ":"), "%d", &id); | |
| 870 | |
| 871 while (bcs) { | |
| 5679 | 872 b = (GaimConversation *)bcs->data; |
|
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
873 if (id == gaim_conv_chat_get_id(GAIM_CONV_CHAT(b))) |
| 2086 | 874 break; |
| 875 b = NULL; | |
| 876 bcs = bcs->next; | |
| 877 } | |
| 878 | |
| 879 if (!b) | |
| 880 return; | |
| 881 | |
| 882 if (b->window) { | |
| 883 char error_buf[BUF_LONG]; | |
| 4491 | 884 gaim_conversation_set_account(b, NULL); |
| 2086 | 885 g_snprintf(error_buf, sizeof error_buf, _("You have been disconnected" |
| 886 " from chat room %s."), b->name); | |
|
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5234
diff
changeset
|
887 gaim_notify_error(gc, NULL, error_buf, NULL); |
| 2086 | 888 } else |
| 889 serv_got_chat_left(gc, id); | |
| 4793 | 890 } else if (!g_ascii_strcasecmp(c, "GOTO_URL")) { |
| 2086 | 891 char *name, *url, tmp[256]; |
| 892 | |
| 893 name = strtok(NULL, ":"); | |
| 894 url = strtok(NULL, ":"); | |
| 895 | |
| 4597 | 896 g_snprintf(tmp, sizeof(tmp), "http://%s:%d/%s", tdt->toc_ip, |
| 5605 | 897 gaim_account_get_int(gc->account, "port", TOC_PORT), |
| 2086 | 898 url); |
|
7094
2343c3aa1dec
[gaim-migrate @ 7659]
Christian Hammond <chipx86@chipx86.com>
parents:
7084
diff
changeset
|
899 gaim_url_fetch(tmp, FALSE, NULL, FALSE, toc_got_info, gc); |
| 4793 | 900 } else if (!g_ascii_strcasecmp(c, "DIR_STATUS")) { |
| 901 } else if (!g_ascii_strcasecmp(c, "ADMIN_NICK_STATUS")) { | |
| 902 } else if (!g_ascii_strcasecmp(c, "ADMIN_PASSWD_STATUS")) { | |
|
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5234
diff
changeset
|
903 gaim_notify_info(gc, NULL, _("Password Change Successful"), NULL); |
| 4793 | 904 } else if (!g_ascii_strcasecmp(c, "PAUSE")) { |
| 2086 | 905 tdt->state = STATE_PAUSE; |
|
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5234
diff
changeset
|
906 gaim_notify_warning(gc, NULL, |
|
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5234
diff
changeset
|
907 _("TOC has sent a PAUSE command."), |
|
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5234
diff
changeset
|
908 _("When this happens, TOC ignores any messages " |
|
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5234
diff
changeset
|
909 "sent to it, and may kick you off if you send a" |
|
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5234
diff
changeset
|
910 " message. Gaim will prevent anything from " |
|
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5234
diff
changeset
|
911 "going through. This is only temporary, please " |
|
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5234
diff
changeset
|
912 "be patient.")); |
| 4793 | 913 } else if (!g_ascii_strcasecmp(c, "RVOUS_PROPOSE")) { |
| 6867 | 914 #if 0 |
| 2086 | 915 char *user, *uuid, *cookie; |
| 916 int seq; | |
| 3159 | 917 char *rip, *pip, *vip, *trillian = NULL; |
| 2086 | 918 int port; |
| 3126 | 919 |
| 2086 | 920 user = strtok(NULL, ":"); |
| 921 uuid = strtok(NULL, ":"); | |
| 922 cookie = strtok(NULL, ":"); | |
| 923 sscanf(strtok(NULL, ":"), "%d", &seq); | |
| 924 rip = strtok(NULL, ":"); | |
| 925 pip = strtok(NULL, ":"); | |
| 926 vip = strtok(NULL, ":"); | |
| 927 sscanf(strtok(NULL, ":"), "%d", &port); | |
| 928 | |
| 929 if (!strcmp(uuid, FILE_SEND_UID)) { | |
| 930 /* they want us to get a file */ | |
| 931 int unk[4], i; | |
| 932 char *messages[4], *tmp, *name; | |
| 933 int subtype, files, totalsize = 0; | |
| 934 struct ft_request *ft; | |
| 935 | |
| 936 for (i = 0; i < 4; i++) { | |
| 3126 | 937 trillian = strtok(NULL, ":"); |
| 938 sscanf(trillian, "%d", &unk[i]); | |
| 2086 | 939 if (unk[i] == 10001) |
| 940 break; | |
| 3126 | 941 /* Trillian likes to send an empty token as a message, rather than |
| 942 no message at all. */ | |
| 943 if (*(trillian + strlen(trillian) +1) != ':') | |
| 944 frombase64(strtok(NULL, ":"), &messages[i], NULL); | |
| 2086 | 945 } |
| 3126 | 946 |
| 2086 | 947 frombase64(strtok(NULL, ":"), &tmp, NULL); |
| 948 | |
| 949 subtype = tmp[1]; | |
| 950 files = tmp[3]; | |
| 951 | |
| 952 totalsize |= (tmp[4] << 24) & 0xff000000; | |
| 953 totalsize |= (tmp[5] << 16) & 0x00ff0000; | |
| 954 totalsize |= (tmp[6] << 8) & 0x0000ff00; | |
| 955 totalsize |= (tmp[7] << 0) & 0x000000ff; | |
| 956 | |
| 957 if (!totalsize) { | |
| 958 g_free(tmp); | |
| 959 for (i--; i >= 0; i--) | |
| 960 g_free(messages[i]); | |
| 961 return; | |
| 962 } | |
| 963 | |
| 964 name = tmp + 8; | |
| 965 | |
| 966 ft = g_new0(struct ft_request, 1); | |
| 967 ft->cookie = g_strdup(cookie); | |
| 968 ft->ip = g_strdup(pip); | |
| 969 ft->port = port; | |
| 970 if (i) | |
| 971 ft->message = g_strdup(messages[0]); | |
| 972 else | |
| 973 ft->message = NULL; | |
| 974 ft->filename = g_strdup(name); | |
| 975 ft->user = g_strdup(user); | |
| 976 ft->size = totalsize; | |
| 977 ft->files = files; | |
| 978 g_snprintf(ft->UID, sizeof(ft->UID), "%s", FILE_SEND_UID); | |
| 979 ft->gc = gc; | |
| 980 | |
| 981 g_free(tmp); | |
| 982 for (i--; i >= 0; i--) | |
| 983 g_free(messages[i]); | |
| 984 | |
|
6484
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
985 gaim_debug(GAIM_DEBUG_MISC, "toc", |
|
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
986 "English translation of RVOUS_PROPOSE: %s requests " |
|
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
987 "Send File (i.e. send a file to you); %s:%d " |
|
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
988 "(verified_ip:port), %d files at total size of " |
|
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
989 "%d bytes.\n", user, vip, port, files, totalsize); |
| 2086 | 990 accept_file_dialog(ft); |
| 991 } else if (!strcmp(uuid, FILE_GET_UID)) { | |
| 992 /* they want us to send a file */ | |
| 993 int unk[4], i; | |
| 994 char *messages[4], *tmp; | |
| 995 struct ft_request *ft; | |
| 996 | |
| 997 for (i = 0; i < 4; i++) { | |
| 998 sscanf(strtok(NULL, ":"), "%d", unk + i); | |
| 999 if (unk[i] == 10001) | |
| 1000 break; | |
| 3126 | 1001 /* Trillian likes to send an empty token as a message, rather than |
| 1002 no message at all. */ | |
| 1003 if (*(trillian + strlen(trillian) +1) != ':') | |
| 1004 frombase64(strtok(NULL, ":"), &messages[i], NULL); | |
| 2086 | 1005 } |
| 1006 frombase64(strtok(NULL, ":"), &tmp, NULL); | |
| 1007 | |
| 1008 ft = g_new0(struct ft_request, 1); | |
| 1009 ft->cookie = g_strdup(cookie); | |
| 1010 ft->ip = g_strdup(pip); | |
| 1011 ft->port = port; | |
| 1012 if (i) | |
| 1013 ft->message = g_strdup(messages[0]); | |
| 1014 else | |
| 1015 ft->message = NULL; | |
| 1016 ft->user = g_strdup(user); | |
| 1017 g_snprintf(ft->UID, sizeof(ft->UID), "%s", FILE_GET_UID); | |
| 1018 ft->gc = gc; | |
| 1019 | |
| 1020 g_free(tmp); | |
| 1021 for (i--; i >= 0; i--) | |
| 1022 g_free(messages[i]); | |
| 1023 | |
| 1024 accept_file_dialog(ft); | |
| 1025 } else if (!strcmp(uuid, VOICE_UID)) { | |
| 1026 /* oh goody. voice over ip. fun stuff. */ | |
| 1027 } else if (!strcmp(uuid, B_ICON_UID)) { | |
| 1028 int unk[4], i; | |
| 1029 char *messages[4]; | |
| 1030 struct buddy_icon *icon; | |
| 1031 | |
| 1032 for (i = 0; i < 4; i++) { | |
| 1033 sscanf(strtok(NULL, ":"), "%d", unk + i); | |
| 1034 if (unk[i] == 10001) | |
| 1035 break; | |
| 1036 frombase64(strtok(NULL, ":"), &messages[i], NULL); | |
| 1037 } | |
| 1038 frombase64(strtok(NULL, ":"), (char **)&icon, NULL); | |
| 1039 | |
|
6484
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
1040 gaim_debug(GAIM_DEBUG_MISC, "toc", |
|
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
1041 "received icon of length %d\n", icon->len); |
| 2086 | 1042 g_free(icon); |
| 1043 for (i--; i >= 0; i--) | |
| 1044 g_free(messages[i]); | |
| 1045 } else if (!strcmp(uuid, IMAGE_UID)) { | |
| 1046 /* aka Direct IM */ | |
| 1047 } else { | |
|
6484
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
1048 gaim_debug(GAIM_DEBUG_ERROR, "toc", |
|
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
1049 "Don't know what to do with RVOUS UUID %s\n", uuid); |
| 2086 | 1050 /* do we have to do anything here? i think it just times out */ |
| 1051 } | |
| 6867 | 1052 #endif |
| 2086 | 1053 } else { |
|
6484
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
1054 gaim_debug(GAIM_DEBUG_ERROR, "toc", |
|
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
1055 "don't know what to do with %s\n", c); |
| 2086 | 1056 } |
| 1057 } | |
| 1058 | |
|
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
1059 static int toc_send_im(GaimConnection *gc, const char *name, const char *message, GaimConvImFlags flags) |
| 2086 | 1060 { |
| 6061 | 1061 char *buf1, *buf2; |
| 2086 | 1062 |
| 6855 | 1063 #if 1 |
| 1064 /* This is the old, non-i18n way */ | |
| 6061 | 1065 buf1 = escape_text(message); |
| 1066 if (strlen(buf1) + 52 > MSG_LEN) { | |
| 1067 g_free(buf1); | |
|
2123
56c4382f2909
[gaim-migrate @ 2133]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2090
diff
changeset
|
1068 return -E2BIG; |
|
2136
73253b36c3cb
[gaim-migrate @ 2146]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2130
diff
changeset
|
1069 } |
| 7261 | 1070 buf2 = g_strdup_printf("toc_send_im %s \"%s\"%s", gaim_normalize(gc->account, name), buf1, |
|
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
1071 ((flags & GAIM_CONV_IM_AUTO_RESP) ? " auto" : "")); |
| 6061 | 1072 g_free(buf1); |
| 6855 | 1073 #else |
| 1074 /* This doesn't work yet. See the comments below for details */ | |
| 1075 buf1 = gaim_strreplace(message, "\"", "\\\""); | |
| 1076 | |
| 1077 /* | |
| 1078 * We still need to determine what encoding should be used and send the | |
| 1079 * message in that encoding. This should be done the same as in | |
| 1080 * oscar_encoding_check() in oscar.c. There is no encoding flag sent | |
| 1081 * along with the message--the TOC to OSCAR proxy server must just | |
| 1082 * use a lil' algorithm to determine what the actual encoding is. | |
| 1083 * | |
| 1084 * After that, you need to convert buf1 to that encoding, and keep track | |
| 1085 * of the length of the resulting string. Then you need to make sure | |
| 1086 * that length is passed to sflap_send(). | |
| 1087 */ | |
| 1088 | |
| 6982 | 1089 if (strlen(buf1) + 52 > MSG_LEN) { |
| 6855 | 1090 g_free(buf1); |
| 1091 return -E2BIG; | |
| 1092 } | |
| 1093 | |
| 7261 | 1094 buf2 = g_strdup_printf("toc2_send_im_enc %s F U en \"%s\" %s", gaim_normalize(gc->account, name), buf1, |
|
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
1095 ((flags & GAIM_CONV_IM_AUTO_RESP) ? "auto" : "")); |
| 6855 | 1096 g_free(buf1); |
| 1097 #endif | |
| 1098 | |
| 6061 | 1099 sflap_send(gc, buf2, -1, TYPE_DATA); |
| 1100 g_free(buf2); | |
| 1101 | |
|
2303
f5bf315e6104
[gaim-migrate @ 2313]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2281
diff
changeset
|
1102 return 1; |
| 2086 | 1103 } |
| 1104 | |
| 5605 | 1105 static void toc_set_config(GaimConnection *gc) |
| 2086 | 1106 { |
|
2281
cc462108c101
[gaim-migrate @ 2291]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2273
diff
changeset
|
1107 char *buf = g_malloc(MSG_LEN), snd[BUF_LEN * 2]; |
| 4491 | 1108 toc_build_config(gc->account, buf, MSG_LEN - strlen("toc_set_config \\{\\}"), FALSE); |
| 2086 | 1109 g_snprintf(snd, MSG_LEN, "toc_set_config {%s}", buf); |
| 1110 sflap_send(gc, snd, -1, TYPE_DATA); | |
|
2281
cc462108c101
[gaim-migrate @ 2291]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2273
diff
changeset
|
1111 g_free(buf); |
| 2086 | 1112 } |
| 1113 | |
| 7261 | 1114 static void toc_get_info(GaimConnection *gc, const char *name) |
| 2086 | 1115 { |
| 1116 char buf[BUF_LEN * 2]; | |
| 7261 | 1117 g_snprintf(buf, MSG_LEN, "toc_get_info %s", gaim_normalize(gc->account, name)); |
| 1118 sflap_send(gc, buf, -1, TYPE_DATA); | |
| 2086 | 1119 } |
| 1120 | |
| 7261 | 1121 static void toc_get_dir(GaimConnection *gc, const char *name) |
| 2086 | 1122 { |
| 1123 char buf[BUF_LEN * 2]; | |
| 7261 | 1124 g_snprintf(buf, MSG_LEN, "toc_get_dir %s", gaim_normalize(gc->account, name)); |
| 1125 sflap_send(gc, buf, -1, TYPE_DATA); | |
| 2086 | 1126 } |
| 1127 | |
| 5605 | 1128 static void toc_set_dir(GaimConnection *g, const char *first, const char *middle, const char *last, |
| 3466 | 1129 const char *maiden, const char *city, const char *state, const char *country, int web) |
| 2086 | 1130 { |
| 6059 | 1131 char *buf3, buf2[BUF_LEN * 4], buf[BUF_LEN]; |
| 2086 | 1132 g_snprintf(buf2, sizeof(buf2), "%s:%s:%s:%s:%s:%s:%s:%s", first, |
| 1133 middle, last, maiden, city, state, country, (web == 1) ? "Y" : ""); | |
| 6059 | 1134 buf3 = escape_text(buf2); |
| 1135 g_snprintf(buf, sizeof(buf), "toc_set_dir %s", buf3); | |
| 1136 g_free(buf3); | |
| 2086 | 1137 sflap_send(g, buf, -1, TYPE_DATA); |
| 1138 } | |
| 1139 | |
| 5605 | 1140 static void toc_dir_search(GaimConnection *g, const char *first, const char *middle, const char *last, |
| 3466 | 1141 const char *maiden, const char *city, const char *state, const char *country, const char *email) |
| 2086 | 1142 { |
| 1143 char buf[BUF_LONG]; | |
| 1144 g_snprintf(buf, sizeof(buf) / 2, "toc_dir_search %s:%s:%s:%s:%s:%s:%s:%s", first, middle, | |
| 1145 last, maiden, city, state, country, email); | |
|
6484
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
1146 gaim_debug(GAIM_DEBUG_INFO, "toc", |
|
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
1147 "Searching for: %s,%s,%s,%s,%s,%s,%s\n", |
|
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
1148 first, middle, last, maiden, |
| 2086 | 1149 city, state, country); |
| 1150 sflap_send(g, buf, -1, TYPE_DATA); | |
| 1151 } | |
| 1152 | |
| 6059 | 1153 static void toc_set_away(GaimConnection *g, const char *state, const char *message) |
| 2086 | 1154 { |
| 1155 char buf[BUF_LEN * 2]; | |
|
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
3867
diff
changeset
|
1156 if (g->away) { |
| 2086 | 1157 g_free (g->away); |
|
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
3867
diff
changeset
|
1158 g->away = NULL; |
|
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
3867
diff
changeset
|
1159 } |
| 2086 | 1160 if (message) { |
| 6059 | 1161 char *tmp; |
| 1162 g->away = g_strdup(message); | |
| 1163 tmp = escape_text(message); | |
| 3188 | 1164 g_snprintf(buf, MSG_LEN, "toc_set_away \"%s\"", tmp); |
| 1165 g_free(tmp); | |
| 2086 | 1166 } else |
| 1167 g_snprintf(buf, MSG_LEN, "toc_set_away \"\""); | |
| 1168 sflap_send(g, buf, -1, TYPE_DATA); | |
| 1169 } | |
| 1170 | |
| 5954 | 1171 static void toc_set_info(GaimConnection *g, const char *info) |
| 2086 | 1172 { |
| 6059 | 1173 char buf[BUF_LEN * 2], *buf2; |
| 1174 buf2 = escape_text(info); | |
| 2086 | 1175 g_snprintf(buf, sizeof(buf), "toc_set_info \"%s\n\"", buf2); |
| 6059 | 1176 g_free(buf2); |
| 2086 | 1177 sflap_send(g, buf, -1, TYPE_DATA); |
| 1178 } | |
| 1179 | |
| 5605 | 1180 static void toc_change_passwd(GaimConnection *g, const char *orig, const char *new) |
| 2086 | 1181 { |
| 1182 char buf[BUF_LEN * 2]; | |
| 1183 g_snprintf(buf, BUF_LONG, "toc_change_passwd %s %s", orig, new); | |
| 6306 | 1184 sflap_send(g, buf, -1, TYPE_DATA); |
| 2086 | 1185 } |
| 1186 | |
| 7261 | 1187 static void |
| 1188 toc_add_buddy(GaimConnection *gc, const char *name, GaimGroup *group) | |
| 2086 | 1189 { |
| 1190 char buf[BUF_LEN * 2]; | |
| 7261 | 1191 g_snprintf(buf, sizeof(buf), "toc_add_buddy %s", gaim_normalize(gc->account, name)); |
| 1192 sflap_send(gc, buf, -1, TYPE_DATA); | |
| 1193 toc_set_config(gc); | |
| 2086 | 1194 } |
| 1195 | |
| 7261 | 1196 static void toc_add_buddies(GaimConnection *gc, GList *buddies) |
| 2086 | 1197 { |
| 1198 char buf[BUF_LEN * 2]; | |
| 1199 int n; | |
| 1200 | |
| 1201 n = g_snprintf(buf, sizeof(buf), "toc_add_buddy"); | |
| 1202 while (buddies) { | |
| 7261 | 1203 if (strlen(gaim_normalize(gc->account, buddies->data)) + n + 32 > MSG_LEN) { |
| 1204 sflap_send(gc, buf, -1, TYPE_DATA); | |
| 2086 | 1205 n = g_snprintf(buf, sizeof(buf), "toc_add_buddy"); |
| 1206 } | |
| 7261 | 1207 n += g_snprintf(buf + n, sizeof(buf) - n, " %s", gaim_normalize(gc->account, buddies->data)); |
| 2086 | 1208 buddies = buddies->next; |
| 1209 } | |
| 7261 | 1210 sflap_send(gc, buf, -1, TYPE_DATA); |
| 2086 | 1211 } |
| 1212 | |
| 7261 | 1213 static void toc_remove_buddy(GaimConnection *gc, const char *name, const char *group) |
| 2086 | 1214 { |
| 1215 char buf[BUF_LEN * 2]; | |
| 7261 | 1216 g_snprintf(buf, sizeof(buf), "toc_remove_buddy %s", gaim_normalize(gc->account, name)); |
| 1217 sflap_send(gc, buf, -1, TYPE_DATA); | |
| 1218 toc_set_config(gc); | |
| 2086 | 1219 } |
| 1220 | |
| 7261 | 1221 static void toc_remove_buddies(GaimConnection *gc, GList *buddies, const char *group) |
|
2334
b53cd5b63a99
[gaim-migrate @ 2347]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2309
diff
changeset
|
1222 { |
|
b53cd5b63a99
[gaim-migrate @ 2347]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2309
diff
changeset
|
1223 char buf[BUF_LEN * 2]; |
|
b53cd5b63a99
[gaim-migrate @ 2347]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2309
diff
changeset
|
1224 int n; |
|
b53cd5b63a99
[gaim-migrate @ 2347]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2309
diff
changeset
|
1225 |
|
b53cd5b63a99
[gaim-migrate @ 2347]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2309
diff
changeset
|
1226 n = g_snprintf(buf, sizeof(buf), "toc_remove_buddy"); |
|
b53cd5b63a99
[gaim-migrate @ 2347]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2309
diff
changeset
|
1227 while (buddies) { |
| 7261 | 1228 if (strlen(gaim_normalize(gc->account, buddies->data)) + n + 32 > MSG_LEN) { |
| 1229 sflap_send(gc, buf, -1, TYPE_DATA); | |
|
2334
b53cd5b63a99
[gaim-migrate @ 2347]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2309
diff
changeset
|
1230 n = g_snprintf(buf, sizeof(buf), "toc_remove_buddy"); |
|
b53cd5b63a99
[gaim-migrate @ 2347]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2309
diff
changeset
|
1231 } |
| 7261 | 1232 n += g_snprintf(buf + n, sizeof(buf) - n, " %s", gaim_normalize(gc->account, buddies->data)); |
|
2334
b53cd5b63a99
[gaim-migrate @ 2347]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2309
diff
changeset
|
1233 buddies = buddies->next; |
|
b53cd5b63a99
[gaim-migrate @ 2347]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2309
diff
changeset
|
1234 } |
| 7261 | 1235 sflap_send(gc, buf, -1, TYPE_DATA); |
| 1236 toc_set_config(gc); | |
|
2334
b53cd5b63a99
[gaim-migrate @ 2347]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2309
diff
changeset
|
1237 } |
|
b53cd5b63a99
[gaim-migrate @ 2347]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2309
diff
changeset
|
1238 |
| 5605 | 1239 static void toc_set_idle(GaimConnection *g, int time) |
| 2086 | 1240 { |
| 1241 char buf[BUF_LEN * 2]; | |
| 1242 g_snprintf(buf, sizeof(buf), "toc_set_idle %d", time); | |
| 1243 sflap_send(g, buf, -1, TYPE_DATA); | |
| 1244 } | |
| 1245 | |
| 6059 | 1246 static void toc_warn(GaimConnection *g, const char *name, int anon) |
| 2086 | 1247 { |
| 1248 char send[BUF_LEN * 2]; | |
| 1249 g_snprintf(send, 255, "toc_evil %s %s", name, ((anon) ? "anon" : "norm")); | |
| 1250 sflap_send(g, send, -1, TYPE_DATA); | |
| 1251 } | |
| 1252 | |
| 5605 | 1253 static GList *toc_chat_info(GaimConnection *gc) |
| 2086 | 1254 { |
|
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
1255 GList *m = NULL; |
|
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
1256 struct proto_chat_entry *pce; |
|
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
1257 |
|
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
1258 pce = g_new0(struct proto_chat_entry, 1); |
| 7841 | 1259 pce->label = _("_Group:"); |
| 5234 | 1260 pce->identifier = "room"; |
|
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
1261 m = g_list_append(m, pce); |
|
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
1262 |
|
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
1263 pce = g_new0(struct proto_chat_entry, 1); |
| 7841 | 1264 pce->label = _("_Exchange:"); |
| 5234 | 1265 pce->identifier = "exchange"; |
|
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
1266 pce->is_int = TRUE; |
|
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
1267 pce->min = 4; |
|
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
1268 pce->max = 20; |
|
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
1269 m = g_list_append(m, pce); |
|
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
1270 |
|
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
1271 return m; |
| 2086 | 1272 } |
| 1273 | |
| 5605 | 1274 static void toc_join_chat(GaimConnection *g, GHashTable *data) |
| 2086 | 1275 { |
| 1276 char buf[BUF_LONG]; | |
| 5234 | 1277 char *name, *exchange; |
| 1278 char *id; | |
|
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
1279 |
| 5234 | 1280 name = g_hash_table_lookup(data, "room"); |
| 1281 exchange = g_hash_table_lookup(data, "exchange"); | |
| 1282 id = g_hash_table_lookup(data, "id"); | |
| 1283 | |
| 1284 if (id) { | |
| 1285 g_snprintf(buf, 255, "toc_chat_accept %d", atoi(id)); | |
|
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
1286 } else { |
| 5234 | 1287 g_snprintf(buf, sizeof(buf) / 2, "toc_chat_join %d \"%s\"", atoi(exchange), name); |
|
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
1288 } |
|
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
1289 |
| 2086 | 1290 sflap_send(g, buf, -1, TYPE_DATA); |
| 1291 } | |
| 1292 | |
| 7261 | 1293 static void toc_chat_invite(GaimConnection *gc, int id, const char *message, const char *name) |
| 2086 | 1294 { |
| 1295 char buf[BUF_LONG]; | |
|
2719
9747583279d1
[gaim-migrate @ 2732]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2706
diff
changeset
|
1296 g_snprintf(buf, sizeof(buf) / 2, "toc_chat_invite %d \"%s\" %s", id, |
| 7261 | 1297 message ? message : "", gaim_normalize(gc->account, name)); |
| 1298 sflap_send(gc, buf, -1, TYPE_DATA); | |
| 2086 | 1299 } |
| 1300 | |
| 5605 | 1301 static void toc_chat_leave(GaimConnection *g, int id) |
| 2086 | 1302 { |
| 1303 GSList *bcs = g->buddy_chats; | |
| 5679 | 1304 GaimConversation *b = NULL; |
| 2086 | 1305 char buf[BUF_LEN * 2]; |
| 1306 | |
| 1307 while (bcs) { | |
| 5679 | 1308 b = (GaimConversation *)bcs->data; |
|
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7117
diff
changeset
|
1309 if (id == gaim_conv_chat_get_id(GAIM_CONV_CHAT(b))) |
| 2086 | 1310 break; |
| 1311 b = NULL; | |
| 1312 bcs = bcs->next; | |
| 1313 } | |
| 1314 | |
| 1315 if (!b) | |
| 1316 return; /* can this happen? */ | |
| 1317 | |
| 4491 | 1318 if (gaim_conversation_get_account(b) == NULL) { |
|
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4349
diff
changeset
|
1319 /* TOC already kicked us out of this room */ |
| 2086 | 1320 serv_got_chat_left(g, id); |
|
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4349
diff
changeset
|
1321 } |
| 2086 | 1322 else { |
| 1323 g_snprintf(buf, 255, "toc_chat_leave %d", id); | |
| 1324 sflap_send(g, buf, -1, TYPE_DATA); | |
| 1325 } | |
| 1326 } | |
| 1327 | |
| 7261 | 1328 static void toc_chat_whisper(GaimConnection *gc, int id, const char *who, const char *message) |
| 2086 | 1329 { |
| 6059 | 1330 char *buf1, *buf2; |
| 1331 buf1 = escape_text(message); | |
| 7261 | 1332 buf2 = g_strdup_printf("toc_chat_whisper %d %s \"%s\"", id, gaim_normalize(gc->account, who), buf1); |
| 6059 | 1333 g_free(buf1); |
| 7261 | 1334 sflap_send(gc, buf2, -1, TYPE_DATA); |
| 6059 | 1335 g_free(buf2); |
| 2086 | 1336 } |
| 1337 | |
| 6059 | 1338 static int toc_chat_send(GaimConnection *g, int id, const char *message) |
| 2086 | 1339 { |
| 6059 | 1340 char *buf1, *buf2; |
| 1341 buf1 = escape_text(message); | |
| 1342 if (strlen(buf1) > 2000) { | |
| 1343 g_free(buf1); | |
|
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
1344 return -E2BIG; |
| 6059 | 1345 } |
| 1346 buf2 = g_strdup_printf("toc_chat_send %d \"%s\"", id, buf1); | |
| 1347 g_free(buf1); | |
| 1348 sflap_send(g, buf2, -1, TYPE_DATA); | |
| 1349 g_free(buf2); | |
|
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
1350 return 0; |
| 2086 | 1351 } |
| 1352 | |
| 5605 | 1353 static void toc_keepalive(GaimConnection *gc) |
| 2086 | 1354 { |
| 1355 sflap_send(gc, "", 0, TYPE_KEEPALIVE); | |
| 1356 } | |
| 1357 | |
| 6695 | 1358 static const char *toc_list_icon(GaimAccount *a, GaimBuddy *b) |
| 2086 | 1359 { |
| 5971 | 1360 if (!b || (b && b->name && b->name[0] == '+')) { |
| 6695 | 1361 if (a != NULL && isdigit(*gaim_account_get_username(a))) |
| 5971 | 1362 return "icq"; |
| 1363 else | |
| 1364 return "aim"; | |
| 1365 } | |
| 1366 | |
| 1367 if (b && b->name && isdigit(b->name[0])) | |
| 1368 return "icq"; | |
| 4687 | 1369 return "aim"; |
| 1370 } | |
| 4916 | 1371 |
| 6695 | 1372 static void toc_list_emblems(GaimBuddy *b, char **se, char **sw, char **nw, char **ne) |
| 4916 | 1373 { |
| 1374 char *emblems[4] = {NULL,NULL,NULL,NULL}; | |
| 1375 int i = 0; | |
| 1376 | |
| 5971 | 1377 if (!GAIM_BUDDY_IS_ONLINE(b)) { |
| 4916 | 1378 *se = "offline"; |
| 1379 return; | |
| 1380 } else { | |
| 1381 if (b->uc & UC_UNAVAILABLE) | |
| 1382 emblems[i++] = "away"; | |
| 1383 if (b->uc & UC_AOL) | |
| 1384 emblems[i++] = "aol"; | |
| 1385 if (b->uc & UC_ADMIN) | |
| 1386 emblems[i++] = "admin"; | |
| 1387 if (b->uc & UC_WIRELESS) | |
| 1388 emblems[i++] = "wireless"; | |
| 1389 } | |
| 1390 *se = emblems[0]; | |
| 1391 *sw = emblems[1]; | |
| 1392 *nw = emblems[2]; | |
| 1393 *ne = emblems[3]; | |
| 1394 } | |
| 2086 | 1395 |
| 5605 | 1396 static GList *toc_buddy_menu(GaimConnection *gc, const char *who) |
| 2086 | 1397 { |
|
2170
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
1398 GList *m = NULL; |
|
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
1399 struct proto_buddy_menu *pbm; |
| 2086 | 1400 |
|
2170
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
1401 pbm = g_new0(struct proto_buddy_menu, 1); |
|
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
1402 pbm->label = _("Get Dir Info"); |
|
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
1403 pbm->callback = toc_get_dir; |
|
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
1404 pbm->gc = gc; |
|
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
1405 m = g_list_append(m, pbm); |
|
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
1406 |
|
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
1407 return m; |
| 2086 | 1408 } |
| 1409 | |
| 5605 | 1410 static void toc_add_permit(GaimConnection *gc, const char *who) |
| 2086 | 1411 { |
| 1412 char buf2[BUF_LEN * 2]; | |
| 5605 | 1413 if (gc->account->perm_deny != 3) |
| 2086 | 1414 return; |
| 7261 | 1415 g_snprintf(buf2, sizeof(buf2), "toc_add_permit %s", gaim_normalize(gc->account, who)); |
| 2086 | 1416 sflap_send(gc, buf2, -1, TYPE_DATA); |
| 1417 toc_set_config(gc); | |
| 1418 } | |
| 1419 | |
| 5605 | 1420 static void toc_add_deny(GaimConnection *gc, const char *who) |
| 2086 | 1421 { |
| 1422 char buf2[BUF_LEN * 2]; | |
| 5605 | 1423 if (gc->account->perm_deny != 4) |
| 2086 | 1424 return; |
| 7261 | 1425 g_snprintf(buf2, sizeof(buf2), "toc_add_deny %s", gaim_normalize(gc->account, who)); |
| 2086 | 1426 sflap_send(gc, buf2, -1, TYPE_DATA); |
| 1427 toc_set_config(gc); | |
| 1428 } | |
| 1429 | |
| 5605 | 1430 static void toc_set_permit_deny(GaimConnection *gc) |
| 2086 | 1431 { |
| 1432 char buf2[BUF_LEN * 2]; | |
| 1433 GSList *list; | |
| 1434 int at; | |
| 1435 | |
| 5605 | 1436 switch (gc->account->perm_deny) { |
| 2086 | 1437 case 1: |
| 1438 /* permit all, deny none. to get here reliably we need to have been in permit | |
| 1439 * mode, and send an empty toc_add_deny message, which will switch us to deny none */ | |
| 1440 g_snprintf(buf2, sizeof(buf2), "toc_add_permit "); | |
| 1441 sflap_send(gc, buf2, -1, TYPE_DATA); | |
| 1442 g_snprintf(buf2, sizeof(buf2), "toc_add_deny "); | |
| 1443 sflap_send(gc, buf2, -1, TYPE_DATA); | |
| 1444 break; | |
| 1445 case 2: | |
| 1446 /* deny all, permit none. to get here reliably we need to have been in deny | |
| 1447 * mode, and send an empty toc_add_permit message, which will switch us to permit none */ | |
| 1448 g_snprintf(buf2, sizeof(buf2), "toc_add_deny "); | |
| 1449 sflap_send(gc, buf2, -1, TYPE_DATA); | |
| 1450 g_snprintf(buf2, sizeof(buf2), "toc_add_permit "); | |
| 1451 sflap_send(gc, buf2, -1, TYPE_DATA); | |
| 1452 break; | |
| 1453 case 3: | |
| 1454 /* permit some. we want to switch to deny mode first, then send the toc_add_permit | |
| 1455 * message, which will clear and set our permit list. toc sucks. */ | |
| 1456 g_snprintf(buf2, sizeof(buf2), "toc_add_deny "); | |
| 1457 sflap_send(gc, buf2, -1, TYPE_DATA); | |
| 1458 | |
| 1459 at = g_snprintf(buf2, sizeof(buf2), "toc_add_permit "); | |
| 4491 | 1460 list = gc->account->permit; |
| 2086 | 1461 while (list) { |
| 7261 | 1462 at += g_snprintf(buf2 + at, sizeof(buf2) - at, "%s ", gaim_normalize(gc->account, list->data)); |
| 2086 | 1463 if (at > MSG_LEN + 32) { /* from out my ass comes greatness */ |
| 1464 sflap_send(gc, buf2, -1, TYPE_DATA); | |
| 1465 at = g_snprintf(buf2, sizeof(buf2), "toc_add_permit "); | |
| 1466 } | |
| 1467 list = list->next; | |
| 1468 } | |
| 1469 sflap_send(gc, buf2, -1, TYPE_DATA); | |
| 1470 break; | |
| 1471 case 4: | |
| 1472 /* deny some. we want to switch to permit mode first, then send the toc_add_deny | |
| 1473 * message, which will clear and set our deny list. toc sucks. */ | |
| 1474 g_snprintf(buf2, sizeof(buf2), "toc_add_permit "); | |
| 1475 sflap_send(gc, buf2, -1, TYPE_DATA); | |
| 1476 | |
| 1477 at = g_snprintf(buf2, sizeof(buf2), "toc_add_deny "); | |
| 4491 | 1478 list = gc->account->deny; |
| 2086 | 1479 while (list) { |
| 7261 | 1480 at += g_snprintf(buf2 + at, sizeof(buf2) - at, "%s ", gaim_normalize(gc->account, list->data)); |
| 2086 | 1481 if (at > MSG_LEN + 32) { /* from out my ass comes greatness */ |
| 1482 sflap_send(gc, buf2, -1, TYPE_DATA); | |
| 1483 at = g_snprintf(buf2, sizeof(buf2), "toc_add_deny "); | |
| 1484 } | |
| 1485 list = list->next; | |
| 1486 } | |
| 1487 sflap_send(gc, buf2, -1, TYPE_DATA); | |
| 1488 break; | |
| 1489 default: | |
| 1490 break; | |
| 1491 } | |
| 1492 toc_set_config(gc); | |
| 1493 } | |
| 1494 | |
| 5605 | 1495 static void toc_rem_permit(GaimConnection *gc, const char *who) |
| 2086 | 1496 { |
| 5605 | 1497 if (gc->account->perm_deny != 3) |
| 2086 | 1498 return; |
| 1499 toc_set_permit_deny(gc); | |
| 1500 } | |
| 1501 | |
| 5605 | 1502 static void toc_rem_deny(GaimConnection *gc, const char *who) |
| 2086 | 1503 { |
| 5605 | 1504 if (gc->account->perm_deny != 4) |
| 2086 | 1505 return; |
| 1506 toc_set_permit_deny(gc); | |
| 1507 } | |
| 1508 | |
| 5605 | 1509 static GList *toc_away_states(GaimConnection *gc) |
| 2086 | 1510 { |
| 1511 return g_list_append(NULL, GAIM_AWAY_CUSTOM); | |
| 1512 } | |
| 1513 | |
|
7063
7fdac700deb1
[gaim-migrate @ 7627]
Christian Hammond <chipx86@chipx86.com>
parents:
7062
diff
changeset
|
1514 static void |
|
7067
71e0da45abe6
[gaim-migrate @ 7631]
Christian Hammond <chipx86@chipx86.com>
parents:
7063
diff
changeset
|
1515 show_set_info(GaimConnection *gc) |
|
71e0da45abe6
[gaim-migrate @ 7631]
Christian Hammond <chipx86@chipx86.com>
parents:
7063
diff
changeset
|
1516 { |
|
71e0da45abe6
[gaim-migrate @ 7631]
Christian Hammond <chipx86@chipx86.com>
parents:
7063
diff
changeset
|
1517 gaim_account_request_change_user_info(gaim_connection_get_account(gc)); |
|
71e0da45abe6
[gaim-migrate @ 7631]
Christian Hammond <chipx86@chipx86.com>
parents:
7063
diff
changeset
|
1518 } |
|
71e0da45abe6
[gaim-migrate @ 7631]
Christian Hammond <chipx86@chipx86.com>
parents:
7063
diff
changeset
|
1519 |
|
71e0da45abe6
[gaim-migrate @ 7631]
Christian Hammond <chipx86@chipx86.com>
parents:
7063
diff
changeset
|
1520 static void |
|
7063
7fdac700deb1
[gaim-migrate @ 7627]
Christian Hammond <chipx86@chipx86.com>
parents:
7062
diff
changeset
|
1521 change_pass(GaimConnection *gc) |
|
7fdac700deb1
[gaim-migrate @ 7627]
Christian Hammond <chipx86@chipx86.com>
parents:
7062
diff
changeset
|
1522 { |
|
7fdac700deb1
[gaim-migrate @ 7627]
Christian Hammond <chipx86@chipx86.com>
parents:
7062
diff
changeset
|
1523 gaim_account_request_change_password(gaim_connection_get_account(gc)); |
|
7fdac700deb1
[gaim-migrate @ 7627]
Christian Hammond <chipx86@chipx86.com>
parents:
7062
diff
changeset
|
1524 } |
|
7fdac700deb1
[gaim-migrate @ 7627]
Christian Hammond <chipx86@chipx86.com>
parents:
7062
diff
changeset
|
1525 |
| 5605 | 1526 static GList *toc_actions(GaimConnection *gc) |
| 2086 | 1527 { |
| 1528 GList *m = NULL; | |
| 4333 | 1529 struct proto_actions_menu *pam; |
| 2086 | 1530 |
| 4333 | 1531 pam = g_new0(struct proto_actions_menu, 1); |
| 1532 pam->label = _("Set User Info"); | |
| 1533 pam->callback = show_set_info; | |
| 1534 pam->gc = gc; | |
| 1535 m = g_list_append(m, pam); | |
| 1536 | |
|
7080
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
1537 #if 0 |
| 4333 | 1538 pam = g_new0(struct proto_actions_menu, 1); |
| 1539 pam->label = _("Set Dir Info"); | |
| 1540 pam->callback = show_set_dir; | |
| 1541 pam->gc = gc; | |
| 1542 m = g_list_append(m, pam); | |
|
7080
fc9c74cfb306
[gaim-migrate @ 7645]
Christian Hammond <chipx86@chipx86.com>
parents:
7067
diff
changeset
|
1543 #endif |
| 4333 | 1544 |
| 1545 pam = g_new0(struct proto_actions_menu, 1); | |
| 1546 pam->label = _("Change Password"); | |
|
7063
7fdac700deb1
[gaim-migrate @ 7627]
Christian Hammond <chipx86@chipx86.com>
parents:
7062
diff
changeset
|
1547 pam->callback = change_pass; |
| 4333 | 1548 pam->gc = gc; |
| 1549 m = g_list_append(m, pam); | |
| 2086 | 1550 |
| 1551 return m; | |
| 1552 } | |
| 1553 | |
| 6867 | 1554 #if 0 |
| 2086 | 1555 /********* |
| 1556 * RVOUS ACTIONS | |
| 1557 ********/ | |
| 1558 | |
| 1559 struct file_header { | |
| 1560 char magic[4]; /* 0 */ | |
| 1561 short hdrlen; /* 4 */ | |
| 1562 short hdrtype; /* 6 */ | |
| 1563 char bcookie[8]; /* 8 */ | |
| 1564 short encrypt; /* 16 */ | |
| 1565 short compress; /* 18 */ | |
| 1566 short totfiles; /* 20 */ | |
| 1567 short filesleft; /* 22 */ | |
| 1568 short totparts; /* 24 */ | |
| 1569 short partsleft; /* 26 */ | |
| 1570 long totsize; /* 28 */ | |
| 1571 long size; /* 32 */ | |
| 1572 long modtime; /* 36 */ | |
| 1573 long checksum; /* 40 */ | |
| 1574 long rfrcsum; /* 44 */ | |
| 1575 long rfsize; /* 48 */ | |
| 1576 long cretime; /* 52 */ | |
| 1577 long rfcsum; /* 56 */ | |
| 1578 long nrecvd; /* 60 */ | |
| 1579 long recvcsum; /* 64 */ | |
| 1580 char idstring[32]; /* 68 */ | |
| 1581 char flags; /* 100 */ | |
| 1582 char lnameoffset; /* 101 */ | |
| 1583 char lsizeoffset; /* 102 */ | |
| 1584 char dummy[69]; /* 103 */ | |
| 1585 char macfileinfo[16]; /* 172 */ | |
| 1586 short nencode; /* 188 */ | |
| 1587 short nlanguage; /* 190 */ | |
| 1588 char name[64]; /* 192 */ | |
| 1589 /* 256 */ | |
| 1590 }; | |
| 1591 | |
| 1592 struct file_transfer { | |
| 1593 struct file_header hdr; | |
| 1594 | |
| 5605 | 1595 GaimConnection *gc; |
| 2086 | 1596 |
| 1597 char *user; | |
| 1598 char *cookie; | |
| 1599 char *ip; | |
| 1600 int port; | |
| 1601 long size; | |
| 1602 struct stat st; | |
| 1603 | |
| 1604 GtkWidget *window; | |
| 1605 int files; | |
| 1606 char *filename; | |
| 1607 FILE *file; | |
| 1608 int recvsize; | |
| 1609 | |
| 1610 gint inpa; | |
| 1611 }; | |
| 1612 | |
| 1613 static void debug_header(struct file_transfer *ft) { | |
| 1614 struct file_header *f = (struct file_header *)ft; | |
|
6484
5ced8e111473
[gaim-migrate @ 6998]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
1615 gaim_debug(GAIM_DEBUG_MISC, "toc", "FT HEADER:\n" |
| 2086 | 1616 "\t%s %d 0x%04x\n" |
| 1617 "\t%s %d %d\n" | |
|
4201
511c2b63caa4
[gaim-migrate @ 4432]
Christian Hammond <chipx86@chipx86.com>
parents:
4115
diff
changeset
|
1618 "\t%d %d %d %d %d %d\n" |
|
511c2b63caa4
[gaim-migrate @ 4432]
Christian Hammond <chipx86@chipx86.com>
parents:
4115
diff
changeset
|
1619 "\t%d %d %d %d %d %d %d %d\n" |
| 2086 | 1620 "\t%s\n" |
| 1621 "\t0x%02x, 0x%02x, 0x%02x\n" | |
| 1622 "\t%s %s\n" | |
| 1623 "\t%d %d\n" | |
| 1624 "\t%s\n", | |
| 1625 f->magic, ntohs(f->hdrlen), f->hdrtype, | |
| 1626 f->bcookie, ntohs(f->encrypt), ntohs(f->compress), | |
| 1627 ntohs(f->totfiles), ntohs(f->filesleft), ntohs(f->totparts), | |
| 1628 ntohs(f->partsleft), ntohl(f->totsize), ntohl(f->size), | |
| 1629 ntohl(f->modtime), ntohl(f->checksum), ntohl(f->rfrcsum), ntohl(f->rfsize), | |
| 1630 ntohl(f->cretime), ntohl(f->rfcsum), ntohl(f->nrecvd), | |
| 1631 ntohl(f->recvcsum), | |
| 1632 f->idstring, | |
| 1633 f->flags, f->lnameoffset, f->lsizeoffset, | |
| 1634 f->dummy, f->macfileinfo, | |
| 1635 ntohs(f->nencode), ntohs(f->nlanguage), | |
| 1636 f->name); | |
| 1637 } | |
| 1638 | |
|
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1639 static void toc_send_file_callback(gpointer data, gint source, GaimInputCondition cond) |
| 2086 | 1640 { |
| 1641 char buf[BUF_LONG]; | |
| 1642 int rt, i; | |
| 1643 | |
| 1644 struct file_transfer *ft = data; | |
| 1645 | |
| 1646 if (ft->hdr.hdrtype != 0x202) { | |
| 1647 char *buf; | |
| 1648 frombase64(ft->cookie, &buf, NULL); | |
| 1649 | |
| 3630 | 1650 toc_read(source, ft, 8); |
| 1651 toc_read(source, &ft->hdr.bcookie, MIN(256 - 8, ntohs(ft->hdr.hdrlen) - 8)); | |
| 2086 | 1652 debug_header(ft); |
| 1653 | |
| 1654 ft->hdr.hdrtype = 0x202; | |
| 1655 memcpy(ft->hdr.bcookie, buf, 8); | |
| 1656 g_free(buf); | |
| 1657 ft->hdr.encrypt = 0; ft->hdr.compress = 0; | |
| 1658 debug_header(ft); | |
| 3630 | 1659 toc_write(source, ft, 256); |
| 2086 | 1660 |
| 1661 if (ft->files == 1) { | |
| 1662 ft->file = fopen(ft->filename, "w"); | |
| 1663 if (!ft->file) { | |
| 4115 | 1664 buf = g_strdup_printf(_("Could not open %s for writing!"), ft->filename); |
|
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5234
diff
changeset
|
1665 gaim_notify_error(ft->gc, NULL, buf, strerror(errno)); |
| 2086 | 1666 g_free(buf); |
|
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1667 gaim_input_remove(ft->inpa); |
| 3630 | 1668 toc_soc_close(source); |
| 2086 | 1669 g_free(ft->filename); |
| 1670 g_free(ft->user); | |
| 1671 g_free(ft->ip); | |
| 1672 g_free(ft->cookie); | |
| 1673 g_free(ft); | |
| 1674 } | |
| 1675 } else { | |
| 1676 buf = g_strdup_printf("%s/%s", ft->filename, ft->hdr.name); | |
| 1677 ft->file = fopen(buf, "w"); | |
| 1678 g_free(buf); | |
| 1679 if (!ft->file) { | |
| 1680 buf = g_strdup_printf("Could not open %s/%s for writing!", ft->filename, | |
| 1681 ft->hdr.name); | |
|
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5234
diff
changeset
|
1682 gaim_notify_error(ft->gc, NULL, buf, strerror(errno)); |
| 2086 | 1683 g_free(buf); |
|
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1684 gaim_input_remove(ft->inpa); |
| 3630 | 1685 toc_soc_close(source); |
| 2086 | 1686 g_free(ft->filename); |
| 1687 g_free(ft->user); | |
| 1688 g_free(ft->ip); | |
| 1689 g_free(ft->cookie); | |
| 1690 g_free(ft); | |
| 1691 } | |
| 1692 } | |
| 1693 | |
| 1694 return; | |
| 1695 } | |
| 1696 | |
| 3630 | 1697 rt = toc_read(source, buf, MIN(ntohl(ft->hdr.size) - ft->recvsize, 1024)); |
| 2086 | 1698 if (rt < 0) { |
|
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5234
diff
changeset
|
1699 gaim_notify_error(ft->gc, NULL, |
|
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5234
diff
changeset
|
1700 _("File transfer failed; other side probably " |
|
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5234
diff
changeset
|
1701 "canceled."), NULL); |
|
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1702 gaim_input_remove(ft->inpa); |
| 3630 | 1703 toc_soc_close(source); |
| 2086 | 1704 g_free(ft->user); |
| 1705 g_free(ft->ip); | |
| 1706 g_free(ft->cookie); | |
| 1707 if (ft->file) | |
| 1708 fclose(ft->file); | |
| 1709 g_free(ft); | |
| 1710 return; | |
| 1711 } | |
| 1712 ft->recvsize += rt; | |
| 1713 for (i = 0; i < rt; i++) | |
| 1714 fprintf(ft->file, "%c", buf[i]); | |
| 1715 | |
| 1716 if (ft->recvsize == ntohl(ft->hdr.size)) { | |
| 1717 ft->hdr.hdrtype = htons(0x0204); | |
| 1718 ft->hdr.filesleft = htons(ntohs(ft->hdr.filesleft) - 1); | |
| 1719 ft->hdr.partsleft = htons(ntohs(ft->hdr.partsleft) - 1); | |
| 1720 ft->hdr.recvcsum = ft->hdr.checksum; /* uh... */ | |
| 1721 ft->hdr.nrecvd = htons(ntohs(ft->hdr.nrecvd) + 1); | |
| 1722 ft->hdr.flags = 0; | |
| 3630 | 1723 toc_write(source, ft, 256); |
| 2086 | 1724 debug_header(ft); |
| 1725 ft->recvsize = 0; | |
| 1726 fclose(ft->file); | |
| 1727 if (ft->hdr.filesleft == 0) { | |
|
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1728 gaim_input_remove(ft->inpa); |
| 3630 | 1729 toc_soc_close(source); |
| 2086 | 1730 g_free(ft->filename); |
| 1731 g_free(ft->user); | |
| 1732 g_free(ft->ip); | |
| 1733 g_free(ft->cookie); | |
| 1734 g_free(ft); | |
| 1735 } | |
| 1736 } | |
| 1737 } | |
| 1738 | |
|
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1739 static void toc_send_file_connect(gpointer data, gint src, GaimInputCondition cond) |
| 2086 | 1740 { |
| 1741 struct file_transfer *ft = data; | |
| 1742 | |
| 1743 if (src == -1) { | |
|
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5234
diff
changeset
|
1744 gaim_notify_error(ft->gc, NULL, |
|
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5234
diff
changeset
|
1745 _("Could not connect for transfer."), NULL); |
| 2086 | 1746 g_free(ft->filename); |
| 1747 g_free(ft->cookie); | |
| 1748 g_free(ft->user); | |
| 1749 g_free(ft->ip); | |
| 1750 g_free(ft); | |
| 1751 return; | |
| 1752 } | |
| 1753 | |
|
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1754 ft->inpa = gaim_input_add(src, GAIM_INPUT_READ, toc_send_file_callback, ft); |
| 2086 | 1755 } |
| 1756 | |
| 1757 static void toc_send_file(gpointer a, struct file_transfer *old_ft) | |
| 1758 { | |
| 1759 struct file_transfer *ft; | |
| 1760 const char *dirname = gtk_file_selection_get_filename(GTK_FILE_SELECTION(old_ft->window)); | |
| 5605 | 1761 GaimAccount *account; |
| 2086 | 1762 char buf[BUF_LEN * 2]; |
| 1763 | |
| 5966 | 1764 if (gaim_gtk_check_if_dir(dirname, GTK_FILE_SELECTION(old_ft->window))) |
| 2086 | 1765 return; |
| 1766 ft = g_new0(struct file_transfer, 1); | |
| 1767 if (old_ft->files == 1) | |
| 1768 ft->filename = g_strdup(dirname); | |
| 1769 else | |
| 4793 | 1770 ft->filename = g_path_get_dirname(dirname); |
| 2086 | 1771 ft->cookie = g_strdup(old_ft->cookie); |
| 1772 ft->user = g_strdup(old_ft->user); | |
| 1773 ft->ip = g_strdup(old_ft->ip); | |
| 1774 ft->files = old_ft->files; | |
| 1775 ft->port = old_ft->port; | |
| 1776 ft->gc = old_ft->gc; | |
| 4491 | 1777 account = ft->gc->account; |
| 2086 | 1778 gtk_widget_destroy(old_ft->window); |
| 1779 | |
| 1780 g_snprintf(buf, sizeof(buf), "toc_rvous_accept %s %s %s", ft->user, ft->cookie, FILE_SEND_UID); | |
| 1781 sflap_send(ft->gc, buf, -1, TYPE_DATA); | |
| 1782 | |
|
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5679
diff
changeset
|
1783 if (gaim_proxy_connect(account, ft->ip, ft->port, toc_send_file_connect, ft) != 0) { |
|
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5234
diff
changeset
|
1784 gaim_notify_error(ft->gc, NULL, |
|
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5234
diff
changeset
|
1785 _("Could not connect for transfer."), NULL); |
| 2086 | 1786 g_free(ft->filename); |
| 1787 g_free(ft->cookie); | |
| 1788 g_free(ft->user); | |
| 1789 g_free(ft->ip); | |
| 1790 g_free(ft); | |
| 1791 return; | |
| 1792 } | |
| 1793 } | |
| 1794 | |
|
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1795 static void toc_get_file_callback(gpointer data, gint source, GaimInputCondition cond) |
| 2086 | 1796 { |
| 1797 char buf[BUF_LONG]; | |
| 1798 | |
| 1799 struct file_transfer *ft = data; | |
| 1800 | |
|
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1801 if (cond & GAIM_INPUT_WRITE) { |
| 2086 | 1802 int remain = MIN(ntohl(ft->hdr.totsize) - ft->recvsize, 1024); |
| 1803 int i; | |
| 1804 for (i = 0; i < remain; i++) | |
| 1805 fscanf(ft->file, "%c", &buf[i]); | |
| 3630 | 1806 toc_write(source, buf, remain); |
| 2086 | 1807 ft->recvsize += remain; |
| 1808 if (ft->recvsize == ntohl(ft->hdr.totsize)) { | |
|
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1809 gaim_input_remove(ft->inpa); |
|
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1810 ft->inpa = gaim_input_add(source, GAIM_INPUT_READ, |
| 2086 | 1811 toc_get_file_callback, ft); |
| 1812 } | |
| 1813 return; | |
| 1814 } | |
| 1815 | |
| 1816 if (ft->hdr.hdrtype == htons(0x1108)) { | |
| 1817 struct tm *fortime; | |
| 1818 struct stat st; | |
| 4793 | 1819 char *basename; |
| 2086 | 1820 |
| 3630 | 1821 toc_read(source, ft, 8); |
| 1822 toc_read(source, &ft->hdr.bcookie, MIN(256 - 8, ntohs(ft->hdr.hdrlen) - 8)); | |
| 2086 | 1823 debug_header(ft); |
| 1824 | |
| 1825 stat(ft->filename, &st); | |
| 1826 fortime = localtime(&st.st_mtime); | |
| 4793 | 1827 basename = g_path_get_basename(ft->filename); |
| 2086 | 1828 g_snprintf(buf, sizeof(buf), "%2d/%2d/%4d %2d:%2d %8ld %s\r\n", |
| 1829 fortime->tm_mon + 1, fortime->tm_mday, fortime->tm_year + 1900, | |
| 1830 fortime->tm_hour + 1, fortime->tm_min + 1, (long)st.st_size, | |
| 4793 | 1831 basename); |
| 3630 | 1832 toc_write(source, buf, ntohl(ft->hdr.size)); |
| 4793 | 1833 g_free(basename); |
| 2086 | 1834 return; |
| 1835 } | |
| 1836 | |
| 1837 if (ft->hdr.hdrtype == htons(0x1209)) { | |
| 3630 | 1838 toc_read(source, ft, 8); |
| 1839 toc_read(source, &ft->hdr.bcookie, MIN(256 - 8, ntohs(ft->hdr.hdrlen) - 8)); | |
| 2086 | 1840 debug_header(ft); |
| 1841 return; | |
| 1842 } | |
| 1843 | |
| 1844 if (ft->hdr.hdrtype == htons(0x120b)) { | |
| 3630 | 1845 toc_read(source, ft, 8); |
| 1846 toc_read(source, &ft->hdr.bcookie, MIN(256 - 8, ntohs(ft->hdr.hdrlen) - 8)); | |
| 2086 | 1847 debug_header(ft); |
| 1848 | |
| 1849 if (ft->hdr.hdrtype != htons(0x120c)) { | |
| 1850 g_snprintf(buf, sizeof(buf), "%s decided to cancel the transfer", ft->user); | |
|
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5234
diff
changeset
|
1851 gaim_notify_error(ft->gc, NULL, buf, NULL); |
|
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1852 gaim_input_remove(ft->inpa); |
| 3630 | 1853 toc_soc_close(source); |
| 2086 | 1854 g_free(ft->filename); |
| 1855 g_free(ft->user); | |
| 1856 g_free(ft->ip); | |
| 1857 g_free(ft->cookie); | |
| 1858 if (ft->file) | |
| 1859 fclose(ft->file); | |
| 1860 g_free(ft); | |
| 1861 return; | |
| 1862 } | |
| 1863 | |
| 1864 ft->hdr.hdrtype = 0x0101; | |
| 1865 ft->hdr.totfiles = htons(1); ft->hdr.filesleft = htons(1); | |
| 1866 ft->hdr.flags = 0x20; | |
| 3630 | 1867 toc_write(source, ft, 256); |
| 2086 | 1868 return; |
| 1869 } | |
| 1870 | |
| 1871 if (ft->hdr.hdrtype == 0x0101) { | |
| 3630 | 1872 toc_read(source, ft, 8); |
| 1873 toc_read(source, &ft->hdr.bcookie, MIN(256 - 8, ntohs(ft->hdr.hdrlen) - 8)); | |
| 2086 | 1874 debug_header(ft); |
| 1875 | |
|
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1876 gaim_input_remove(ft->inpa); |
|
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1877 ft->inpa = gaim_input_add(source, GAIM_INPUT_WRITE, |
| 2086 | 1878 toc_get_file_callback, ft); |
| 1879 return; | |
| 1880 } | |
| 1881 | |
| 1882 if (ft->hdr.hdrtype == 0x0202) { | |
| 3630 | 1883 toc_read(source, ft, 8); |
| 1884 toc_read(source, &ft->hdr.bcookie, MIN(256 - 8, ntohs(ft->hdr.hdrlen) - 8)); | |
| 2086 | 1885 debug_header(ft); |
| 1886 | |
|
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1887 gaim_input_remove(ft->inpa); |
| 3630 | 1888 toc_soc_close(source); |
| 2086 | 1889 g_free(ft->filename); |
| 1890 g_free(ft->user); | |
| 1891 g_free(ft->ip); | |
| 1892 g_free(ft->cookie); | |
| 1893 if (ft->file) | |
| 1894 fclose(ft->file); | |
| 1895 g_free(ft); | |
| 1896 return; | |
| 1897 } | |
| 1898 } | |
| 1899 | |
|
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1900 static void toc_get_file_connect(gpointer data, gint src, GaimInputCondition cond) |
| 2086 | 1901 { |
| 1902 struct file_transfer *ft = data; | |
| 1903 struct file_header *hdr; | |
| 1904 char *buf; | |
| 4793 | 1905 char *basename; |
| 2086 | 1906 |
| 1907 if (src == -1) { | |
|
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5234
diff
changeset
|
1908 gaim_notify_error(ft->gc, NULL, |
| 7981 | 1909 _("Could not connect for transfer."), NULL); |
| 2086 | 1910 fclose(ft->file); |
| 1911 g_free(ft->filename); | |
| 1912 g_free(ft->cookie); | |
| 1913 g_free(ft->user); | |
| 1914 g_free(ft->ip); | |
| 1915 g_free(ft); | |
| 1916 return; | |
| 1917 } | |
| 1918 | |
| 1919 hdr = (struct file_header *)ft; | |
| 1920 hdr->magic[0] = 'O'; hdr->magic[1] = 'F'; hdr->magic[2] = 'T'; hdr->magic[3] = '2'; | |
| 1921 hdr->hdrlen = htons(256); | |
| 1922 hdr->hdrtype = htons(0x1108); | |
| 1923 frombase64(ft->cookie, &buf, NULL); | |
| 1924 g_snprintf(hdr->bcookie, 8, "%s", buf); | |
| 1925 g_free(buf); | |
| 1926 hdr->totfiles = htons(1); hdr->filesleft = htons(1); | |
| 1927 hdr->totparts = htons(1); hdr->partsleft = htons(1); | |
| 1928 hdr->totsize = htonl((long)ft->st.st_size); /* combined size of all files */ | |
| 1929 /* size = strlen("mm/dd/yyyy hh:mm sizesize 'name'\r\n") */ | |
| 4793 | 1930 basename = g_path_get_basename(ft->filename); |
| 1931 hdr->size = htonl(28 + strlen(basename)); /* size of listing.txt */ | |
| 1932 g_free(basename); | |
| 2086 | 1933 hdr->modtime = htonl(ft->st.st_mtime); |
| 1934 hdr->checksum = htonl(0x89f70000); /* uh... */ | |
| 1935 g_snprintf(hdr->idstring, 32, "OFT_Windows ICBMFT V1.1 32"); | |
| 1936 hdr->flags = 0x02; | |
| 1937 hdr->lnameoffset = 0x1A; | |
| 1938 hdr->lsizeoffset = 0x10; | |
| 1939 g_snprintf(hdr->name, 64, "listing.txt"); | |
| 3630 | 1940 if (toc_write(src, hdr, 256) < 0) { |
|
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5234
diff
changeset
|
1941 gaim_notify_error(ft->gc, NULL, |
|
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5234
diff
changeset
|
1942 _("Could not write file header. The file will " |
|
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5234
diff
changeset
|
1943 "not be transferred."), NULL); |
| 2086 | 1944 fclose(ft->file); |
| 1945 g_free(ft->filename); | |
| 1946 g_free(ft->cookie); | |
| 1947 g_free(ft->user); | |
| 1948 g_free(ft->ip); | |
| 1949 g_free(ft); | |
| 1950 return; | |
| 1951 } | |
| 1952 | |
|
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
1953 ft->inpa = gaim_input_add(src, GAIM_INPUT_READ, toc_get_file_callback, ft); |
| 2086 | 1954 } |
| 1955 | |
| 1956 static void toc_get_file(gpointer a, struct file_transfer *old_ft) | |
| 1957 { | |
| 1958 struct file_transfer *ft; | |
| 1959 const char *dirname = gtk_file_selection_get_filename(GTK_FILE_SELECTION(old_ft->window)); | |
| 5605 | 1960 GaimAccount *account; |
| 2086 | 1961 char *buf, buf2[BUF_LEN * 2]; |
| 1962 | |
| 5966 | 1963 if (gaim_gtk_check_if_dir(dirname, GTK_FILE_SELECTION(old_ft->window))) |
| 2086 | 1964 return; |
| 1965 ft = g_new0(struct file_transfer, 1); | |
| 1966 ft->filename = g_strdup(dirname); | |
| 1967 ft->file = fopen(ft->filename, "r"); | |
| 1968 if (!ft->file) { | |
| 3427 | 1969 buf = g_strdup_printf("Unable to open %s for transfer.", ft->filename); |
|
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5234
diff
changeset
|
1970 gaim_notify_error(ft->gc, NULL, buf, NULL); |
| 2086 | 1971 g_free(buf); |
| 1972 g_free(ft->filename); | |
| 1973 g_free(ft); | |
| 1974 return; | |
| 1975 } | |
| 1976 if (stat(dirname, &ft->st)) { | |
| 3427 | 1977 buf = g_strdup_printf("Unable to examine %s.", dirname); |
|
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5234
diff
changeset
|
1978 gaim_notify_error(ft->gc, NULL, buf, NULL); |
| 2086 | 1979 g_free(buf); |
| 1980 g_free(ft->filename); | |
| 1981 g_free(ft); | |
| 1982 return; | |
| 1983 } | |
| 1984 ft->cookie = g_strdup(old_ft->cookie); | |
| 1985 ft->user = g_strdup(old_ft->user); | |
| 1986 ft->ip = g_strdup(old_ft->ip); | |
| 1987 ft->port = old_ft->port; | |
| 1988 ft->gc = old_ft->gc; | |
| 4491 | 1989 account = ft->gc->account; |
| 2086 | 1990 gtk_widget_destroy(old_ft->window); |
| 1991 | |
| 1992 g_snprintf(buf2, sizeof(buf2), "toc_rvous_accept %s %s %s", ft->user, ft->cookie, FILE_GET_UID); | |
| 1993 sflap_send(ft->gc, buf2, -1, TYPE_DATA); | |
| 1994 | |
|
5681
46d7ad0dfa26
[gaim-migrate @ 6100]
Christian Hammond <chipx86@chipx86.com>
parents:
5679
diff
changeset
|
1995 if (gaim_proxy_connect(account, ft->ip, ft->port, toc_get_file_connect, ft) < 0) { |
|
5436
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5234
diff
changeset
|
1996 gaim_notify_error(ft->gc, NULL, |
|
ad445074d239
[gaim-migrate @ 5818]
Christian Hammond <chipx86@chipx86.com>
parents:
5234
diff
changeset
|
1997 _("Could not connect for transfer."), NULL); |
| 2086 | 1998 fclose(ft->file); |
| 1999 g_free(ft->filename); | |
| 2000 g_free(ft->cookie); | |
| 2001 g_free(ft->user); | |
| 2002 g_free(ft->ip); | |
| 2003 g_free(ft); | |
| 2004 return; | |
| 2005 } | |
| 2006 } | |
| 2007 | |
| 2008 static void cancel_callback(gpointer a, struct file_transfer *ft) { | |
| 2009 gtk_widget_destroy(ft->window); | |
| 2010 if (a == ft->window) { | |
| 2011 g_free(ft->cookie); | |
| 2012 g_free(ft->user); | |
| 2013 g_free(ft->ip); | |
| 2014 g_free(ft); | |
| 2015 } | |
| 2016 } | |
| 2017 | |
| 3867 | 2018 static void toc_reject_ft(struct ft_request *ft) { |
| 2019 g_free(ft->user); | |
| 2020 g_free(ft->filename); | |
| 2021 g_free(ft->ip); | |
| 2022 g_free(ft->cookie); | |
| 2023 if (ft->message) | |
| 2024 g_free(ft->message); | |
| 2025 g_free(ft); | |
| 2026 } | |
| 2027 | |
| 2028 | |
| 3730 | 2029 static void toc_accept_ft(struct ft_request *fr) { |
| 5605 | 2030 if(g_list_find(gaim_connections_get_all(), fr->gc)) { |
| 4249 | 2031 GtkWidget *window; |
| 2032 char buf[BUF_LEN]; | |
| 2086 | 2033 |
| 4249 | 2034 struct file_transfer *ft = g_new0(struct file_transfer, 1); |
| 2035 ft->gc = fr->gc; | |
| 2036 ft->user = g_strdup(fr->user); | |
| 2037 ft->cookie = g_strdup(fr->cookie); | |
| 2038 ft->ip = g_strdup(fr->ip); | |
| 2039 ft->port = fr->port; | |
| 2040 ft->files = fr->files; | |
| 2086 | 2041 |
| 4249 | 2042 ft->window = window = gtk_file_selection_new(_("Gaim - Save As...")); |
| 2043 g_snprintf(buf, sizeof(buf), "%s/%s", gaim_home_dir(), fr->filename ? fr->filename : ""); | |
| 2044 gtk_file_selection_set_filename(GTK_FILE_SELECTION(window), buf); | |
| 4635 | 2045 g_signal_connect(G_OBJECT(window), "destroy", |
| 2046 G_CALLBACK(cancel_callback), ft); | |
| 2047 g_signal_connect(G_OBJECT(GTK_FILE_SELECTION(ft->window)->cancel_button), | |
| 2048 "clicked", G_CALLBACK(cancel_callback), ft); | |
| 2086 | 2049 |
| 4249 | 2050 if (!strcmp(fr->UID, FILE_SEND_UID)) |
| 4635 | 2051 g_signal_connect(G_OBJECT(GTK_FILE_SELECTION(window)->ok_button), |
| 2052 "clicked", G_CALLBACK(toc_send_file), ft); | |
| 4249 | 2053 else |
| 4635 | 2054 g_signal_connect(G_OBJECT(GTK_FILE_SELECTION(window)->ok_button), |
| 2055 "clicked", G_CALLBACK(toc_get_file), ft); | |
| 2086 | 2056 |
| 4249 | 2057 gtk_widget_show(window); |
| 2058 } | |
| 2059 | |
| 3867 | 2060 toc_reject_ft(fr); |
| 2086 | 2061 } |
| 2062 | |
| 2063 static void accept_file_dialog(struct ft_request *ft) { | |
| 2064 char buf[BUF_LONG]; | |
| 2065 if (!strcmp(ft->UID, FILE_SEND_UID)) { | |
| 2066 /* holy crap. who the fuck would transfer gigabytes through AIM?! */ | |
| 2067 static char *sizes[4] = { "bytes", "KB", "MB", "GB" }; | |
| 2068 float size = ft->size; | |
| 2069 int index = 0; | |
| 2070 while ((index < 4) && (size > 1024)) { | |
| 2071 size /= 1024; | |
| 2072 index++; | |
| 2073 } | |
| 6500 | 2074 g_snprintf(buf, sizeof(buf), |
| 4276 | 2075 ngettext( |
| 2076 "%s requests %s to accept %d file: %s (%.2f %s)%s%s", | |
| 2077 "%s requests %s to accept %d files: %s (%.2f %s)%s%s", | |
| 2078 ft->files), | |
| 5605 | 2079 ft->user, gaim_account_get_username(ft->gc->account), ft->files, |
| 2086 | 2080 ft->filename, size, sizes[index], (ft->message) ? "\n" : "", |
| 2081 (ft->message) ? ft->message : ""); | |
| 2082 } else { | |
| 2083 g_snprintf(buf, sizeof(buf), _("%s requests you to send them a file"), ft->user); | |
| 2084 } | |
|
5498
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
2085 |
|
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
2086 gaim_request_accept_cancel(ft->gc, NULL, buf, NULL, 0, ft, |
|
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
2087 G_CALLBACK(toc_accept_ft), |
|
cce2d7868c78
[gaim-migrate @ 5894]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
2088 G_CALLBACK(toc_reject_ft)); |
| 2086 | 2089 } |
| 6867 | 2090 #endif |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2091 |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2092 static GaimPluginProtocolInfo prpl_info = |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2093 { |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2094 OPT_PROTO_CORRECT_TIME, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2095 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2096 NULL, |
| 8170 | 2097 NULL, |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2098 toc_list_icon, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2099 toc_list_emblems, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2100 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2101 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2102 toc_away_states, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2103 toc_actions, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2104 toc_buddy_menu, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2105 toc_chat_info, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2106 toc_login, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2107 toc_close, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2108 toc_send_im, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2109 toc_set_info, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2110 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2111 toc_get_info, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2112 toc_set_away, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2113 toc_set_dir, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2114 toc_get_dir, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2115 toc_dir_search, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2116 toc_set_idle, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2117 toc_change_passwd, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2118 toc_add_buddy, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2119 toc_add_buddies, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2120 toc_remove_buddy, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2121 toc_remove_buddies, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2122 toc_add_permit, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2123 toc_add_deny, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2124 toc_rem_permit, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2125 toc_rem_deny, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2126 toc_set_permit_deny, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2127 toc_warn, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2128 toc_join_chat, |
| 8562 | 2129 NULL, /* reject chat invite */ |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2130 toc_chat_invite, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2131 toc_chat_leave, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2132 toc_chat_whisper, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2133 toc_chat_send, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2134 toc_keepalive, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2135 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2136 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2137 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2138 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2139 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2140 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2141 NULL, |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2142 NULL, |
| 8586 | 2143 NULL, |
| 2144 NULL, | |
| 2145 NULL, | |
| 2146 NULL, | |
| 2147 NULL, | |
| 2148 NULL, | |
| 2149 NULL, | |
| 2150 NULL, | |
| 2151 NULL, | |
| 2152 NULL | |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2153 }; |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2154 |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2155 static GaimPluginInfo info = |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2156 { |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2157 2, /**< api_version */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2158 GAIM_PLUGIN_PROTOCOL, /**< type */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2159 NULL, /**< ui_requirement */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2160 0, /**< flags */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2161 NULL, /**< dependencies */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2162 GAIM_PRIORITY_DEFAULT, /**< priority */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2163 |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2164 "prpl-toc", /**< id */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2165 "TOC", /**< name */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2166 VERSION, /**< version */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2167 /** summary */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2168 N_("TOC Protocol Plugin"), |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2169 /** description */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2170 N_("TOC Protocol Plugin"), |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2171 NULL, /**< author */ |
|
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6321
diff
changeset
|
2172 GAIM_WEBSITE, /**< homepage */ |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2173 |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2174 NULL, /**< load */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2175 NULL, /**< unload */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2176 NULL, /**< destroy */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2177 |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2178 NULL, /**< ui_info */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2179 &prpl_info /**< extra_info */ |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2180 }; |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2181 |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2182 static void |
|
5920
7d385de2f9cd
[gaim-migrate @ 6360]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
2183 init_plugin(GaimPlugin *plugin) |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2184 { |
|
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5605
diff
changeset
|
2185 GaimAccountOption *option; |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2186 |
|
5685
43ea75092684
[gaim-migrate @ 6106]
Christian Hammond <chipx86@chipx86.com>
parents:
5681
diff
changeset
|
2187 option = gaim_account_option_string_new(_("TOC host"), "server", TOC_HOST); |
|
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5605
diff
changeset
|
2188 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
|
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5605
diff
changeset
|
2189 option); |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2190 |
|
5685
43ea75092684
[gaim-migrate @ 6106]
Christian Hammond <chipx86@chipx86.com>
parents:
5681
diff
changeset
|
2191 option = gaim_account_option_int_new(_("TOC port"), "port", TOC_PORT); |
|
5638
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5605
diff
changeset
|
2192 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
|
0bdfa28c678e
[gaim-migrate @ 6047]
Christian Hammond <chipx86@chipx86.com>
parents:
5605
diff
changeset
|
2193 option); |
|
5205
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2194 |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2195 my_protocol = plugin; |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2196 } |
|
fefad67de2c7
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5136
diff
changeset
|
2197 |
|
5920
7d385de2f9cd
[gaim-migrate @ 6360]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
2198 GAIM_INIT_PLUGIN(toc, init_plugin, info); |
