1 | /***************************************************************************\ |
---|
2 | * * |
---|
3 | * BitlBee - An IRC to IM gateway * |
---|
4 | * Simple module to facilitate twitter functionality. * |
---|
5 | * * |
---|
6 | * Copyright 2009 Geert Mulders <g.c.w.m.mulders@gmail.com> * |
---|
7 | * * |
---|
8 | * This library is free software; you can redistribute it and/or * |
---|
9 | * modify it under the terms of the GNU Lesser General Public * |
---|
10 | * License as published by the Free Software Foundation, version * |
---|
11 | * 2.1. * |
---|
12 | * * |
---|
13 | * This library is distributed in the hope that it will be useful, * |
---|
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * |
---|
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * |
---|
16 | * Lesser General Public License for more details. * |
---|
17 | * * |
---|
18 | * You should have received a copy of the GNU Lesser General Public License * |
---|
19 | * along with this library; if not, write to the Free Software Foundation, * |
---|
20 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * |
---|
21 | * * |
---|
22 | ****************************************************************************/ |
---|
23 | |
---|
24 | /* For strptime(): */ |
---|
25 | #if(__sun) |
---|
26 | #else |
---|
27 | #define _XOPEN_SOURCE |
---|
28 | #endif |
---|
29 | |
---|
30 | #include "twitter_http.h" |
---|
31 | #include "twitter.h" |
---|
32 | #include "bitlbee.h" |
---|
33 | #include "url.h" |
---|
34 | #include "misc.h" |
---|
35 | #include "base64.h" |
---|
36 | #include "xmltree.h" |
---|
37 | #include "twitter_lib.h" |
---|
38 | #include <ctype.h> |
---|
39 | #include <errno.h> |
---|
40 | |
---|
41 | /* GLib < 2.12.0 doesn't have g_ascii_strtoll(), work around using system strtoll(). */ |
---|
42 | /* GLib < 2.12.4 can be buggy: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=488013 */ |
---|
43 | #if !GLIB_CHECK_VERSION(2,12,5) |
---|
44 | #include <stdlib.h> |
---|
45 | #include <limits.h> |
---|
46 | #define g_ascii_strtoll strtoll |
---|
47 | #endif |
---|
48 | |
---|
49 | #define TXL_STATUS 1 |
---|
50 | #define TXL_USER 2 |
---|
51 | #define TXL_ID 3 |
---|
52 | |
---|
53 | struct twitter_xml_list { |
---|
54 | int type; |
---|
55 | gint64 next_cursor; |
---|
56 | GSList *list; |
---|
57 | gpointer data; |
---|
58 | }; |
---|
59 | |
---|
60 | struct twitter_xml_user { |
---|
61 | char *name; |
---|
62 | char *screen_name; |
---|
63 | }; |
---|
64 | |
---|
65 | struct twitter_xml_status { |
---|
66 | time_t created_at; |
---|
67 | char *text; |
---|
68 | struct twitter_xml_user *user; |
---|
69 | guint64 id; |
---|
70 | }; |
---|
71 | |
---|
72 | static void twitter_groupchat_init(struct im_connection *ic); |
---|
73 | |
---|
74 | /** |
---|
75 | * Frees a twitter_xml_user struct. |
---|
76 | */ |
---|
77 | static void txu_free(struct twitter_xml_user *txu) |
---|
78 | { |
---|
79 | if (txu == NULL) |
---|
80 | return; |
---|
81 | g_free(txu->name); |
---|
82 | g_free(txu->screen_name); |
---|
83 | g_free(txu); |
---|
84 | } |
---|
85 | |
---|
86 | |
---|
87 | /** |
---|
88 | * Frees a twitter_xml_status struct. |
---|
89 | */ |
---|
90 | static void txs_free(struct twitter_xml_status *txs) |
---|
91 | { |
---|
92 | g_free(txs->text); |
---|
93 | txu_free(txs->user); |
---|
94 | g_free(txs); |
---|
95 | } |
---|
96 | |
---|
97 | /** |
---|
98 | * Free a twitter_xml_list struct. |
---|
99 | * type is the type of list the struct holds. |
---|
100 | */ |
---|
101 | static void txl_free(struct twitter_xml_list *txl) |
---|
102 | { |
---|
103 | GSList *l; |
---|
104 | if (txl == NULL) |
---|
105 | return; |
---|
106 | for ( l = txl->list; l ; l = g_slist_next(l) ) |
---|
107 | if (txl->type == TXL_STATUS) |
---|
108 | txs_free((struct twitter_xml_status *)l->data); |
---|
109 | else if (txl->type == TXL_ID) |
---|
110 | g_free(l->data); |
---|
111 | g_slist_free(txl->list); |
---|
112 | } |
---|
113 | |
---|
114 | /** |
---|
115 | * Add a buddy if it is not allready added, set the status to logged in. |
---|
116 | */ |
---|
117 | static void twitter_add_buddy(struct im_connection *ic, char *name, const char *fullname) |
---|
118 | { |
---|
119 | struct twitter_data *td = ic->proto_data; |
---|
120 | |
---|
121 | // Check if the buddy is allready in the buddy list. |
---|
122 | if (!bee_user_by_handle( ic->bee, ic, name )) |
---|
123 | { |
---|
124 | char *mode = set_getstr(&ic->acc->set, "mode"); |
---|
125 | |
---|
126 | // The buddy is not in the list, add the buddy and set the status to logged in. |
---|
127 | imcb_add_buddy( ic, name, NULL ); |
---|
128 | imcb_rename_buddy( ic, name, fullname ); |
---|
129 | if (g_strcasecmp(mode, "chat") == 0) |
---|
130 | { |
---|
131 | /* Necessary so that nicks always get translated to the |
---|
132 | exact Twitter username. */ |
---|
133 | imcb_buddy_nick_hint( ic, name, name ); |
---|
134 | imcb_chat_add_buddy( td->home_timeline_gc, name ); |
---|
135 | } |
---|
136 | else if (g_strcasecmp(mode, "many") == 0) |
---|
137 | imcb_buddy_status( ic, name, OPT_LOGGED_IN, NULL, NULL ); |
---|
138 | } |
---|
139 | } |
---|
140 | |
---|
141 | /* Warning: May return a malloc()ed value, which will be free()d on the next |
---|
142 | call. Only for short-term use. */ |
---|
143 | static char *twitter_parse_error(struct http_request *req) |
---|
144 | { |
---|
145 | static char *ret = NULL; |
---|
146 | struct xt_parser *xp = NULL; |
---|
147 | struct xt_node *node; |
---|
148 | |
---|
149 | g_free(ret); |
---|
150 | ret = NULL; |
---|
151 | |
---|
152 | if (req->body_size > 0) |
---|
153 | { |
---|
154 | xp = xt_new(NULL, NULL); |
---|
155 | xt_feed(xp, req->reply_body, req->body_size); |
---|
156 | |
---|
157 | if ((node = xt_find_node(xp->root, "hash")) && |
---|
158 | (node = xt_find_node(node->children, "error")) && |
---|
159 | node->text_len > 0) |
---|
160 | { |
---|
161 | ret = g_strdup_printf("%s (%s)", req->status_string, node->text); |
---|
162 | xt_free(xp); |
---|
163 | return ret; |
---|
164 | } |
---|
165 | |
---|
166 | xt_free(xp); |
---|
167 | } |
---|
168 | |
---|
169 | return req->status_string; |
---|
170 | } |
---|
171 | |
---|
172 | static void twitter_http_get_friends_ids(struct http_request *req); |
---|
173 | |
---|
174 | /** |
---|
175 | * Get the friends ids. |
---|
176 | */ |
---|
177 | void twitter_get_friends_ids(struct im_connection *ic, gint64 next_cursor) |
---|
178 | { |
---|
179 | // Primitive, but hey! It works... |
---|
180 | char* args[2]; |
---|
181 | args[0] = "cursor"; |
---|
182 | args[1] = g_strdup_printf ("%lld", (long long) next_cursor); |
---|
183 | twitter_http(ic, TWITTER_FRIENDS_IDS_URL, twitter_http_get_friends_ids, ic, 0, args, 2); |
---|
184 | |
---|
185 | g_free(args[1]); |
---|
186 | } |
---|
187 | |
---|
188 | /** |
---|
189 | * Function to help fill a list. |
---|
190 | */ |
---|
191 | static xt_status twitter_xt_next_cursor( struct xt_node *node, struct twitter_xml_list *txl ) |
---|
192 | { |
---|
193 | char *end = NULL; |
---|
194 | |
---|
195 | if( node->text ) |
---|
196 | txl->next_cursor = g_ascii_strtoll( node->text, &end, 10 ); |
---|
197 | if( end == NULL ) |
---|
198 | txl->next_cursor = -1; |
---|
199 | |
---|
200 | return XT_HANDLED; |
---|
201 | } |
---|
202 | |
---|
203 | /** |
---|
204 | * Fill a list of ids. |
---|
205 | */ |
---|
206 | static xt_status twitter_xt_get_friends_id_list( struct xt_node *node, struct twitter_xml_list *txl ) |
---|
207 | { |
---|
208 | struct xt_node *child; |
---|
209 | |
---|
210 | // Set the list type. |
---|
211 | txl->type = TXL_ID; |
---|
212 | |
---|
213 | // The root <statuses> node should hold the list of statuses <status> |
---|
214 | // Walk over the nodes children. |
---|
215 | for( child = node->children ; child ; child = child->next ) |
---|
216 | { |
---|
217 | if ( g_strcasecmp( "id", child->name ) == 0) |
---|
218 | { |
---|
219 | // Add the item to the list. |
---|
220 | txl->list = g_slist_append (txl->list, g_memdup( child->text, child->text_len + 1 )); |
---|
221 | } |
---|
222 | else if ( g_strcasecmp( "next_cursor", child->name ) == 0) |
---|
223 | { |
---|
224 | twitter_xt_next_cursor(child, txl); |
---|
225 | } |
---|
226 | } |
---|
227 | |
---|
228 | return XT_HANDLED; |
---|
229 | } |
---|
230 | |
---|
231 | /** |
---|
232 | * Callback for getting the friends ids. |
---|
233 | */ |
---|
234 | static void twitter_http_get_friends_ids(struct http_request *req) |
---|
235 | { |
---|
236 | struct im_connection *ic; |
---|
237 | struct xt_parser *parser; |
---|
238 | struct twitter_xml_list *txl; |
---|
239 | struct twitter_data *td; |
---|
240 | |
---|
241 | ic = req->data; |
---|
242 | |
---|
243 | // Check if the connection is still active. |
---|
244 | if( !g_slist_find( twitter_connections, ic ) ) |
---|
245 | return; |
---|
246 | |
---|
247 | td = ic->proto_data; |
---|
248 | |
---|
249 | // Check if the HTTP request went well. |
---|
250 | if (req->status_code != 200) { |
---|
251 | // It didn't go well, output the error and return. |
---|
252 | if (++td->http_fails >= 5) |
---|
253 | imcb_error(ic, "Could not retrieve friends: %s", twitter_parse_error(req)); |
---|
254 | |
---|
255 | return; |
---|
256 | } else { |
---|
257 | td->http_fails = 0; |
---|
258 | } |
---|
259 | |
---|
260 | txl = g_new0(struct twitter_xml_list, 1); |
---|
261 | |
---|
262 | // Parse the data. |
---|
263 | parser = xt_new( NULL, txl ); |
---|
264 | xt_feed( parser, req->reply_body, req->body_size ); |
---|
265 | twitter_xt_get_friends_id_list(parser->root, txl); |
---|
266 | xt_free( parser ); |
---|
267 | |
---|
268 | if (txl->next_cursor) |
---|
269 | twitter_get_friends_ids(ic, txl->next_cursor); |
---|
270 | |
---|
271 | txl_free(txl); |
---|
272 | g_free(txl); |
---|
273 | } |
---|
274 | |
---|
275 | /** |
---|
276 | * Function to fill a twitter_xml_user struct. |
---|
277 | * It sets: |
---|
278 | * - the name and |
---|
279 | * - the screen_name. |
---|
280 | */ |
---|
281 | static xt_status twitter_xt_get_user( struct xt_node *node, struct twitter_xml_user *txu ) |
---|
282 | { |
---|
283 | struct xt_node *child; |
---|
284 | |
---|
285 | // Walk over the nodes children. |
---|
286 | for( child = node->children ; child ; child = child->next ) |
---|
287 | { |
---|
288 | if ( g_strcasecmp( "name", child->name ) == 0) |
---|
289 | { |
---|
290 | txu->name = g_memdup( child->text, child->text_len + 1 ); |
---|
291 | } |
---|
292 | else if (g_strcasecmp( "screen_name", child->name ) == 0) |
---|
293 | { |
---|
294 | txu->screen_name = g_memdup( child->text, child->text_len + 1 ); |
---|
295 | } |
---|
296 | } |
---|
297 | return XT_HANDLED; |
---|
298 | } |
---|
299 | |
---|
300 | /** |
---|
301 | * Function to fill a twitter_xml_list struct. |
---|
302 | * It sets: |
---|
303 | * - all <user>s from the <users> element. |
---|
304 | */ |
---|
305 | static xt_status twitter_xt_get_users( struct xt_node *node, struct twitter_xml_list *txl ) |
---|
306 | { |
---|
307 | struct twitter_xml_user *txu; |
---|
308 | struct xt_node *child; |
---|
309 | |
---|
310 | // Set the type of the list. |
---|
311 | txl->type = TXL_USER; |
---|
312 | |
---|
313 | // The root <users> node should hold the list of users <user> |
---|
314 | // Walk over the nodes children. |
---|
315 | for( child = node->children ; child ; child = child->next ) |
---|
316 | { |
---|
317 | if ( g_strcasecmp( "user", child->name ) == 0) |
---|
318 | { |
---|
319 | txu = g_new0(struct twitter_xml_user, 1); |
---|
320 | twitter_xt_get_user(child, txu); |
---|
321 | // Put the item in the front of the list. |
---|
322 | txl->list = g_slist_prepend (txl->list, txu); |
---|
323 | } |
---|
324 | } |
---|
325 | |
---|
326 | return XT_HANDLED; |
---|
327 | } |
---|
328 | |
---|
329 | /** |
---|
330 | * Function to fill a twitter_xml_list struct. |
---|
331 | * It calls twitter_xt_get_users to get the <user>s from a <users> element. |
---|
332 | * It sets: |
---|
333 | * - the next_cursor. |
---|
334 | */ |
---|
335 | static xt_status twitter_xt_get_user_list( struct xt_node *node, struct twitter_xml_list *txl ) |
---|
336 | { |
---|
337 | struct xt_node *child; |
---|
338 | |
---|
339 | // Set the type of the list. |
---|
340 | txl->type = TXL_USER; |
---|
341 | |
---|
342 | // The root <user_list> node should hold a users <users> element |
---|
343 | // Walk over the nodes children. |
---|
344 | for( child = node->children ; child ; child = child->next ) |
---|
345 | { |
---|
346 | if ( g_strcasecmp( "users", child->name ) == 0) |
---|
347 | { |
---|
348 | twitter_xt_get_users(child, txl); |
---|
349 | } |
---|
350 | else if ( g_strcasecmp( "next_cursor", child->name ) == 0) |
---|
351 | { |
---|
352 | twitter_xt_next_cursor(child, txl); |
---|
353 | } |
---|
354 | } |
---|
355 | |
---|
356 | return XT_HANDLED; |
---|
357 | } |
---|
358 | |
---|
359 | #ifdef __GLIBC__ |
---|
360 | #define TWITTER_TIME_FORMAT "%a %b %d %H:%M:%S %z %Y" |
---|
361 | #else |
---|
362 | #define TWITTER_TIME_FORMAT "%a %b %d %H:%M:%S +0000 %Y" |
---|
363 | #endif |
---|
364 | |
---|
365 | /** |
---|
366 | * Function to fill a twitter_xml_status struct. |
---|
367 | * It sets: |
---|
368 | * - the status text and |
---|
369 | * - the created_at timestamp and |
---|
370 | * - the status id and |
---|
371 | * - the user in a twitter_xml_user struct. |
---|
372 | */ |
---|
373 | static xt_status twitter_xt_get_status( struct xt_node *node, struct twitter_xml_status *txs ) |
---|
374 | { |
---|
375 | struct xt_node *child, *rt = NULL; |
---|
376 | gboolean truncated = FALSE; |
---|
377 | |
---|
378 | // Walk over the nodes children. |
---|
379 | for( child = node->children ; child ; child = child->next ) |
---|
380 | { |
---|
381 | if ( g_strcasecmp( "text", child->name ) == 0) |
---|
382 | { |
---|
383 | txs->text = g_memdup( child->text, child->text_len + 1 ); |
---|
384 | } |
---|
385 | else if (g_strcasecmp( "truncated", child->name ) == 0 && child->text) |
---|
386 | { |
---|
387 | truncated = bool2int(child->text); |
---|
388 | } |
---|
389 | else if (g_strcasecmp( "retweeted_status", child->name ) == 0) |
---|
390 | { |
---|
391 | rt = child; |
---|
392 | } |
---|
393 | else if (g_strcasecmp( "created_at", child->name ) == 0) |
---|
394 | { |
---|
395 | struct tm parsed; |
---|
396 | |
---|
397 | /* Very sensitive to changes to the formatting of |
---|
398 | this field. :-( Also assumes the timezone used |
---|
399 | is UTC since C time handling functions suck. */ |
---|
400 | if( strptime( child->text, TWITTER_TIME_FORMAT, &parsed ) != NULL ) |
---|
401 | txs->created_at = mktime_utc( &parsed ); |
---|
402 | } |
---|
403 | else if (g_strcasecmp( "user", child->name ) == 0) |
---|
404 | { |
---|
405 | txs->user = g_new0(struct twitter_xml_user, 1); |
---|
406 | twitter_xt_get_user( child, txs->user ); |
---|
407 | } |
---|
408 | else if (g_strcasecmp( "id", child->name ) == 0) |
---|
409 | { |
---|
410 | txs->id = g_ascii_strtoull (child->text, NULL, 10); |
---|
411 | } |
---|
412 | } |
---|
413 | |
---|
414 | /* If it's a truncated retweet, get the original because dots suck. */ |
---|
415 | if (truncated && rt) |
---|
416 | { |
---|
417 | struct twitter_xml_status *rtxs = g_new0(struct twitter_xml_status, 1); |
---|
418 | if (twitter_xt_get_status(rt, rtxs) != XT_HANDLED) |
---|
419 | { |
---|
420 | txs_free(rtxs); |
---|
421 | return XT_HANDLED; |
---|
422 | } |
---|
423 | |
---|
424 | g_free(txs->text); |
---|
425 | txs->text = g_strdup_printf("RT @%s: %s", rtxs->user->screen_name, rtxs->text); |
---|
426 | txs_free(rtxs); |
---|
427 | } |
---|
428 | |
---|
429 | return XT_HANDLED; |
---|
430 | } |
---|
431 | |
---|
432 | /** |
---|
433 | * Function to fill a twitter_xml_list struct. |
---|
434 | * It sets: |
---|
435 | * - all <status>es within the <status> element and |
---|
436 | * - the next_cursor. |
---|
437 | */ |
---|
438 | static xt_status twitter_xt_get_status_list( struct im_connection *ic, struct xt_node *node, struct twitter_xml_list *txl ) |
---|
439 | { |
---|
440 | struct twitter_xml_status *txs; |
---|
441 | struct xt_node *child; |
---|
442 | bee_user_t *bu; |
---|
443 | |
---|
444 | // Set the type of the list. |
---|
445 | txl->type = TXL_STATUS; |
---|
446 | |
---|
447 | // The root <statuses> node should hold the list of statuses <status> |
---|
448 | // Walk over the nodes children. |
---|
449 | for( child = node->children ; child ; child = child->next ) |
---|
450 | { |
---|
451 | if ( g_strcasecmp( "status", child->name ) == 0) |
---|
452 | { |
---|
453 | txs = g_new0(struct twitter_xml_status, 1); |
---|
454 | twitter_xt_get_status(child, txs); |
---|
455 | // Put the item in the front of the list. |
---|
456 | txl->list = g_slist_prepend (txl->list, txs); |
---|
457 | |
---|
458 | if (txs->user && txs->user->screen_name && |
---|
459 | (bu = bee_user_by_handle(ic->bee, ic, txs->user->screen_name))) |
---|
460 | { |
---|
461 | struct twitter_user_data *tud = bu->data; |
---|
462 | |
---|
463 | if (txs->id > tud->last_id) |
---|
464 | { |
---|
465 | tud->last_id = txs->id; |
---|
466 | tud->last_time = txs->created_at; |
---|
467 | } |
---|
468 | } |
---|
469 | } |
---|
470 | else if ( g_strcasecmp( "next_cursor", child->name ) == 0) |
---|
471 | { |
---|
472 | twitter_xt_next_cursor(child, txl); |
---|
473 | } |
---|
474 | } |
---|
475 | |
---|
476 | return XT_HANDLED; |
---|
477 | } |
---|
478 | |
---|
479 | static void twitter_http_get_home_timeline(struct http_request *req); |
---|
480 | |
---|
481 | /** |
---|
482 | * Get the timeline. |
---|
483 | */ |
---|
484 | void twitter_get_home_timeline(struct im_connection *ic, gint64 next_cursor) |
---|
485 | { |
---|
486 | struct twitter_data *td = ic->proto_data; |
---|
487 | |
---|
488 | char* args[4]; |
---|
489 | args[0] = "cursor"; |
---|
490 | args[1] = g_strdup_printf ("%lld", (long long) next_cursor); |
---|
491 | if (td->home_timeline_id) { |
---|
492 | args[2] = "since_id"; |
---|
493 | args[3] = g_strdup_printf ("%llu", (long long unsigned int) td->home_timeline_id); |
---|
494 | } |
---|
495 | |
---|
496 | twitter_http(ic, TWITTER_HOME_TIMELINE_URL, twitter_http_get_home_timeline, ic, 0, args, td->home_timeline_id ? 4 : 2); |
---|
497 | |
---|
498 | g_free(args[1]); |
---|
499 | if (td->home_timeline_id) { |
---|
500 | g_free(args[3]); |
---|
501 | } |
---|
502 | } |
---|
503 | |
---|
504 | static void twitter_groupchat_init(struct im_connection *ic) |
---|
505 | { |
---|
506 | char *name_hint; |
---|
507 | struct groupchat *gc; |
---|
508 | struct twitter_data *td = ic->proto_data; |
---|
509 | |
---|
510 | td->home_timeline_gc = gc = imcb_chat_new( ic, "home/timeline" ); |
---|
511 | |
---|
512 | name_hint = g_strdup_printf( "%s_%s", td->prefix, ic->acc->user ); |
---|
513 | imcb_chat_name_hint( gc, name_hint ); |
---|
514 | g_free( name_hint ); |
---|
515 | } |
---|
516 | |
---|
517 | /** |
---|
518 | * Function that is called to see the statuses in a groupchat window. |
---|
519 | */ |
---|
520 | static void twitter_groupchat(struct im_connection *ic, GSList *list) |
---|
521 | { |
---|
522 | struct twitter_data *td = ic->proto_data; |
---|
523 | GSList *l = NULL; |
---|
524 | struct twitter_xml_status *status; |
---|
525 | struct groupchat *gc; |
---|
526 | |
---|
527 | // Create a new groupchat if it does not exsist. |
---|
528 | if (!td->home_timeline_gc) |
---|
529 | twitter_groupchat_init(ic); |
---|
530 | |
---|
531 | gc = td->home_timeline_gc; |
---|
532 | if (!gc->joined) |
---|
533 | imcb_chat_add_buddy( gc, ic->acc->user ); |
---|
534 | |
---|
535 | for ( l = list; l ; l = g_slist_next(l) ) |
---|
536 | { |
---|
537 | status = l->data; |
---|
538 | if (status->user == NULL || status->text == NULL) |
---|
539 | continue; |
---|
540 | |
---|
541 | twitter_add_buddy(ic, status->user->screen_name, status->user->name); |
---|
542 | |
---|
543 | strip_html(status->text); |
---|
544 | |
---|
545 | // Say it! |
---|
546 | if (g_strcasecmp(td->user, status->user->screen_name) == 0) |
---|
547 | imcb_chat_log (gc, "Your Tweet: %s", status->text); |
---|
548 | else |
---|
549 | imcb_chat_msg (gc, status->user->screen_name, status->text, 0, status->created_at ); |
---|
550 | |
---|
551 | // Update the home_timeline_id to hold the highest id, so that by the next request |
---|
552 | // we won't pick up the updates allready in the list. |
---|
553 | td->home_timeline_id = td->home_timeline_id < status->id ? status->id : td->home_timeline_id; |
---|
554 | } |
---|
555 | } |
---|
556 | |
---|
557 | /** |
---|
558 | * Function that is called to see statuses as private messages. |
---|
559 | */ |
---|
560 | static void twitter_private_message_chat(struct im_connection *ic, GSList *list) |
---|
561 | { |
---|
562 | struct twitter_data *td = ic->proto_data; |
---|
563 | GSList *l = NULL; |
---|
564 | struct twitter_xml_status *status; |
---|
565 | char from[MAX_STRING]; |
---|
566 | gboolean mode_one; |
---|
567 | |
---|
568 | mode_one = g_strcasecmp( set_getstr( &ic->acc->set, "mode" ), "one" ) == 0; |
---|
569 | |
---|
570 | if( mode_one ) |
---|
571 | { |
---|
572 | g_snprintf( from, sizeof( from ) - 1, "%s_%s", td->prefix, ic->acc->user ); |
---|
573 | from[MAX_STRING-1] = '\0'; |
---|
574 | } |
---|
575 | |
---|
576 | for ( l = list; l ; l = g_slist_next(l) ) |
---|
577 | { |
---|
578 | char *text = NULL; |
---|
579 | |
---|
580 | status = l->data; |
---|
581 | |
---|
582 | strip_html( status->text ); |
---|
583 | if( mode_one ) |
---|
584 | text = g_strdup_printf( "\002<\002%s\002>\002 %s", |
---|
585 | status->user->screen_name, status->text ); |
---|
586 | else |
---|
587 | twitter_add_buddy(ic, status->user->screen_name, status->user->name); |
---|
588 | |
---|
589 | imcb_buddy_msg( ic, |
---|
590 | mode_one ? from : status->user->screen_name, |
---|
591 | mode_one ? text : status->text, |
---|
592 | 0, status->created_at ); |
---|
593 | |
---|
594 | // Update the home_timeline_id to hold the highest id, so that by the next request |
---|
595 | // we won't pick up the updates allready in the list. |
---|
596 | td->home_timeline_id = td->home_timeline_id < status->id ? status->id : td->home_timeline_id; |
---|
597 | |
---|
598 | g_free( text ); |
---|
599 | } |
---|
600 | } |
---|
601 | |
---|
602 | /** |
---|
603 | * Callback for getting the home timeline. |
---|
604 | */ |
---|
605 | static void twitter_http_get_home_timeline(struct http_request *req) |
---|
606 | { |
---|
607 | struct im_connection *ic = req->data; |
---|
608 | struct twitter_data *td; |
---|
609 | struct xt_parser *parser; |
---|
610 | struct twitter_xml_list *txl; |
---|
611 | |
---|
612 | // Check if the connection is still active. |
---|
613 | if( !g_slist_find( twitter_connections, ic ) ) |
---|
614 | return; |
---|
615 | |
---|
616 | td = ic->proto_data; |
---|
617 | |
---|
618 | // Check if the HTTP request went well. |
---|
619 | if (req->status_code == 200) |
---|
620 | { |
---|
621 | td->http_fails = 0; |
---|
622 | if (!(ic->flags & OPT_LOGGED_IN)) |
---|
623 | imcb_connected(ic); |
---|
624 | } |
---|
625 | else if (req->status_code == 401) |
---|
626 | { |
---|
627 | imcb_error( ic, "Authentication failure" ); |
---|
628 | imc_logout( ic, FALSE ); |
---|
629 | return; |
---|
630 | } |
---|
631 | else |
---|
632 | { |
---|
633 | // It didn't go well, output the error and return. |
---|
634 | if (++td->http_fails >= 5) |
---|
635 | imcb_error(ic, "Could not retrieve " TWITTER_HOME_TIMELINE_URL ": %s", twitter_parse_error(req)); |
---|
636 | |
---|
637 | return; |
---|
638 | } |
---|
639 | |
---|
640 | txl = g_new0(struct twitter_xml_list, 1); |
---|
641 | txl->list = NULL; |
---|
642 | |
---|
643 | // Parse the data. |
---|
644 | parser = xt_new( NULL, txl ); |
---|
645 | xt_feed( parser, req->reply_body, req->body_size ); |
---|
646 | // The root <statuses> node should hold the list of statuses <status> |
---|
647 | twitter_xt_get_status_list(ic, parser->root, txl); |
---|
648 | xt_free( parser ); |
---|
649 | |
---|
650 | // See if the user wants to see the messages in a groupchat window or as private messages. |
---|
651 | if (g_strcasecmp(set_getstr(&ic->acc->set, "mode"), "chat") == 0) |
---|
652 | twitter_groupchat(ic, txl->list); |
---|
653 | else |
---|
654 | twitter_private_message_chat(ic, txl->list); |
---|
655 | |
---|
656 | // Free the structure. |
---|
657 | txl_free(txl); |
---|
658 | g_free(txl); |
---|
659 | } |
---|
660 | |
---|
661 | /** |
---|
662 | * Callback for getting (twitter)friends... |
---|
663 | * |
---|
664 | * Be afraid, be very afraid! This function will potentially add hundreds of "friends". "Who has |
---|
665 | * hundreds of friends?" you wonder? You probably not, since you are reading the source of |
---|
666 | * BitlBee... Get a life and meet new people! |
---|
667 | */ |
---|
668 | static void twitter_http_get_statuses_friends(struct http_request *req) |
---|
669 | { |
---|
670 | struct im_connection *ic = req->data; |
---|
671 | struct twitter_data *td; |
---|
672 | struct xt_parser *parser; |
---|
673 | struct twitter_xml_list *txl; |
---|
674 | GSList *l = NULL; |
---|
675 | struct twitter_xml_user *user; |
---|
676 | |
---|
677 | // Check if the connection is still active. |
---|
678 | if( !g_slist_find( twitter_connections, ic ) ) |
---|
679 | return; |
---|
680 | |
---|
681 | td = ic->proto_data; |
---|
682 | |
---|
683 | // Check if the HTTP request went well. |
---|
684 | if (req->status_code == 401) |
---|
685 | { |
---|
686 | imcb_error( ic, "Authentication failure" ); |
---|
687 | imc_logout( ic, FALSE ); |
---|
688 | return; |
---|
689 | } else if (req->status_code != 200) { |
---|
690 | // It didn't go well, output the error and return. |
---|
691 | imcb_error(ic, "Could not retrieve " TWITTER_SHOW_FRIENDS_URL ": %s", twitter_parse_error(req)); |
---|
692 | imc_logout( ic, TRUE ); |
---|
693 | return; |
---|
694 | } else { |
---|
695 | td->http_fails = 0; |
---|
696 | } |
---|
697 | |
---|
698 | if( !td->home_timeline_gc && |
---|
699 | g_strcasecmp( set_getstr( &ic->acc->set, "mode" ), "chat" ) == 0 ) |
---|
700 | twitter_groupchat_init( ic ); |
---|
701 | |
---|
702 | txl = g_new0(struct twitter_xml_list, 1); |
---|
703 | txl->list = NULL; |
---|
704 | |
---|
705 | // Parse the data. |
---|
706 | parser = xt_new( NULL, txl ); |
---|
707 | xt_feed( parser, req->reply_body, req->body_size ); |
---|
708 | |
---|
709 | // Get the user list from the parsed xml feed. |
---|
710 | twitter_xt_get_user_list(parser->root, txl); |
---|
711 | xt_free( parser ); |
---|
712 | |
---|
713 | // Add the users as buddies. |
---|
714 | for ( l = txl->list; l ; l = g_slist_next(l) ) |
---|
715 | { |
---|
716 | user = l->data; |
---|
717 | twitter_add_buddy(ic, user->screen_name, user->name); |
---|
718 | } |
---|
719 | |
---|
720 | // if the next_cursor is set to something bigger then 0 there are more friends to gather. |
---|
721 | if (txl->next_cursor > 0) |
---|
722 | { |
---|
723 | twitter_get_statuses_friends(ic, txl->next_cursor); |
---|
724 | } |
---|
725 | else |
---|
726 | { |
---|
727 | td->flags |= TWITTER_HAVE_FRIENDS; |
---|
728 | twitter_login_finish(ic); |
---|
729 | } |
---|
730 | |
---|
731 | // Free the structure. |
---|
732 | txl_free(txl); |
---|
733 | g_free(txl); |
---|
734 | } |
---|
735 | |
---|
736 | /** |
---|
737 | * Get the friends. |
---|
738 | */ |
---|
739 | void twitter_get_statuses_friends(struct im_connection *ic, gint64 next_cursor) |
---|
740 | { |
---|
741 | char* args[2]; |
---|
742 | args[0] = "cursor"; |
---|
743 | args[1] = g_strdup_printf ("%lld", (long long) next_cursor); |
---|
744 | |
---|
745 | twitter_http(ic, TWITTER_SHOW_FRIENDS_URL, twitter_http_get_statuses_friends, ic, 0, args, 2); |
---|
746 | |
---|
747 | g_free(args[1]); |
---|
748 | } |
---|
749 | |
---|
750 | /** |
---|
751 | * Callback to use after sending a post request to twitter. |
---|
752 | */ |
---|
753 | static void twitter_http_post(struct http_request *req) |
---|
754 | { |
---|
755 | struct im_connection *ic = req->data; |
---|
756 | struct twitter_data *td; |
---|
757 | |
---|
758 | // Check if the connection is still active. |
---|
759 | if( !g_slist_find( twitter_connections, ic ) ) |
---|
760 | return; |
---|
761 | |
---|
762 | td = ic->proto_data; |
---|
763 | td->last_status_id = 0; |
---|
764 | |
---|
765 | // Check if the HTTP request went well. |
---|
766 | if (req->status_code != 200) { |
---|
767 | // It didn't go well, output the error and return. |
---|
768 | imcb_error(ic, "HTTP error: %s", twitter_parse_error(req)); |
---|
769 | return; |
---|
770 | } |
---|
771 | |
---|
772 | if (req->body_size > 0) |
---|
773 | { |
---|
774 | struct xt_parser *xp = NULL; |
---|
775 | struct xt_node *node; |
---|
776 | |
---|
777 | xp = xt_new(NULL, NULL); |
---|
778 | xt_feed(xp, req->reply_body, req->body_size); |
---|
779 | |
---|
780 | if ((node = xt_find_node(xp->root, "status")) && |
---|
781 | (node = xt_find_node(node->children, "id")) && node->text) |
---|
782 | td->last_status_id = g_ascii_strtoull( node->text, NULL, 10 ); |
---|
783 | |
---|
784 | xt_free(xp); |
---|
785 | } |
---|
786 | } |
---|
787 | |
---|
788 | /** |
---|
789 | * Function to POST a new status to twitter. |
---|
790 | */ |
---|
791 | void twitter_post_status(struct im_connection *ic, char *msg, guint64 in_reply_to) |
---|
792 | { |
---|
793 | char* args[4] = { |
---|
794 | "status", msg, |
---|
795 | "in_reply_to_status_id", |
---|
796 | g_strdup_printf("%llu", (unsigned long long) in_reply_to) |
---|
797 | }; |
---|
798 | twitter_http(ic, TWITTER_STATUS_UPDATE_URL, twitter_http_post, ic, 1, |
---|
799 | args, in_reply_to ? 4 : 2); |
---|
800 | g_free(args[3]); |
---|
801 | } |
---|
802 | |
---|
803 | |
---|
804 | /** |
---|
805 | * Function to POST a new message to twitter. |
---|
806 | */ |
---|
807 | void twitter_direct_messages_new(struct im_connection *ic, char *who, char *msg) |
---|
808 | { |
---|
809 | char* args[4]; |
---|
810 | args[0] = "screen_name"; |
---|
811 | args[1] = who; |
---|
812 | args[2] = "text"; |
---|
813 | args[3] = msg; |
---|
814 | // Use the same callback as for twitter_post_status, since it does basically the same. |
---|
815 | twitter_http(ic, TWITTER_DIRECT_MESSAGES_NEW_URL, twitter_http_post, ic, 1, args, 4); |
---|
816 | // g_free(args[1]); |
---|
817 | // g_free(args[3]); |
---|
818 | } |
---|
819 | |
---|
820 | void twitter_friendships_create_destroy(struct im_connection *ic, char *who, int create) |
---|
821 | { |
---|
822 | char* args[2]; |
---|
823 | args[0] = "screen_name"; |
---|
824 | args[1] = who; |
---|
825 | twitter_http(ic, create ? TWITTER_FRIENDSHIPS_CREATE_URL : TWITTER_FRIENDSHIPS_DESTROY_URL, twitter_http_post, ic, 1, args, 2); |
---|
826 | } |
---|
827 | |
---|
828 | void twitter_status_destroy(struct im_connection *ic, guint64 id) |
---|
829 | { |
---|
830 | char *url; |
---|
831 | url = g_strdup_printf("%s%llu%s", TWITTER_STATUS_DESTROY_URL, (unsigned long long) id, ".xml"); |
---|
832 | twitter_http(ic, url, twitter_http_post, ic, 1, NULL, 0); |
---|
833 | g_free(url); |
---|
834 | } |
---|
835 | |
---|
836 | void twitter_status_retweet(struct im_connection *ic, guint64 id) |
---|
837 | { |
---|
838 | char *url; |
---|
839 | url = g_strdup_printf("%s%llu%s", TWITTER_STATUS_RETWEET_URL, (unsigned long long) id, ".xml"); |
---|
840 | twitter_http(ic, url, twitter_http_post, ic, 1, NULL, 0); |
---|
841 | g_free(url); |
---|
842 | } |
---|