source: protocols/twitter/twitter_lib.c @ c751e51

Last change on this file since c751e51 was c751e51, checked in by Wilmer van der Gaast <wilmer@…>, at 2012-11-24T00:15:17Z

Fixing one obvious memory leak.

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