source: protocols/twitter/twitter_lib.c @ 7a9d968

Last change on this file since 7a9d968 was 7a9d968, checked in by Wilmer van der Gaast <wilmer@…>, at 2018-03-10T11:30:39Z

Merge branch 'master' into HEAD

  • Property mode set to 100644
File size: 47.3 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-2013 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 "parson.h"
39#include <ctype.h>
40#include <errno.h>
41
42#define TXL_STATUS 1
43#define TXL_USER 2
44#define TXL_ID 3
45
46struct twitter_xml_list {
47        int type;
48        gint64 next_cursor;
49        GSList *list;
50};
51
52struct twitter_xml_user {
53        guint64 uid;
54        char *name;
55        char *screen_name;
56};
57
58struct twitter_xml_status {
59        time_t created_at;
60        char *text;
61        struct twitter_xml_user *user;
62        guint64 id, rt_id; /* Usually equal, with RTs id == *original* id */
63        guint64 reply_to;
64        gboolean from_filter;
65};
66
67#define JSON_O_FOREACH(o, k, v) \
68    const char *k; const JSON_Value *v; int __i; \
69    for (__i = 0; json_object_get_tuple(o, __i, &k, &v); __i++)
70
71/**
72 * Frees a twitter_xml_user struct.
73 */
74static void txu_free(struct twitter_xml_user *txu)
75{
76        if (txu == NULL) {
77                return;
78        }
79
80        g_free(txu->name);
81        g_free(txu->screen_name);
82        g_free(txu);
83}
84
85/**
86 * Frees a twitter_xml_status struct.
87 */
88static void txs_free(struct twitter_xml_status *txs)
89{
90        if (txs == NULL) {
91                return;
92        }
93
94        g_free(txs->text);
95        txu_free(txs->user);
96        g_free(txs);
97}
98
99/**
100 * Free a twitter_xml_list struct.
101 * type is the type of list the struct holds.
102 */
103static void txl_free(struct twitter_xml_list *txl)
104{
105        GSList *l;
106
107        if (txl == NULL) {
108                return;
109        }
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                // The buddy is not in the list, add the buddy and set the status to logged in.
152                imcb_add_buddy(ic, name, NULL);
153                imcb_rename_buddy(ic, name, fullname);
154                if (td->flags & TWITTER_MODE_CHAT) {
155                        /* Necessary so that nicks always get translated to the
156                           exact Twitter username. */
157                        imcb_buddy_nick_hint(ic, name, name);
158                        if (td->timeline_gc) {
159                                imcb_chat_add_buddy(td->timeline_gc, name);
160                        }
161                } else if (td->flags & TWITTER_MODE_MANY) {
162                        imcb_buddy_status(ic, name, OPT_LOGGED_IN, NULL, NULL);
163                }
164        }
165}
166
167/* Warning: May return a malloc()ed value, which will be free()d on the next
168   call. Only for short-term use. NOT THREADSAFE!  */
169char *twitter_parse_error(struct http_request *req)
170{
171        static char *ret = NULL;
172        JSON_Value *root, *err;
173
174        g_free(ret);
175        ret = NULL;
176
177        if (req->body_size > 0) {
178                root = json_parse_string(req->reply_body);
179                err = json_object_get_value(json_object(root), "errors");
180                if (err && json_type(err) == JSONArray &&
181                    (err = json_array_get_value(json_array(err), 0)) &&
182                    json_type(err) == JSONObject) {
183                        const char *msg = json_object_get_string(json_object(err), "message");
184                        if (msg) {
185                                ret = g_strdup_printf("%s (%s)", req->status_string, msg);
186                        }
187                }
188                json_value_free(root);
189        }
190
191        return ret ? ret : req->status_string;
192}
193
194/* WATCH OUT: This function might or might not destroy your connection.
195   Sub-optimal indeed, but just be careful when this returns NULL! */
196static JSON_Value *twitter_parse_response(struct im_connection *ic, struct http_request *req)
197{
198        gboolean logging_in = !(ic->flags & OPT_LOGGED_IN);
199        gboolean periodic;
200        struct twitter_data *td = ic->proto_data;
201        JSON_Value *ret;
202        char path[64] = "", *s;
203
204        if ((s = strchr(req->request, ' '))) {
205                path[sizeof(path) - 1] = '\0';
206                strncpy(path, s + 1, sizeof(path) - 1);
207                if ((s = strchr(path, '?')) || (s = strchr(path, ' '))) {
208                        *s = '\0';
209                }
210        }
211
212        /* Kinda nasty. :-( Trying to suppress error messages, but only
213           for periodic (i.e. mentions/timeline) queries. */
214        periodic = strstr(path, "timeline") || strstr(path, "mentions");
215
216        if (req->status_code == 401 && logging_in) {
217                /* IIRC Twitter once had an outage where they were randomly
218                   throwing 401s so I'll keep treating this one as fatal
219                   only during login. */
220                imcb_error(ic, "Authentication failure (%s)",
221                           twitter_parse_error(req));
222                imc_logout(ic, FALSE);
223                return NULL;
224        } else if (req->status_code != 200) {
225                // It didn't go well, output the error and return.
226                if (!periodic || logging_in || ++td->http_fails >= 5) {
227                        twitter_log(ic, "Error: Could not retrieve %s: %s",
228                                    path, twitter_parse_error(req));
229                }
230
231                if (logging_in) {
232                        imc_logout(ic, TRUE);
233                }
234                return NULL;
235        } else {
236                td->http_fails = 0;
237        }
238
239        if ((ret = json_parse_string(req->reply_body)) == NULL) {
240                imcb_error(ic, "Could not retrieve %s: %s",
241                           path, "JSON parse error");
242        }
243        return ret;
244}
245
246static void twitter_http_get_friends_ids(struct http_request *req);
247static void twitter_http_get_mutes_ids(struct http_request *req);
248static void twitter_http_get_noretweets_ids(struct http_request *req);
249
250/**
251 * Get the friends ids.
252 */
253void twitter_get_friends_ids(struct im_connection *ic, gint64 next_cursor)
254{
255        // Primitive, but hey! It works...
256        char *args[2];
257
258        args[0] = "cursor";
259        args[1] = g_strdup_printf("%" G_GINT64_FORMAT, next_cursor);
260        twitter_http(ic, TWITTER_FRIENDS_IDS_URL, twitter_http_get_friends_ids, ic, 0, args, 2);
261
262        g_free(args[1]);
263}
264
265/**
266 * Get the muted users ids.
267 */
268void twitter_get_mutes_ids(struct im_connection *ic, gint64 next_cursor)
269{
270        char *args[2];
271
272        args[0] = "cursor";
273        args[1] = g_strdup_printf("%" G_GINT64_FORMAT, next_cursor);
274        twitter_http(ic, TWITTER_MUTES_IDS_URL, twitter_http_get_mutes_ids, ic, 0, args, 2);
275
276        g_free(args[1]);
277}
278
279/**
280 * Get the ids for users from whom we should ignore retweets.
281 */
282void twitter_get_noretweets_ids(struct im_connection *ic, gint64 next_cursor)
283{
284        char *args[2];
285
286        args[0] = "cursor";
287        args[1] = g_strdup_printf("%" G_GINT64_FORMAT, next_cursor);
288        twitter_http(ic, TWITTER_NORETWEETS_IDS_URL, twitter_http_get_noretweets_ids, ic, 0, args, 2);
289
290        g_free(args[1]);
291}
292
293/**
294 * Fill a list of ids.
295 */
296static gboolean twitter_xt_get_friends_id_list(JSON_Value *node, struct twitter_xml_list *txl)
297{
298        JSON_Array *c;
299        int i;
300
301        // Set the list type.
302        txl->type = TXL_ID;
303
304        if (!(c = json_object_get_array(json_object(node), "ids"))) {
305                return FALSE;
306        }
307
308        for (i = 0; i < json_array_get_count(c); i++) {
309                jint id = json_array_get_integer(c, i);
310
311                txl->list = g_slist_prepend(txl->list,
312                                            g_strdup_printf("%" PRIu64, id);
313        }
314
315        JSON_Value *next = json_object_get_value(json_object(node), "next_cursor");
316        if (next && json_type(next) == JSONInteger) {
317                txl->next_cursor = json_integer(next);
318        } else {
319                txl->next_cursor = -1;
320        }
321
322        return TRUE;
323}
324
325static void twitter_get_users_lookup(struct im_connection *ic);
326
327/**
328 * Callback for getting the friends ids.
329 */
330static void twitter_http_get_friends_ids(struct http_request *req)
331{
332        struct im_connection *ic;
333        JSON_Value *parsed;
334        struct twitter_xml_list *txl;
335        struct twitter_data *td;
336
337        ic = req->data;
338
339        // Check if the connection is still active.
340        if (!g_slist_find(twitter_connections, ic)) {
341                return;
342        }
343
344        td = ic->proto_data;
345
346        // Parse the data.
347        if (!(parsed = twitter_parse_response(ic, req))) {
348                return;
349        }
350
351        txl = g_new0(struct twitter_xml_list, 1);
352        txl->list = td->follow_ids;
353
354        twitter_xt_get_friends_id_list(parsed, txl);
355        json_value_free(parsed);
356
357        td->follow_ids = txl->list;
358        if (txl->next_cursor) {
359                /* These were just numbers. Up to 4000 in a response AFAIK so if we get here
360                   we may be using a spammer account. \o/ */
361                twitter_get_friends_ids(ic, txl->next_cursor);
362        } else {
363                /* Now to convert all those numbers into names.. */
364                twitter_get_users_lookup(ic);
365        }
366
367        txl->list = NULL;
368        txl_free(txl);
369}
370
371/**
372 * Callback for getting the mutes ids.
373 */
374static void twitter_http_get_mutes_ids(struct http_request *req)
375{
376        struct im_connection *ic = req->data;
377        JSON_Value *parsed;
378        struct twitter_xml_list *txl;
379        struct twitter_data *td;
380
381        // Check if the connection is stil active
382        if (!g_slist_find(twitter_connections, ic)) {
383                return;
384        }
385
386        td = ic->proto_data;
387
388        if (req->status_code != 200) {
389                /* Fail silently */
390                return;
391        }
392
393        // Parse the data.
394        if (!(parsed = twitter_parse_response(ic, req))) {
395                return;
396        }
397
398        txl = g_new0(struct twitter_xml_list, 1);
399        txl->list = td->mutes_ids;
400
401        /* mute ids API response is similar enough to friends response
402           to reuse this method */
403        twitter_xt_get_friends_id_list(parsed, txl);
404        json_value_free(parsed);
405
406        td->mutes_ids = txl->list;
407        if (txl->next_cursor) {
408                /* Recurse while there are still more pages */
409                twitter_get_mutes_ids(ic, txl->next_cursor);
410        }
411
412        txl->list = NULL;
413        txl_free(txl);
414}
415
416/**
417 * Callback for getting the no-retweets ids.
418 */
419static void twitter_http_get_noretweets_ids(struct http_request *req)
420{
421        struct im_connection *ic = req->data;
422        JSON_Value *parsed;
423        struct twitter_xml_list *txl;
424        struct twitter_data *td;
425
426        // Check if the connection is stil active
427        if (!g_slist_find(twitter_connections, ic)) {
428                return;
429        }
430
431        if (req->status_code != 200) {
432                /* Fail silently */
433                return;
434        }
435
436        td = ic->proto_data;
437
438        // Parse the data.
439        if (!(parsed = twitter_parse_response(ic, req))) {
440                return;
441        }
442
443        txl = g_new0(struct twitter_xml_list, 1);
444        txl->list = td->noretweets_ids;
445
446        // Process the retweet ids
447        txl->type = TXL_ID;
448        if (json_type(parsed) == JSONArray) {
449                JSON_Array *arr = json_array(parsed);
450                unsigned int i;
451                for (i = 0; i < json_array_get_count(arr); i++) {
452                        jint id = json_array_get_integer(arr, i);
453                        txl->list = g_slist_prepend(txl->list,
454                                                    g_strdup_printf("%" PRId64, id));
455                }
456        }
457
458        json_value_free(parsed);
459        td->noretweets_ids = txl->list;
460
461        txl->list = NULL;
462        txl_free(txl);
463}
464
465static gboolean twitter_xt_get_users(JSON_Value *node, struct twitter_xml_list *txl);
466static void twitter_http_get_users_lookup(struct http_request *req);
467
468static void twitter_get_users_lookup(struct im_connection *ic)
469{
470        struct twitter_data *td = ic->proto_data;
471        char *args[2] = {
472                "user_id",
473                NULL,
474        };
475        GString *ids = g_string_new("");
476        int i;
477
478        /* We can request up to 100 users at a time. */
479        for (i = 0; i < 100 && td->follow_ids; i++) {
480                g_string_append_printf(ids, ",%s", (char *) td->follow_ids->data);
481                g_free(td->follow_ids->data);
482                td->follow_ids = g_slist_remove(td->follow_ids, td->follow_ids->data);
483        }
484        if (ids->len > 0) {
485                args[1] = ids->str + 1;
486                /* POST, because I think ids can be up to 1KB long. */
487                twitter_http(ic, TWITTER_USERS_LOOKUP_URL, twitter_http_get_users_lookup, ic, 1, args, 2);
488        } else {
489                /* We have all users. Continue with login. (Get statuses.) */
490                td->flags |= TWITTER_HAVE_FRIENDS;
491                twitter_login_finish(ic);
492        }
493        g_string_free(ids, TRUE);
494}
495
496/**
497 * Callback for getting (twitter)friends...
498 *
499 * Be afraid, be very afraid! This function will potentially add hundreds of "friends". "Who has
500 * hundreds of friends?" you wonder? You probably not, since you are reading the source of
501 * BitlBee... Get a life and meet new people!
502 */
503static void twitter_http_get_users_lookup(struct http_request *req)
504{
505        struct im_connection *ic = req->data;
506        JSON_Value *parsed;
507        struct twitter_xml_list *txl;
508        GSList *l = NULL;
509        struct twitter_xml_user *user;
510
511        // Check if the connection is still active.
512        if (!g_slist_find(twitter_connections, ic)) {
513                return;
514        }
515
516        // Get the user list from the parsed xml feed.
517        if (!(parsed = twitter_parse_response(ic, req))) {
518                return;
519        }
520
521        txl = g_new0(struct twitter_xml_list, 1);
522        txl->list = NULL;
523
524        twitter_xt_get_users(parsed, txl);
525        json_value_free(parsed);
526
527        // Add the users as buddies.
528        for (l = txl->list; l; l = g_slist_next(l)) {
529                user = l->data;
530                twitter_add_buddy(ic, user->screen_name, user->name);
531        }
532
533        // Free the structure.
534        txl_free(txl);
535
536        twitter_get_users_lookup(ic);
537}
538
539struct twitter_xml_user *twitter_xt_get_user(const JSON_Object *node)
540{
541        struct twitter_xml_user *txu;
542       
543        if (!node)
544                return NULL;
545
546        txu = g_new0(struct twitter_xml_user, 1);
547        txu->name = g_strdup(json_object_get_string(node, "name"));
548        txu->screen_name = g_strdup(json_object_get_string(node, "screen_name"));
549        txu->uid = json_object_get_integer(node, "id");
550
551        return txu;
552}
553
554/**
555 * Function to fill a twitter_xml_list struct.
556 * It sets:
557 *  - all <user>s from the <users> element.
558 */
559static gboolean twitter_xt_get_users(JSON_Value *node, struct twitter_xml_list *txl)
560{
561        struct twitter_xml_user *txu;
562        int i;
563
564        // Set the type of the list.
565        txl->type = TXL_USER;
566
567        if (json_type(node) != JSONArray) {
568                return FALSE;
569        }
570       
571        // The root <users> node should hold the list of users <user>
572        // Walk over the nodes children.
573        JSON_Array *arr = json_array(node);
574        for (i = 0; i < json_array_get_count(arr); i++) {
575                JSON_Object *o = json_array_get_object(arr, i);
576                if (!o)
577                        continue;
578                txu = twitter_xt_get_user(o);
579                if (txu) {
580                        txl->list = g_slist_prepend(txl->list, txu);
581                }
582        }
583
584        return TRUE;
585}
586
587#ifdef __GLIBC__
588#define TWITTER_TIME_FORMAT "%a %b %d %H:%M:%S %z %Y"
589#else
590#define TWITTER_TIME_FORMAT "%a %b %d %H:%M:%S +0000 %Y"
591#endif
592
593static void expand_entities(char **text, const JSON_Object *node, const JSON_Object *extended_node);
594
595/**
596 * Function to fill a twitter_xml_status struct.
597 * It sets:
598 *  - the status text and
599 *  - the created_at timestamp and
600 *  - the status id and
601 *  - the user in a twitter_xml_user struct.
602 */
603static struct twitter_xml_status *twitter_xt_get_status(const JSON_Object *node)
604{
605        struct twitter_xml_status *txs = {0};
606        const JSON_Object *rt = NULL;
607        const JSON_Value *text_value = NULL;
608        const JSON_Object *extended_node = NULL;
609
610        if (!node) {
611                return FALSE;
612        }
613        txs = g_new0(struct twitter_xml_status, 1);
614
615        JSON_O_FOREACH(node, k, v) {
616                if (strcmp("text", k) == 0 && json_type(v) == JSONString && text_value == NULL) {
617                        text_value = v;
618                } else if (strcmp("full_text", k) == 0 && json_type(v) == JSONString) {
619                        text_value = v;
620                } else if (strcmp("extended_tweet", k) == 0 && json_type(v) == JSONObject) {
621                        text_value = json_object_get_value(json_object(v), "full_text");
622                        extended_node = json_object(v);
623                } else if (strcmp("retweeted_status", k) == 0 && (rt = json_object(v))) {
624                        // Handling below.
625                } else if (strcmp("created_at", k) == 0 && json_type(v) == JSONString) {
626                        struct tm parsed;
627
628                        /* Very sensitive to changes to the formatting of
629                           this field. :-( Also assumes the timezone used
630                           is UTC since C time handling functions suck. */
631                        if (strptime(json_string(v), TWITTER_TIME_FORMAT, &parsed) != NULL) {
632                                txs->created_at = mktime_utc(&parsed);
633                        }
634                } else if (strcmp("user", k) == 0 && json_type(v) == JSONObject) {
635                        txs->user = twitter_xt_get_user(json_object(v));
636                } else if (strcmp("id", k) == 0 && json_type(v) == JSONInteger) {
637                        txs->rt_id = txs->id = json_integer(v);
638                } else if (strcmp("in_reply_to_status_id", k) == 0 && json_type(v) == JSONInteger) {
639                        txs->reply_to = json_integer(v);
640                }
641        }
642
643        /* If it's a (truncated) retweet, get the original. Even if the API claims it
644           wasn't truncated because it may be lying. */
645        if (rt) {
646                struct twitter_xml_status *rtxs = twitter_xt_get_status(rt);
647                if (rtxs) {
648                        txs->text = g_strdup_printf("RT @%s: %s", rtxs->user->screen_name, rtxs->text);
649                        txs->id = rtxs->id;
650                        txs_free(rtxs);
651                }
652        } else if (text_value && json_type(text_value) == JSONString) {
653                txs->text = g_strdup(json_string(text_value));
654                strip_html(txs->text);
655                expand_entities(&txs->text, node, extended_node);
656        }
657
658        if (txs->text && txs->user && txs->id) {
659                return txs;
660        }
661
662        txs_free(txs);
663        return NULL;
664}
665
666/**
667 * Function to fill a twitter_xml_status struct (DM variant).
668 */
669static struct twitter_xml_status *twitter_xt_get_dm(const JSON_Object *node)
670{
671        struct twitter_xml_status *txs;
672
673        if (!node) {
674                return FALSE;
675        }
676        txs = g_new0(struct twitter_xml_status, 1);
677
678        JSON_O_FOREACH(node, k, v) {
679                if (strcmp("text", k) == 0 && (txs->text = g_strdup(json_string(v)))) {
680                        strip_html(txs->text);
681                } else if (strcmp("created_at", k) == 0 && json_type(v) == JSONString) {
682                        struct tm parsed;
683
684                        /* Very sensitive to changes to the formatting of
685                           this field. :-( Also assumes the timezone used
686                           is UTC since C time handling functions suck. */
687                        if (strptime(json_string(v), TWITTER_TIME_FORMAT, &parsed) != NULL) {
688                                txs->created_at = mktime_utc(&parsed);
689                        }
690                } else if (strcmp("sender", k) == 0 && json_type(v) == JSONObject) {
691                        txs->user = twitter_xt_get_user(json_object(v));
692                } else if (strcmp("id", k) == 0 && json_type(v) == JSONInteger) {
693                        txs->id = json_integer(v);
694                }
695        }
696
697        expand_entities(&txs->text, node, NULL);
698
699        if (txs->text && txs->user && txs->id) {
700                return txs;
701        }
702
703        txs_free(txs);
704        return NULL;
705}
706
707static void expand_entities(char **text, const JSON_Object *node, const JSON_Object *extended_node)
708{
709        JSON_Object *entities, *extended_entities, *quoted;
710        char *quote_url = NULL, *quote_text = NULL;
711
712        if (!(entities = json_object_get_object(node, "entities")))
713                return;
714        if ((quoted = json_object_get_object(node, "quoted_status"))) {
715                /* New "retweets with comments" feature. Grab the
716                 * full message and try to insert it when we run into the
717                 * Tweet entity. */
718                struct twitter_xml_status *txs = twitter_xt_get_status(quoted);
719                quote_text = g_strdup_printf("@%s: %s", txs->user->screen_name, txs->text);
720                quote_url = g_strdup_printf("%s/status/%" G_GUINT64_FORMAT, txs->user->screen_name, txs->id);
721                txs_free(txs);
722        } else {
723                quoted = NULL;
724        }
725
726        if (extended_node) {
727                extended_entities = json_object_get_object(extended_node, "entities");
728                if (extended_entities) {
729                        entities = extended_entities;
730                }
731        }
732
733        JSON_O_FOREACH(entities, k, v) {
734                int i;
735
736                if (json_type(v) != JSONArray) {
737                        continue;
738                }
739                if (strcmp(k, "urls") != 0 && strcmp(k, "media") != 0) {
740                        continue;
741                }
742
743                for (i = 0; i < json_array_get_count(json_array(v)); i++) {
744                        const char *format = "%s%s <%s>%s";
745                        JSON_Object *r = json_array_get_object(json_array(v), i);
746
747                        if (!r) {
748                                continue;
749                        }
750
751                        const char *kort = json_object_get_string(r, "url");
752                        const char *disp = json_object_get_string(r, "display_url");
753                        const char *full = json_object_get_string(r, "expanded_url");
754                        char *pos, *new;
755
756                        /* Skip if a required field is missing, if the t.co URL is not in fact
757                           in the Tweet at all, or if the full-ish one *is* in it already
758                           (dupes appear, especially in streaming API). */
759                        if (!kort || !disp || !(pos = strstr(*text, kort)) || strstr(*text, disp)) {
760                                continue;
761                        }
762                        if (quote_url && strstr(full, quote_url)) {
763                                format = "%s<%s> [%s]%s";
764                                disp = quote_text;
765                        }
766
767                        *pos = '\0';
768                        new = g_strdup_printf(format, *text, kort,
769                                              disp, pos + strlen(kort));
770
771                        g_free(*text);
772                        *text = new;
773                }
774        }
775        g_free(quote_text);
776        g_free(quote_url);
777}
778
779/**
780 * Function to fill a twitter_xml_list struct.
781 * It sets:
782 *  - all <status>es within the <status> element and
783 *  - the next_cursor.
784 */
785static gboolean twitter_xt_get_status_list(struct im_connection *ic, const JSON_Value *node,
786                                           struct twitter_xml_list *txl)
787{
788        struct twitter_xml_status *txs;
789        int i;
790
791        // Set the type of the list.
792        txl->type = TXL_STATUS;
793
794        if (json_type(node) != JSONArray) {
795                return FALSE;
796        }
797
798        // The root <statuses> node should hold the list of statuses <status>
799        // Walk over the nodes children.
800        for (i = 0; i < json_array_get_count(json_array(node)); i++) {
801                txs = twitter_xt_get_status(json_array_get_object(json_array(node), i));
802                if (!txs) {
803                        continue;
804                }
805
806                txl->list = g_slist_prepend(txl->list, txs);
807        }
808
809        return TRUE;
810}
811
812/* Will log messages either way. Need to keep track of IDs for stream deduping.
813   Plus, show_ids is on by default and I don't see why anyone would disable it. */
814static char *twitter_msg_add_id(struct im_connection *ic,
815                                struct twitter_xml_status *txs, const char *prefix)
816{
817        struct twitter_data *td = ic->proto_data;
818        int reply_to = -1;
819        bee_user_t *bu;
820
821        if (txs->reply_to) {
822                int i;
823                for (i = 0; i < TWITTER_LOG_LENGTH; i++) {
824                        if (td->log[i].id == txs->reply_to) {
825                                reply_to = i;
826                                break;
827                        }
828                }
829        }
830
831        if (txs->user && txs->user->screen_name &&
832            (bu = bee_user_by_handle(ic->bee, ic, txs->user->screen_name))) {
833                struct twitter_user_data *tud = bu->data;
834
835                if (txs->id > tud->last_id) {
836                        tud->last_id = txs->id;
837                        tud->last_time = txs->created_at;
838                }
839        }
840
841        td->log_id = (td->log_id + 1) % TWITTER_LOG_LENGTH;
842        td->log[td->log_id].id = txs->id;
843        td->log[td->log_id].bu = bee_user_by_handle(ic->bee, ic, txs->user->screen_name);
844
845        /* This is all getting hairy. :-( If we RT'ed something ourselves,
846           remember OUR id instead so undo will work. In other cases, the
847           original tweet's id should be remembered for deduplicating. */
848        if (g_strcasecmp(txs->user->screen_name, td->user) == 0) {
849                td->log[td->log_id].id = txs->rt_id;
850                /* More useful than NULL. */
851                td->log[td->log_id].bu = &twitter_log_local_user;
852        }
853
854        if (set_getbool(&ic->acc->set, "show_ids")) {
855                if (reply_to != -1) {
856                        return g_strdup_printf("\002[\002%02x->%02x\002]\002 %s%s",
857                                               td->log_id, reply_to, prefix, txs->text);
858                } else {
859                        return g_strdup_printf("\002[\002%02x\002]\002 %s%s",
860                                               td->log_id, prefix, txs->text);
861                }
862        } else {
863                if (*prefix) {
864                        return g_strconcat(prefix, txs->text, NULL);
865                } else {
866                        return NULL;
867                }
868        }
869}
870
871/**
872 * Function that is called to see the filter statuses in groupchat windows.
873 */
874static void twitter_status_show_filter(struct im_connection *ic, struct twitter_xml_status *status)
875{
876        struct twitter_data *td = ic->proto_data;
877        char *msg = twitter_msg_add_id(ic, status, "");
878        struct twitter_filter *tf;
879        GSList *f;
880        GSList *l;
881
882        for (f = td->filters; f; f = g_slist_next(f)) {
883                tf = f->data;
884
885                switch (tf->type) {
886                case TWITTER_FILTER_TYPE_FOLLOW:
887                        if (status->user->uid != tf->uid) {
888                                continue;
889                        }
890                        break;
891
892                case TWITTER_FILTER_TYPE_TRACK:
893                        if (strcasestr(status->text, tf->text) == NULL) {
894                                continue;
895                        }
896                        break;
897
898                default:
899                        continue;
900                }
901
902                for (l = tf->groupchats; l; l = g_slist_next(l)) {
903                        imcb_chat_msg(l->data, status->user->screen_name,
904                                      msg ? msg : status->text, 0, 0);
905                }
906        }
907
908        g_free(msg);
909}
910
911/**
912 * Function that is called to see the statuses in a groupchat window.
913 */
914static void twitter_status_show_chat(struct im_connection *ic, struct twitter_xml_status *status)
915{
916        struct twitter_data *td = ic->proto_data;
917        struct groupchat *gc;
918        gboolean me = g_strcasecmp(td->user, status->user->screen_name) == 0;
919        char *msg;
920
921        // Create a new groupchat if it does not exsist.
922        gc = twitter_groupchat_init(ic);
923
924        if (!me) {
925                /* MUST be done before twitter_msg_add_id() to avoid #872. */
926                twitter_add_buddy(ic, status->user->screen_name, status->user->name);
927        }
928        msg = twitter_msg_add_id(ic, status, "");
929
930        // Say it!
931        if (me) {
932                imcb_chat_log(gc, "You: %s", msg ? msg : status->text);
933        } else {
934                imcb_chat_msg(gc, status->user->screen_name,
935                              msg ? msg : status->text, 0, status->created_at);
936        }
937
938        g_free(msg);
939}
940
941/**
942 * Function that is called to see statuses as private messages.
943 */
944static void twitter_status_show_msg(struct im_connection *ic, struct twitter_xml_status *status)
945{
946        struct twitter_data *td = ic->proto_data;
947        char from[MAX_STRING] = "";
948        char *prefix = NULL, *text = NULL;
949        gboolean me = g_strcasecmp(td->user, status->user->screen_name) == 0;
950
951        if (td->flags & TWITTER_MODE_ONE) {
952                g_snprintf(from, sizeof(from) - 1, "%s_%s", td->prefix, ic->acc->user);
953                from[MAX_STRING - 1] = '\0';
954        }
955
956        if (td->flags & TWITTER_MODE_ONE) {
957                prefix = g_strdup_printf("\002<\002%s\002>\002 ",
958                                         status->user->screen_name);
959        } else if (!me) {
960                twitter_add_buddy(ic, status->user->screen_name, status->user->name);
961        } else {
962                prefix = g_strdup("You: ");
963        }
964
965        text = twitter_msg_add_id(ic, status, prefix ? prefix : "");
966
967        imcb_buddy_msg(ic,
968                       *from ? from : status->user->screen_name,
969                       text ? text : status->text, 0, status->created_at);
970
971        g_free(text);
972        g_free(prefix);
973}
974
975static void twitter_status_show(struct im_connection *ic, struct twitter_xml_status *status)
976{
977        struct twitter_data *td = ic->proto_data;
978        char *last_id_str;
979        char *uid_str;
980
981        if (status->user == NULL || status->text == NULL) {
982                return;
983        }
984
985        /* Check this is not a tweet that should be muted */
986        uid_str = g_strdup_printf("%" G_GUINT64_FORMAT, status->user->uid);
987
988        if (g_slist_find_custom(td->mutes_ids, uid_str, (GCompareFunc)strcmp)) {
989                g_free(uid_str);
990                return;
991        }
992        if (status->id != status->rt_id && g_slist_find_custom(td->noretweets_ids, uid_str, (GCompareFunc)strcmp)) {
993                g_free(uid_str);
994                return;
995        }
996
997        /* Grrrr. Would like to do this during parsing, but can't access
998           settings from there. */
999        if (set_getbool(&ic->acc->set, "strip_newlines")) {
1000                strip_newlines(status->text);
1001        }
1002
1003        if (status->from_filter) {
1004                twitter_status_show_filter(ic, status);
1005        } else if (td->flags & TWITTER_MODE_CHAT) {
1006                twitter_status_show_chat(ic, status);
1007        } else {
1008                twitter_status_show_msg(ic, status);
1009        }
1010
1011        // Update the timeline_id to hold the highest id, so that by the next request
1012        // we won't pick up the updates already in the list.
1013        td->timeline_id = MAX(td->timeline_id, status->rt_id);
1014
1015        last_id_str = g_strdup_printf("%" G_GUINT64_FORMAT, td->timeline_id);
1016        set_setstr(&ic->acc->set, "_last_tweet", last_id_str);
1017        g_free(last_id_str);
1018        g_free(uid_str);
1019}
1020
1021static gboolean twitter_stream_handle_object(struct im_connection *ic, JSON_Object *o, gboolean from_filter);
1022
1023static void twitter_http_stream(struct http_request *req)
1024{
1025        struct im_connection *ic = req->data;
1026        struct twitter_data *td;
1027        JSON_Value *parsed;
1028        int len = 0;
1029        char c, *nl;
1030        gboolean from_filter;
1031
1032        if (!g_slist_find(twitter_connections, ic)) {
1033                return;
1034        }
1035
1036        td = ic->proto_data;
1037
1038        if ((req->flags & HTTPC_EOF) || !req->reply_body) {
1039                if (req == td->stream) {
1040                        td->stream = NULL;
1041                } else if (req == td->filter_stream) {
1042                        td->filter_stream = NULL;
1043                }
1044
1045                imcb_error(ic, "Stream closed (%s)", req->status_string);
1046                if (req->status_code == 401) {
1047                        imcb_error(ic, "Check your system clock.");
1048                }
1049                imc_logout(ic, TRUE);
1050                return;
1051        }
1052
1053        if (req == td->stream) {
1054                ic->flags |= OPT_PONGED;
1055        }
1056
1057        /* MUST search for CRLF, not just LF:
1058           https://dev.twitter.com/docs/streaming-apis/processing#Parsing_responses */
1059        if (!(nl = strstr(req->reply_body, "\r\n"))) {
1060                return;
1061        }
1062
1063        len = nl - req->reply_body;
1064        if (len > 0) {
1065                c = req->reply_body[len];
1066                req->reply_body[len] = '\0';
1067
1068                if ((parsed = json_parse_string(req->reply_body))) {
1069                        from_filter = (req == td->filter_stream);
1070                        twitter_stream_handle_object(ic, json_object(parsed), from_filter);
1071                }
1072                json_value_free(parsed);
1073                req->reply_body[len] = c;
1074        }
1075
1076        http_flush_bytes(req, len + 2);
1077
1078        /* One notification might bring multiple events! */
1079        if (req->body_size > 0) {
1080                twitter_http_stream(req);
1081        }
1082}
1083
1084static gboolean twitter_stream_handle_event(struct im_connection *ic, JSON_Object *o);
1085static gboolean twitter_stream_handle_status(struct im_connection *ic, struct twitter_xml_status *txs);
1086
1087static gboolean twitter_stream_handle_object(struct im_connection *ic, JSON_Object *o, gboolean from_filter)
1088{
1089        struct twitter_data *td = ic->proto_data;
1090        struct twitter_xml_status *txs;
1091        JSON_Object *c;
1092
1093        if ((txs = twitter_xt_get_status(o))) {
1094                txs->from_filter = from_filter;
1095                gboolean ret = twitter_stream_handle_status(ic, txs);
1096                txs_free(txs);
1097                return ret;
1098        } else if ((c = json_object_get_object(o, "direct_message")) &&
1099                   (txs = twitter_xt_get_dm(c))) {
1100                if (g_strcasecmp(txs->user->screen_name, td->user) != 0) {
1101                        imcb_buddy_msg(ic, txs->user->screen_name,
1102                                       txs->text, 0, txs->created_at);
1103                }
1104                txs_free(txs);
1105                return TRUE;
1106        } else if (json_object_get_string(o, "event")) {
1107                twitter_stream_handle_event(ic, o);
1108                return TRUE;
1109        } else if ((c = json_object_get_object(o, "disconnect"))) {
1110                /* HACK: Because we're inside an event handler, we can't just
1111                   disconnect here. Instead, just change the HTTP status string
1112                   into a Twitter status string. */
1113                char *reason = g_strdup(json_object_get_string(c, "reason"));
1114                if (reason) {
1115                        g_free(td->stream->status_string);
1116                        td->stream->status_string = reason;
1117                }
1118                return TRUE;
1119        }
1120        return FALSE;
1121}
1122
1123static gboolean twitter_stream_handle_status(struct im_connection *ic, struct twitter_xml_status *txs)
1124{
1125        struct twitter_data *td = ic->proto_data;
1126        int i;
1127
1128        for (i = 0; i < TWITTER_LOG_LENGTH; i++) {
1129                if (td->log[i].id == txs->id) {
1130                        /* Got a duplicate (RT, probably). Drop it. */
1131                        return TRUE;
1132                }
1133        }
1134
1135        if (!(g_strcasecmp(txs->user->screen_name, td->user) == 0 ||
1136              set_getbool(&ic->acc->set, "fetch_mentions") ||
1137              bee_user_by_handle(ic->bee, ic, txs->user->screen_name))) {
1138                /* Tweet is from an unknown person and the user does not want
1139                   to see @mentions, so drop it. twitter_stream_handle_event()
1140                   picks up new follows so this simple filter should be safe. */
1141                /* TODO: The streaming API seems to do poor @mention matching.
1142                   I.e. I'm getting mentions for @WilmerSomething, not just for
1143                   @Wilmer. But meh. You want spam, you get spam. */
1144                return TRUE;
1145        }
1146
1147        twitter_status_show(ic, txs);
1148
1149        return TRUE;
1150}
1151
1152static gboolean twitter_stream_handle_event(struct im_connection *ic, JSON_Object *o)
1153{
1154        struct twitter_data *td = ic->proto_data;
1155        JSON_Object *source = json_object_get_object(o, "source");
1156        JSON_Object *target = json_object_get_object(o, "target");
1157        const char *type = json_object_get_string(o, "event");
1158        struct twitter_xml_user *us = NULL;
1159        struct twitter_xml_user *ut = NULL;
1160
1161        if (!type || !source || !target) {
1162                return FALSE;
1163        }
1164
1165        if (strcmp(type, "follow") == 0) {
1166                us = twitter_xt_get_user(source);
1167                ut = twitter_xt_get_user(target);
1168                if (g_strcasecmp(us->screen_name, td->user) == 0) {
1169                        twitter_add_buddy(ic, ut->screen_name, ut->name);
1170                }
1171        } else if (strcmp(type, "mute") == 0) {
1172                GSList *found;
1173                char *uid_str;
1174                ut = twitter_xt_get_user(target);
1175                uid_str = g_strdup_printf("%" G_GUINT64_FORMAT, ut->uid);
1176                if (!(found = g_slist_find_custom(td->mutes_ids, uid_str,
1177                                                  (GCompareFunc)strcmp))) {
1178                        td->mutes_ids = g_slist_prepend(td->mutes_ids, uid_str);
1179                }
1180                twitter_log(ic, "Muted user %s", ut->screen_name);
1181                if (getenv("BITLBEE_DEBUG")) {
1182                        fprintf(stderr, "New mute: %s %"G_GUINT64_FORMAT"\n",
1183                                ut->screen_name, ut->uid);
1184                }
1185        } else if (strcmp(type, "unmute") == 0) {
1186                GSList *found;
1187                char *uid_str;
1188                ut = twitter_xt_get_user(target);
1189                uid_str = g_strdup_printf("%" G_GUINT64_FORMAT, ut->uid);
1190                if ((found = g_slist_find_custom(td->mutes_ids, uid_str,
1191                                                (GCompareFunc)strcmp))) {
1192                        char *found_str = found->data;
1193                        td->mutes_ids = g_slist_delete_link(td->mutes_ids, found);
1194                        g_free(found_str);
1195                }
1196                g_free(uid_str);
1197                twitter_log(ic, "Unmuted user %s", ut->screen_name);
1198                if (getenv("BITLBEE_DEBUG")) {
1199                        fprintf(stderr, "New unmute: %s %"G_GUINT64_FORMAT"\n",
1200                                ut->screen_name, ut->uid);
1201                }
1202        }
1203
1204        txu_free(us);
1205        txu_free(ut);
1206
1207        return TRUE;
1208}
1209
1210gboolean twitter_open_stream(struct im_connection *ic)
1211{
1212        struct twitter_data *td = ic->proto_data;
1213        char *args[2] = { "with", "followings" };
1214
1215        if ((td->stream = twitter_http(ic, TWITTER_USER_STREAM_URL,
1216                                       twitter_http_stream, ic, 0, args, 2))) {
1217                /* This flag must be enabled or we'll get no data until EOF
1218                   (which err, kind of, defeats the purpose of a streaming API). */
1219                td->stream->flags |= HTTPC_STREAMING;
1220                return TRUE;
1221        }
1222
1223        return FALSE;
1224}
1225
1226static gboolean twitter_filter_stream(struct im_connection *ic)
1227{
1228        struct twitter_data *td = ic->proto_data;
1229        char *args[4] = { "follow", NULL, "track", NULL };
1230        GString *followstr = g_string_new("");
1231        GString *trackstr = g_string_new("");
1232        gboolean ret = FALSE;
1233        struct twitter_filter *tf;
1234        GSList *l;
1235
1236        for (l = td->filters; l; l = g_slist_next(l)) {
1237                tf = l->data;
1238
1239                switch (tf->type) {
1240                case TWITTER_FILTER_TYPE_FOLLOW:
1241                        if (followstr->len > 0) {
1242                                g_string_append_c(followstr, ',');
1243                        }
1244
1245                        g_string_append_printf(followstr, "%" G_GUINT64_FORMAT,
1246                                               tf->uid);
1247                        break;
1248
1249                case TWITTER_FILTER_TYPE_TRACK:
1250                        if (trackstr->len > 0) {
1251                                g_string_append_c(trackstr, ',');
1252                        }
1253
1254                        g_string_append(trackstr, tf->text);
1255                        break;
1256
1257                default:
1258                        continue;
1259                }
1260        }
1261
1262        args[1] = followstr->str;
1263        args[3] = trackstr->str;
1264
1265        if (td->filter_stream) {
1266                http_close(td->filter_stream);
1267        }
1268
1269        if ((td->filter_stream = twitter_http(ic, TWITTER_FILTER_STREAM_URL,
1270                                              twitter_http_stream, ic, 0,
1271                                              args, 4))) {
1272                /* This flag must be enabled or we'll get no data until EOF
1273                   (which err, kind of, defeats the purpose of a streaming API). */
1274                td->filter_stream->flags |= HTTPC_STREAMING;
1275                ret = TRUE;
1276        }
1277
1278        g_string_free(followstr, TRUE);
1279        g_string_free(trackstr, TRUE);
1280
1281        return ret;
1282}
1283
1284static void twitter_filter_users_post(struct http_request *req)
1285{
1286        struct im_connection *ic = req->data;
1287        struct twitter_data *td;
1288        struct twitter_filter *tf;
1289        GList *users = NULL;
1290        JSON_Value *parsed;
1291        GString *fstr;
1292        GSList *l;
1293        GList *u;
1294        int i;
1295
1296        // Check if the connection is still active.
1297        if (!g_slist_find(twitter_connections, ic)) {
1298                return;
1299        }
1300
1301        td = ic->proto_data;
1302
1303        if (!(parsed = twitter_parse_response(ic, req))) {
1304                return;
1305        }
1306
1307        for (l = td->filters; l; l = g_slist_next(l)) {
1308                tf = l->data;
1309
1310                if (tf->type == TWITTER_FILTER_TYPE_FOLLOW) {
1311                        users = g_list_prepend(users, tf);
1312                }
1313        }
1314
1315        if (json_type(parsed) != JSONArray) {
1316                goto finish;
1317        }
1318
1319        for (i = 0; i < json_array_get_count(json_array(parsed)); i++) {
1320                JSON_Object *o = json_array_get_object(json_array(parsed), i);
1321                jint id = json_object_get_integer(o, "id");
1322                const char *name = json_object_get_string(o, "screen_name");
1323
1324                if (!name || !id) {
1325                        continue;
1326                }
1327
1328                for (u = users; u; u = g_list_next(u)) {
1329                        tf = u->data;
1330
1331                        if (g_strcasecmp(tf->text, name) == 0) {
1332                                tf->uid = id;
1333                                users = g_list_delete_link(users, u);
1334                                break;
1335                        }
1336                }
1337        }
1338
1339finish:
1340        json_value_free(parsed);
1341        twitter_filter_stream(ic);
1342
1343        if (!users) {
1344                return;
1345        }
1346
1347        fstr = g_string_new("");
1348
1349        for (u = users; u; u = g_list_next(u)) {
1350                if (fstr->len > 0) {
1351                        g_string_append(fstr, ", ");
1352                }
1353
1354                g_string_append(fstr, tf->text);
1355        }
1356
1357        imcb_error(ic, "Failed UID acquisitions: %s", fstr->str);
1358
1359        g_string_free(fstr, TRUE);
1360        g_list_free(users);
1361}
1362
1363gboolean twitter_open_filter_stream(struct im_connection *ic)
1364{
1365        struct twitter_data *td = ic->proto_data;
1366        char *args[2] = { "screen_name", NULL };
1367        GString *ustr = g_string_new("");
1368        struct twitter_filter *tf;
1369        struct http_request *req;
1370        GSList *l;
1371
1372        for (l = td->filters; l; l = g_slist_next(l)) {
1373                tf = l->data;
1374
1375                if (tf->type != TWITTER_FILTER_TYPE_FOLLOW || tf->uid != 0) {
1376                        continue;
1377                }
1378
1379                if (ustr->len > 0) {
1380                        g_string_append_c(ustr, ',');
1381                }
1382
1383                g_string_append(ustr, tf->text);
1384        }
1385
1386        if (ustr->len == 0) {
1387                g_string_free(ustr, TRUE);
1388                return twitter_filter_stream(ic);
1389        }
1390
1391        args[1] = ustr->str;
1392        req = twitter_http(ic, TWITTER_USERS_LOOKUP_URL,
1393                           twitter_filter_users_post,
1394                           ic, 0, args, 2);
1395
1396        g_string_free(ustr, TRUE);
1397        return req != NULL;
1398}
1399
1400static void twitter_get_home_timeline(struct im_connection *ic, gint64 next_cursor);
1401static void twitter_get_mentions(struct im_connection *ic, gint64 next_cursor);
1402
1403/**
1404 * Get the timeline with optionally mentions
1405 */
1406gboolean twitter_get_timeline(struct im_connection *ic, gint64 next_cursor)
1407{
1408        struct twitter_data *td = ic->proto_data;
1409        gboolean include_mentions = set_getbool(&ic->acc->set, "fetch_mentions");
1410
1411        if (td->flags & TWITTER_DOING_TIMELINE) {
1412                if (++td->http_fails >= 5) {
1413                        imcb_error(ic, "Fetch timeout (%d)", td->flags);
1414                        imc_logout(ic, TRUE);
1415                        return FALSE;
1416                }
1417        }
1418
1419        td->flags |= TWITTER_DOING_TIMELINE;
1420
1421        twitter_get_home_timeline(ic, next_cursor);
1422
1423        if (include_mentions) {
1424                twitter_get_mentions(ic, next_cursor);
1425        }
1426
1427        return TRUE;
1428}
1429
1430/**
1431 * Call this one after receiving timeline/mentions. Show to user once we have
1432 * both.
1433 */
1434void twitter_flush_timeline(struct im_connection *ic)
1435{
1436        struct twitter_data *td = ic->proto_data;
1437        gboolean include_mentions = set_getbool(&ic->acc->set, "fetch_mentions");
1438        int show_old_mentions = set_getint(&ic->acc->set, "show_old_mentions");
1439        struct twitter_xml_list *home_timeline = td->home_timeline_obj;
1440        struct twitter_xml_list *mentions = td->mentions_obj;
1441        guint64 last_id = 0;
1442        GSList *output = NULL;
1443        GSList *l;
1444
1445        imcb_connected(ic);
1446
1447        if (!(td->flags & TWITTER_GOT_TIMELINE)) {
1448                return;
1449        }
1450
1451        if (include_mentions && !(td->flags & TWITTER_GOT_MENTIONS)) {
1452                return;
1453        }
1454
1455        if (home_timeline && home_timeline->list) {
1456                for (l = home_timeline->list; l; l = g_slist_next(l)) {
1457                        output = g_slist_insert_sorted(output, l->data, twitter_compare_elements);
1458                }
1459        }
1460
1461        if (include_mentions && mentions && mentions->list) {
1462                for (l = mentions->list; l; l = g_slist_next(l)) {
1463                        if (show_old_mentions < 1 && output && twitter_compare_elements(l->data, output->data) < 0) {
1464                                continue;
1465                        }
1466
1467                        output = g_slist_insert_sorted(output, l->data, twitter_compare_elements);
1468                }
1469        }
1470
1471        // See if the user wants to see the messages in a groupchat window or as private messages.
1472        while (output) {
1473                struct twitter_xml_status *txs = output->data;
1474                if (txs->id != last_id) {
1475                        twitter_status_show(ic, txs);
1476                }
1477                last_id = txs->id;
1478                output = g_slist_remove(output, txs);
1479        }
1480
1481        txl_free(home_timeline);
1482        txl_free(mentions);
1483
1484        td->flags &= ~(TWITTER_DOING_TIMELINE | TWITTER_GOT_TIMELINE | TWITTER_GOT_MENTIONS);
1485        td->home_timeline_obj = td->mentions_obj = NULL;
1486}
1487
1488static void twitter_http_get_home_timeline(struct http_request *req);
1489static void twitter_http_get_mentions(struct http_request *req);
1490
1491/**
1492 * Get the timeline.
1493 */
1494static void twitter_get_home_timeline(struct im_connection *ic, gint64 next_cursor)
1495{
1496        struct twitter_data *td = ic->proto_data;
1497
1498        txl_free(td->home_timeline_obj);
1499        td->home_timeline_obj = NULL;
1500        td->flags &= ~TWITTER_GOT_TIMELINE;
1501
1502        char *args[8];
1503        args[0] = "cursor";
1504        args[1] = g_strdup_printf("%" G_GINT64_FORMAT, next_cursor);
1505        args[2] = "include_entities";
1506        args[3] = "true";
1507        args[4] = "tweet_mode";
1508        args[5] = "extended";
1509        if (td->timeline_id) {
1510                args[6] = "since_id";
1511                args[7] = g_strdup_printf("%" G_GUINT64_FORMAT, td->timeline_id);
1512        }
1513
1514        if (twitter_http(ic, TWITTER_HOME_TIMELINE_URL, twitter_http_get_home_timeline, ic, 0, args,
1515                         td->timeline_id ? 8 : 6) == NULL) {
1516                if (++td->http_fails >= 5) {
1517                        imcb_error(ic, "Could not retrieve %s: %s",
1518                                   TWITTER_HOME_TIMELINE_URL, "connection failed");
1519                }
1520                td->flags |= TWITTER_GOT_TIMELINE;
1521                twitter_flush_timeline(ic);
1522        }
1523
1524        g_free(args[1]);
1525        if (td->timeline_id) {
1526                g_free(args[7]);
1527        }
1528}
1529
1530/**
1531 * Get mentions.
1532 */
1533static void twitter_get_mentions(struct im_connection *ic, gint64 next_cursor)
1534{
1535        struct twitter_data *td = ic->proto_data;
1536
1537        txl_free(td->mentions_obj);
1538        td->mentions_obj = NULL;
1539        td->flags &= ~TWITTER_GOT_MENTIONS;
1540
1541        char *args[8];
1542        args[0] = "cursor";
1543        args[1] = g_strdup_printf("%" G_GINT64_FORMAT, next_cursor);
1544        args[2] = "include_entities";
1545        args[3] = "true";
1546        if (td->timeline_id) {
1547                args[4] = "since_id";
1548                args[5] = g_strdup_printf("%" G_GUINT64_FORMAT, td->timeline_id);
1549        } else {
1550                args[4] = "count";
1551                args[5] = g_strdup_printf("%d", set_getint(&ic->acc->set, "show_old_mentions"));
1552        }
1553        args[6] = "tweet_mode";
1554        args[7] = "extended";
1555
1556        if (twitter_http(ic, TWITTER_MENTIONS_URL, twitter_http_get_mentions,
1557                         ic, 0, args, 8) == NULL) {
1558                if (++td->http_fails >= 5) {
1559                        imcb_error(ic, "Could not retrieve %s: %s",
1560                                   TWITTER_MENTIONS_URL, "connection failed");
1561                }
1562                td->flags |= TWITTER_GOT_MENTIONS;
1563                twitter_flush_timeline(ic);
1564        }
1565
1566        g_free(args[1]);
1567        g_free(args[5]);
1568}
1569
1570/**
1571 * Callback for getting the home timeline.
1572 */
1573static void twitter_http_get_home_timeline(struct http_request *req)
1574{
1575        struct im_connection *ic = req->data;
1576        struct twitter_data *td;
1577        JSON_Value *parsed;
1578        struct twitter_xml_list *txl;
1579
1580        // Check if the connection is still active.
1581        if (!g_slist_find(twitter_connections, ic)) {
1582                return;
1583        }
1584
1585        td = ic->proto_data;
1586
1587        // The root <statuses> node should hold the list of statuses <status>
1588        if (!(parsed = twitter_parse_response(ic, req))) {
1589                goto end;
1590        }
1591
1592        txl = g_new0(struct twitter_xml_list, 1);
1593        txl->list = NULL;
1594
1595        twitter_xt_get_status_list(ic, parsed, txl);
1596        json_value_free(parsed);
1597
1598        td->home_timeline_obj = txl;
1599
1600end:
1601        if (!g_slist_find(twitter_connections, ic)) {
1602                return;
1603        }
1604
1605        td->flags |= TWITTER_GOT_TIMELINE;
1606
1607        twitter_flush_timeline(ic);
1608}
1609
1610/**
1611 * Callback for getting mentions.
1612 */
1613static void twitter_http_get_mentions(struct http_request *req)
1614{
1615        struct im_connection *ic = req->data;
1616        struct twitter_data *td;
1617        JSON_Value *parsed;
1618        struct twitter_xml_list *txl;
1619
1620        // Check if the connection is still active.
1621        if (!g_slist_find(twitter_connections, ic)) {
1622                return;
1623        }
1624
1625        td = ic->proto_data;
1626
1627        // The root <statuses> node should hold the list of statuses <status>
1628        if (!(parsed = twitter_parse_response(ic, req))) {
1629                goto end;
1630        }
1631
1632        txl = g_new0(struct twitter_xml_list, 1);
1633        txl->list = NULL;
1634
1635        twitter_xt_get_status_list(ic, parsed, txl);
1636        json_value_free(parsed);
1637
1638        td->mentions_obj = txl;
1639
1640end:
1641        if (!g_slist_find(twitter_connections, ic)) {
1642                return;
1643        }
1644
1645        td->flags |= TWITTER_GOT_MENTIONS;
1646
1647        twitter_flush_timeline(ic);
1648}
1649
1650/**
1651 * Callback to use after sending a POST request to twitter.
1652 * (Generic, used for a few kinds of queries.)
1653 */
1654static void twitter_http_post(struct http_request *req)
1655{
1656        struct im_connection *ic = req->data;
1657        struct twitter_data *td;
1658        JSON_Value *parsed;
1659        jint id;
1660
1661        // Check if the connection is still active.
1662        if (!g_slist_find(twitter_connections, ic)) {
1663                return;
1664        }
1665
1666        td = ic->proto_data;
1667        td->last_status_id = 0;
1668
1669        if (!(parsed = twitter_parse_response(ic, req))) {
1670                return;
1671        }
1672
1673        if ((id = json_object_get_integer(json_object(parsed), "id"))) {
1674                td->last_status_id = id;
1675        }
1676
1677        json_value_free(parsed);
1678
1679        if (req->flags & TWITTER_HTTP_USER_ACK) {
1680                twitter_log(ic, "Command processed successfully");
1681        }
1682}
1683
1684/**
1685 * Function to POST a new status to twitter.
1686 */
1687void twitter_post_status(struct im_connection *ic, char *msg, guint64 in_reply_to)
1688{
1689        char *args[4] = {
1690                "status", msg,
1691                "in_reply_to_status_id",
1692                g_strdup_printf("%" G_GUINT64_FORMAT, in_reply_to)
1693        };
1694
1695        if (set_getbool(&ic->acc->set, "in_korea") && !in_reply_to) {
1696                g_free(args[3]);
1697                args[2] = "place_id";
1698                args[3] = g_strdup("c999e6a453e9ef72");
1699                in_reply_to = 1;
1700        }
1701
1702        twitter_http(ic, TWITTER_STATUS_UPDATE_URL, twitter_http_post, ic, 1,
1703                     args, in_reply_to ? 4 : 2);
1704        g_free(args[3]);
1705}
1706
1707
1708/**
1709 * Function to POST a new message to twitter.
1710 */
1711void twitter_direct_messages_new(struct im_connection *ic, char *who, char *msg)
1712{
1713        char *args[4];
1714
1715        args[0] = "screen_name";
1716        args[1] = who;
1717        args[2] = "text";
1718        args[3] = msg;
1719        // Use the same callback as for twitter_post_status, since it does basically the same.
1720        twitter_http(ic, TWITTER_DIRECT_MESSAGES_NEW_URL, twitter_http_post, ic, 1, args, 4);
1721}
1722
1723void twitter_friendships_create_destroy(struct im_connection *ic, char *who, int create)
1724{
1725        char *args[2];
1726
1727        args[0] = "screen_name";
1728        args[1] = who;
1729        twitter_http(ic, create ? TWITTER_FRIENDSHIPS_CREATE_URL : TWITTER_FRIENDSHIPS_DESTROY_URL,
1730                     twitter_http_post, ic, 1, args, 2);
1731}
1732
1733/**
1734 * Mute or unmute a user
1735 */
1736void twitter_mute_create_destroy(struct im_connection *ic, char *who, int create)
1737{
1738        char *args[2];
1739
1740        args[0] = "screen_name";
1741        args[1] = who;
1742        twitter_http(ic, create ? TWITTER_MUTES_CREATE_URL : TWITTER_MUTES_DESTROY_URL,
1743                     twitter_http_post, ic, 1, args, 2);
1744}
1745
1746void twitter_status_destroy(struct im_connection *ic, guint64 id)
1747{
1748        char *url;
1749
1750        url = g_strdup_printf("%s%" G_GUINT64_FORMAT "%s",
1751                              TWITTER_STATUS_DESTROY_URL, id, ".json");
1752        twitter_http_f(ic, url, twitter_http_post, ic, 1, NULL, 0,
1753                       TWITTER_HTTP_USER_ACK);
1754        g_free(url);
1755}
1756
1757void twitter_status_retweet(struct im_connection *ic, guint64 id)
1758{
1759        char *url;
1760
1761        url = g_strdup_printf("%s%" G_GUINT64_FORMAT "%s",
1762                              TWITTER_STATUS_RETWEET_URL, id, ".json");
1763        twitter_http_f(ic, url, twitter_http_post, ic, 1, NULL, 0,
1764                       TWITTER_HTTP_USER_ACK);
1765        g_free(url);
1766}
1767
1768/**
1769 * Report a user for sending spam.
1770 */
1771void twitter_report_spam(struct im_connection *ic, char *screen_name)
1772{
1773        char *args[2] = {
1774                "screen_name",
1775                NULL,
1776        };
1777
1778        args[1] = screen_name;
1779        twitter_http_f(ic, TWITTER_REPORT_SPAM_URL, twitter_http_post,
1780                       ic, 1, args, 2, TWITTER_HTTP_USER_ACK);
1781}
1782
1783/**
1784 * Favourite a tweet.
1785 */
1786void twitter_favourite_tweet(struct im_connection *ic, guint64 id)
1787{
1788        char *args[2] = {
1789                "id",
1790                NULL,
1791        };
1792
1793        args[1] = g_strdup_printf("%" G_GUINT64_FORMAT, id);
1794        twitter_http_f(ic, TWITTER_FAVORITE_CREATE_URL, twitter_http_post,
1795                       ic, 1, args, 2, TWITTER_HTTP_USER_ACK);
1796        g_free(args[1]);
1797}
1798
1799static void twitter_http_status_show_url(struct http_request *req)
1800{
1801        struct im_connection *ic = req->data;
1802        JSON_Value *parsed;
1803        uint64_t id;
1804        const char *name;
1805
1806        // Check if the connection is still active.
1807        if (!g_slist_find(twitter_connections, ic)) {
1808                return;
1809        }
1810
1811        if (!(parsed = twitter_parse_response(ic, req))) {
1812                return;
1813        }
1814
1815        name = json_object_dotget_string(json_object(parsed), "user.screen_name");
1816        id = json_object_get_integer(json_object(parsed), "id");
1817
1818        if (name && id) {
1819                twitter_log(ic, "https://twitter.com/%s/status/%" G_GUINT64_FORMAT, name, id);
1820        } else {
1821                twitter_log(ic, "Error: could not fetch tweet url.");
1822        }
1823
1824        json_value_free(parsed);
1825}
1826
1827void twitter_status_show_url(struct im_connection *ic, guint64 id)
1828{
1829        char *url = g_strdup_printf("%s%" G_GUINT64_FORMAT "%s", TWITTER_STATUS_SHOW_URL, id, ".json");
1830        twitter_http(ic, url, twitter_http_status_show_url, ic, 0, NULL, 0);
1831        g_free(url);
1832}
Note: See TracBrowser for help on using the repository browser.