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