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 "json_util.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 | |
---|
46 | struct twitter_xml_list { |
---|
47 | int type; |
---|
48 | gint64 next_cursor; |
---|
49 | GSList *list; |
---|
50 | }; |
---|
51 | |
---|
52 | struct twitter_xml_user { |
---|
53 | guint64 uid; |
---|
54 | char *name; |
---|
55 | char *screen_name; |
---|
56 | }; |
---|
57 | |
---|
58 | struct 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 | /** |
---|
68 | * Frees a twitter_xml_user struct. |
---|
69 | */ |
---|
70 | static void txu_free(struct twitter_xml_user *txu) |
---|
71 | { |
---|
72 | if (txu == NULL) { |
---|
73 | return; |
---|
74 | } |
---|
75 | |
---|
76 | g_free(txu->name); |
---|
77 | g_free(txu->screen_name); |
---|
78 | g_free(txu); |
---|
79 | } |
---|
80 | |
---|
81 | /** |
---|
82 | * Frees a twitter_xml_status struct. |
---|
83 | */ |
---|
84 | static void txs_free(struct twitter_xml_status *txs) |
---|
85 | { |
---|
86 | if (txs == NULL) { |
---|
87 | return; |
---|
88 | } |
---|
89 | |
---|
90 | g_free(txs->text); |
---|
91 | txu_free(txs->user); |
---|
92 | g_free(txs); |
---|
93 | } |
---|
94 | |
---|
95 | /** |
---|
96 | * Free a twitter_xml_list struct. |
---|
97 | * type is the type of list the struct holds. |
---|
98 | */ |
---|
99 | static void txl_free(struct twitter_xml_list *txl) |
---|
100 | { |
---|
101 | GSList *l; |
---|
102 | |
---|
103 | if (txl == NULL) { |
---|
104 | return; |
---|
105 | } |
---|
106 | |
---|
107 | for (l = txl->list; l; l = g_slist_next(l)) { |
---|
108 | if (txl->type == TXL_STATUS) { |
---|
109 | txs_free((struct twitter_xml_status *) l->data); |
---|
110 | } else if (txl->type == TXL_ID) { |
---|
111 | g_free(l->data); |
---|
112 | } else if (txl->type == TXL_USER) { |
---|
113 | txu_free(l->data); |
---|
114 | } |
---|
115 | } |
---|
116 | |
---|
117 | g_slist_free(txl->list); |
---|
118 | g_free(txl); |
---|
119 | } |
---|
120 | |
---|
121 | /** |
---|
122 | * Compare status elements |
---|
123 | */ |
---|
124 | static gint twitter_compare_elements(gconstpointer a, gconstpointer b) |
---|
125 | { |
---|
126 | struct twitter_xml_status *a_status = (struct twitter_xml_status *) a; |
---|
127 | struct twitter_xml_status *b_status = (struct twitter_xml_status *) b; |
---|
128 | |
---|
129 | if (a_status->created_at < b_status->created_at) { |
---|
130 | return -1; |
---|
131 | } else if (a_status->created_at > b_status->created_at) { |
---|
132 | return 1; |
---|
133 | } else { |
---|
134 | return 0; |
---|
135 | } |
---|
136 | } |
---|
137 | |
---|
138 | /** |
---|
139 | * Add a buddy if it is not already added, set the status to logged in. |
---|
140 | */ |
---|
141 | static void twitter_add_buddy(struct im_connection *ic, char *name, const char *fullname) |
---|
142 | { |
---|
143 | struct twitter_data *td = ic->proto_data; |
---|
144 | |
---|
145 | // Check if the buddy is already in the buddy list. |
---|
146 | if (!bee_user_by_handle(ic->bee, ic, name)) { |
---|
147 | // The buddy is not in the list, add the buddy and set the status to logged in. |
---|
148 | imcb_add_buddy(ic, name, NULL); |
---|
149 | imcb_rename_buddy(ic, name, fullname); |
---|
150 | if (td->flags & TWITTER_MODE_CHAT) { |
---|
151 | /* Necessary so that nicks always get translated to the |
---|
152 | exact Twitter username. */ |
---|
153 | imcb_buddy_nick_hint(ic, name, name); |
---|
154 | if (td->timeline_gc) { |
---|
155 | imcb_chat_add_buddy(td->timeline_gc, name); |
---|
156 | } |
---|
157 | } else if (td->flags & TWITTER_MODE_MANY) { |
---|
158 | imcb_buddy_status(ic, name, OPT_LOGGED_IN, NULL, NULL); |
---|
159 | } |
---|
160 | } |
---|
161 | } |
---|
162 | |
---|
163 | /* Warning: May return a malloc()ed value, which will be free()d on the next |
---|
164 | call. Only for short-term use. NOT THREADSAFE! */ |
---|
165 | char *twitter_parse_error(struct http_request *req) |
---|
166 | { |
---|
167 | static char *ret = NULL; |
---|
168 | json_value *root, *err; |
---|
169 | |
---|
170 | g_free(ret); |
---|
171 | ret = NULL; |
---|
172 | |
---|
173 | if (req->body_size > 0) { |
---|
174 | root = json_parse(req->reply_body, req->body_size); |
---|
175 | err = json_o_get(root, "errors"); |
---|
176 | if (err && err->type == json_array && (err = err->u.array.values[0]) && |
---|
177 | err->type == json_object) { |
---|
178 | const char *msg = json_o_str(err, "message"); |
---|
179 | if (msg) { |
---|
180 | ret = g_strdup_printf("%s (%s)", req->status_string, msg); |
---|
181 | } |
---|
182 | } |
---|
183 | json_value_free(root); |
---|
184 | } |
---|
185 | |
---|
186 | return ret ? ret : req->status_string; |
---|
187 | } |
---|
188 | |
---|
189 | /* WATCH OUT: This function might or might not destroy your connection. |
---|
190 | Sub-optimal indeed, but just be careful when this returns NULL! */ |
---|
191 | static json_value *twitter_parse_response(struct im_connection *ic, struct http_request *req) |
---|
192 | { |
---|
193 | gboolean logging_in = !(ic->flags & OPT_LOGGED_IN); |
---|
194 | gboolean periodic; |
---|
195 | struct twitter_data *td = ic->proto_data; |
---|
196 | json_value *ret; |
---|
197 | char path[64] = "", *s; |
---|
198 | |
---|
199 | if ((s = strchr(req->request, ' '))) { |
---|
200 | path[sizeof(path) - 1] = '\0'; |
---|
201 | strncpy(path, s + 1, sizeof(path) - 1); |
---|
202 | if ((s = strchr(path, '?')) || (s = strchr(path, ' '))) { |
---|
203 | *s = '\0'; |
---|
204 | } |
---|
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 | twitter_log(ic, "Error: Could not retrieve %s: %s", |
---|
223 | path, twitter_parse_error(req)); |
---|
224 | } |
---|
225 | |
---|
226 | if (logging_in) { |
---|
227 | imc_logout(ic, TRUE); |
---|
228 | } |
---|
229 | return NULL; |
---|
230 | } else { |
---|
231 | td->http_fails = 0; |
---|
232 | } |
---|
233 | |
---|
234 | if ((ret = json_parse(req->reply_body, req->body_size)) == NULL) { |
---|
235 | imcb_error(ic, "Could not retrieve %s: %s", |
---|
236 | path, "XML parse error"); |
---|
237 | } |
---|
238 | return ret; |
---|
239 | } |
---|
240 | |
---|
241 | static void twitter_http_get_friends_ids(struct http_request *req); |
---|
242 | |
---|
243 | /** |
---|
244 | * Get the friends ids. |
---|
245 | */ |
---|
246 | void twitter_get_friends_ids(struct im_connection *ic, gint64 next_cursor) |
---|
247 | { |
---|
248 | // Primitive, but hey! It works... |
---|
249 | char *args[2]; |
---|
250 | |
---|
251 | args[0] = "cursor"; |
---|
252 | args[1] = g_strdup_printf("%" G_GINT64_FORMAT, next_cursor); |
---|
253 | twitter_http(ic, TWITTER_FRIENDS_IDS_URL, twitter_http_get_friends_ids, ic, 0, args, 2); |
---|
254 | |
---|
255 | g_free(args[1]); |
---|
256 | } |
---|
257 | |
---|
258 | /** |
---|
259 | * Fill a list of ids. |
---|
260 | */ |
---|
261 | static gboolean twitter_xt_get_friends_id_list(json_value *node, struct twitter_xml_list *txl) |
---|
262 | { |
---|
263 | json_value *c; |
---|
264 | int i; |
---|
265 | |
---|
266 | // Set the list type. |
---|
267 | txl->type = TXL_ID; |
---|
268 | |
---|
269 | c = json_o_get(node, "ids"); |
---|
270 | if (!c || c->type != json_array) { |
---|
271 | return FALSE; |
---|
272 | } |
---|
273 | |
---|
274 | for (i = 0; i < c->u.array.length; i++) { |
---|
275 | if (c->u.array.values[i]->type != json_integer) { |
---|
276 | continue; |
---|
277 | } |
---|
278 | |
---|
279 | txl->list = g_slist_prepend(txl->list, |
---|
280 | g_strdup_printf("%" PRIu64, c->u.array.values[i]->u.integer)); |
---|
281 | } |
---|
282 | |
---|
283 | c = json_o_get(node, "next_cursor"); |
---|
284 | if (c && c->type == json_integer) { |
---|
285 | txl->next_cursor = c->u.integer; |
---|
286 | } else { |
---|
287 | txl->next_cursor = -1; |
---|
288 | } |
---|
289 | |
---|
290 | return TRUE; |
---|
291 | } |
---|
292 | |
---|
293 | static void twitter_get_users_lookup(struct im_connection *ic); |
---|
294 | |
---|
295 | /** |
---|
296 | * Callback for getting the friends ids. |
---|
297 | */ |
---|
298 | static void twitter_http_get_friends_ids(struct http_request *req) |
---|
299 | { |
---|
300 | struct im_connection *ic; |
---|
301 | json_value *parsed; |
---|
302 | struct twitter_xml_list *txl; |
---|
303 | struct twitter_data *td; |
---|
304 | |
---|
305 | ic = req->data; |
---|
306 | |
---|
307 | // Check if the connection is still active. |
---|
308 | if (!g_slist_find(twitter_connections, ic)) { |
---|
309 | return; |
---|
310 | } |
---|
311 | |
---|
312 | td = ic->proto_data; |
---|
313 | |
---|
314 | txl = g_new0(struct twitter_xml_list, 1); |
---|
315 | txl->list = td->follow_ids; |
---|
316 | |
---|
317 | // Parse the data. |
---|
318 | if (!(parsed = twitter_parse_response(ic, req))) { |
---|
319 | return; |
---|
320 | } |
---|
321 | |
---|
322 | twitter_xt_get_friends_id_list(parsed, txl); |
---|
323 | json_value_free(parsed); |
---|
324 | |
---|
325 | td->follow_ids = txl->list; |
---|
326 | if (txl->next_cursor) { |
---|
327 | /* These were just numbers. Up to 4000 in a response AFAIK so if we get here |
---|
328 | we may be using a spammer account. \o/ */ |
---|
329 | twitter_get_friends_ids(ic, txl->next_cursor); |
---|
330 | } else { |
---|
331 | /* Now to convert all those numbers into names.. */ |
---|
332 | twitter_get_users_lookup(ic); |
---|
333 | } |
---|
334 | |
---|
335 | txl->list = NULL; |
---|
336 | txl_free(txl); |
---|
337 | } |
---|
338 | |
---|
339 | static gboolean twitter_xt_get_users(json_value *node, struct twitter_xml_list *txl); |
---|
340 | static void twitter_http_get_users_lookup(struct http_request *req); |
---|
341 | |
---|
342 | static void twitter_get_users_lookup(struct im_connection *ic) |
---|
343 | { |
---|
344 | struct twitter_data *td = ic->proto_data; |
---|
345 | char *args[2] = { |
---|
346 | "user_id", |
---|
347 | NULL, |
---|
348 | }; |
---|
349 | GString *ids = g_string_new(""); |
---|
350 | int i; |
---|
351 | |
---|
352 | /* We can request up to 100 users at a time. */ |
---|
353 | for (i = 0; i < 100 && td->follow_ids; i++) { |
---|
354 | g_string_append_printf(ids, ",%s", (char *) td->follow_ids->data); |
---|
355 | g_free(td->follow_ids->data); |
---|
356 | td->follow_ids = g_slist_remove(td->follow_ids, td->follow_ids->data); |
---|
357 | } |
---|
358 | if (ids->len > 0) { |
---|
359 | args[1] = ids->str + 1; |
---|
360 | /* POST, because I think ids can be up to 1KB long. */ |
---|
361 | twitter_http(ic, TWITTER_USERS_LOOKUP_URL, twitter_http_get_users_lookup, ic, 1, args, 2); |
---|
362 | } else { |
---|
363 | /* We have all users. Continue with login. (Get statuses.) */ |
---|
364 | td->flags |= TWITTER_HAVE_FRIENDS; |
---|
365 | twitter_login_finish(ic); |
---|
366 | } |
---|
367 | g_string_free(ids, TRUE); |
---|
368 | } |
---|
369 | |
---|
370 | /** |
---|
371 | * Callback for getting (twitter)friends... |
---|
372 | * |
---|
373 | * Be afraid, be very afraid! This function will potentially add hundreds of "friends". "Who has |
---|
374 | * hundreds of friends?" you wonder? You probably not, since you are reading the source of |
---|
375 | * BitlBee... Get a life and meet new people! |
---|
376 | */ |
---|
377 | static void twitter_http_get_users_lookup(struct http_request *req) |
---|
378 | { |
---|
379 | struct im_connection *ic = req->data; |
---|
380 | json_value *parsed; |
---|
381 | struct twitter_xml_list *txl; |
---|
382 | GSList *l = NULL; |
---|
383 | struct twitter_xml_user *user; |
---|
384 | |
---|
385 | // Check if the connection is still active. |
---|
386 | if (!g_slist_find(twitter_connections, ic)) { |
---|
387 | return; |
---|
388 | } |
---|
389 | |
---|
390 | txl = g_new0(struct twitter_xml_list, 1); |
---|
391 | txl->list = NULL; |
---|
392 | |
---|
393 | // Get the user list from the parsed xml feed. |
---|
394 | if (!(parsed = twitter_parse_response(ic, req))) { |
---|
395 | return; |
---|
396 | } |
---|
397 | twitter_xt_get_users(parsed, txl); |
---|
398 | json_value_free(parsed); |
---|
399 | |
---|
400 | // Add the users as buddies. |
---|
401 | for (l = txl->list; l; l = g_slist_next(l)) { |
---|
402 | user = l->data; |
---|
403 | twitter_add_buddy(ic, user->screen_name, user->name); |
---|
404 | } |
---|
405 | |
---|
406 | // Free the structure. |
---|
407 | txl_free(txl); |
---|
408 | |
---|
409 | twitter_get_users_lookup(ic); |
---|
410 | } |
---|
411 | |
---|
412 | struct twitter_xml_user *twitter_xt_get_user(const json_value *node) |
---|
413 | { |
---|
414 | struct twitter_xml_user *txu; |
---|
415 | json_value *jv; |
---|
416 | |
---|
417 | txu = g_new0(struct twitter_xml_user, 1); |
---|
418 | txu->name = g_strdup(json_o_str(node, "name")); |
---|
419 | txu->screen_name = g_strdup(json_o_str(node, "screen_name")); |
---|
420 | |
---|
421 | jv = json_o_get(node, "id"); |
---|
422 | txu->uid = jv->u.integer; |
---|
423 | |
---|
424 | return txu; |
---|
425 | } |
---|
426 | |
---|
427 | /** |
---|
428 | * Function to fill a twitter_xml_list struct. |
---|
429 | * It sets: |
---|
430 | * - all <user>s from the <users> element. |
---|
431 | */ |
---|
432 | static gboolean twitter_xt_get_users(json_value *node, struct twitter_xml_list *txl) |
---|
433 | { |
---|
434 | struct twitter_xml_user *txu; |
---|
435 | int i; |
---|
436 | |
---|
437 | // Set the type of the list. |
---|
438 | txl->type = TXL_USER; |
---|
439 | |
---|
440 | if (!node || node->type != json_array) { |
---|
441 | return FALSE; |
---|
442 | } |
---|
443 | |
---|
444 | // The root <users> node should hold the list of users <user> |
---|
445 | // Walk over the nodes children. |
---|
446 | for (i = 0; i < node->u.array.length; i++) { |
---|
447 | txu = twitter_xt_get_user(node->u.array.values[i]); |
---|
448 | if (txu) { |
---|
449 | txl->list = g_slist_prepend(txl->list, txu); |
---|
450 | } |
---|
451 | } |
---|
452 | |
---|
453 | return TRUE; |
---|
454 | } |
---|
455 | |
---|
456 | #ifdef __GLIBC__ |
---|
457 | #define TWITTER_TIME_FORMAT "%a %b %d %H:%M:%S %z %Y" |
---|
458 | #else |
---|
459 | #define TWITTER_TIME_FORMAT "%a %b %d %H:%M:%S +0000 %Y" |
---|
460 | #endif |
---|
461 | |
---|
462 | static char* expand_entities(char* text, const json_value *entities); |
---|
463 | |
---|
464 | /** |
---|
465 | * Function to fill a twitter_xml_status struct. |
---|
466 | * It sets: |
---|
467 | * - the status text and |
---|
468 | * - the created_at timestamp and |
---|
469 | * - the status id and |
---|
470 | * - the user in a twitter_xml_user struct. |
---|
471 | */ |
---|
472 | static struct twitter_xml_status *twitter_xt_get_status(const json_value *node) |
---|
473 | { |
---|
474 | struct twitter_xml_status *txs; |
---|
475 | const json_value *rt = NULL, *entities = NULL; |
---|
476 | |
---|
477 | if (node->type != json_object) { |
---|
478 | return FALSE; |
---|
479 | } |
---|
480 | txs = g_new0(struct twitter_xml_status, 1); |
---|
481 | |
---|
482 | JSON_O_FOREACH(node, k, v) { |
---|
483 | if (strcmp("text", k) == 0 && v->type == json_string) { |
---|
484 | txs->text = g_memdup(v->u.string.ptr, v->u.string.length + 1); |
---|
485 | strip_html(txs->text); |
---|
486 | } else if (strcmp("retweeted_status", k) == 0 && v->type == json_object) { |
---|
487 | rt = v; |
---|
488 | } else if (strcmp("created_at", k) == 0 && v->type == json_string) { |
---|
489 | struct tm parsed; |
---|
490 | |
---|
491 | /* Very sensitive to changes to the formatting of |
---|
492 | this field. :-( Also assumes the timezone used |
---|
493 | is UTC since C time handling functions suck. */ |
---|
494 | if (strptime(v->u.string.ptr, TWITTER_TIME_FORMAT, &parsed) != NULL) { |
---|
495 | txs->created_at = mktime_utc(&parsed); |
---|
496 | } |
---|
497 | } else if (strcmp("user", k) == 0 && v->type == json_object) { |
---|
498 | txs->user = twitter_xt_get_user(v); |
---|
499 | } else if (strcmp("id", k) == 0 && v->type == json_integer) { |
---|
500 | txs->rt_id = txs->id = v->u.integer; |
---|
501 | } else if (strcmp("in_reply_to_status_id", k) == 0 && v->type == json_integer) { |
---|
502 | txs->reply_to = v->u.integer; |
---|
503 | } else if (strcmp("entities", k) == 0 && v->type == json_object) { |
---|
504 | entities = v; |
---|
505 | } |
---|
506 | } |
---|
507 | |
---|
508 | /* If it's a (truncated) retweet, get the original. Even if the API claims it |
---|
509 | wasn't truncated because it may be lying. */ |
---|
510 | if (rt) { |
---|
511 | struct twitter_xml_status *rtxs = twitter_xt_get_status(rt); |
---|
512 | if (rtxs) { |
---|
513 | g_free(txs->text); |
---|
514 | txs->text = g_strdup_printf("RT @%s: %s", rtxs->user->screen_name, rtxs->text); |
---|
515 | txs->id = rtxs->id; |
---|
516 | txs_free(rtxs); |
---|
517 | } |
---|
518 | } else if (entities) { |
---|
519 | txs->text = expand_entities(txs->text, entities); |
---|
520 | } |
---|
521 | |
---|
522 | if (txs->text && txs->user && txs->id) { |
---|
523 | return txs; |
---|
524 | } |
---|
525 | |
---|
526 | txs_free(txs); |
---|
527 | return NULL; |
---|
528 | } |
---|
529 | |
---|
530 | /** |
---|
531 | * Function to fill a twitter_xml_status struct (DM variant). |
---|
532 | */ |
---|
533 | static struct twitter_xml_status *twitter_xt_get_dm(const json_value *node) |
---|
534 | { |
---|
535 | struct twitter_xml_status *txs; |
---|
536 | const json_value *entities = NULL; |
---|
537 | |
---|
538 | if (node->type != json_object) { |
---|
539 | return FALSE; |
---|
540 | } |
---|
541 | txs = g_new0(struct twitter_xml_status, 1); |
---|
542 | |
---|
543 | JSON_O_FOREACH(node, k, v) { |
---|
544 | if (strcmp("text", k) == 0 && v->type == json_string) { |
---|
545 | txs->text = g_memdup(v->u.string.ptr, v->u.string.length + 1); |
---|
546 | strip_html(txs->text); |
---|
547 | } else if (strcmp("created_at", k) == 0 && v->type == json_string) { |
---|
548 | struct tm parsed; |
---|
549 | |
---|
550 | /* Very sensitive to changes to the formatting of |
---|
551 | this field. :-( Also assumes the timezone used |
---|
552 | is UTC since C time handling functions suck. */ |
---|
553 | if (strptime(v->u.string.ptr, TWITTER_TIME_FORMAT, &parsed) != NULL) { |
---|
554 | txs->created_at = mktime_utc(&parsed); |
---|
555 | } |
---|
556 | } else if (strcmp("sender", k) == 0 && v->type == json_object) { |
---|
557 | txs->user = twitter_xt_get_user(v); |
---|
558 | } else if (strcmp("id", k) == 0 && v->type == json_integer) { |
---|
559 | txs->id = v->u.integer; |
---|
560 | } |
---|
561 | } |
---|
562 | |
---|
563 | if (entities) { |
---|
564 | txs->text = expand_entities(txs->text, entities); |
---|
565 | } |
---|
566 | |
---|
567 | if (txs->text && txs->user && txs->id) { |
---|
568 | return txs; |
---|
569 | } |
---|
570 | |
---|
571 | txs_free(txs); |
---|
572 | return NULL; |
---|
573 | } |
---|
574 | |
---|
575 | static char* expand_entities(char* text, const json_value *entities) |
---|
576 | { |
---|
577 | JSON_O_FOREACH(entities, k, v) { |
---|
578 | int i; |
---|
579 | |
---|
580 | if (v->type != json_array) { |
---|
581 | continue; |
---|
582 | } |
---|
583 | if (strcmp(k, "urls") != 0 && strcmp(k, "media") != 0) { |
---|
584 | continue; |
---|
585 | } |
---|
586 | |
---|
587 | for (i = 0; i < v->u.array.length; i++) { |
---|
588 | if (v->u.array.values[i]->type != json_object) { |
---|
589 | continue; |
---|
590 | } |
---|
591 | |
---|
592 | const char *kort = json_o_str(v->u.array.values[i], "url"); |
---|
593 | const char *disp = json_o_str(v->u.array.values[i], "display_url"); |
---|
594 | char *pos, *new; |
---|
595 | |
---|
596 | if (!kort || !disp || !(pos = strstr(text, kort))) { |
---|
597 | continue; |
---|
598 | } |
---|
599 | |
---|
600 | *pos = '\0'; |
---|
601 | new = g_strdup_printf("%s%s <%s>%s", text, kort, |
---|
602 | disp, pos + strlen(kort)); |
---|
603 | |
---|
604 | g_free(text); |
---|
605 | text = new; |
---|
606 | } |
---|
607 | } |
---|
608 | |
---|
609 | return text; |
---|
610 | } |
---|
611 | |
---|
612 | /** |
---|
613 | * Function to fill a twitter_xml_list struct. |
---|
614 | * It sets: |
---|
615 | * - all <status>es within the <status> element and |
---|
616 | * - the next_cursor. |
---|
617 | */ |
---|
618 | static gboolean twitter_xt_get_status_list(struct im_connection *ic, const json_value *node, |
---|
619 | struct twitter_xml_list *txl) |
---|
620 | { |
---|
621 | struct twitter_xml_status *txs; |
---|
622 | int i; |
---|
623 | |
---|
624 | // Set the type of the list. |
---|
625 | txl->type = TXL_STATUS; |
---|
626 | |
---|
627 | if (node->type != json_array) { |
---|
628 | return FALSE; |
---|
629 | } |
---|
630 | |
---|
631 | // The root <statuses> node should hold the list of statuses <status> |
---|
632 | // Walk over the nodes children. |
---|
633 | for (i = 0; i < node->u.array.length; i++) { |
---|
634 | txs = twitter_xt_get_status(node->u.array.values[i]); |
---|
635 | if (!txs) { |
---|
636 | continue; |
---|
637 | } |
---|
638 | |
---|
639 | txl->list = g_slist_prepend(txl->list, txs); |
---|
640 | } |
---|
641 | |
---|
642 | return TRUE; |
---|
643 | } |
---|
644 | |
---|
645 | /* Will log messages either way. Need to keep track of IDs for stream deduping. |
---|
646 | Plus, show_ids is on by default and I don't see why anyone would disable it. */ |
---|
647 | static char *twitter_msg_add_id(struct im_connection *ic, |
---|
648 | struct twitter_xml_status *txs, const char *prefix) |
---|
649 | { |
---|
650 | struct twitter_data *td = ic->proto_data; |
---|
651 | int reply_to = -1; |
---|
652 | bee_user_t *bu; |
---|
653 | |
---|
654 | if (txs->reply_to) { |
---|
655 | int i; |
---|
656 | for (i = 0; i < TWITTER_LOG_LENGTH; i++) { |
---|
657 | if (td->log[i].id == txs->reply_to) { |
---|
658 | reply_to = i; |
---|
659 | break; |
---|
660 | } |
---|
661 | } |
---|
662 | } |
---|
663 | |
---|
664 | if (txs->user && txs->user->screen_name && |
---|
665 | (bu = bee_user_by_handle(ic->bee, ic, txs->user->screen_name))) { |
---|
666 | struct twitter_user_data *tud = bu->data; |
---|
667 | |
---|
668 | if (txs->id > tud->last_id) { |
---|
669 | tud->last_id = txs->id; |
---|
670 | tud->last_time = txs->created_at; |
---|
671 | } |
---|
672 | } |
---|
673 | |
---|
674 | td->log_id = (td->log_id + 1) % TWITTER_LOG_LENGTH; |
---|
675 | td->log[td->log_id].id = txs->id; |
---|
676 | td->log[td->log_id].bu = bee_user_by_handle(ic->bee, ic, txs->user->screen_name); |
---|
677 | |
---|
678 | /* This is all getting hairy. :-( If we RT'ed something ourselves, |
---|
679 | remember OUR id instead so undo will work. In other cases, the |
---|
680 | original tweet's id should be remembered for deduplicating. */ |
---|
681 | if (g_strcasecmp(txs->user->screen_name, td->user) == 0) { |
---|
682 | td->log[td->log_id].id = txs->rt_id; |
---|
683 | } |
---|
684 | |
---|
685 | if (set_getbool(&ic->acc->set, "show_ids")) { |
---|
686 | if (reply_to != -1) { |
---|
687 | return g_strdup_printf("\002[\002%02x->%02x\002]\002 %s%s", |
---|
688 | td->log_id, reply_to, prefix, txs->text); |
---|
689 | } else { |
---|
690 | return g_strdup_printf("\002[\002%02x\002]\002 %s%s", |
---|
691 | td->log_id, prefix, txs->text); |
---|
692 | } |
---|
693 | } else { |
---|
694 | if (*prefix) { |
---|
695 | return g_strconcat(prefix, txs->text, NULL); |
---|
696 | } else { |
---|
697 | return NULL; |
---|
698 | } |
---|
699 | } |
---|
700 | } |
---|
701 | |
---|
702 | /** |
---|
703 | * Function that is called to see the filter statuses in groupchat windows. |
---|
704 | */ |
---|
705 | static void twitter_status_show_filter(struct im_connection *ic, struct twitter_xml_status *status) |
---|
706 | { |
---|
707 | struct twitter_data *td = ic->proto_data; |
---|
708 | char *msg = twitter_msg_add_id(ic, status, ""); |
---|
709 | struct twitter_filter *tf; |
---|
710 | GSList *f; |
---|
711 | GSList *l; |
---|
712 | |
---|
713 | for (f = td->filters; f; f = g_slist_next(f)) { |
---|
714 | tf = f->data; |
---|
715 | |
---|
716 | switch (tf->type) { |
---|
717 | case TWITTER_FILTER_TYPE_FOLLOW: |
---|
718 | if (status->user->uid != tf->uid) { |
---|
719 | continue; |
---|
720 | } |
---|
721 | break; |
---|
722 | |
---|
723 | case TWITTER_FILTER_TYPE_TRACK: |
---|
724 | if (strcasestr(status->text, tf->text) == NULL) { |
---|
725 | continue; |
---|
726 | } |
---|
727 | break; |
---|
728 | |
---|
729 | default: |
---|
730 | continue; |
---|
731 | } |
---|
732 | |
---|
733 | for (l = tf->groupchats; l; l = g_slist_next(l)) { |
---|
734 | imcb_chat_msg(l->data, status->user->screen_name, |
---|
735 | msg ? msg : status->text, 0, 0); |
---|
736 | } |
---|
737 | } |
---|
738 | |
---|
739 | g_free(msg); |
---|
740 | } |
---|
741 | |
---|
742 | /** |
---|
743 | * Function that is called to see the statuses in a groupchat window. |
---|
744 | */ |
---|
745 | static void twitter_status_show_chat(struct im_connection *ic, struct twitter_xml_status *status) |
---|
746 | { |
---|
747 | struct twitter_data *td = ic->proto_data; |
---|
748 | struct groupchat *gc; |
---|
749 | gboolean me = g_strcasecmp(td->user, status->user->screen_name) == 0; |
---|
750 | char *msg; |
---|
751 | |
---|
752 | // Create a new groupchat if it does not exsist. |
---|
753 | gc = twitter_groupchat_init(ic); |
---|
754 | |
---|
755 | if (!me) { |
---|
756 | /* MUST be done before twitter_msg_add_id() to avoid #872. */ |
---|
757 | twitter_add_buddy(ic, status->user->screen_name, status->user->name); |
---|
758 | } |
---|
759 | msg = twitter_msg_add_id(ic, status, ""); |
---|
760 | |
---|
761 | // Say it! |
---|
762 | if (me) { |
---|
763 | imcb_chat_log(gc, "You: %s", msg ? msg : status->text); |
---|
764 | } else { |
---|
765 | imcb_chat_msg(gc, status->user->screen_name, |
---|
766 | msg ? msg : status->text, 0, status->created_at); |
---|
767 | } |
---|
768 | |
---|
769 | g_free(msg); |
---|
770 | } |
---|
771 | |
---|
772 | /** |
---|
773 | * Function that is called to see statuses as private messages. |
---|
774 | */ |
---|
775 | static void twitter_status_show_msg(struct im_connection *ic, struct twitter_xml_status *status) |
---|
776 | { |
---|
777 | struct twitter_data *td = ic->proto_data; |
---|
778 | char from[MAX_STRING] = ""; |
---|
779 | char *prefix = NULL, *text = NULL; |
---|
780 | gboolean me = g_strcasecmp(td->user, status->user->screen_name) == 0; |
---|
781 | |
---|
782 | if (td->flags & TWITTER_MODE_ONE) { |
---|
783 | g_snprintf(from, sizeof(from) - 1, "%s_%s", td->prefix, ic->acc->user); |
---|
784 | from[MAX_STRING - 1] = '\0'; |
---|
785 | } |
---|
786 | |
---|
787 | if (td->flags & TWITTER_MODE_ONE) { |
---|
788 | prefix = g_strdup_printf("\002<\002%s\002>\002 ", |
---|
789 | status->user->screen_name); |
---|
790 | } else if (!me) { |
---|
791 | twitter_add_buddy(ic, status->user->screen_name, status->user->name); |
---|
792 | } else { |
---|
793 | prefix = g_strdup("You: "); |
---|
794 | } |
---|
795 | |
---|
796 | text = twitter_msg_add_id(ic, status, prefix ? prefix : ""); |
---|
797 | |
---|
798 | imcb_buddy_msg(ic, |
---|
799 | *from ? from : status->user->screen_name, |
---|
800 | text ? text : status->text, 0, status->created_at); |
---|
801 | |
---|
802 | g_free(text); |
---|
803 | g_free(prefix); |
---|
804 | } |
---|
805 | |
---|
806 | static void twitter_status_show(struct im_connection *ic, struct twitter_xml_status *status) |
---|
807 | { |
---|
808 | struct twitter_data *td = ic->proto_data; |
---|
809 | char *last_id_str; |
---|
810 | |
---|
811 | if (status->user == NULL || status->text == NULL) { |
---|
812 | return; |
---|
813 | } |
---|
814 | |
---|
815 | /* Grrrr. Would like to do this during parsing, but can't access |
---|
816 | settings from there. */ |
---|
817 | if (set_getbool(&ic->acc->set, "strip_newlines")) { |
---|
818 | strip_newlines(status->text); |
---|
819 | } |
---|
820 | |
---|
821 | if (status->from_filter) { |
---|
822 | twitter_status_show_filter(ic, status); |
---|
823 | } else if (td->flags & TWITTER_MODE_CHAT) { |
---|
824 | twitter_status_show_chat(ic, status); |
---|
825 | } else { |
---|
826 | twitter_status_show_msg(ic, status); |
---|
827 | } |
---|
828 | |
---|
829 | // Update the timeline_id to hold the highest id, so that by the next request |
---|
830 | // we won't pick up the updates already in the list. |
---|
831 | td->timeline_id = MAX(td->timeline_id, status->rt_id); |
---|
832 | |
---|
833 | last_id_str = g_strdup_printf("%" G_GUINT64_FORMAT, td->timeline_id); |
---|
834 | set_setstr(&ic->acc->set, "last_tweet", last_id_str); |
---|
835 | g_free(last_id_str); |
---|
836 | } |
---|
837 | |
---|
838 | static gboolean twitter_stream_handle_object(struct im_connection *ic, json_value *o, gboolean from_filter); |
---|
839 | |
---|
840 | static void twitter_http_stream(struct http_request *req) |
---|
841 | { |
---|
842 | struct im_connection *ic = req->data; |
---|
843 | struct twitter_data *td; |
---|
844 | json_value *parsed; |
---|
845 | int len = 0; |
---|
846 | char c, *nl; |
---|
847 | gboolean from_filter; |
---|
848 | |
---|
849 | if (!g_slist_find(twitter_connections, ic)) { |
---|
850 | return; |
---|
851 | } |
---|
852 | |
---|
853 | ic->flags |= OPT_PONGED; |
---|
854 | td = ic->proto_data; |
---|
855 | |
---|
856 | if ((req->flags & HTTPC_EOF) || !req->reply_body) { |
---|
857 | if (req == td->stream) { |
---|
858 | td->stream = NULL; |
---|
859 | } else if (req == td->filter_stream) { |
---|
860 | td->filter_stream = NULL; |
---|
861 | } |
---|
862 | |
---|
863 | imcb_error(ic, "Stream closed (%s)", req->status_string); |
---|
864 | imc_logout(ic, TRUE); |
---|
865 | return; |
---|
866 | } |
---|
867 | |
---|
868 | /* MUST search for CRLF, not just LF: |
---|
869 | https://dev.twitter.com/docs/streaming-apis/processing#Parsing_responses */ |
---|
870 | if (!(nl = strstr(req->reply_body, "\r\n"))) { |
---|
871 | return; |
---|
872 | } |
---|
873 | |
---|
874 | len = nl - req->reply_body; |
---|
875 | if (len > 0) { |
---|
876 | c = req->reply_body[len]; |
---|
877 | req->reply_body[len] = '\0'; |
---|
878 | |
---|
879 | if ((parsed = json_parse(req->reply_body, req->body_size))) { |
---|
880 | from_filter = (req == td->filter_stream); |
---|
881 | twitter_stream_handle_object(ic, parsed, from_filter); |
---|
882 | } |
---|
883 | json_value_free(parsed); |
---|
884 | req->reply_body[len] = c; |
---|
885 | } |
---|
886 | |
---|
887 | http_flush_bytes(req, len + 2); |
---|
888 | |
---|
889 | /* One notification might bring multiple events! */ |
---|
890 | if (req->body_size > 0) { |
---|
891 | twitter_http_stream(req); |
---|
892 | } |
---|
893 | } |
---|
894 | |
---|
895 | static gboolean twitter_stream_handle_event(struct im_connection *ic, json_value *o); |
---|
896 | static gboolean twitter_stream_handle_status(struct im_connection *ic, struct twitter_xml_status *txs); |
---|
897 | |
---|
898 | static gboolean twitter_stream_handle_object(struct im_connection *ic, json_value *o, gboolean from_filter) |
---|
899 | { |
---|
900 | struct twitter_data *td = ic->proto_data; |
---|
901 | struct twitter_xml_status *txs; |
---|
902 | json_value *c; |
---|
903 | |
---|
904 | if ((txs = twitter_xt_get_status(o))) { |
---|
905 | txs->from_filter = from_filter; |
---|
906 | gboolean ret = twitter_stream_handle_status(ic, txs); |
---|
907 | txs_free(txs); |
---|
908 | return ret; |
---|
909 | } else if ((c = json_o_get(o, "direct_message")) && |
---|
910 | (txs = twitter_xt_get_dm(c))) { |
---|
911 | if (g_strcasecmp(txs->user->screen_name, td->user) != 0) { |
---|
912 | imcb_buddy_msg(ic, txs->user->screen_name, |
---|
913 | txs->text, 0, txs->created_at); |
---|
914 | } |
---|
915 | txs_free(txs); |
---|
916 | return TRUE; |
---|
917 | } else if ((c = json_o_get(o, "event")) && c->type == json_string) { |
---|
918 | twitter_stream_handle_event(ic, o); |
---|
919 | return TRUE; |
---|
920 | } else if ((c = json_o_get(o, "disconnect")) && c->type == json_object) { |
---|
921 | /* HACK: Because we're inside an event handler, we can't just |
---|
922 | disconnect here. Instead, just change the HTTP status string |
---|
923 | into a Twitter status string. */ |
---|
924 | char *reason = json_o_strdup(c, "reason"); |
---|
925 | if (reason) { |
---|
926 | g_free(td->stream->status_string); |
---|
927 | td->stream->status_string = reason; |
---|
928 | } |
---|
929 | return TRUE; |
---|
930 | } |
---|
931 | return FALSE; |
---|
932 | } |
---|
933 | |
---|
934 | static gboolean twitter_stream_handle_status(struct im_connection *ic, struct twitter_xml_status *txs) |
---|
935 | { |
---|
936 | struct twitter_data *td = ic->proto_data; |
---|
937 | int i; |
---|
938 | |
---|
939 | for (i = 0; i < TWITTER_LOG_LENGTH; i++) { |
---|
940 | if (td->log[i].id == txs->id) { |
---|
941 | /* Got a duplicate (RT, probably). Drop it. */ |
---|
942 | return TRUE; |
---|
943 | } |
---|
944 | } |
---|
945 | |
---|
946 | if (!(g_strcasecmp(txs->user->screen_name, td->user) == 0 || |
---|
947 | set_getbool(&ic->acc->set, "fetch_mentions") || |
---|
948 | bee_user_by_handle(ic->bee, ic, txs->user->screen_name))) { |
---|
949 | /* Tweet is from an unknown person and the user does not want |
---|
950 | to see @mentions, so drop it. twitter_stream_handle_event() |
---|
951 | picks up new follows so this simple filter should be safe. */ |
---|
952 | /* TODO: The streaming API seems to do poor @mention matching. |
---|
953 | I.e. I'm getting mentions for @WilmerSomething, not just for |
---|
954 | @Wilmer. But meh. You want spam, you get spam. */ |
---|
955 | return TRUE; |
---|
956 | } |
---|
957 | |
---|
958 | twitter_status_show(ic, txs); |
---|
959 | |
---|
960 | return TRUE; |
---|
961 | } |
---|
962 | |
---|
963 | static gboolean twitter_stream_handle_event(struct im_connection *ic, json_value *o) |
---|
964 | { |
---|
965 | struct twitter_data *td = ic->proto_data; |
---|
966 | json_value *source = json_o_get(o, "source"); |
---|
967 | json_value *target = json_o_get(o, "target"); |
---|
968 | const char *type = json_o_str(o, "event"); |
---|
969 | |
---|
970 | if (!type || !source || source->type != json_object |
---|
971 | || !target || target->type != json_object) { |
---|
972 | return FALSE; |
---|
973 | } |
---|
974 | |
---|
975 | if (strcmp(type, "follow") == 0) { |
---|
976 | struct twitter_xml_user *us = twitter_xt_get_user(source); |
---|
977 | struct twitter_xml_user *ut = twitter_xt_get_user(target); |
---|
978 | if (g_strcasecmp(us->screen_name, td->user) == 0) { |
---|
979 | twitter_add_buddy(ic, ut->screen_name, ut->name); |
---|
980 | } |
---|
981 | txu_free(us); |
---|
982 | txu_free(ut); |
---|
983 | } |
---|
984 | |
---|
985 | return TRUE; |
---|
986 | } |
---|
987 | |
---|
988 | gboolean twitter_open_stream(struct im_connection *ic) |
---|
989 | { |
---|
990 | struct twitter_data *td = ic->proto_data; |
---|
991 | char *args[2] = { "with", "followings" }; |
---|
992 | |
---|
993 | if ((td->stream = twitter_http(ic, TWITTER_USER_STREAM_URL, |
---|
994 | twitter_http_stream, ic, 0, args, 2))) { |
---|
995 | /* This flag must be enabled or we'll get no data until EOF |
---|
996 | (which err, kind of, defeats the purpose of a streaming API). */ |
---|
997 | td->stream->flags |= HTTPC_STREAMING; |
---|
998 | return TRUE; |
---|
999 | } |
---|
1000 | |
---|
1001 | return FALSE; |
---|
1002 | } |
---|
1003 | |
---|
1004 | static gboolean twitter_filter_stream(struct im_connection *ic) |
---|
1005 | { |
---|
1006 | struct twitter_data *td = ic->proto_data; |
---|
1007 | char *args[4] = { "follow", NULL, "track", NULL }; |
---|
1008 | GString *followstr = g_string_new(""); |
---|
1009 | GString *trackstr = g_string_new(""); |
---|
1010 | gboolean ret = FALSE; |
---|
1011 | struct twitter_filter *tf; |
---|
1012 | GSList *l; |
---|
1013 | |
---|
1014 | for (l = td->filters; l; l = g_slist_next(l)) { |
---|
1015 | tf = l->data; |
---|
1016 | |
---|
1017 | switch (tf->type) { |
---|
1018 | case TWITTER_FILTER_TYPE_FOLLOW: |
---|
1019 | if (followstr->len > 0) { |
---|
1020 | g_string_append_c(followstr, ','); |
---|
1021 | } |
---|
1022 | |
---|
1023 | g_string_append_printf(followstr, "%" G_GUINT64_FORMAT, |
---|
1024 | tf->uid); |
---|
1025 | break; |
---|
1026 | |
---|
1027 | case TWITTER_FILTER_TYPE_TRACK: |
---|
1028 | if (trackstr->len > 0) { |
---|
1029 | g_string_append_c(trackstr, ','); |
---|
1030 | } |
---|
1031 | |
---|
1032 | g_string_append(trackstr, tf->text); |
---|
1033 | break; |
---|
1034 | |
---|
1035 | default: |
---|
1036 | continue; |
---|
1037 | } |
---|
1038 | } |
---|
1039 | |
---|
1040 | args[1] = followstr->str; |
---|
1041 | args[3] = trackstr->str; |
---|
1042 | |
---|
1043 | if (td->filter_stream) { |
---|
1044 | http_close(td->filter_stream); |
---|
1045 | } |
---|
1046 | |
---|
1047 | if ((td->filter_stream = twitter_http(ic, TWITTER_FILTER_STREAM_URL, |
---|
1048 | twitter_http_stream, ic, 0, |
---|
1049 | args, 4))) { |
---|
1050 | /* This flag must be enabled or we'll get no data until EOF |
---|
1051 | (which err, kind of, defeats the purpose of a streaming API). */ |
---|
1052 | td->filter_stream->flags |= HTTPC_STREAMING; |
---|
1053 | ret = TRUE; |
---|
1054 | } |
---|
1055 | |
---|
1056 | g_string_free(followstr, TRUE); |
---|
1057 | g_string_free(trackstr, TRUE); |
---|
1058 | |
---|
1059 | return ret; |
---|
1060 | } |
---|
1061 | |
---|
1062 | static void twitter_filter_users_post(struct http_request *req) |
---|
1063 | { |
---|
1064 | struct im_connection *ic = req->data; |
---|
1065 | struct twitter_data *td; |
---|
1066 | struct twitter_filter *tf; |
---|
1067 | GList *users = NULL; |
---|
1068 | json_value *parsed; |
---|
1069 | json_value *id; |
---|
1070 | const char *name; |
---|
1071 | GString *fstr; |
---|
1072 | GSList *l; |
---|
1073 | GList *u; |
---|
1074 | int i; |
---|
1075 | |
---|
1076 | // Check if the connection is still active. |
---|
1077 | if (!g_slist_find(twitter_connections, ic)) { |
---|
1078 | return; |
---|
1079 | } |
---|
1080 | |
---|
1081 | td = ic->proto_data; |
---|
1082 | |
---|
1083 | if (!(parsed = twitter_parse_response(ic, req))) { |
---|
1084 | return; |
---|
1085 | } |
---|
1086 | |
---|
1087 | for (l = td->filters; l; l = g_slist_next(l)) { |
---|
1088 | tf = l->data; |
---|
1089 | |
---|
1090 | if (tf->type == TWITTER_FILTER_TYPE_FOLLOW) { |
---|
1091 | users = g_list_prepend(users, tf); |
---|
1092 | } |
---|
1093 | } |
---|
1094 | |
---|
1095 | if (parsed->type != json_array) { |
---|
1096 | goto finish; |
---|
1097 | } |
---|
1098 | |
---|
1099 | for (i = 0; i < parsed->u.array.length; i++) { |
---|
1100 | id = json_o_get(parsed->u.array.values[i], "id"); |
---|
1101 | name = json_o_str(parsed->u.array.values[i], "screen_name"); |
---|
1102 | |
---|
1103 | if (!name || !id || id->type != json_integer) { |
---|
1104 | continue; |
---|
1105 | } |
---|
1106 | |
---|
1107 | for (u = users; u; u = g_list_next(u)) { |
---|
1108 | tf = u->data; |
---|
1109 | |
---|
1110 | if (g_strcasecmp(tf->text, name) == 0) { |
---|
1111 | tf->uid = id->u.integer; |
---|
1112 | users = g_list_delete_link(users, u); |
---|
1113 | break; |
---|
1114 | } |
---|
1115 | } |
---|
1116 | } |
---|
1117 | |
---|
1118 | finish: |
---|
1119 | json_value_free(parsed); |
---|
1120 | twitter_filter_stream(ic); |
---|
1121 | |
---|
1122 | if (!users) { |
---|
1123 | return; |
---|
1124 | } |
---|
1125 | |
---|
1126 | fstr = g_string_new(""); |
---|
1127 | |
---|
1128 | for (u = users; u; u = g_list_next(u)) { |
---|
1129 | if (fstr->len > 0) { |
---|
1130 | g_string_append(fstr, ", "); |
---|
1131 | } |
---|
1132 | |
---|
1133 | g_string_append(fstr, tf->text); |
---|
1134 | } |
---|
1135 | |
---|
1136 | imcb_error(ic, "Failed UID acquisitions: %s", fstr->str); |
---|
1137 | |
---|
1138 | g_string_free(fstr, TRUE); |
---|
1139 | g_list_free(users); |
---|
1140 | } |
---|
1141 | |
---|
1142 | gboolean twitter_open_filter_stream(struct im_connection *ic) |
---|
1143 | { |
---|
1144 | struct twitter_data *td = ic->proto_data; |
---|
1145 | char *args[2] = { "screen_name", NULL }; |
---|
1146 | GString *ustr = g_string_new(""); |
---|
1147 | struct twitter_filter *tf; |
---|
1148 | struct http_request *req; |
---|
1149 | GSList *l; |
---|
1150 | |
---|
1151 | for (l = td->filters; l; l = g_slist_next(l)) { |
---|
1152 | tf = l->data; |
---|
1153 | |
---|
1154 | if (tf->type != TWITTER_FILTER_TYPE_FOLLOW || tf->uid != 0) { |
---|
1155 | continue; |
---|
1156 | } |
---|
1157 | |
---|
1158 | if (ustr->len > 0) { |
---|
1159 | g_string_append_c(ustr, ','); |
---|
1160 | } |
---|
1161 | |
---|
1162 | g_string_append(ustr, tf->text); |
---|
1163 | } |
---|
1164 | |
---|
1165 | if (ustr->len == 0) { |
---|
1166 | g_string_free(ustr, TRUE); |
---|
1167 | return twitter_filter_stream(ic); |
---|
1168 | } |
---|
1169 | |
---|
1170 | args[1] = ustr->str; |
---|
1171 | req = twitter_http(ic, TWITTER_USERS_LOOKUP_URL, |
---|
1172 | twitter_filter_users_post, |
---|
1173 | ic, 0, args, 2); |
---|
1174 | |
---|
1175 | g_string_free(ustr, TRUE); |
---|
1176 | return req != NULL; |
---|
1177 | } |
---|
1178 | |
---|
1179 | static void twitter_get_home_timeline(struct im_connection *ic, gint64 next_cursor); |
---|
1180 | static void twitter_get_mentions(struct im_connection *ic, gint64 next_cursor); |
---|
1181 | |
---|
1182 | /** |
---|
1183 | * Get the timeline with optionally mentions |
---|
1184 | */ |
---|
1185 | gboolean twitter_get_timeline(struct im_connection *ic, gint64 next_cursor) |
---|
1186 | { |
---|
1187 | struct twitter_data *td = ic->proto_data; |
---|
1188 | gboolean include_mentions = set_getbool(&ic->acc->set, "fetch_mentions"); |
---|
1189 | |
---|
1190 | if (td->flags & TWITTER_DOING_TIMELINE) { |
---|
1191 | if (++td->http_fails >= 5) { |
---|
1192 | imcb_error(ic, "Fetch timeout (%d)", td->flags); |
---|
1193 | imc_logout(ic, TRUE); |
---|
1194 | return FALSE; |
---|
1195 | } |
---|
1196 | } |
---|
1197 | |
---|
1198 | td->flags |= TWITTER_DOING_TIMELINE; |
---|
1199 | |
---|
1200 | twitter_get_home_timeline(ic, next_cursor); |
---|
1201 | |
---|
1202 | if (include_mentions) { |
---|
1203 | twitter_get_mentions(ic, next_cursor); |
---|
1204 | } |
---|
1205 | |
---|
1206 | return TRUE; |
---|
1207 | } |
---|
1208 | |
---|
1209 | /** |
---|
1210 | * Call this one after receiving timeline/mentions. Show to user once we have |
---|
1211 | * both. |
---|
1212 | */ |
---|
1213 | void twitter_flush_timeline(struct im_connection *ic) |
---|
1214 | { |
---|
1215 | struct twitter_data *td = ic->proto_data; |
---|
1216 | gboolean include_mentions = set_getbool(&ic->acc->set, "fetch_mentions"); |
---|
1217 | int show_old_mentions = set_getint(&ic->acc->set, "show_old_mentions"); |
---|
1218 | struct twitter_xml_list *home_timeline = td->home_timeline_obj; |
---|
1219 | struct twitter_xml_list *mentions = td->mentions_obj; |
---|
1220 | guint64 last_id = 0; |
---|
1221 | GSList *output = NULL; |
---|
1222 | GSList *l; |
---|
1223 | |
---|
1224 | imcb_connected(ic); |
---|
1225 | |
---|
1226 | if (!(td->flags & TWITTER_GOT_TIMELINE)) { |
---|
1227 | return; |
---|
1228 | } |
---|
1229 | |
---|
1230 | if (include_mentions && !(td->flags & TWITTER_GOT_MENTIONS)) { |
---|
1231 | return; |
---|
1232 | } |
---|
1233 | |
---|
1234 | if (home_timeline && home_timeline->list) { |
---|
1235 | for (l = home_timeline->list; l; l = g_slist_next(l)) { |
---|
1236 | output = g_slist_insert_sorted(output, l->data, twitter_compare_elements); |
---|
1237 | } |
---|
1238 | } |
---|
1239 | |
---|
1240 | if (include_mentions && mentions && mentions->list) { |
---|
1241 | for (l = mentions->list; l; l = g_slist_next(l)) { |
---|
1242 | if (show_old_mentions < 1 && output && twitter_compare_elements(l->data, output->data) < 0) { |
---|
1243 | continue; |
---|
1244 | } |
---|
1245 | |
---|
1246 | output = g_slist_insert_sorted(output, l->data, twitter_compare_elements); |
---|
1247 | } |
---|
1248 | } |
---|
1249 | |
---|
1250 | // See if the user wants to see the messages in a groupchat window or as private messages. |
---|
1251 | while (output) { |
---|
1252 | struct twitter_xml_status *txs = output->data; |
---|
1253 | if (txs->id != last_id) { |
---|
1254 | twitter_status_show(ic, txs); |
---|
1255 | } |
---|
1256 | last_id = txs->id; |
---|
1257 | output = g_slist_remove(output, txs); |
---|
1258 | } |
---|
1259 | |
---|
1260 | txl_free(home_timeline); |
---|
1261 | txl_free(mentions); |
---|
1262 | |
---|
1263 | td->flags &= ~(TWITTER_DOING_TIMELINE | TWITTER_GOT_TIMELINE | TWITTER_GOT_MENTIONS); |
---|
1264 | td->home_timeline_obj = td->mentions_obj = NULL; |
---|
1265 | } |
---|
1266 | |
---|
1267 | static void twitter_http_get_home_timeline(struct http_request *req); |
---|
1268 | static void twitter_http_get_mentions(struct http_request *req); |
---|
1269 | |
---|
1270 | /** |
---|
1271 | * Get the timeline. |
---|
1272 | */ |
---|
1273 | static void twitter_get_home_timeline(struct im_connection *ic, gint64 next_cursor) |
---|
1274 | { |
---|
1275 | struct twitter_data *td = ic->proto_data; |
---|
1276 | |
---|
1277 | txl_free(td->home_timeline_obj); |
---|
1278 | td->home_timeline_obj = NULL; |
---|
1279 | td->flags &= ~TWITTER_GOT_TIMELINE; |
---|
1280 | |
---|
1281 | char *args[6]; |
---|
1282 | args[0] = "cursor"; |
---|
1283 | args[1] = g_strdup_printf("%" G_GINT64_FORMAT, next_cursor); |
---|
1284 | args[2] = "include_entities"; |
---|
1285 | args[3] = "true"; |
---|
1286 | if (td->timeline_id) { |
---|
1287 | args[4] = "since_id"; |
---|
1288 | args[5] = g_strdup_printf("%" G_GUINT64_FORMAT, td->timeline_id); |
---|
1289 | } |
---|
1290 | |
---|
1291 | if (twitter_http(ic, TWITTER_HOME_TIMELINE_URL, twitter_http_get_home_timeline, ic, 0, args, |
---|
1292 | td->timeline_id ? 6 : 4) == NULL) { |
---|
1293 | if (++td->http_fails >= 5) { |
---|
1294 | imcb_error(ic, "Could not retrieve %s: %s", |
---|
1295 | TWITTER_HOME_TIMELINE_URL, "connection failed"); |
---|
1296 | } |
---|
1297 | td->flags |= TWITTER_GOT_TIMELINE; |
---|
1298 | twitter_flush_timeline(ic); |
---|
1299 | } |
---|
1300 | |
---|
1301 | g_free(args[1]); |
---|
1302 | if (td->timeline_id) { |
---|
1303 | g_free(args[5]); |
---|
1304 | } |
---|
1305 | } |
---|
1306 | |
---|
1307 | /** |
---|
1308 | * Get mentions. |
---|
1309 | */ |
---|
1310 | static void twitter_get_mentions(struct im_connection *ic, gint64 next_cursor) |
---|
1311 | { |
---|
1312 | struct twitter_data *td = ic->proto_data; |
---|
1313 | |
---|
1314 | txl_free(td->mentions_obj); |
---|
1315 | td->mentions_obj = NULL; |
---|
1316 | td->flags &= ~TWITTER_GOT_MENTIONS; |
---|
1317 | |
---|
1318 | char *args[6]; |
---|
1319 | args[0] = "cursor"; |
---|
1320 | args[1] = g_strdup_printf("%" G_GINT64_FORMAT, next_cursor); |
---|
1321 | args[2] = "include_entities"; |
---|
1322 | args[3] = "true"; |
---|
1323 | if (td->timeline_id) { |
---|
1324 | args[4] = "since_id"; |
---|
1325 | args[5] = g_strdup_printf("%" G_GUINT64_FORMAT, td->timeline_id); |
---|
1326 | } else { |
---|
1327 | args[4] = "count"; |
---|
1328 | args[5] = g_strdup_printf("%d", set_getint(&ic->acc->set, "show_old_mentions")); |
---|
1329 | } |
---|
1330 | |
---|
1331 | if (twitter_http(ic, TWITTER_MENTIONS_URL, twitter_http_get_mentions, |
---|
1332 | ic, 0, args, 6) == NULL) { |
---|
1333 | if (++td->http_fails >= 5) { |
---|
1334 | imcb_error(ic, "Could not retrieve %s: %s", |
---|
1335 | TWITTER_MENTIONS_URL, "connection failed"); |
---|
1336 | } |
---|
1337 | td->flags |= TWITTER_GOT_MENTIONS; |
---|
1338 | twitter_flush_timeline(ic); |
---|
1339 | } |
---|
1340 | |
---|
1341 | g_free(args[1]); |
---|
1342 | g_free(args[5]); |
---|
1343 | } |
---|
1344 | |
---|
1345 | /** |
---|
1346 | * Callback for getting the home timeline. |
---|
1347 | */ |
---|
1348 | static void twitter_http_get_home_timeline(struct http_request *req) |
---|
1349 | { |
---|
1350 | struct im_connection *ic = req->data; |
---|
1351 | struct twitter_data *td; |
---|
1352 | json_value *parsed; |
---|
1353 | struct twitter_xml_list *txl; |
---|
1354 | |
---|
1355 | // Check if the connection is still active. |
---|
1356 | if (!g_slist_find(twitter_connections, ic)) { |
---|
1357 | return; |
---|
1358 | } |
---|
1359 | |
---|
1360 | td = ic->proto_data; |
---|
1361 | |
---|
1362 | txl = g_new0(struct twitter_xml_list, 1); |
---|
1363 | txl->list = NULL; |
---|
1364 | |
---|
1365 | // The root <statuses> node should hold the list of statuses <status> |
---|
1366 | if (!(parsed = twitter_parse_response(ic, req))) { |
---|
1367 | goto end; |
---|
1368 | } |
---|
1369 | twitter_xt_get_status_list(ic, parsed, txl); |
---|
1370 | json_value_free(parsed); |
---|
1371 | |
---|
1372 | td->home_timeline_obj = txl; |
---|
1373 | |
---|
1374 | end: |
---|
1375 | if (!g_slist_find(twitter_connections, ic)) { |
---|
1376 | return; |
---|
1377 | } |
---|
1378 | |
---|
1379 | td->flags |= TWITTER_GOT_TIMELINE; |
---|
1380 | |
---|
1381 | twitter_flush_timeline(ic); |
---|
1382 | } |
---|
1383 | |
---|
1384 | /** |
---|
1385 | * Callback for getting mentions. |
---|
1386 | */ |
---|
1387 | static void twitter_http_get_mentions(struct http_request *req) |
---|
1388 | { |
---|
1389 | struct im_connection *ic = req->data; |
---|
1390 | struct twitter_data *td; |
---|
1391 | json_value *parsed; |
---|
1392 | struct twitter_xml_list *txl; |
---|
1393 | |
---|
1394 | // Check if the connection is still active. |
---|
1395 | if (!g_slist_find(twitter_connections, ic)) { |
---|
1396 | return; |
---|
1397 | } |
---|
1398 | |
---|
1399 | td = ic->proto_data; |
---|
1400 | |
---|
1401 | txl = g_new0(struct twitter_xml_list, 1); |
---|
1402 | txl->list = NULL; |
---|
1403 | |
---|
1404 | // The root <statuses> node should hold the list of statuses <status> |
---|
1405 | if (!(parsed = twitter_parse_response(ic, req))) { |
---|
1406 | goto end; |
---|
1407 | } |
---|
1408 | twitter_xt_get_status_list(ic, parsed, txl); |
---|
1409 | json_value_free(parsed); |
---|
1410 | |
---|
1411 | td->mentions_obj = txl; |
---|
1412 | |
---|
1413 | end: |
---|
1414 | if (!g_slist_find(twitter_connections, ic)) { |
---|
1415 | return; |
---|
1416 | } |
---|
1417 | |
---|
1418 | td->flags |= TWITTER_GOT_MENTIONS; |
---|
1419 | |
---|
1420 | twitter_flush_timeline(ic); |
---|
1421 | } |
---|
1422 | |
---|
1423 | /** |
---|
1424 | * Callback to use after sending a POST request to twitter. |
---|
1425 | * (Generic, used for a few kinds of queries.) |
---|
1426 | */ |
---|
1427 | static void twitter_http_post(struct http_request *req) |
---|
1428 | { |
---|
1429 | struct im_connection *ic = req->data; |
---|
1430 | struct twitter_data *td; |
---|
1431 | json_value *parsed, *id; |
---|
1432 | |
---|
1433 | // Check if the connection is still active. |
---|
1434 | if (!g_slist_find(twitter_connections, ic)) { |
---|
1435 | return; |
---|
1436 | } |
---|
1437 | |
---|
1438 | td = ic->proto_data; |
---|
1439 | td->last_status_id = 0; |
---|
1440 | |
---|
1441 | if (!(parsed = twitter_parse_response(ic, req))) { |
---|
1442 | return; |
---|
1443 | } |
---|
1444 | |
---|
1445 | if ((id = json_o_get(parsed, "id")) && id->type == json_integer) { |
---|
1446 | td->last_status_id = id->u.integer; |
---|
1447 | } |
---|
1448 | |
---|
1449 | json_value_free(parsed); |
---|
1450 | |
---|
1451 | if (req->flags & TWITTER_HTTP_USER_ACK) { |
---|
1452 | twitter_log(ic, "Command processed successfully"); |
---|
1453 | } |
---|
1454 | } |
---|
1455 | |
---|
1456 | /** |
---|
1457 | * Function to POST a new status to twitter. |
---|
1458 | */ |
---|
1459 | void twitter_post_status(struct im_connection *ic, char *msg, guint64 in_reply_to) |
---|
1460 | { |
---|
1461 | char *args[4] = { |
---|
1462 | "status", msg, |
---|
1463 | "in_reply_to_status_id", |
---|
1464 | g_strdup_printf("%" G_GUINT64_FORMAT, in_reply_to) |
---|
1465 | }; |
---|
1466 | |
---|
1467 | twitter_http(ic, TWITTER_STATUS_UPDATE_URL, twitter_http_post, ic, 1, |
---|
1468 | args, in_reply_to ? 4 : 2); |
---|
1469 | g_free(args[3]); |
---|
1470 | } |
---|
1471 | |
---|
1472 | |
---|
1473 | /** |
---|
1474 | * Function to POST a new message to twitter. |
---|
1475 | */ |
---|
1476 | void twitter_direct_messages_new(struct im_connection *ic, char *who, char *msg) |
---|
1477 | { |
---|
1478 | char *args[4]; |
---|
1479 | |
---|
1480 | args[0] = "screen_name"; |
---|
1481 | args[1] = who; |
---|
1482 | args[2] = "text"; |
---|
1483 | args[3] = msg; |
---|
1484 | // Use the same callback as for twitter_post_status, since it does basically the same. |
---|
1485 | twitter_http(ic, TWITTER_DIRECT_MESSAGES_NEW_URL, twitter_http_post, ic, 1, args, 4); |
---|
1486 | } |
---|
1487 | |
---|
1488 | void twitter_friendships_create_destroy(struct im_connection *ic, char *who, int create) |
---|
1489 | { |
---|
1490 | char *args[2]; |
---|
1491 | |
---|
1492 | args[0] = "screen_name"; |
---|
1493 | args[1] = who; |
---|
1494 | twitter_http(ic, create ? TWITTER_FRIENDSHIPS_CREATE_URL : TWITTER_FRIENDSHIPS_DESTROY_URL, |
---|
1495 | twitter_http_post, ic, 1, args, 2); |
---|
1496 | } |
---|
1497 | |
---|
1498 | void twitter_status_destroy(struct im_connection *ic, guint64 id) |
---|
1499 | { |
---|
1500 | char *url; |
---|
1501 | |
---|
1502 | url = g_strdup_printf("%s%" G_GUINT64_FORMAT "%s", |
---|
1503 | TWITTER_STATUS_DESTROY_URL, id, ".json"); |
---|
1504 | twitter_http_f(ic, url, twitter_http_post, ic, 1, NULL, 0, |
---|
1505 | TWITTER_HTTP_USER_ACK); |
---|
1506 | g_free(url); |
---|
1507 | } |
---|
1508 | |
---|
1509 | void twitter_status_retweet(struct im_connection *ic, guint64 id) |
---|
1510 | { |
---|
1511 | char *url; |
---|
1512 | |
---|
1513 | url = g_strdup_printf("%s%" G_GUINT64_FORMAT "%s", |
---|
1514 | TWITTER_STATUS_RETWEET_URL, id, ".json"); |
---|
1515 | twitter_http_f(ic, url, twitter_http_post, ic, 1, NULL, 0, |
---|
1516 | TWITTER_HTTP_USER_ACK); |
---|
1517 | g_free(url); |
---|
1518 | } |
---|
1519 | |
---|
1520 | /** |
---|
1521 | * Report a user for sending spam. |
---|
1522 | */ |
---|
1523 | void twitter_report_spam(struct im_connection *ic, char *screen_name) |
---|
1524 | { |
---|
1525 | char *args[2] = { |
---|
1526 | "screen_name", |
---|
1527 | NULL, |
---|
1528 | }; |
---|
1529 | |
---|
1530 | args[1] = screen_name; |
---|
1531 | twitter_http_f(ic, TWITTER_REPORT_SPAM_URL, twitter_http_post, |
---|
1532 | ic, 1, args, 2, TWITTER_HTTP_USER_ACK); |
---|
1533 | } |
---|
1534 | |
---|
1535 | /** |
---|
1536 | * Favourite a tweet. |
---|
1537 | */ |
---|
1538 | void twitter_favourite_tweet(struct im_connection *ic, guint64 id) |
---|
1539 | { |
---|
1540 | char *args[2] = { |
---|
1541 | "id", |
---|
1542 | NULL, |
---|
1543 | }; |
---|
1544 | |
---|
1545 | args[1] = g_strdup_printf("%" G_GUINT64_FORMAT, id); |
---|
1546 | twitter_http_f(ic, TWITTER_FAVORITE_CREATE_URL, twitter_http_post, |
---|
1547 | ic, 1, args, 2, TWITTER_HTTP_USER_ACK); |
---|
1548 | g_free(args[1]); |
---|
1549 | } |
---|