source: protocols/twitter/twitter_lib.c @ 5246133

Last change on this file since 5246133 was 5246133, checked in by Wilmer van der Gaast <wilmer@…>, at 2012-11-09T00:23:44Z

Updated error response parsing. Also, use this for 401 responses so for example
the auth errors caused by NTP desync are clearer:

<root> twitter - Login error: Authentication failure (401 Unauthorized

(Timestamp out of bounds))

  • Property mode set to 100644
File size: 28.6 KB
Line 
1/***************************************************************************\
2*                                                                           *
3*  BitlBee - An IRC to IM gateway                                           *
4*  Simple module to facilitate twitter functionality.                       *
5*                                                                           *
6*  Copyright 2009-2010 Geert Mulders <g.c.w.m.mulders@gmail.com>            *
7*  Copyright 2010-2012 Wilmer van der Gaast <wilmer@gaast.net>              *
8*                                                                           *
9*  This library is free software; you can redistribute it and/or            *
10*  modify it under the terms of the GNU Lesser General Public               *
11*  License as published by the Free Software Foundation, version            *
12*  2.1.                                                                     *
13*                                                                           *
14*  This library is distributed in the hope that it will be useful,          *
15*  but WITHOUT ANY WARRANTY; without even the implied warranty of           *
16*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU        *
17*  Lesser General Public License for more details.                          *
18*                                                                           *
19*  You should have received a copy of the GNU Lesser General Public License *
20*  along with this library; if not, write to the Free Software Foundation,  *
21*  Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA           *
22*                                                                           *
23****************************************************************************/
24
25/* For strptime(): */
26#if(__sun)
27#else
28#define _XOPEN_SOURCE
29#endif
30
31#include "twitter_http.h"
32#include "twitter.h"
33#include "bitlbee.h"
34#include "url.h"
35#include "misc.h"
36#include "base64.h"
37#include "xmltree.h"
38#include "twitter_lib.h"
39#include "json_util.h"
40#include <ctype.h>
41#include <errno.h>
42
43/* GLib < 2.12.0 doesn't have g_ascii_strtoll(), work around using system strtoll(). */
44/* GLib < 2.12.4 can be buggy: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=488013 */
45#if !GLIB_CHECK_VERSION(2,12,5)
46#include <stdlib.h>
47#include <limits.h>
48#define g_ascii_strtoll strtoll
49#endif
50
51#define TXL_STATUS 1
52#define TXL_USER 2
53#define TXL_ID 3
54
55struct twitter_xml_list {
56        int type;
57        gint64 next_cursor;
58        GSList *list;
59};
60
61struct twitter_xml_user {
62        char *name;
63        char *screen_name;
64};
65
66struct twitter_xml_status {
67        time_t created_at;
68        char *text;
69        struct twitter_xml_user *user;
70        guint64 id, reply_to;
71};
72
73static void twitter_groupchat_init(struct im_connection *ic);
74
75/**
76 * Frees a twitter_xml_user struct.
77 */
78static void txu_free(struct twitter_xml_user *txu)
79{
80        if (txu == NULL)
81                return;
82
83        g_free(txu->name);
84        g_free(txu->screen_name);
85        g_free(txu);
86}
87
88/**
89 * Frees a twitter_xml_status struct.
90 */
91static void txs_free(struct twitter_xml_status *txs)
92{
93        if (txs == NULL)
94                return;
95
96        g_free(txs->text);
97        txu_free(txs->user);
98        g_free(txs);
99}
100
101/**
102 * Free a twitter_xml_list struct.
103 * type is the type of list the struct holds.
104 */
105static void txl_free(struct twitter_xml_list *txl)
106{
107        GSList *l;
108        if (txl == NULL)
109                return;
110
111        for (l = txl->list; l; l = g_slist_next(l)) {
112                if (txl->type == TXL_STATUS) {
113                        txs_free((struct twitter_xml_status *) l->data);
114                } else if (txl->type == TXL_ID) {
115                        g_free(l->data);
116                } else if (txl->type == TXL_USER) {
117                        txu_free(l->data);
118                }
119        }
120
121        g_slist_free(txl->list);
122        g_free(txl);
123}
124
125/**
126 * Compare status elements
127 */
128static gint twitter_compare_elements(gconstpointer a, gconstpointer b)
129{
130        struct twitter_xml_status *a_status = (struct twitter_xml_status *) a;
131        struct twitter_xml_status *b_status = (struct twitter_xml_status *) b;
132
133        if (a_status->created_at < b_status->created_at) {
134                return -1;
135        } else if (a_status->created_at > b_status->created_at) {
136                return 1;
137        } else {
138                return 0;
139        }
140}
141
142/**
143 * Add a buddy if it is not already added, set the status to logged in.
144 */
145static void twitter_add_buddy(struct im_connection *ic, char *name, const char *fullname)
146{
147        struct twitter_data *td = ic->proto_data;
148
149        // Check if the buddy is already in the buddy list.
150        if (!bee_user_by_handle(ic->bee, ic, name)) {
151                char *mode = set_getstr(&ic->acc->set, "mode");
152
153                // The buddy is not in the list, add the buddy and set the status to logged in.
154                imcb_add_buddy(ic, name, NULL);
155                imcb_rename_buddy(ic, name, fullname);
156                if (g_strcasecmp(mode, "chat") == 0) {
157                        /* Necessary so that nicks always get translated to the
158                           exact Twitter username. */
159                        imcb_buddy_nick_hint(ic, name, name);
160                        imcb_chat_add_buddy(td->timeline_gc, name);
161                } else if (g_strcasecmp(mode, "many") == 0)
162                        imcb_buddy_status(ic, name, OPT_LOGGED_IN, NULL, NULL);
163        }
164}
165
166/* Warning: May return a malloc()ed value, which will be free()d on the next
167   call. Only for short-term use. NOT THREADSAFE!  */
168char *twitter_parse_error(struct http_request *req)
169{
170        static char *ret = NULL;
171        json_value *root, *err;
172
173        g_free(ret);
174        ret = NULL;
175
176        if (req->body_size > 0) {
177                root = json_parse(req->reply_body);
178                err = json_o_get(root, "errors");
179                if (err->type == json_array && (err = err->u.array.values[0]) &&
180                    err->type == json_object) {
181                        const char *msg = json_o_str(err, "message");
182                        if (msg)
183                                ret = g_strdup_printf("%s (%s)", req->status_string, msg);
184                }
185                json_value_free(root);
186        }
187
188        return ret ? ret : req->status_string;
189}
190
191/* WATCH OUT: This function might or might not destroy your connection.
192   Sub-optimal indeed, but just be careful when this returns NULL! */
193static json_value *twitter_parse_response(struct im_connection *ic, struct http_request *req)
194{
195        gboolean logging_in = !(ic->flags & OPT_LOGGED_IN);
196        gboolean periodic;
197        struct twitter_data *td = ic->proto_data;
198        json_value *ret;
199        char path[64] = "", *s;
200       
201        if ((s = strchr(req->request, ' '))) {
202                path[sizeof(path)-1] = '\0';
203                strncpy(path, s + 1, sizeof(path) - 1);
204                if ((s = strchr(path, '?')) || (s = strchr(path, ' ')))
205                        *s = '\0';
206        }
207       
208        /* Kinda nasty. :-( Trying to suppress error messages, but only
209           for periodic (i.e. mentions/timeline) queries. */
210        periodic = strstr(path, "timeline") || strstr(path, "mentions");
211       
212        if (req->status_code == 401 && logging_in) {
213                /* IIRC Twitter once had an outage where they were randomly
214                   throwing 401s so I'll keep treating this one as fatal
215                   only during login. */
216                imcb_error(ic, "Authentication failure (%s)",
217                               twitter_parse_error(req));
218                imc_logout(ic, FALSE);
219                return NULL;
220        } else if (req->status_code != 200) {
221                // It didn't go well, output the error and return.
222                if (!periodic || logging_in || ++td->http_fails >= 5)
223                        imcb_error(ic, "Could not retrieve %s: %s",
224                                   path, twitter_parse_error(req));
225               
226                if (logging_in)
227                        imc_logout(ic, TRUE);
228                return NULL;
229        } else {
230                td->http_fails = 0;
231        }
232
233        if ((ret = json_parse(req->reply_body)) == NULL) {
234                imcb_error(ic, "Could not retrieve %s: %s",
235                           path, "XML parse error");
236        }
237        return ret;
238}
239
240static void twitter_http_get_friends_ids(struct http_request *req);
241
242/**
243 * Get the friends ids.
244 */
245void twitter_get_friends_ids(struct im_connection *ic, gint64 next_cursor)
246{
247        // Primitive, but hey! It works...     
248        char *args[2];
249        args[0] = "cursor";
250        args[1] = g_strdup_printf("%lld", (long long) next_cursor);
251        twitter_http(ic, TWITTER_FRIENDS_IDS_URL, twitter_http_get_friends_ids, ic, 0, args, 2);
252
253        g_free(args[1]);
254}
255
256/**
257 * Fill a list of ids.
258 */
259static xt_status twitter_xt_get_friends_id_list(json_value *node, struct twitter_xml_list *txl)
260{
261        json_value *c;
262        int i;
263
264        // Set the list type.
265        txl->type = TXL_ID;
266
267        c = json_o_get(node, "ids");
268        if (!c || c->type != json_array)
269                return XT_ABORT;
270
271        for (i = 0; i < c->u.array.length; i ++) {
272                if (c->u.array.values[i]->type != json_integer)
273                        continue;
274               
275                txl->list = g_slist_prepend(txl->list,
276                        g_strdup_printf("%lld", c->u.array.values[i]->u.integer));
277               
278        }
279       
280        c = json_o_get(node, "next_cursor");
281        if (c && c->type == json_integer)
282                txl->next_cursor = c->u.integer;
283        else
284                txl->next_cursor = -1;
285       
286        return XT_HANDLED;
287}
288
289static void twitter_get_users_lookup(struct im_connection *ic);
290
291/**
292 * Callback for getting the friends ids.
293 */
294static void twitter_http_get_friends_ids(struct http_request *req)
295{
296        struct im_connection *ic;
297        json_value *parsed;
298        struct twitter_xml_list *txl;
299        struct twitter_data *td;
300
301        ic = req->data;
302
303        // Check if the connection is still active.
304        if (!g_slist_find(twitter_connections, ic))
305                return;
306
307        td = ic->proto_data;
308
309        /* Create the room now that we "logged in". */
310        if (!td->timeline_gc && g_strcasecmp(set_getstr(&ic->acc->set, "mode"), "chat") == 0)
311                twitter_groupchat_init(ic);
312
313        txl = g_new0(struct twitter_xml_list, 1);
314        txl->list = td->follow_ids;
315
316        // Parse the data.
317        if (!(parsed = twitter_parse_response(ic, req)))
318                return;
319       
320        twitter_xt_get_friends_id_list(parsed, txl);
321        json_value_free(parsed);
322
323        td->follow_ids = txl->list;
324        if (txl->next_cursor)
325                /* These were just numbers. Up to 4000 in a response AFAIK so if we get here
326                   we may be using a spammer account. \o/ */
327                twitter_get_friends_ids(ic, txl->next_cursor);
328        else
329                /* Now to convert all those numbers into names.. */
330                twitter_get_users_lookup(ic);
331
332        txl->list = NULL;
333        txl_free(txl);
334}
335
336static xt_status twitter_xt_get_users(json_value *node, struct twitter_xml_list *txl);
337static void twitter_http_get_users_lookup(struct http_request *req);
338
339static void twitter_get_users_lookup(struct im_connection *ic)
340{
341        struct twitter_data *td = ic->proto_data;
342        char *args[2] = {
343                "user_id",
344                NULL,
345        };
346        GString *ids = g_string_new("");
347        int i;
348       
349        /* We can request up to 100 users at a time. */
350        for (i = 0; i < 100 && td->follow_ids; i ++) {
351                g_string_append_printf(ids, ",%s", (char*) td->follow_ids->data);
352                g_free(td->follow_ids->data);
353                td->follow_ids = g_slist_remove(td->follow_ids, td->follow_ids->data);
354        }
355        if (ids->len > 0) {
356                args[1] = ids->str + 1;
357                /* POST, because I think ids can be up to 1KB long. */
358                twitter_http(ic, TWITTER_USERS_LOOKUP_URL, twitter_http_get_users_lookup, ic, 1, args, 2);
359        } else {
360                /* We have all users. Continue with login. (Get statuses.) */
361                td->flags |= TWITTER_HAVE_FRIENDS;
362                twitter_login_finish(ic);
363        }
364        g_string_free(ids, TRUE);
365}
366
367/**
368 * Callback for getting (twitter)friends...
369 *
370 * Be afraid, be very afraid! This function will potentially add hundreds of "friends". "Who has
371 * hundreds of friends?" you wonder? You probably not, since you are reading the source of
372 * BitlBee... Get a life and meet new people!
373 */
374static void twitter_http_get_users_lookup(struct http_request *req)
375{
376        struct im_connection *ic = req->data;
377        json_value *parsed;
378        struct twitter_xml_list *txl;
379        GSList *l = NULL;
380        struct twitter_xml_user *user;
381
382        // Check if the connection is still active.
383        if (!g_slist_find(twitter_connections, ic))
384                return;
385
386        txl = g_new0(struct twitter_xml_list, 1);
387        txl->list = NULL;
388
389        // Get the user list from the parsed xml feed.
390        if (!(parsed = twitter_parse_response(ic, req)))
391                return;
392        twitter_xt_get_users(parsed, txl);
393        json_value_free(parsed);
394
395        // Add the users as buddies.
396        for (l = txl->list; l; l = g_slist_next(l)) {
397                user = l->data;
398                twitter_add_buddy(ic, user->screen_name, user->name);
399        }
400
401        // Free the structure.
402        txl_free(txl);
403
404        twitter_get_users_lookup(ic);
405}
406
407struct twitter_xml_user *twitter_xt_get_user(const json_value *node)
408{
409        struct twitter_xml_user *txu;
410       
411        txu = g_new0(struct twitter_xml_user, 1);
412        txu->name = g_strdup(json_o_str(node, "name"));
413        txu->screen_name = g_strdup(json_o_str(node, "screen_name"));
414       
415        return txu;
416}
417
418/**
419 * Function to fill a twitter_xml_list struct.
420 * It sets:
421 *  - all <user>s from the <users> element.
422 */
423static xt_status twitter_xt_get_users(json_value *node, struct twitter_xml_list *txl)
424{
425        struct twitter_xml_user *txu;
426        int i;
427
428        // Set the type of the list.
429        txl->type = TXL_USER;
430
431        if (!node || node->type != json_array)
432                return XT_ABORT;
433
434        // The root <users> node should hold the list of users <user>
435        // Walk over the nodes children.
436        for (i = 0; i < node->u.array.length; i ++) {
437                txu = twitter_xt_get_user(node->u.array.values[i]);
438                if (txu)
439                        txl->list = g_slist_prepend(txl->list, txu);
440        }
441
442        return XT_HANDLED;
443}
444
445#ifdef __GLIBC__
446#define TWITTER_TIME_FORMAT "%a %b %d %H:%M:%S %z %Y"
447#else
448#define TWITTER_TIME_FORMAT "%a %b %d %H:%M:%S +0000 %Y"
449#endif
450
451/**
452 * Function to fill a twitter_xml_status struct.
453 * It sets:
454 *  - the status text and
455 *  - the created_at timestamp and
456 *  - the status id and
457 *  - the user in a twitter_xml_user struct.
458 */
459static xt_status twitter_xt_get_status(const json_value *node, struct twitter_xml_status *txs)
460{
461        const json_value *rt = NULL, *entities = NULL;
462        int i;
463       
464        if (node->type != json_object)
465                return XT_ABORT;
466
467        for (i = 0; i < node->u.object.length; i ++) {
468                const char *k = node->u.object.values[i].name;
469                const json_value *v = node->u.object.values[i].value;
470               
471                if (strcmp("text", k) == 0 && v->type == json_string) {
472                        txs->text = g_memdup(v->u.string.ptr, v->u.string.length + 1);
473                } else if (strcmp("retweeted_status", k) == 0 && v->type == json_object) {
474                        rt = v;
475                } else if (strcmp("created_at", k) == 0 && v->type == json_string) {
476                        struct tm parsed;
477
478                        /* Very sensitive to changes to the formatting of
479                           this field. :-( Also assumes the timezone used
480                           is UTC since C time handling functions suck. */
481                        if (strptime(v->u.string.ptr, TWITTER_TIME_FORMAT, &parsed) != NULL)
482                                txs->created_at = mktime_utc(&parsed);
483                } else if (strcmp("user", k) == 0 && v->type == json_object) {
484                        txs->user = twitter_xt_get_user(v);
485                } else if (strcmp("id", k) == 0 && v->type == json_integer) {
486                        txs->id = v->u.integer;
487                } else if (strcmp("in_reply_to_status_id", k) == 0 && v->type == json_integer) {
488                        txs->reply_to = v->u.integer;
489                } else if (strcmp("entities", k) == 0 && v->type == json_object) {
490                        entities = v;
491                }
492        }
493
494        /* If it's a (truncated) retweet, get the original. Even if the API claims it
495           wasn't truncated because it may be lying. */
496        if (rt) {
497                struct twitter_xml_status *rtxs = g_new0(struct twitter_xml_status, 1);
498                if (twitter_xt_get_status(rt, rtxs) != XT_HANDLED) {
499                        txs_free(rtxs);
500                        return XT_HANDLED;
501                }
502
503                g_free(txs->text);
504                txs->text = g_strdup_printf("RT @%s: %s", rtxs->user->screen_name, rtxs->text);
505                txs_free(rtxs);
506        } else if (entities) {
507                JSON_O_FOREACH (entities, k, v) {
508                        int i;
509                       
510                        if (v->type != json_array)
511                                continue;
512                        if (strcmp(k, "urls") != 0 && strcmp(k, "media") != 0)
513                                continue;
514                       
515                        for (i = 0; i < v->u.array.length; i ++) {
516                                if (v->u.array.values[i]->type != json_object)
517                                        continue;
518                               
519                                const char *kort = json_o_str(v->u.array.values[i], "url");
520                                const char *disp = json_o_str(v->u.array.values[i], "display_url");
521                                char *pos, *new;
522                               
523                                if (!kort || !disp || !(pos = strstr(txs->text, kort)))
524                                        continue;
525                               
526                                *pos = '\0';
527                                new = g_strdup_printf("%s%s &lt;%s&gt;%s", txs->text, kort,
528                                                      disp, pos + strlen(kort));
529                               
530                                g_free(txs->text);
531                                txs->text = new;
532                        }
533                }
534        }
535
536        return XT_HANDLED;
537}
538
539/**
540 * Function to fill a twitter_xml_list struct.
541 * It sets:
542 *  - all <status>es within the <status> element and
543 *  - the next_cursor.
544 */
545static xt_status twitter_xt_get_status_list(struct im_connection *ic, const json_value *node,
546                                            struct twitter_xml_list *txl)
547{
548        struct twitter_xml_status *txs;
549        bee_user_t *bu;
550        int i;
551
552        // Set the type of the list.
553        txl->type = TXL_STATUS;
554       
555        if (node->type != json_array)
556                return XT_ABORT;
557
558        // The root <statuses> node should hold the list of statuses <status>
559        // Walk over the nodes children.
560        for (i = 0; i < node->u.array.length; i ++) {
561                txs = g_new0(struct twitter_xml_status, 1);
562                twitter_xt_get_status(node->u.array.values[i], txs);
563                // Put the item in the front of the list.
564                txl->list = g_slist_prepend(txl->list, txs);
565
566                if (txs->user && txs->user->screen_name &&
567                    (bu = bee_user_by_handle(ic->bee, ic, txs->user->screen_name))) {
568                        struct twitter_user_data *tud = bu->data;
569
570                        if (txs->id > tud->last_id) {
571                                tud->last_id = txs->id;
572                                tud->last_time = txs->created_at;
573                        }
574                }
575        }
576
577        return XT_HANDLED;
578}
579
580static char *twitter_msg_add_id(struct im_connection *ic,
581                                struct twitter_xml_status *txs, const char *prefix)
582{
583        struct twitter_data *td = ic->proto_data;
584        char *ret = NULL;
585
586        if (!set_getbool(&ic->acc->set, "show_ids")) {
587                if (*prefix)
588                        return g_strconcat(prefix, txs->text, NULL);
589                else
590                        return NULL;
591        }
592
593        td->log[td->log_id].id = txs->id;
594        td->log[td->log_id].bu = bee_user_by_handle(ic->bee, ic, txs->user->screen_name);
595        if (txs->reply_to) {
596                int i;
597                for (i = 0; i < TWITTER_LOG_LENGTH; i++)
598                        if (td->log[i].id == txs->reply_to) {
599                                ret = g_strdup_printf("\002[\002%02d->%02d\002]\002 %s%s",
600                                                      td->log_id, i, prefix, txs->text);
601                                break;
602                        }
603        }
604        if (ret == NULL)
605                ret = g_strdup_printf("\002[\002%02d\002]\002 %s%s", td->log_id, prefix, txs->text);
606        td->log_id = (td->log_id + 1) % TWITTER_LOG_LENGTH;
607
608        return ret;
609}
610
611static void twitter_groupchat_init(struct im_connection *ic)
612{
613        char *name_hint;
614        struct groupchat *gc;
615        struct twitter_data *td = ic->proto_data;
616        GSList *l;
617
618        td->timeline_gc = gc = imcb_chat_new(ic, "twitter/timeline");
619
620        name_hint = g_strdup_printf("%s_%s", td->prefix, ic->acc->user);
621        imcb_chat_name_hint(gc, name_hint);
622        g_free(name_hint);
623
624        for (l = ic->bee->users; l; l = l->next) {
625                bee_user_t *bu = l->data;
626                if (bu->ic == ic)
627                        imcb_chat_add_buddy(td->timeline_gc, bu->handle);
628        }
629}
630
631/**
632 * Function that is called to see the statuses in a groupchat window.
633 */
634static void twitter_groupchat(struct im_connection *ic, GSList * list)
635{
636        struct twitter_data *td = ic->proto_data;
637        GSList *l = NULL;
638        struct twitter_xml_status *status;
639        struct groupchat *gc;
640        guint64 last_id = 0;
641
642        // Create a new groupchat if it does not exsist.
643        if (!td->timeline_gc)
644                twitter_groupchat_init(ic);
645
646        gc = td->timeline_gc;
647        if (!gc->joined)
648                imcb_chat_add_buddy(gc, ic->acc->user);
649
650        for (l = list; l; l = g_slist_next(l)) {
651                char *msg;
652
653                status = l->data;
654                if (status->user == NULL || status->text == NULL || last_id == status->id)
655                        continue;
656
657                last_id = status->id;
658
659                strip_html(status->text);
660
661                if (set_getbool(&ic->acc->set, "strip_newlines"))
662                        strip_newlines(status->text);
663
664                msg = twitter_msg_add_id(ic, status, "");
665
666                // Say it!
667                if (g_strcasecmp(td->user, status->user->screen_name) == 0) {
668                        imcb_chat_log(gc, "You: %s", msg ? msg : status->text);
669                } else {
670                        twitter_add_buddy(ic, status->user->screen_name, status->user->name);
671
672                        imcb_chat_msg(gc, status->user->screen_name,
673                                      msg ? msg : status->text, 0, status->created_at);
674                }
675
676                g_free(msg);
677
678                // Update the timeline_id to hold the highest id, so that by the next request
679                // we won't pick up the updates already in the list.
680                td->timeline_id = MAX(td->timeline_id, status->id);
681        }
682}
683
684/**
685 * Function that is called to see statuses as private messages.
686 */
687static void twitter_private_message_chat(struct im_connection *ic, GSList * list)
688{
689        struct twitter_data *td = ic->proto_data;
690        GSList *l = NULL;
691        struct twitter_xml_status *status;
692        char from[MAX_STRING];
693        gboolean mode_one;
694        guint64 last_id = 0;
695
696        mode_one = g_strcasecmp(set_getstr(&ic->acc->set, "mode"), "one") == 0;
697
698        if (mode_one) {
699                g_snprintf(from, sizeof(from) - 1, "%s_%s", td->prefix, ic->acc->user);
700                from[MAX_STRING - 1] = '\0';
701        }
702
703        for (l = list; l; l = g_slist_next(l)) {
704                char *prefix = NULL, *text = NULL;
705
706                status = l->data;
707                if (status->user == NULL || status->text == NULL || last_id == status->id)
708                        continue;
709
710                last_id = status->id;
711
712                strip_html(status->text);
713                if (mode_one)
714                        prefix = g_strdup_printf("\002<\002%s\002>\002 ",
715                                                 status->user->screen_name);
716                else
717                        twitter_add_buddy(ic, status->user->screen_name, status->user->name);
718
719                text = twitter_msg_add_id(ic, status, prefix ? prefix : "");
720
721                imcb_buddy_msg(ic,
722                               mode_one ? from : status->user->screen_name,
723                               text ? text : status->text, 0, status->created_at);
724
725                // Update the timeline_id to hold the highest id, so that by the next request
726                // we won't pick up the updates already in the list.
727                td->timeline_id = MAX(td->timeline_id, status->id);
728
729                g_free(text);
730                g_free(prefix);
731        }
732}
733
734static void twitter_http_get_home_timeline(struct http_request *req);
735static void twitter_http_get_mentions(struct http_request *req);
736
737/**
738 * Get the timeline with optionally mentions
739 */
740void twitter_get_timeline(struct im_connection *ic, gint64 next_cursor)
741{
742        struct twitter_data *td = ic->proto_data;
743        gboolean include_mentions = set_getbool(&ic->acc->set, "fetch_mentions");
744
745        if (td->flags & TWITTER_DOING_TIMELINE) {
746                if (++td->http_fails >= 5) {
747                        imcb_error(ic, "Fetch timeout (%d)", td->flags);
748                        imc_logout(ic, TRUE);
749                }
750        }
751
752        td->flags |= TWITTER_DOING_TIMELINE;
753
754        twitter_get_home_timeline(ic, next_cursor);
755
756        if (include_mentions) {
757                twitter_get_mentions(ic, next_cursor);
758        }
759}
760
761/**
762 * Call this one after receiving timeline/mentions. Show to user once we have
763 * both.
764 */
765void twitter_flush_timeline(struct im_connection *ic)
766{
767        struct twitter_data *td = ic->proto_data;
768        gboolean include_mentions = set_getbool(&ic->acc->set, "fetch_mentions");
769        int show_old_mentions = set_getint(&ic->acc->set, "show_old_mentions");
770        struct twitter_xml_list *home_timeline = td->home_timeline_obj;
771        struct twitter_xml_list *mentions = td->mentions_obj;
772        GSList *output = NULL;
773        GSList *l;
774
775        if (!(td->flags & TWITTER_GOT_TIMELINE)) {
776                return;
777        }
778
779        if (include_mentions && !(td->flags & TWITTER_GOT_MENTIONS)) {
780                return;
781        }
782
783        if (home_timeline && home_timeline->list) {
784                for (l = home_timeline->list; l; l = g_slist_next(l)) {
785                        output = g_slist_insert_sorted(output, l->data, twitter_compare_elements);
786                }
787        }
788
789        if (include_mentions && mentions && mentions->list) {
790                for (l = mentions->list; l; l = g_slist_next(l)) {
791                        if (show_old_mentions < 1 && output && twitter_compare_elements(l->data, output->data) < 0) {
792                                continue;
793                        }
794
795                        output = g_slist_insert_sorted(output, l->data, twitter_compare_elements);
796                }
797        }
798       
799        if (!(ic->flags & OPT_LOGGED_IN))
800                imcb_connected(ic);
801
802        // See if the user wants to see the messages in a groupchat window or as private messages.
803        if (g_strcasecmp(set_getstr(&ic->acc->set, "mode"), "chat") == 0)
804                twitter_groupchat(ic, output);
805        else
806                twitter_private_message_chat(ic, output);
807
808        g_slist_free(output);
809
810        txl_free(home_timeline);
811        txl_free(mentions);
812
813        td->flags &= ~(TWITTER_DOING_TIMELINE | TWITTER_GOT_TIMELINE | TWITTER_GOT_MENTIONS);
814        td->home_timeline_obj = td->mentions_obj = NULL;
815}
816
817/**
818 * Get the timeline.
819 */
820void twitter_get_home_timeline(struct im_connection *ic, gint64 next_cursor)
821{
822        struct twitter_data *td = ic->proto_data;
823
824        txl_free(td->home_timeline_obj);
825        td->home_timeline_obj = NULL;
826        td->flags &= ~TWITTER_GOT_TIMELINE;
827
828        char *args[6];
829        args[0] = "cursor";
830        args[1] = g_strdup_printf("%lld", (long long) next_cursor);
831        args[2] = "include_entities";
832        args[3] = "true";
833        if (td->timeline_id) {
834                args[4] = "since_id";
835                args[5] = g_strdup_printf("%llu", (long long unsigned int) td->timeline_id);
836        }
837
838        if (twitter_http(ic, TWITTER_HOME_TIMELINE_URL, twitter_http_get_home_timeline, ic, 0, args,
839                     td->timeline_id ? 6 : 4) == NULL) {
840                if (++td->http_fails >= 5)
841                        imcb_error(ic, "Could not retrieve %s: %s",
842                                   TWITTER_HOME_TIMELINE_URL, "connection failed");
843                td->flags |= TWITTER_GOT_TIMELINE;
844                twitter_flush_timeline(ic);
845        }
846
847        g_free(args[1]);
848        if (td->timeline_id) {
849                g_free(args[5]);
850        }
851}
852
853/**
854 * Get mentions.
855 */
856void twitter_get_mentions(struct im_connection *ic, gint64 next_cursor)
857{
858        struct twitter_data *td = ic->proto_data;
859
860        txl_free(td->mentions_obj);
861        td->mentions_obj = NULL;
862        td->flags &= ~TWITTER_GOT_MENTIONS;
863
864        char *args[6];
865        args[0] = "cursor";
866        args[1] = g_strdup_printf("%lld", (long long) next_cursor);
867        args[2] = "include_entities";
868        args[3] = "true";
869        if (td->timeline_id) {
870                args[4] = "since_id";
871                args[5] = g_strdup_printf("%llu", (long long unsigned int) td->timeline_id);
872        } else {
873                args[4] = "count";
874                args[5] = g_strdup_printf("%d", set_getint(&ic->acc->set, "show_old_mentions"));
875        }
876
877        if (twitter_http(ic, TWITTER_MENTIONS_URL, twitter_http_get_mentions,
878                         ic, 0, args, 6) == NULL) {
879                if (++td->http_fails >= 5)
880                        imcb_error(ic, "Could not retrieve %s: %s",
881                                   TWITTER_MENTIONS_URL, "connection failed");
882                td->flags |= TWITTER_GOT_MENTIONS;
883                twitter_flush_timeline(ic);
884        }
885
886        g_free(args[1]);
887        if (td->timeline_id) {
888                g_free(args[5]);
889        }
890}
891
892/**
893 * Callback for getting the home timeline.
894 */
895static void twitter_http_get_home_timeline(struct http_request *req)
896{
897        struct im_connection *ic = req->data;
898        struct twitter_data *td;
899        json_value *parsed;
900        struct twitter_xml_list *txl;
901
902        // Check if the connection is still active.
903        if (!g_slist_find(twitter_connections, ic))
904                return;
905
906        td = ic->proto_data;
907
908        txl = g_new0(struct twitter_xml_list, 1);
909        txl->list = NULL;
910
911        // The root <statuses> node should hold the list of statuses <status>
912        if (!(parsed = twitter_parse_response(ic, req)))
913                goto end;
914        twitter_xt_get_status_list(ic, parsed, txl);
915//      json_value_free(parsed);
916
917        td->home_timeline_obj = txl;
918
919      end:
920        if (!g_slist_find(twitter_connections, ic))
921                return;
922
923        td->flags |= TWITTER_GOT_TIMELINE;
924
925        twitter_flush_timeline(ic);
926}
927
928/**
929 * Callback for getting mentions.
930 */
931static void twitter_http_get_mentions(struct http_request *req)
932{
933        struct im_connection *ic = req->data;
934        struct twitter_data *td;
935        json_value *parsed;
936        struct twitter_xml_list *txl;
937
938        // Check if the connection is still active.
939        if (!g_slist_find(twitter_connections, ic))
940                return;
941
942        td = ic->proto_data;
943
944        txl = g_new0(struct twitter_xml_list, 1);
945        txl->list = NULL;
946
947        // The root <statuses> node should hold the list of statuses <status>
948        if (!(parsed = twitter_parse_response(ic, req)))
949                goto end;
950        twitter_xt_get_status_list(ic, parsed, txl);
951//      json_value_free(parsed);
952
953        td->mentions_obj = txl;
954
955      end:
956        if (!g_slist_find(twitter_connections, ic))
957                return;
958
959        td->flags |= TWITTER_GOT_MENTIONS;
960
961        twitter_flush_timeline(ic);
962}
963
964/**
965 * Callback to use after sending a POST request to twitter.
966 * (Generic, used for a few kinds of queries.)
967 */
968static void twitter_http_post(struct http_request *req)
969{
970        struct im_connection *ic = req->data;
971        struct twitter_data *td;
972        struct xt_node *parsed, *node;
973
974        // Check if the connection is still active.
975        if (!g_slist_find(twitter_connections, ic))
976                return;
977
978        td = ic->proto_data;
979        td->last_status_id = 0;
980
981        if (!(parsed = twitter_parse_response(ic, req)))
982                return;
983       
984        if ((node = xt_find_node(parsed, "status")) &&
985            (node = xt_find_node(node->children, "id")) && node->text)
986                td->last_status_id = g_ascii_strtoull(node->text, NULL, 10);
987}
988
989/**
990 * Function to POST a new status to twitter.
991 */
992void twitter_post_status(struct im_connection *ic, char *msg, guint64 in_reply_to)
993{
994        char *args[4] = {
995                "status", msg,
996                "in_reply_to_status_id",
997                g_strdup_printf("%llu", (unsigned long long) in_reply_to)
998        };
999        twitter_http(ic, TWITTER_STATUS_UPDATE_URL, twitter_http_post, ic, 1,
1000                     args, in_reply_to ? 4 : 2);
1001        g_free(args[3]);
1002}
1003
1004
1005/**
1006 * Function to POST a new message to twitter.
1007 */
1008void twitter_direct_messages_new(struct im_connection *ic, char *who, char *msg)
1009{
1010        char *args[4];
1011        args[0] = "screen_name";
1012        args[1] = who;
1013        args[2] = "text";
1014        args[3] = msg;
1015        // Use the same callback as for twitter_post_status, since it does basically the same.
1016        twitter_http(ic, TWITTER_DIRECT_MESSAGES_NEW_URL, twitter_http_post, ic, 1, args, 4);
1017}
1018
1019void twitter_friendships_create_destroy(struct im_connection *ic, char *who, int create)
1020{
1021        char *args[2];
1022        args[0] = "screen_name";
1023        args[1] = who;
1024        twitter_http(ic, create ? TWITTER_FRIENDSHIPS_CREATE_URL : TWITTER_FRIENDSHIPS_DESTROY_URL,
1025                     twitter_http_post, ic, 1, args, 2);
1026}
1027
1028void twitter_status_destroy(struct im_connection *ic, guint64 id)
1029{
1030        char *url;
1031        url = g_strdup_printf("%s%llu%s", TWITTER_STATUS_DESTROY_URL,
1032                              (unsigned long long) id, ".json");
1033        twitter_http(ic, url, twitter_http_post, ic, 1, NULL, 0);
1034        g_free(url);
1035}
1036
1037void twitter_status_retweet(struct im_connection *ic, guint64 id)
1038{
1039        char *url;
1040        url = g_strdup_printf("%s%llu%s", TWITTER_STATUS_RETWEET_URL,
1041                              (unsigned long long) id, ".json");
1042        twitter_http(ic, url, twitter_http_post, ic, 1, NULL, 0);
1043        g_free(url);
1044}
1045
1046/**
1047 * Report a user for sending spam.
1048 */
1049void twitter_report_spam(struct im_connection *ic, char *screen_name)
1050{
1051        char *args[2] = {
1052                "screen_name",
1053                NULL,
1054        };
1055        args[1] = screen_name;
1056        twitter_http(ic, TWITTER_REPORT_SPAM_URL, twitter_http_post,
1057                     ic, 1, args, 2);
1058}
1059
1060/**
1061 * Favourite a tweet.
1062 */
1063void twitter_favourite_tweet(struct im_connection *ic, guint64 id)
1064{
1065        char *url;
1066        url = g_strdup_printf("%s%llu%s", TWITTER_FAVORITE_CREATE_URL,
1067                              (unsigned long long) id, ".json");
1068        twitter_http(ic, url, twitter_http_post, ic, 1, NULL, 0);
1069        g_free(url);
1070}
Note: See TracBrowser for help on using the repository browser.