14192
|
1 /**
|
|
2 * @file ycht.c The Yahoo! protocol plugin, YCHT protocol stuff.
|
|
3 *
|
|
4 * gaim
|
|
5 *
|
|
6 * Copyright (C) 2004 Timothy Ringenbach <omarvo@hotmail.com>
|
|
7 * Liberal amounts of code borrowed from the rest of the Yahoo! prpl.
|
|
8 *
|
|
9 * Gaim is the legal property of its developers, whose names are too numerous
|
|
10 * to list here. Please refer to the COPYRIGHT file distributed with this
|
|
11 * source distribution.
|
|
12 *
|
|
13 * This program is free software; you can redistribute it and/or modify
|
|
14 * it under the terms of the GNU General Public License as published by
|
|
15 * the Free Software Foundation; either version 2 of the License, or
|
|
16 * (at your option) any later version.
|
|
17 *
|
|
18 * This program is distributed in the hope that it will be useful,
|
|
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
21 * GNU General Public License for more details.
|
|
22 *
|
|
23 * You should have received a copy of the GNU General Public License
|
|
24 * along with this program; if not, write to the Free Software
|
|
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
26 */
|
|
27
|
|
28 #include <string.h>
|
|
29
|
|
30 #include "internal.h"
|
|
31 #include "prpl.h"
|
|
32 #include "notify.h"
|
|
33 #include "account.h"
|
|
34 #include "proxy.h"
|
|
35 #include "debug.h"
|
|
36 #include "conversation.h"
|
|
37 #include "util.h"
|
|
38
|
|
39 #include "yahoo.h"
|
|
40 #include "yahoo_packet.h"
|
|
41 #include "ycht.h"
|
|
42 #include "yahoochat.h"
|
|
43
|
|
44 /*
|
|
45 * dword: YCHT
|
|
46 * dword: 0x000000AE
|
|
47 * dword: service
|
|
48 * word: status
|
|
49 * word: size
|
|
50 */
|
|
51 #define YAHOO_CHAT_ID (1)
|
|
52 /************************************************************************************
|
|
53 * Functions to process various kinds of packets.
|
|
54 ************************************************************************************/
|
|
55 static void ycht_process_login(YchtConn *ycht, YchtPkt *pkt)
|
|
56 {
|
|
57 GaimConnection *gc = ycht->gc;
|
|
58 struct yahoo_data *yd = gc->proto_data;
|
|
59
|
|
60 if (ycht->logged_in)
|
|
61 return;
|
|
62
|
|
63 yd->chat_online = TRUE;
|
|
64 ycht->logged_in = TRUE;
|
|
65
|
|
66 if (ycht->room)
|
|
67 ycht_chat_join(ycht, ycht->room);
|
|
68 }
|
|
69
|
|
70 static void ycht_process_logout(YchtConn *ycht, YchtPkt *pkt)
|
|
71 {
|
|
72 GaimConnection *gc = ycht->gc;
|
|
73 struct yahoo_data *yd = gc->proto_data;
|
|
74
|
|
75 yd->chat_online = FALSE;
|
|
76 ycht->logged_in = FALSE;
|
|
77 }
|
|
78
|
|
79 static void ycht_process_chatjoin(YchtConn *ycht, YchtPkt *pkt)
|
|
80 {
|
|
81 char *room, *topic;
|
|
82 GaimConnection *gc = ycht->gc;
|
|
83 GaimConversation *c = NULL;
|
|
84 gboolean new_room = FALSE;
|
|
85 char **members;
|
|
86 int i;
|
|
87
|
|
88 room = g_list_nth_data(pkt->data, 0);
|
|
89 topic = g_list_nth_data(pkt->data, 1);
|
|
90 if (!g_list_nth_data(pkt->data, 4))
|
|
91 return;
|
|
92 if (!room)
|
|
93 return;
|
|
94
|
|
95 members = g_strsplit(g_list_nth_data(pkt->data, 4), "\001", 0);
|
|
96 for (i = 0; members[i]; i++) {
|
|
97 char *tmp = strchr(members[i], '\002');
|
|
98 if (tmp)
|
|
99 *tmp = '\0';
|
|
100 }
|
|
101
|
|
102 if (g_list_length(pkt->data) > 5)
|
|
103 new_room = TRUE;
|
|
104
|
|
105 if (new_room && ycht->changing_rooms) {
|
|
106 serv_got_chat_left(gc, YAHOO_CHAT_ID);
|
|
107 ycht->changing_rooms = FALSE;
|
|
108 c = serv_got_joined_chat(gc, YAHOO_CHAT_ID, room);
|
|
109 } else {
|
|
110 c = gaim_find_chat(gc, YAHOO_CHAT_ID);
|
|
111 }
|
|
112
|
|
113 if (topic)
|
|
114 gaim_conv_chat_set_topic(GAIM_CONV_CHAT(c), NULL, topic);
|
|
115
|
|
116 for (i = 0; members[i]; i++) {
|
|
117 if (new_room) {
|
|
118 /*if (!strcmp(members[i], gaim_connection_get_display_name(ycht->gc)))
|
|
119 continue;*/
|
|
120 gaim_conv_chat_add_user(GAIM_CONV_CHAT(c), members[i], NULL, GAIM_CBFLAGS_NONE, TRUE);
|
|
121 } else {
|
|
122 yahoo_chat_add_user(GAIM_CONV_CHAT(c), members[i], NULL);
|
|
123 }
|
|
124 }
|
|
125
|
|
126 g_strfreev(members);
|
|
127 }
|
|
128
|
|
129 static void ycht_process_chatpart(YchtConn *ycht, YchtPkt *pkt)
|
|
130 {
|
|
131 char *room, *who;
|
|
132
|
|
133 room = g_list_nth_data(pkt->data, 0);
|
|
134 who = g_list_nth_data(pkt->data, 1);
|
|
135
|
|
136 if (who && room) {
|
|
137 GaimConversation *c = gaim_find_chat(ycht->gc, YAHOO_CHAT_ID);
|
|
138 if (c && !gaim_utf8_strcasecmp(gaim_conversation_get_name(c), room))
|
|
139 gaim_conv_chat_remove_user(GAIM_CONV_CHAT(c), who, NULL);
|
|
140
|
|
141 }
|
|
142 }
|
|
143
|
|
144 static void ycht_progress_chatmsg(YchtConn *ycht, YchtPkt *pkt)
|
|
145 {
|
|
146 char *who, *what, *msg;
|
|
147 GaimConversation *c;
|
|
148 GaimConnection *gc = ycht->gc;
|
|
149
|
|
150 who = g_list_nth_data(pkt->data, 1);
|
|
151 what = g_list_nth_data(pkt->data, 2);
|
|
152
|
|
153 if (!who || !what)
|
|
154 return;
|
|
155
|
|
156 c = gaim_find_chat(gc, YAHOO_CHAT_ID);
|
|
157 if (!c)
|
|
158 return;
|
|
159
|
|
160 msg = yahoo_string_decode(gc, what, 1);
|
|
161 what = yahoo_codes_to_html(msg);
|
|
162 g_free(msg);
|
|
163
|
|
164 if (pkt->service == YCHT_SERVICE_CHATMSG_EMOTE) {
|
|
165 char *tmp = g_strdup_printf("/me %s", what);
|
|
166 g_free(what);
|
|
167 what = tmp;
|
|
168 }
|
|
169
|
|
170 serv_got_chat_in(gc, YAHOO_CHAT_ID, who, 0, what, time(NULL));
|
|
171 g_free(what);
|
|
172 }
|
|
173
|
|
174 static void ycht_progress_online_friends(YchtConn *ycht, YchtPkt *pkt)
|
|
175 {
|
|
176 #if 0
|
|
177 GaimConnection *gc = ycht->gc;
|
|
178 struct yahoo_data *yd = gc->proto_data;
|
|
179
|
|
180 if (ycht->logged_in)
|
|
181 return;
|
|
182
|
|
183 yd->chat_online = TRUE;
|
|
184 ycht->logged_in = TRUE;
|
|
185
|
|
186 if (ycht->room)
|
|
187 ycht_chat_join(ycht, ycht->room);
|
|
188 #endif
|
|
189 }
|
|
190
|
|
191 /*****************************************************************************
|
|
192 * Functions dealing with YCHT packets and their contents directly.
|
|
193 *****************************************************************************/
|
|
194 static void ycht_packet_dump(const guchar *data, int len)
|
|
195 {
|
|
196 #ifdef YAHOO_YCHT_DEBUG
|
|
197 int i;
|
|
198
|
|
199 gaim_debug(GAIM_DEBUG_MISC, "yahoo", "");
|
|
200
|
|
201 for (i = 0; i + 1 < len; i += 2) {
|
|
202 if ((i % 16 == 0) && i) {
|
|
203 gaim_debug(GAIM_DEBUG_MISC, NULL, "\n");
|
|
204 gaim_debug(GAIM_DEBUG_MISC, "yahoo", "");
|
|
205 }
|
|
206
|
|
207 gaim_debug(GAIM_DEBUG_MISC, NULL, "%02hhx%02hhx ", data[i], data[i + 1]);
|
|
208 }
|
|
209 if (i < len)
|
|
210 gaim_debug(GAIM_DEBUG_MISC, NULL, "%02hhx", data[i]);
|
|
211
|
|
212 gaim_debug(GAIM_DEBUG_MISC, NULL, "\n");
|
|
213 gaim_debug(GAIM_DEBUG_MISC, "yahoo", "");
|
|
214
|
|
215 for (i = 0; i < len; i++) {
|
|
216 if ((i % 16 == 0) && i) {
|
|
217 gaim_debug(GAIM_DEBUG_MISC, NULL, "\n");
|
|
218 gaim_debug(GAIM_DEBUG_MISC, "yahoo", "");
|
|
219 }
|
|
220
|
|
221 if (g_ascii_isprint(data[i]))
|
|
222 gaim_debug(GAIM_DEBUG_MISC, NULL, "%c ", data[i]);
|
|
223 else
|
|
224 gaim_debug(GAIM_DEBUG_MISC, NULL, ". ");
|
|
225 }
|
|
226
|
|
227 gaim_debug(GAIM_DEBUG_MISC, NULL, "\n");
|
|
228 #endif
|
|
229 }
|
|
230
|
|
231 static YchtPkt *ycht_packet_new(guint version, guint service, int status)
|
|
232 {
|
|
233 YchtPkt *ret;
|
|
234
|
|
235 ret = g_new0(YchtPkt, 1);
|
|
236
|
|
237 ret->version = version;
|
|
238 ret->service = service;
|
|
239 ret->status = status;
|
|
240
|
|
241 return ret;
|
|
242 }
|
|
243
|
|
244 static void ycht_packet_append(YchtPkt *pkt, const char *str)
|
|
245 {
|
|
246 g_return_if_fail(pkt != NULL);
|
|
247 g_return_if_fail(str != NULL);
|
|
248
|
|
249 pkt->data = g_list_append(pkt->data, g_strdup(str));
|
|
250 }
|
|
251
|
|
252 static int ycht_packet_length(YchtPkt *pkt)
|
|
253 {
|
|
254 int ret;
|
|
255 GList *l;
|
|
256
|
|
257 ret = YCHT_HEADER_LEN;
|
|
258
|
|
259 for (l = pkt->data; l; l = l->next) {
|
|
260 ret += strlen(l->data);
|
|
261 if (l->next)
|
|
262 ret += strlen(YCHT_SEP);
|
|
263 }
|
|
264
|
|
265 return ret;
|
|
266 }
|
|
267
|
|
268 static void ycht_packet_send_write_cb(gpointer data, gint source, GaimInputCondition cond)
|
|
269 {
|
|
270 YchtConn *ycht = data;
|
|
271 int ret, writelen;
|
|
272
|
|
273 writelen = gaim_circ_buffer_get_max_read(ycht->txbuf);
|
|
274
|
|
275 if (writelen == 0) {
|
|
276 gaim_input_remove(ycht->tx_handler);
|
|
277 ycht->tx_handler = 0;
|
|
278 return;
|
|
279 }
|
|
280
|
|
281 ret = write(ycht->fd, ycht->txbuf->outptr, writelen);
|
|
282
|
|
283 if (ret < 0 && errno == EAGAIN)
|
|
284 return;
|
|
285 else if (ret <= 0) {
|
|
286 /* TODO: error handling */
|
|
287 /*
|
|
288 gaim_connection_error(gaim_account_get_connection(irc->account),
|
|
289 _("Server has disconnected"));
|
|
290 */
|
|
291 return;
|
|
292 }
|
|
293
|
|
294 gaim_circ_buffer_mark_read(ycht->txbuf, ret);
|
|
295
|
|
296 }
|
|
297
|
|
298 static void ycht_packet_send(YchtConn *ycht, YchtPkt *pkt)
|
|
299 {
|
|
300 int len, pos, written;
|
|
301 char *buf;
|
|
302 GList *l;
|
|
303
|
|
304 g_return_if_fail(ycht != NULL);
|
|
305 g_return_if_fail(pkt != NULL);
|
|
306 g_return_if_fail(ycht->fd != -1);
|
|
307
|
|
308 pos = 0;
|
|
309 len = ycht_packet_length(pkt);
|
|
310 buf = g_malloc(len);
|
|
311
|
|
312 memcpy(buf + pos, "YCHT", 4); pos += 4;
|
|
313 pos += yahoo_put32(buf + pos, pkt->version);
|
|
314 pos += yahoo_put32(buf + pos, pkt->service);
|
|
315 pos += yahoo_put16(buf + pos, pkt->status);
|
|
316 pos += yahoo_put16(buf + pos, len - YCHT_HEADER_LEN);
|
|
317
|
|
318 for (l = pkt->data; l; l = l->next) {
|
|
319 int slen = strlen(l->data);
|
|
320 memcpy(buf + pos, l->data, slen); pos += slen;
|
|
321
|
|
322 if (l->next) {
|
|
323 memcpy(buf + pos, YCHT_SEP, strlen(YCHT_SEP));
|
|
324 pos += strlen(YCHT_SEP);
|
|
325 }
|
|
326 }
|
|
327
|
|
328 if (!ycht->tx_handler)
|
|
329 written = write(ycht->fd, buf, len);
|
|
330 else {
|
|
331 written = -1;
|
|
332 errno = EAGAIN;
|
|
333 }
|
|
334
|
|
335 if (written < 0 && errno == EAGAIN)
|
|
336 written = 0;
|
|
337 else if (written <= 0) {
|
|
338 /* TODO: Error handling (was none before NBIO changes) */
|
|
339 written = 0;
|
|
340 }
|
|
341
|
|
342 if (written < len) {
|
|
343 if (!ycht->tx_handler)
|
|
344 ycht->tx_handler = gaim_input_add(ycht->fd,
|
|
345 GAIM_INPUT_WRITE, ycht_packet_send_write_cb,
|
|
346 ycht);
|
|
347 gaim_circ_buffer_append(ycht->txbuf, buf + written,
|
|
348 len - written);
|
|
349 }
|
|
350
|
|
351 g_free(buf);
|
|
352 }
|
|
353
|
|
354 static void ycht_packet_read(YchtPkt *pkt, const char *buf, int len)
|
|
355 {
|
|
356 const char *pos = buf;
|
|
357 const char *needle;
|
|
358 char *tmp, *tmp2;
|
|
359 int i = 0;
|
|
360
|
|
361 while (len > 0 && (needle = g_strstr_len(pos, len, YCHT_SEP))) {
|
|
362 tmp = g_strndup(pos, needle - pos);
|
|
363 pkt->data = g_list_append(pkt->data, tmp);
|
|
364 len -= needle - pos + strlen(YCHT_SEP);
|
|
365 pos = needle + strlen(YCHT_SEP);
|
|
366 tmp2 = g_strescape(tmp, NULL);
|
|
367 gaim_debug_misc("yahoo", "Data[%d]:\t%s\n", i++, tmp2);
|
|
368 g_free(tmp2);
|
|
369 }
|
|
370
|
|
371 if (len) {
|
|
372 tmp = g_strndup(pos, len);
|
|
373 pkt->data = g_list_append(pkt->data, tmp);
|
|
374 tmp2 = g_strescape(tmp, NULL);
|
|
375 gaim_debug_misc("yahoo", "Data[%d]:\t%s\n", i, tmp2);
|
|
376 g_free(tmp2);
|
|
377 };
|
|
378
|
|
379 gaim_debug_misc("yahoo", "--==End of incoming YCHT packet==--\n");
|
|
380 }
|
|
381
|
|
382 static void ycht_packet_process(YchtConn *ycht, YchtPkt *pkt)
|
|
383 {
|
|
384 if (pkt->data && !strncmp(pkt->data->data, "*** Danger Will Robinson!!!", strlen("*** Danger Will Robinson!!!")))
|
|
385 return;
|
|
386
|
|
387 switch (pkt->service) {
|
|
388 case YCHT_SERVICE_LOGIN:
|
|
389 ycht_process_login(ycht, pkt);
|
|
390 break;
|
|
391 case YCHT_SERVICE_LOGOUT:
|
|
392 ycht_process_logout(ycht, pkt);
|
|
393 break;
|
|
394 case YCHT_SERVICE_CHATJOIN:
|
|
395 ycht_process_chatjoin(ycht, pkt);
|
|
396 break;
|
|
397 case YCHT_SERVICE_CHATPART:
|
|
398 ycht_process_chatpart(ycht, pkt);
|
|
399 break;
|
|
400 case YCHT_SERVICE_CHATMSG:
|
|
401 case YCHT_SERVICE_CHATMSG_EMOTE:
|
|
402 ycht_progress_chatmsg(ycht, pkt);
|
|
403 break;
|
|
404 case YCHT_SERVICE_ONLINE_FRIENDS:
|
|
405 ycht_progress_online_friends(ycht, pkt);
|
|
406 break;
|
|
407 default:
|
|
408 gaim_debug_warning("yahoo", "YCHT: warning, unhandled service 0x%02x\n", pkt->service);
|
|
409 }
|
|
410 }
|
|
411
|
|
412 static void ycht_packet_free(YchtPkt *pkt)
|
|
413 {
|
|
414 GList *l;
|
|
415
|
|
416 g_return_if_fail(pkt != NULL);
|
|
417
|
|
418 for (l = pkt->data; l; l = l->next)
|
|
419 g_free(l->data);
|
|
420 g_list_free(pkt->data);
|
|
421 g_free(pkt);
|
|
422 }
|
|
423
|
|
424 /************************************************************************************
|
|
425 * Functions dealing with connecting and disconnecting and reading data into YchtPkt
|
|
426 * structs, and all that stuff.
|
|
427 ************************************************************************************/
|
|
428
|
|
429 void ycht_connection_close(YchtConn *ycht)
|
|
430 {
|
|
431 struct yahoo_data *yd = ycht->gc->proto_data;
|
|
432
|
|
433 if (yd) {
|
|
434 yd->ycht = NULL;
|
|
435 yd->chat_online = FALSE;
|
|
436 }
|
|
437
|
|
438 if (ycht->fd > 0)
|
|
439 close(ycht->fd);
|
|
440 if (ycht->inpa)
|
|
441 gaim_input_remove(ycht->inpa);
|
|
442
|
|
443 if (ycht->tx_handler)
|
|
444 gaim_input_remove(ycht->tx_handler);
|
|
445
|
|
446 gaim_circ_buffer_destroy(ycht->txbuf);
|
|
447
|
|
448 g_free(ycht->rxqueue);
|
|
449
|
|
450 g_free(ycht);
|
|
451 }
|
|
452
|
|
453 static void ycht_connection_error(YchtConn *ycht, const gchar *error)
|
|
454 {
|
|
455
|
|
456 gaim_notify_info(ycht->gc, NULL, _("Connection problem with the YCHT server."), error);
|
|
457 ycht_connection_close(ycht);
|
|
458 }
|
|
459
|
|
460 static void ycht_pending(gpointer data, gint source, GaimInputCondition cond)
|
|
461 {
|
|
462 YchtConn *ycht = data;
|
|
463 char buf[1024];
|
|
464 int len;
|
|
465
|
|
466 len = read(ycht->fd, buf, sizeof(buf));
|
|
467
|
14426
|
468 if (len < 0) {
|
|
469 gchar *tmp;
|
|
470
|
|
471 if (errno == EAGAIN)
|
|
472 /* No worries */
|
|
473 return;
|
14192
|
474
|
14426
|
475 tmp = g_strdup_printf(_("Lost connection with server\n%s"),
|
|
476 strerror(errno));
|
|
477 ycht_connection_error(ycht, tmp);
|
|
478 g_free(tmp);
|
|
479 return;
|
|
480 } else if (len == 0) {
|
|
481 ycht_connection_error(ycht, _("Server closed the connection."));
|
14192
|
482 return;
|
|
483 }
|
|
484
|
|
485 ycht->rxqueue = g_realloc(ycht->rxqueue, len + ycht->rxlen);
|
|
486 memcpy(ycht->rxqueue + ycht->rxlen, buf, len);
|
|
487 ycht->rxlen += len;
|
|
488
|
|
489 while (1) {
|
|
490 YchtPkt *pkt;
|
|
491 int pos = 0;
|
|
492 int pktlen;
|
|
493 guint service;
|
|
494 guint version;
|
|
495 gint status;
|
|
496
|
|
497 if (ycht->rxlen < YCHT_HEADER_LEN)
|
|
498 return;
|
|
499
|
|
500 if (strncmp("YCHT", (char *)ycht->rxqueue, 4) != 0)
|
|
501 gaim_debug_error("yahoo", "YCHT: protocol error.\n");
|
|
502
|
|
503 pos += 4; /* YCHT */
|
|
504
|
|
505 version = yahoo_get32(ycht->rxqueue + pos); pos += 4;
|
|
506 service = yahoo_get32(ycht->rxqueue + pos); pos += 4;
|
|
507 status = yahoo_get16(ycht->rxqueue + pos); pos += 2;
|
|
508 pktlen = yahoo_get16(ycht->rxqueue + pos); pos += 2;
|
|
509 gaim_debug(GAIM_DEBUG_MISC, "yahoo",
|
|
510 "ycht: %d bytes to read, rxlen is %d\n", pktlen, ycht->rxlen);
|
|
511
|
|
512 if (ycht->rxlen < (YCHT_HEADER_LEN + pktlen))
|
|
513 return;
|
|
514
|
|
515 gaim_debug_misc("yahoo", "--==Incoming YCHT packet==--\n");
|
|
516 gaim_debug(GAIM_DEBUG_MISC, "yahoo",
|
|
517 "YCHT Service: 0x%02x Version: 0x%02x Status: 0x%02x\n",
|
|
518 service, version, status);
|
|
519 ycht_packet_dump(ycht->rxqueue, YCHT_HEADER_LEN + pktlen);
|
|
520
|
|
521 pkt = ycht_packet_new(version, service, status);
|
|
522 ycht_packet_read(pkt, (char *)ycht->rxqueue + pos, pktlen);
|
|
523
|
|
524 ycht->rxlen -= YCHT_HEADER_LEN + pktlen;
|
|
525 if (ycht->rxlen) {
|
|
526 guchar *tmp = g_memdup(ycht->rxqueue + YCHT_HEADER_LEN + pktlen, ycht->rxlen);
|
|
527 g_free(ycht->rxqueue);
|
|
528 ycht->rxqueue = tmp;
|
|
529 } else {
|
|
530 g_free(ycht->rxqueue);
|
|
531 ycht->rxqueue = NULL;
|
|
532 }
|
|
533
|
|
534 ycht_packet_process(ycht, pkt);
|
|
535
|
|
536 ycht_packet_free(pkt);
|
|
537 }
|
|
538 }
|
|
539
|
|
540 static void ycht_got_connected(gpointer data, gint source, const gchar *error_message)
|
|
541 {
|
|
542 YchtConn *ycht = data;
|
|
543 GaimConnection *gc = ycht->gc;
|
|
544 struct yahoo_data *yd = gc->proto_data;
|
|
545 YchtPkt *pkt;
|
|
546 char *buf;
|
|
547
|
|
548 if (source < 0) {
|
|
549 ycht_connection_error(ycht, _("Unable to connect."));
|
|
550 return;
|
|
551 }
|
|
552
|
|
553 ycht->fd = source;
|
|
554
|
|
555 pkt = ycht_packet_new(YCHT_VERSION, YCHT_SERVICE_LOGIN, 0);
|
|
556
|
|
557 buf = g_strdup_printf("%s\001Y=%s; T=%s", gaim_connection_get_display_name(gc), yd->cookie_y, yd->cookie_t);
|
|
558 ycht_packet_append(pkt, buf);
|
|
559 g_free(buf);
|
|
560
|
|
561 ycht_packet_send(ycht, pkt);
|
|
562
|
|
563 ycht_packet_free(pkt);
|
|
564
|
|
565 ycht->inpa = gaim_input_add(ycht->fd, GAIM_INPUT_READ, ycht_pending, ycht);
|
|
566 }
|
|
567
|
|
568 void ycht_connection_open(GaimConnection *gc)
|
|
569 {
|
|
570 YchtConn *ycht;
|
|
571 struct yahoo_data *yd = gc->proto_data;
|
|
572 GaimAccount *account = gaim_connection_get_account(gc);
|
|
573
|
|
574 ycht = g_new0(YchtConn, 1);
|
|
575 ycht->gc = gc;
|
|
576 ycht->fd = -1;
|
|
577
|
|
578 yd->ycht = ycht;
|
|
579
|
|
580 if (gaim_proxy_connect(account,
|
|
581 gaim_account_get_string(account, "ycht-server", YAHOO_YCHT_HOST),
|
|
582 gaim_account_get_int(account, "ycht-port", YAHOO_YCHT_PORT),
|
|
583 ycht_got_connected, ycht) == NULL)
|
|
584 {
|
|
585 ycht_connection_error(ycht, _("Connection problem"));
|
|
586 return;
|
|
587 }
|
|
588 }
|
|
589
|
|
590 /*******************************************************************************************
|
|
591 * These are functions called because the user did something.
|
|
592 *******************************************************************************************/
|
|
593
|
|
594 void ycht_chat_join(YchtConn *ycht, const char *room)
|
|
595 {
|
|
596 YchtPkt *pkt;
|
|
597 char *tmp;
|
|
598
|
|
599 tmp = g_strdup(room);
|
|
600 g_free(ycht->room);
|
|
601 ycht->room = tmp;
|
|
602
|
|
603 if (!ycht->logged_in)
|
|
604 return;
|
|
605
|
|
606 ycht->changing_rooms = TRUE;
|
|
607 pkt = ycht_packet_new(YCHT_VERSION, YCHT_SERVICE_CHATJOIN, 0);
|
|
608 ycht_packet_append(pkt, ycht->room);
|
|
609 ycht_packet_send(ycht, pkt);
|
|
610 ycht_packet_free(pkt);
|
|
611 }
|
|
612
|
|
613 int ycht_chat_send(YchtConn *ycht, const char *room, const char *what)
|
|
614 {
|
|
615 YchtPkt *pkt;
|
|
616 char *msg1, *msg2, *buf;
|
|
617
|
|
618 if (strcmp(room, ycht->room))
|
|
619 gaim_debug_warning("yahoo", "uhoh, sending to the wrong room!\n");
|
|
620
|
|
621 pkt = ycht_packet_new(YCHT_VERSION, YCHT_SERVICE_CHATMSG, 0);
|
|
622
|
|
623 msg1 = yahoo_html_to_codes(what);
|
|
624 msg2 = yahoo_string_encode(ycht->gc, msg1, NULL);
|
|
625 g_free(msg1);
|
|
626
|
|
627 buf = g_strdup_printf("%s\001%s", ycht->room, msg2);
|
|
628 ycht_packet_append(pkt, buf);
|
|
629 g_free(msg2);
|
|
630 g_free(buf);
|
|
631
|
|
632 ycht_packet_send(ycht, pkt);
|
|
633 ycht_packet_free(pkt);
|
|
634 return 1;
|
|
635 }
|
|
636
|
|
637 void ycht_chat_leave(YchtConn *ycht, const char *room, gboolean logout)
|
|
638 {
|
|
639 if (logout)
|
|
640 ycht_connection_close(ycht);
|
|
641 }
|
|
642
|
|
643 void ycht_chat_send_invite(YchtConn *ycht, const char *room, const char *buddy, const char *msg)
|
|
644 {
|
|
645 }
|
|
646
|
|
647 void ycht_chat_goto_user(YchtConn *ycht, const char *name)
|
|
648 {
|
|
649 }
|
|
650
|
|
651 void ycht_chat_send_keepalive(YchtConn *ycht)
|
|
652 {
|
|
653 YchtPkt *pkt;
|
|
654
|
|
655 pkt = ycht_packet_new(YCHT_VERSION, YCHT_SERVICE_PING, 0);
|
|
656 ycht_packet_send(ycht, pkt);
|
|
657 ycht_packet_free(pkt);
|
|
658 }
|