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