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