[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> * |
---|
| 7 | * Copyright 2010-2011 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(): */ |
---|
[daae10f] | 26 | #if(__sun) |
---|
| 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 "xmltree.h" |
---|
| 38 | #include "twitter_lib.h" |
---|
| 39 | #include <ctype.h> |
---|
| 40 | #include <errno.h> |
---|
| 41 | |
---|
[e4e0b37] | 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 | |
---|
[1b221e0] | 50 | #define TXL_STATUS 1 |
---|
[62d2cfb] | 51 | #define TXL_USER 2 |
---|
| 52 | #define TXL_ID 3 |
---|
| 53 | |
---|
[1b221e0] | 54 | struct twitter_xml_list { |
---|
[62d2cfb] | 55 | int type; |
---|
[8203da9] | 56 | gint64 next_cursor; |
---|
[1b221e0] | 57 | GSList *list; |
---|
| 58 | }; |
---|
| 59 | |
---|
| 60 | struct twitter_xml_user { |
---|
| 61 | char *name; |
---|
| 62 | char *screen_name; |
---|
| 63 | }; |
---|
| 64 | |
---|
| 65 | struct twitter_xml_status { |
---|
[08579a1] | 66 | time_t created_at; |
---|
[1b221e0] | 67 | char *text; |
---|
| 68 | struct twitter_xml_user *user; |
---|
[ce81acd] | 69 | guint64 id, reply_to; |
---|
[1b221e0] | 70 | }; |
---|
| 71 | |
---|
[d6aa6dd] | 72 | static void twitter_groupchat_init(struct im_connection *ic); |
---|
| 73 | |
---|
[62d2cfb] | 74 | /** |
---|
| 75 | * Frees a twitter_xml_user struct. |
---|
| 76 | */ |
---|
| 77 | static void txu_free(struct twitter_xml_user *txu) |
---|
| 78 | { |
---|
[a26af5c] | 79 | if (txu == NULL) |
---|
| 80 | return; |
---|
[2322a9f] | 81 | |
---|
[62d2cfb] | 82 | g_free(txu->name); |
---|
| 83 | g_free(txu->screen_name); |
---|
[2abceca] | 84 | g_free(txu); |
---|
[62d2cfb] | 85 | } |
---|
| 86 | |
---|
| 87 | /** |
---|
| 88 | * Frees a twitter_xml_status struct. |
---|
| 89 | */ |
---|
| 90 | static void txs_free(struct twitter_xml_status *txs) |
---|
| 91 | { |
---|
[2322a9f] | 92 | if (txs == NULL) |
---|
| 93 | return; |
---|
| 94 | |
---|
[62d2cfb] | 95 | g_free(txs->text); |
---|
| 96 | txu_free(txs->user); |
---|
[2abceca] | 97 | g_free(txs); |
---|
[62d2cfb] | 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; |
---|
[a26af5c] | 107 | if (txl == NULL) |
---|
| 108 | return; |
---|
[2322a9f] | 109 | |
---|
| 110 | for (l = txl->list; l; l = g_slist_next(l)) { |
---|
| 111 | if (txl->type == TXL_STATUS) { |
---|
[5983eca] | 112 | txs_free((struct twitter_xml_status *) l->data); |
---|
[2322a9f] | 113 | } else if (txl->type == TXL_ID) { |
---|
[62d2cfb] | 114 | g_free(l->data); |
---|
[2322a9f] | 115 | } else if (txl->type == TXL_USER) { |
---|
[de923d5] | 116 | txu_free(l->data); |
---|
[2322a9f] | 117 | } |
---|
| 118 | } |
---|
| 119 | |
---|
[62d2cfb] | 120 | g_slist_free(txl->list); |
---|
[fd65edb] | 121 | g_free(txl); |
---|
[62d2cfb] | 122 | } |
---|
| 123 | |
---|
| 124 | /** |
---|
[2322a9f] | 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. |
---|
[62d2cfb] | 143 | */ |
---|
[3e69802] | 144 | static void twitter_add_buddy(struct im_connection *ic, char *name, const char *fullname) |
---|
[62d2cfb] | 145 | { |
---|
[1014cab] | 146 | struct twitter_data *td = ic->proto_data; |
---|
| 147 | |
---|
[de923d5] | 148 | // Check if the buddy is already in the buddy list. |
---|
[5983eca] | 149 | if (!bee_user_by_handle(ic->bee, ic, name)) { |
---|
[e88fbe27] | 150 | char *mode = set_getstr(&ic->acc->set, "mode"); |
---|
[5983eca] | 151 | |
---|
[62d2cfb] | 152 | // The buddy is not in the list, add the buddy and set the status to logged in. |
---|
[5983eca] | 153 | imcb_add_buddy(ic, name, NULL); |
---|
| 154 | imcb_rename_buddy(ic, name, fullname); |
---|
| 155 | if (g_strcasecmp(mode, "chat") == 0) { |
---|
[5c18a76] | 156 | /* Necessary so that nicks always get translated to the |
---|
| 157 | exact Twitter username. */ |
---|
[5983eca] | 158 | imcb_buddy_nick_hint(ic, name, name); |
---|
[2322a9f] | 159 | imcb_chat_add_buddy(td->timeline_gc, name); |
---|
[5983eca] | 160 | } else if (g_strcasecmp(mode, "many") == 0) |
---|
| 161 | imcb_buddy_status(ic, name, OPT_LOGGED_IN, NULL, NULL); |
---|
[62d2cfb] | 162 | } |
---|
| 163 | } |
---|
[1b221e0] | 164 | |
---|
[a7b9ec7] | 165 | /* Warning: May return a malloc()ed value, which will be free()d on the next |
---|
[de923d5] | 166 | call. Only for short-term use. NOT THREADSAFE! */ |
---|
[6eca2eb] | 167 | char *twitter_parse_error(struct http_request *req) |
---|
[a7b9ec7] | 168 | { |
---|
| 169 | static char *ret = NULL; |
---|
[3d93aed] | 170 | struct xt_parser *xp = NULL; |
---|
[c0f33f1] | 171 | struct xt_node *node, *err; |
---|
[5983eca] | 172 | |
---|
[a7b9ec7] | 173 | g_free(ret); |
---|
| 174 | ret = NULL; |
---|
[5983eca] | 175 | |
---|
| 176 | if (req->body_size > 0) { |
---|
[3d93aed] | 177 | xp = xt_new(NULL, NULL); |
---|
| 178 | xt_feed(xp, req->reply_body, req->body_size); |
---|
[de923d5] | 179 | |
---|
| 180 | for (node = xp->root; node; node = node->next) |
---|
[c0f33f1] | 181 | if ((err = xt_find_node(node->children, "error")) && err->text_len > 0) { |
---|
| 182 | ret = g_strdup_printf("%s (%s)", req->status_string, err->text); |
---|
[de923d5] | 183 | break; |
---|
| 184 | } |
---|
[5983eca] | 185 | |
---|
[a7b9ec7] | 186 | xt_free(xp); |
---|
| 187 | } |
---|
[5983eca] | 188 | |
---|
[6eca2eb] | 189 | return ret ? ret : req->status_string; |
---|
[a7b9ec7] | 190 | } |
---|
| 191 | |
---|
[1b221e0] | 192 | static void twitter_http_get_friends_ids(struct http_request *req); |
---|
| 193 | |
---|
| 194 | /** |
---|
| 195 | * Get the friends ids. |
---|
| 196 | */ |
---|
[8203da9] | 197 | void twitter_get_friends_ids(struct im_connection *ic, gint64 next_cursor) |
---|
[1b221e0] | 198 | { |
---|
[5983eca] | 199 | // Primitive, but hey! It works... |
---|
| 200 | char *args[2]; |
---|
[1b221e0] | 201 | args[0] = "cursor"; |
---|
[5983eca] | 202 | args[1] = g_strdup_printf("%lld", (long long) next_cursor); |
---|
[bb5ce4d1] | 203 | twitter_http(ic, TWITTER_FRIENDS_IDS_URL, twitter_http_get_friends_ids, ic, 0, args, 2); |
---|
[1b221e0] | 204 | |
---|
| 205 | g_free(args[1]); |
---|
| 206 | } |
---|
| 207 | |
---|
| 208 | /** |
---|
| 209 | * Function to help fill a list. |
---|
| 210 | */ |
---|
[5983eca] | 211 | static xt_status twitter_xt_next_cursor(struct xt_node *node, struct twitter_xml_list *txl) |
---|
[1b221e0] | 212 | { |
---|
[bd64716] | 213 | char *end = NULL; |
---|
[5983eca] | 214 | |
---|
| 215 | if (node->text) |
---|
| 216 | txl->next_cursor = g_ascii_strtoll(node->text, &end, 10); |
---|
| 217 | if (end == NULL) |
---|
[bd64716] | 218 | txl->next_cursor = -1; |
---|
[1b221e0] | 219 | |
---|
| 220 | return XT_HANDLED; |
---|
| 221 | } |
---|
| 222 | |
---|
| 223 | /** |
---|
| 224 | * Fill a list of ids. |
---|
| 225 | */ |
---|
[5983eca] | 226 | static xt_status twitter_xt_get_friends_id_list(struct xt_node *node, struct twitter_xml_list *txl) |
---|
[1b221e0] | 227 | { |
---|
| 228 | struct xt_node *child; |
---|
[5983eca] | 229 | |
---|
[62d2cfb] | 230 | // Set the list type. |
---|
| 231 | txl->type = TXL_ID; |
---|
[1b221e0] | 232 | |
---|
| 233 | // The root <statuses> node should hold the list of statuses <status> |
---|
| 234 | // Walk over the nodes children. |
---|
[5983eca] | 235 | for (child = node->children; child; child = child->next) { |
---|
[de923d5] | 236 | if (g_strcasecmp("ids", child->name) == 0) { |
---|
| 237 | struct xt_node *idc; |
---|
| 238 | for (idc = child->children; idc; idc = idc->next) |
---|
| 239 | if (g_strcasecmp(idc->name, "id") == 0) |
---|
| 240 | txl->list = g_slist_prepend(txl->list, |
---|
| 241 | g_memdup(idc->text, idc->text_len + 1)); |
---|
[5983eca] | 242 | } else if (g_strcasecmp("next_cursor", child->name) == 0) { |
---|
[1b221e0] | 243 | twitter_xt_next_cursor(child, txl); |
---|
| 244 | } |
---|
| 245 | } |
---|
| 246 | |
---|
| 247 | return XT_HANDLED; |
---|
| 248 | } |
---|
| 249 | |
---|
[de923d5] | 250 | static void twitter_get_users_lookup(struct im_connection *ic); |
---|
| 251 | |
---|
[1b221e0] | 252 | /** |
---|
| 253 | * Callback for getting the friends ids. |
---|
| 254 | */ |
---|
| 255 | static void twitter_http_get_friends_ids(struct http_request *req) |
---|
| 256 | { |
---|
| 257 | struct im_connection *ic; |
---|
| 258 | struct xt_parser *parser; |
---|
| 259 | struct twitter_xml_list *txl; |
---|
[3bd4a93] | 260 | struct twitter_data *td; |
---|
[1b221e0] | 261 | |
---|
| 262 | ic = req->data; |
---|
| 263 | |
---|
[62d2cfb] | 264 | // Check if the connection is still active. |
---|
[5983eca] | 265 | if (!g_slist_find(twitter_connections, ic)) |
---|
[62d2cfb] | 266 | return; |
---|
[5983eca] | 267 | |
---|
[37aa317] | 268 | td = ic->proto_data; |
---|
[62d2cfb] | 269 | |
---|
[de923d5] | 270 | // Check if the HTTP request went well. More strict checks as this is |
---|
| 271 | // the first request we do in a session. |
---|
| 272 | if (req->status_code == 401) { |
---|
| 273 | imcb_error(ic, "Authentication failure"); |
---|
| 274 | imc_logout(ic, FALSE); |
---|
| 275 | return; |
---|
| 276 | } else if (req->status_code != 200) { |
---|
[1b221e0] | 277 | // It didn't go well, output the error and return. |
---|
[de923d5] | 278 | imcb_error(ic, "Could not retrieve %s: %s", |
---|
| 279 | TWITTER_FRIENDS_IDS_URL, twitter_parse_error(req)); |
---|
| 280 | imc_logout(ic, TRUE); |
---|
[1b221e0] | 281 | return; |
---|
[3bd4a93] | 282 | } else { |
---|
| 283 | td->http_fails = 0; |
---|
[1b221e0] | 284 | } |
---|
| 285 | |
---|
[de923d5] | 286 | /* Create the room now that we "logged in". */ |
---|
[2322a9f] | 287 | if (!td->timeline_gc && g_strcasecmp(set_getstr(&ic->acc->set, "mode"), "chat") == 0) |
---|
[de923d5] | 288 | twitter_groupchat_init(ic); |
---|
| 289 | |
---|
[1b221e0] | 290 | txl = g_new0(struct twitter_xml_list, 1); |
---|
[de923d5] | 291 | txl->list = td->follow_ids; |
---|
[1b221e0] | 292 | |
---|
| 293 | // Parse the data. |
---|
[5983eca] | 294 | parser = xt_new(NULL, txl); |
---|
| 295 | xt_feed(parser, req->reply_body, req->body_size); |
---|
[1b221e0] | 296 | twitter_xt_get_friends_id_list(parser->root, txl); |
---|
[5983eca] | 297 | xt_free(parser); |
---|
[1b221e0] | 298 | |
---|
[de923d5] | 299 | td->follow_ids = txl->list; |
---|
[1b221e0] | 300 | if (txl->next_cursor) |
---|
[de923d5] | 301 | /* These were just numbers. Up to 4000 in a response AFAIK so if we get here |
---|
| 302 | we may be using a spammer account. \o/ */ |
---|
[1b221e0] | 303 | twitter_get_friends_ids(ic, txl->next_cursor); |
---|
[de923d5] | 304 | else |
---|
| 305 | /* Now to convert all those numbers into names.. */ |
---|
| 306 | twitter_get_users_lookup(ic); |
---|
| 307 | |
---|
| 308 | txl->list = NULL; |
---|
| 309 | txl_free(txl); |
---|
| 310 | } |
---|
| 311 | |
---|
| 312 | static xt_status twitter_xt_get_users(struct xt_node *node, struct twitter_xml_list *txl); |
---|
| 313 | static void twitter_http_get_users_lookup(struct http_request *req); |
---|
| 314 | |
---|
| 315 | static void twitter_get_users_lookup(struct im_connection *ic) |
---|
| 316 | { |
---|
| 317 | struct twitter_data *td = ic->proto_data; |
---|
| 318 | char *args[2] = { |
---|
| 319 | "user_id", |
---|
| 320 | NULL, |
---|
| 321 | }; |
---|
| 322 | GString *ids = g_string_new(""); |
---|
| 323 | int i; |
---|
| 324 | |
---|
| 325 | /* We can request up to 100 users at a time. */ |
---|
| 326 | for (i = 0; i < 100 && td->follow_ids; i ++) { |
---|
| 327 | g_string_append_printf(ids, ",%s", (char*) td->follow_ids->data); |
---|
| 328 | g_free(td->follow_ids->data); |
---|
| 329 | td->follow_ids = g_slist_remove(td->follow_ids, td->follow_ids->data); |
---|
| 330 | } |
---|
| 331 | if (ids->len > 0) { |
---|
| 332 | args[1] = ids->str + 1; |
---|
| 333 | /* POST, because I think ids can be up to 1KB long. */ |
---|
| 334 | twitter_http(ic, TWITTER_USERS_LOOKUP_URL, twitter_http_get_users_lookup, ic, 1, args, 2); |
---|
| 335 | } else { |
---|
| 336 | /* We have all users. Continue with login. (Get statuses.) */ |
---|
| 337 | td->flags |= TWITTER_HAVE_FRIENDS; |
---|
| 338 | twitter_login_finish(ic); |
---|
| 339 | } |
---|
| 340 | g_string_free(ids, TRUE); |
---|
| 341 | } |
---|
| 342 | |
---|
| 343 | /** |
---|
| 344 | * Callback for getting (twitter)friends... |
---|
| 345 | * |
---|
| 346 | * Be afraid, be very afraid! This function will potentially add hundreds of "friends". "Who has |
---|
| 347 | * hundreds of friends?" you wonder? You probably not, since you are reading the source of |
---|
| 348 | * BitlBee... Get a life and meet new people! |
---|
| 349 | */ |
---|
| 350 | static void twitter_http_get_users_lookup(struct http_request *req) |
---|
| 351 | { |
---|
| 352 | struct im_connection *ic = req->data; |
---|
| 353 | struct twitter_data *td; |
---|
| 354 | struct xt_parser *parser; |
---|
| 355 | struct twitter_xml_list *txl; |
---|
| 356 | GSList *l = NULL; |
---|
| 357 | struct twitter_xml_user *user; |
---|
| 358 | |
---|
| 359 | // Check if the connection is still active. |
---|
| 360 | if (!g_slist_find(twitter_connections, ic)) |
---|
| 361 | return; |
---|
| 362 | |
---|
| 363 | td = ic->proto_data; |
---|
| 364 | |
---|
| 365 | if (req->status_code != 200) { |
---|
| 366 | // It didn't go well, output the error and return. |
---|
| 367 | imcb_error(ic, "Could not retrieve %s: %s", |
---|
| 368 | TWITTER_USERS_LOOKUP_URL, twitter_parse_error(req)); |
---|
| 369 | imc_logout(ic, TRUE); |
---|
| 370 | return; |
---|
| 371 | } else { |
---|
| 372 | td->http_fails = 0; |
---|
| 373 | } |
---|
| 374 | |
---|
| 375 | txl = g_new0(struct twitter_xml_list, 1); |
---|
| 376 | txl->list = NULL; |
---|
[1b221e0] | 377 | |
---|
[de923d5] | 378 | // Parse the data. |
---|
| 379 | parser = xt_new(NULL, txl); |
---|
| 380 | xt_feed(parser, req->reply_body, req->body_size); |
---|
| 381 | |
---|
| 382 | // Get the user list from the parsed xml feed. |
---|
| 383 | twitter_xt_get_users(parser->root, txl); |
---|
| 384 | xt_free(parser); |
---|
| 385 | |
---|
| 386 | // Add the users as buddies. |
---|
| 387 | for (l = txl->list; l; l = g_slist_next(l)) { |
---|
| 388 | user = l->data; |
---|
| 389 | twitter_add_buddy(ic, user->screen_name, user->name); |
---|
| 390 | } |
---|
| 391 | |
---|
| 392 | // Free the structure. |
---|
[62d2cfb] | 393 | txl_free(txl); |
---|
[de923d5] | 394 | |
---|
| 395 | twitter_get_users_lookup(ic); |
---|
[1b221e0] | 396 | } |
---|
| 397 | |
---|
| 398 | /** |
---|
| 399 | * Function to fill a twitter_xml_user struct. |
---|
| 400 | * It sets: |
---|
| 401 | * - the name and |
---|
| 402 | * - the screen_name. |
---|
| 403 | */ |
---|
[5983eca] | 404 | static xt_status twitter_xt_get_user(struct xt_node *node, struct twitter_xml_user *txu) |
---|
[1b221e0] | 405 | { |
---|
| 406 | struct xt_node *child; |
---|
| 407 | |
---|
| 408 | // Walk over the nodes children. |
---|
[5983eca] | 409 | for (child = node->children; child; child = child->next) { |
---|
| 410 | if (g_strcasecmp("name", child->name) == 0) { |
---|
| 411 | txu->name = g_memdup(child->text, child->text_len + 1); |
---|
| 412 | } else if (g_strcasecmp("screen_name", child->name) == 0) { |
---|
| 413 | txu->screen_name = g_memdup(child->text, child->text_len + 1); |
---|
[1b221e0] | 414 | } |
---|
| 415 | } |
---|
| 416 | return XT_HANDLED; |
---|
| 417 | } |
---|
| 418 | |
---|
[62d2cfb] | 419 | /** |
---|
| 420 | * Function to fill a twitter_xml_list struct. |
---|
| 421 | * It sets: |
---|
| 422 | * - all <user>s from the <users> element. |
---|
| 423 | */ |
---|
[5983eca] | 424 | static xt_status twitter_xt_get_users(struct xt_node *node, struct twitter_xml_list *txl) |
---|
[62d2cfb] | 425 | { |
---|
| 426 | struct twitter_xml_user *txu; |
---|
| 427 | struct xt_node *child; |
---|
| 428 | |
---|
| 429 | // Set the type of the list. |
---|
| 430 | txl->type = TXL_USER; |
---|
| 431 | |
---|
| 432 | // The root <users> node should hold the list of users <user> |
---|
| 433 | // Walk over the nodes children. |
---|
[5983eca] | 434 | for (child = node->children; child; child = child->next) { |
---|
| 435 | if (g_strcasecmp("user", child->name) == 0) { |
---|
[62d2cfb] | 436 | txu = g_new0(struct twitter_xml_user, 1); |
---|
| 437 | twitter_xt_get_user(child, txu); |
---|
| 438 | // Put the item in the front of the list. |
---|
[5983eca] | 439 | txl->list = g_slist_prepend(txl->list, txu); |
---|
[62d2cfb] | 440 | } |
---|
| 441 | } |
---|
| 442 | |
---|
| 443 | return XT_HANDLED; |
---|
| 444 | } |
---|
| 445 | |
---|
[2b02617] | 446 | #ifdef __GLIBC__ |
---|
| 447 | #define TWITTER_TIME_FORMAT "%a %b %d %H:%M:%S %z %Y" |
---|
| 448 | #else |
---|
| 449 | #define TWITTER_TIME_FORMAT "%a %b %d %H:%M:%S +0000 %Y" |
---|
| 450 | #endif |
---|
[62d2cfb] | 451 | |
---|
[1b221e0] | 452 | /** |
---|
| 453 | * Function to fill a twitter_xml_status struct. |
---|
| 454 | * It sets: |
---|
| 455 | * - the status text and |
---|
| 456 | * - the created_at timestamp and |
---|
| 457 | * - the status id and |
---|
| 458 | * - the user in a twitter_xml_user struct. |
---|
| 459 | */ |
---|
[5983eca] | 460 | static xt_status twitter_xt_get_status(struct xt_node *node, struct twitter_xml_status *txs) |
---|
[1b221e0] | 461 | { |
---|
[bd599b9] | 462 | struct xt_node *child, *rt = NULL; |
---|
[1b221e0] | 463 | |
---|
| 464 | // Walk over the nodes children. |
---|
[5983eca] | 465 | for (child = node->children; child; child = child->next) { |
---|
| 466 | if (g_strcasecmp("text", child->name) == 0) { |
---|
| 467 | txs->text = g_memdup(child->text, child->text_len + 1); |
---|
| 468 | } else if (g_strcasecmp("retweeted_status", child->name) == 0) { |
---|
[e193aeb] | 469 | rt = child; |
---|
[5983eca] | 470 | } else if (g_strcasecmp("created_at", child->name) == 0) { |
---|
[08579a1] | 471 | struct tm parsed; |
---|
[5983eca] | 472 | |
---|
[08579a1] | 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. */ |
---|
[5983eca] | 476 | if (strptime(child->text, TWITTER_TIME_FORMAT, &parsed) != NULL) |
---|
| 477 | txs->created_at = mktime_utc(&parsed); |
---|
| 478 | } else if (g_strcasecmp("user", child->name) == 0) { |
---|
[1b221e0] | 479 | txs->user = g_new0(struct twitter_xml_user, 1); |
---|
[5983eca] | 480 | twitter_xt_get_user(child, txs->user); |
---|
| 481 | } else if (g_strcasecmp("id", child->name) == 0) { |
---|
| 482 | txs->id = g_ascii_strtoull(child->text, NULL, 10); |
---|
| 483 | } else if (g_strcasecmp("in_reply_to_status_id", child->name) == 0) { |
---|
| 484 | txs->reply_to = g_ascii_strtoull(child->text, NULL, 10); |
---|
[ce81acd] | 485 | } |
---|
[1b221e0] | 486 | } |
---|
[5983eca] | 487 | |
---|
[0fff0b2] | 488 | /* If it's a (truncated) retweet, get the original. Even if the API claims it |
---|
| 489 | wasn't truncated because it may be lying. */ |
---|
| 490 | if (rt) { |
---|
[e193aeb] | 491 | struct twitter_xml_status *rtxs = g_new0(struct twitter_xml_status, 1); |
---|
[5983eca] | 492 | if (twitter_xt_get_status(rt, rtxs) != XT_HANDLED) { |
---|
[e193aeb] | 493 | txs_free(rtxs); |
---|
| 494 | return XT_HANDLED; |
---|
| 495 | } |
---|
[5983eca] | 496 | |
---|
[e193aeb] | 497 | g_free(txs->text); |
---|
| 498 | txs->text = g_strdup_printf("RT @%s: %s", rtxs->user->screen_name, rtxs->text); |
---|
| 499 | txs_free(rtxs); |
---|
[429a9b1] | 500 | } else { |
---|
| 501 | struct xt_node *urls, *url; |
---|
| 502 | |
---|
| 503 | urls = xt_find_path(node, "entities/urls"); |
---|
| 504 | for (url = urls ? urls->children : NULL; url; url = url->next) { |
---|
| 505 | /* "short" is a reserved word. :-P */ |
---|
| 506 | struct xt_node *kort = xt_find_node(url->children, "url"); |
---|
| 507 | struct xt_node *disp = xt_find_node(url->children, "display_url"); |
---|
| 508 | char *pos, *new; |
---|
| 509 | |
---|
| 510 | if (!kort || !kort->text || !disp || !disp->text || |
---|
| 511 | !(pos = strstr(txs->text, kort->text))) |
---|
| 512 | continue; |
---|
| 513 | |
---|
| 514 | *pos = '\0'; |
---|
| 515 | new = g_strdup_printf("%s%s <%s>%s", txs->text, kort->text, |
---|
| 516 | disp->text, pos + strlen(kort->text)); |
---|
| 517 | |
---|
| 518 | g_free(txs->text); |
---|
| 519 | txs->text = new; |
---|
| 520 | } |
---|
[e193aeb] | 521 | } |
---|
[5983eca] | 522 | |
---|
[1b221e0] | 523 | return XT_HANDLED; |
---|
| 524 | } |
---|
| 525 | |
---|
| 526 | /** |
---|
| 527 | * Function to fill a twitter_xml_list struct. |
---|
| 528 | * It sets: |
---|
| 529 | * - all <status>es within the <status> element and |
---|
| 530 | * - the next_cursor. |
---|
| 531 | */ |
---|
[5983eca] | 532 | static xt_status twitter_xt_get_status_list(struct im_connection *ic, struct xt_node *node, |
---|
| 533 | struct twitter_xml_list *txl) |
---|
[1b221e0] | 534 | { |
---|
| 535 | struct twitter_xml_status *txs; |
---|
| 536 | struct xt_node *child; |
---|
[203a2d2] | 537 | bee_user_t *bu; |
---|
[1b221e0] | 538 | |
---|
[62d2cfb] | 539 | // Set the type of the list. |
---|
| 540 | txl->type = TXL_STATUS; |
---|
| 541 | |
---|
[1b221e0] | 542 | // The root <statuses> node should hold the list of statuses <status> |
---|
| 543 | // Walk over the nodes children. |
---|
[5983eca] | 544 | for (child = node->children; child; child = child->next) { |
---|
| 545 | if (g_strcasecmp("status", child->name) == 0) { |
---|
[1b221e0] | 546 | txs = g_new0(struct twitter_xml_status, 1); |
---|
| 547 | twitter_xt_get_status(child, txs); |
---|
| 548 | // Put the item in the front of the list. |
---|
[5983eca] | 549 | txl->list = g_slist_prepend(txl->list, txs); |
---|
| 550 | |
---|
[203a2d2] | 551 | if (txs->user && txs->user->screen_name && |
---|
[5983eca] | 552 | (bu = bee_user_by_handle(ic->bee, ic, txs->user->screen_name))) { |
---|
[203a2d2] | 553 | struct twitter_user_data *tud = bu->data; |
---|
[5983eca] | 554 | |
---|
| 555 | if (txs->id > tud->last_id) { |
---|
[203a2d2] | 556 | tud->last_id = txs->id; |
---|
| 557 | tud->last_time = txs->created_at; |
---|
| 558 | } |
---|
| 559 | } |
---|
[5983eca] | 560 | } else if (g_strcasecmp("next_cursor", child->name) == 0) { |
---|
[1b221e0] | 561 | twitter_xt_next_cursor(child, txl); |
---|
| 562 | } |
---|
| 563 | } |
---|
| 564 | |
---|
| 565 | return XT_HANDLED; |
---|
| 566 | } |
---|
| 567 | |
---|
[ce81acd] | 568 | static char *twitter_msg_add_id(struct im_connection *ic, |
---|
[5983eca] | 569 | struct twitter_xml_status *txs, const char *prefix) |
---|
[ce81acd] | 570 | { |
---|
| 571 | struct twitter_data *td = ic->proto_data; |
---|
| 572 | char *ret = NULL; |
---|
[5983eca] | 573 | |
---|
| 574 | if (!set_getbool(&ic->acc->set, "show_ids")) { |
---|
[ce81acd] | 575 | if (*prefix) |
---|
| 576 | return g_strconcat(prefix, txs->text, NULL); |
---|
| 577 | else |
---|
| 578 | return NULL; |
---|
| 579 | } |
---|
[5983eca] | 580 | |
---|
[ce81acd] | 581 | td->log[td->log_id].id = txs->id; |
---|
| 582 | td->log[td->log_id].bu = bee_user_by_handle(ic->bee, ic, txs->user->screen_name); |
---|
[5983eca] | 583 | if (txs->reply_to) { |
---|
[ce81acd] | 584 | int i; |
---|
[5983eca] | 585 | for (i = 0; i < TWITTER_LOG_LENGTH; i++) |
---|
| 586 | if (td->log[i].id == txs->reply_to) { |
---|
| 587 | ret = g_strdup_printf("\002[\002%02d->%02d\002]\002 %s%s", |
---|
| 588 | td->log_id, i, prefix, txs->text); |
---|
[ce81acd] | 589 | break; |
---|
| 590 | } |
---|
| 591 | } |
---|
| 592 | if (ret == NULL) |
---|
[5983eca] | 593 | ret = g_strdup_printf("\002[\002%02d\002]\002 %s%s", td->log_id, prefix, txs->text); |
---|
[ce81acd] | 594 | td->log_id = (td->log_id + 1) % TWITTER_LOG_LENGTH; |
---|
[5983eca] | 595 | |
---|
[ce81acd] | 596 | return ret; |
---|
| 597 | } |
---|
| 598 | |
---|
[d6aa6dd] | 599 | static void twitter_groupchat_init(struct im_connection *ic) |
---|
| 600 | { |
---|
| 601 | char *name_hint; |
---|
| 602 | struct groupchat *gc; |
---|
| 603 | struct twitter_data *td = ic->proto_data; |
---|
[fd65edb] | 604 | GSList *l; |
---|
[5983eca] | 605 | |
---|
[2322a9f] | 606 | td->timeline_gc = gc = imcb_chat_new(ic, "twitter/timeline"); |
---|
[5983eca] | 607 | |
---|
| 608 | name_hint = g_strdup_printf("%s_%s", td->prefix, ic->acc->user); |
---|
| 609 | imcb_chat_name_hint(gc, name_hint); |
---|
| 610 | g_free(name_hint); |
---|
| 611 | |
---|
| 612 | for (l = ic->bee->users; l; l = l->next) { |
---|
[fd65edb] | 613 | bee_user_t *bu = l->data; |
---|
[5983eca] | 614 | if (bu->ic == ic) |
---|
[2322a9f] | 615 | imcb_chat_add_buddy(td->timeline_gc, bu->handle); |
---|
[fd65edb] | 616 | } |
---|
[d6aa6dd] | 617 | } |
---|
| 618 | |
---|
[62d2cfb] | 619 | /** |
---|
| 620 | * Function that is called to see the statuses in a groupchat window. |
---|
| 621 | */ |
---|
[5983eca] | 622 | static void twitter_groupchat(struct im_connection *ic, GSList * list) |
---|
[62d2cfb] | 623 | { |
---|
| 624 | struct twitter_data *td = ic->proto_data; |
---|
| 625 | GSList *l = NULL; |
---|
| 626 | struct twitter_xml_status *status; |
---|
| 627 | struct groupchat *gc; |
---|
[2322a9f] | 628 | guint64 last_id = 0; |
---|
[62d2cfb] | 629 | |
---|
| 630 | // Create a new groupchat if it does not exsist. |
---|
[2322a9f] | 631 | if (!td->timeline_gc) |
---|
[d6aa6dd] | 632 | twitter_groupchat_init(ic); |
---|
[5983eca] | 633 | |
---|
[2322a9f] | 634 | gc = td->timeline_gc; |
---|
[d6aa6dd] | 635 | if (!gc->joined) |
---|
[5983eca] | 636 | imcb_chat_add_buddy(gc, ic->acc->user); |
---|
[62d2cfb] | 637 | |
---|
[5983eca] | 638 | for (l = list; l; l = g_slist_next(l)) { |
---|
[ce81acd] | 639 | char *msg; |
---|
[5983eca] | 640 | |
---|
[62d2cfb] | 641 | status = l->data; |
---|
[2322a9f] | 642 | if (status->user == NULL || status->text == NULL || last_id == status->id) |
---|
[a26af5c] | 643 | continue; |
---|
| 644 | |
---|
[2322a9f] | 645 | last_id = status->id; |
---|
[5983eca] | 646 | |
---|
[0b3ffb1] | 647 | strip_html(status->text); |
---|
[2322a9f] | 648 | |
---|
[948abab] | 649 | if (set_getbool(&ic->acc->set, "strip_newlines")) |
---|
[cf0dbdd] | 650 | strip_newlines(status->text); |
---|
[948abab] | 651 | |
---|
[ce81acd] | 652 | msg = twitter_msg_add_id(ic, status, ""); |
---|
[5983eca] | 653 | |
---|
[62d2cfb] | 654 | // Say it! |
---|
[2322a9f] | 655 | if (g_strcasecmp(td->user, status->user->screen_name) == 0) { |
---|
[ce81acd] | 656 | imcb_chat_log(gc, "You: %s", msg ? msg : status->text); |
---|
[2322a9f] | 657 | } else { |
---|
| 658 | twitter_add_buddy(ic, status->user->screen_name, status->user->name); |
---|
| 659 | |
---|
[ce81acd] | 660 | imcb_chat_msg(gc, status->user->screen_name, |
---|
[5983eca] | 661 | msg ? msg : status->text, 0, status->created_at); |
---|
[2322a9f] | 662 | } |
---|
[5983eca] | 663 | |
---|
[ce81acd] | 664 | g_free(msg); |
---|
[5983eca] | 665 | |
---|
[2322a9f] | 666 | // Update the timeline_id to hold the highest id, so that by the next request |
---|
[ce81acd] | 667 | // we won't pick up the updates already in the list. |
---|
[2322a9f] | 668 | td->timeline_id = MAX(td->timeline_id, status->id); |
---|
[62d2cfb] | 669 | } |
---|
| 670 | } |
---|
| 671 | |
---|
| 672 | /** |
---|
| 673 | * Function that is called to see statuses as private messages. |
---|
| 674 | */ |
---|
[5983eca] | 675 | static void twitter_private_message_chat(struct im_connection *ic, GSList * list) |
---|
[62d2cfb] | 676 | { |
---|
| 677 | struct twitter_data *td = ic->proto_data; |
---|
| 678 | GSList *l = NULL; |
---|
| 679 | struct twitter_xml_status *status; |
---|
[e88fbe27] | 680 | char from[MAX_STRING]; |
---|
| 681 | gboolean mode_one; |
---|
[2322a9f] | 682 | guint64 last_id = 0; |
---|
[62d2cfb] | 683 | |
---|
[5983eca] | 684 | mode_one = g_strcasecmp(set_getstr(&ic->acc->set, "mode"), "one") == 0; |
---|
| 685 | |
---|
| 686 | if (mode_one) { |
---|
| 687 | g_snprintf(from, sizeof(from) - 1, "%s_%s", td->prefix, ic->acc->user); |
---|
| 688 | from[MAX_STRING - 1] = '\0'; |
---|
[e88fbe27] | 689 | } |
---|
[5983eca] | 690 | |
---|
| 691 | for (l = list; l; l = g_slist_next(l)) { |
---|
[ce81acd] | 692 | char *prefix = NULL, *text = NULL; |
---|
[5983eca] | 693 | |
---|
[62d2cfb] | 694 | status = l->data; |
---|
[2322a9f] | 695 | if (status->user == NULL || status->text == NULL || last_id == status->id) |
---|
| 696 | continue; |
---|
| 697 | |
---|
| 698 | last_id = status->id; |
---|
[5983eca] | 699 | |
---|
| 700 | strip_html(status->text); |
---|
| 701 | if (mode_one) |
---|
[ce81acd] | 702 | prefix = g_strdup_printf("\002<\002%s\002>\002 ", |
---|
[5983eca] | 703 | status->user->screen_name); |
---|
[55b1e69] | 704 | else |
---|
| 705 | twitter_add_buddy(ic, status->user->screen_name, status->user->name); |
---|
[5983eca] | 706 | |
---|
[ce81acd] | 707 | text = twitter_msg_add_id(ic, status, prefix ? prefix : ""); |
---|
[5983eca] | 708 | |
---|
| 709 | imcb_buddy_msg(ic, |
---|
| 710 | mode_one ? from : status->user->screen_name, |
---|
| 711 | text ? text : status->text, 0, status->created_at); |
---|
| 712 | |
---|
[2322a9f] | 713 | // Update the timeline_id to hold the highest id, so that by the next request |
---|
[ce81acd] | 714 | // we won't pick up the updates already in the list. |
---|
[2322a9f] | 715 | td->timeline_id = MAX(td->timeline_id, status->id); |
---|
[5983eca] | 716 | |
---|
| 717 | g_free(text); |
---|
| 718 | g_free(prefix); |
---|
[62d2cfb] | 719 | } |
---|
| 720 | } |
---|
| 721 | |
---|
[2322a9f] | 722 | static void twitter_http_get_home_timeline(struct http_request *req); |
---|
| 723 | static void twitter_http_get_mentions(struct http_request *req); |
---|
| 724 | |
---|
| 725 | /** |
---|
| 726 | * Get the timeline with optionally mentions |
---|
| 727 | */ |
---|
| 728 | void twitter_get_timeline(struct im_connection *ic, gint64 next_cursor) |
---|
| 729 | { |
---|
| 730 | struct twitter_data *td = ic->proto_data; |
---|
| 731 | gboolean include_mentions = set_getbool(&ic->acc->set, "fetch_mentions"); |
---|
| 732 | |
---|
| 733 | if (td->flags & TWITTER_DOING_TIMELINE) { |
---|
| 734 | return; |
---|
| 735 | } |
---|
| 736 | |
---|
| 737 | td->flags |= TWITTER_DOING_TIMELINE; |
---|
| 738 | |
---|
| 739 | twitter_get_home_timeline(ic, next_cursor); |
---|
| 740 | |
---|
| 741 | if (include_mentions) { |
---|
| 742 | twitter_get_mentions(ic, next_cursor); |
---|
| 743 | } |
---|
| 744 | } |
---|
| 745 | |
---|
| 746 | /** |
---|
| 747 | * Call this one after receiving timeline/mentions. Show to user once we have |
---|
| 748 | * both. |
---|
| 749 | */ |
---|
| 750 | void twitter_flush_timeline(struct im_connection *ic) |
---|
| 751 | { |
---|
| 752 | struct twitter_data *td = ic->proto_data; |
---|
| 753 | gboolean include_mentions = set_getbool(&ic->acc->set, "fetch_mentions"); |
---|
[b5fe39b] | 754 | int show_old_mentions = set_getint(&ic->acc->set, "show_old_mentions"); |
---|
[2322a9f] | 755 | struct twitter_xml_list *home_timeline = td->home_timeline_obj; |
---|
| 756 | struct twitter_xml_list *mentions = td->mentions_obj; |
---|
| 757 | GSList *output = NULL; |
---|
| 758 | GSList *l; |
---|
| 759 | |
---|
| 760 | if (!(td->flags & TWITTER_GOT_TIMELINE)) { |
---|
| 761 | return; |
---|
| 762 | } |
---|
| 763 | |
---|
| 764 | if (include_mentions && !(td->flags & TWITTER_GOT_MENTIONS)) { |
---|
| 765 | return; |
---|
| 766 | } |
---|
| 767 | |
---|
| 768 | if (home_timeline && home_timeline->list) { |
---|
| 769 | for (l = home_timeline->list; l; l = g_slist_next(l)) { |
---|
| 770 | output = g_slist_insert_sorted(output, l->data, twitter_compare_elements); |
---|
| 771 | } |
---|
| 772 | } |
---|
| 773 | |
---|
| 774 | if (include_mentions && mentions && mentions->list) { |
---|
| 775 | for (l = mentions->list; l; l = g_slist_next(l)) { |
---|
[b5fe39b] | 776 | if (show_old_mentions < 1 && output && twitter_compare_elements(l->data, output->data) < 0) { |
---|
[2322a9f] | 777 | continue; |
---|
| 778 | } |
---|
| 779 | |
---|
| 780 | output = g_slist_insert_sorted(output, l->data, twitter_compare_elements); |
---|
| 781 | } |
---|
| 782 | } |
---|
| 783 | |
---|
| 784 | // See if the user wants to see the messages in a groupchat window or as private messages. |
---|
| 785 | if (g_strcasecmp(set_getstr(&ic->acc->set, "mode"), "chat") == 0) |
---|
| 786 | twitter_groupchat(ic, output); |
---|
| 787 | else |
---|
| 788 | twitter_private_message_chat(ic, output); |
---|
| 789 | |
---|
| 790 | g_slist_free(output); |
---|
| 791 | |
---|
[199fea6] | 792 | txl_free(home_timeline); |
---|
| 793 | txl_free(mentions); |
---|
[2322a9f] | 794 | |
---|
| 795 | td->flags &= ~(TWITTER_DOING_TIMELINE | TWITTER_GOT_TIMELINE | TWITTER_GOT_MENTIONS); |
---|
[199fea6] | 796 | td->home_timeline_obj = td->mentions_obj = NULL; |
---|
[2322a9f] | 797 | } |
---|
| 798 | |
---|
| 799 | /** |
---|
| 800 | * Get the timeline. |
---|
| 801 | */ |
---|
| 802 | void twitter_get_home_timeline(struct im_connection *ic, gint64 next_cursor) |
---|
| 803 | { |
---|
| 804 | struct twitter_data *td = ic->proto_data; |
---|
| 805 | |
---|
[199fea6] | 806 | txl_free(td->home_timeline_obj); |
---|
[2322a9f] | 807 | td->home_timeline_obj = NULL; |
---|
| 808 | td->flags &= ~TWITTER_GOT_TIMELINE; |
---|
| 809 | |
---|
[429a9b1] | 810 | char *args[6]; |
---|
[2322a9f] | 811 | args[0] = "cursor"; |
---|
| 812 | args[1] = g_strdup_printf("%lld", (long long) next_cursor); |
---|
[429a9b1] | 813 | args[2] = "include_entities"; |
---|
| 814 | args[3] = "true"; |
---|
[2322a9f] | 815 | if (td->timeline_id) { |
---|
[429a9b1] | 816 | args[4] = "since_id"; |
---|
| 817 | args[5] = g_strdup_printf("%llu", (long long unsigned int) td->timeline_id); |
---|
[2322a9f] | 818 | } |
---|
| 819 | |
---|
[90fc864] | 820 | if (twitter_http(ic, TWITTER_HOME_TIMELINE_URL, twitter_http_get_home_timeline, ic, 0, args, |
---|
| 821 | td->timeline_id ? 6 : 4) == NULL) { |
---|
| 822 | if (++td->http_fails >= 5) |
---|
| 823 | imcb_error(ic, "Could not retrieve %s: %s", |
---|
| 824 | TWITTER_HOME_TIMELINE_URL, "connection failed"); |
---|
| 825 | td->flags |= TWITTER_GOT_TIMELINE; |
---|
| 826 | twitter_flush_timeline(ic); |
---|
| 827 | } |
---|
[2322a9f] | 828 | |
---|
| 829 | g_free(args[1]); |
---|
| 830 | if (td->timeline_id) { |
---|
[429a9b1] | 831 | g_free(args[5]); |
---|
[2322a9f] | 832 | } |
---|
| 833 | } |
---|
| 834 | |
---|
| 835 | /** |
---|
| 836 | * Get mentions. |
---|
| 837 | */ |
---|
| 838 | void twitter_get_mentions(struct im_connection *ic, gint64 next_cursor) |
---|
| 839 | { |
---|
| 840 | struct twitter_data *td = ic->proto_data; |
---|
| 841 | |
---|
[199fea6] | 842 | txl_free(td->mentions_obj); |
---|
[2322a9f] | 843 | td->mentions_obj = NULL; |
---|
| 844 | td->flags &= ~TWITTER_GOT_MENTIONS; |
---|
| 845 | |
---|
[429a9b1] | 846 | char *args[6]; |
---|
[2322a9f] | 847 | args[0] = "cursor"; |
---|
| 848 | args[1] = g_strdup_printf("%lld", (long long) next_cursor); |
---|
[429a9b1] | 849 | args[2] = "include_entities"; |
---|
| 850 | args[3] = "true"; |
---|
[2322a9f] | 851 | if (td->timeline_id) { |
---|
[429a9b1] | 852 | args[4] = "since_id"; |
---|
| 853 | args[5] = g_strdup_printf("%llu", (long long unsigned int) td->timeline_id); |
---|
[b5fe39b] | 854 | } else { |
---|
| 855 | args[4] = "count"; |
---|
| 856 | args[5] = g_strdup_printf("%d", set_getint(&ic->acc->set, "show_old_mentions")); |
---|
[2322a9f] | 857 | } |
---|
| 858 | |
---|
[b5fe39b] | 859 | if (twitter_http(ic, TWITTER_MENTIONS_URL, twitter_http_get_mentions, |
---|
| 860 | ic, 0, args, 6) == NULL) { |
---|
[90fc864] | 861 | if (++td->http_fails >= 5) |
---|
| 862 | imcb_error(ic, "Could not retrieve %s: %s", |
---|
| 863 | TWITTER_MENTIONS_URL, "connection failed"); |
---|
| 864 | td->flags |= TWITTER_GOT_MENTIONS; |
---|
| 865 | twitter_flush_timeline(ic); |
---|
| 866 | } |
---|
[2322a9f] | 867 | |
---|
| 868 | g_free(args[1]); |
---|
| 869 | if (td->timeline_id) { |
---|
[429a9b1] | 870 | g_free(args[5]); |
---|
[2322a9f] | 871 | } |
---|
| 872 | } |
---|
| 873 | |
---|
[1b221e0] | 874 | /** |
---|
| 875 | * Callback for getting the home timeline. |
---|
| 876 | */ |
---|
| 877 | static void twitter_http_get_home_timeline(struct http_request *req) |
---|
| 878 | { |
---|
[62d2cfb] | 879 | struct im_connection *ic = req->data; |
---|
[37aa317] | 880 | struct twitter_data *td; |
---|
[1b221e0] | 881 | struct xt_parser *parser; |
---|
| 882 | struct twitter_xml_list *txl; |
---|
[62d2cfb] | 883 | |
---|
| 884 | // Check if the connection is still active. |
---|
[5983eca] | 885 | if (!g_slist_find(twitter_connections, ic)) |
---|
[62d2cfb] | 886 | return; |
---|
[5983eca] | 887 | |
---|
[37aa317] | 888 | td = ic->proto_data; |
---|
[1b221e0] | 889 | |
---|
| 890 | // Check if the HTTP request went well. |
---|
[5983eca] | 891 | if (req->status_code == 200) { |
---|
[3bd4a93] | 892 | td->http_fails = 0; |
---|
[c2ecadc] | 893 | if (!(ic->flags & OPT_LOGGED_IN)) |
---|
[3bd4a93] | 894 | imcb_connected(ic); |
---|
[5983eca] | 895 | } else { |
---|
[1b221e0] | 896 | // It didn't go well, output the error and return. |
---|
[3bd4a93] | 897 | if (++td->http_fails >= 5) |
---|
[de923d5] | 898 | imcb_error(ic, "Could not retrieve %s: %s", |
---|
| 899 | TWITTER_HOME_TIMELINE_URL, twitter_parse_error(req)); |
---|
[5983eca] | 900 | |
---|
[2322a9f] | 901 | goto end; |
---|
| 902 | } |
---|
| 903 | |
---|
| 904 | txl = g_new0(struct twitter_xml_list, 1); |
---|
| 905 | txl->list = NULL; |
---|
| 906 | |
---|
| 907 | // Parse the data. |
---|
| 908 | parser = xt_new(NULL, txl); |
---|
| 909 | xt_feed(parser, req->reply_body, req->body_size); |
---|
| 910 | // The root <statuses> node should hold the list of statuses <status> |
---|
| 911 | twitter_xt_get_status_list(ic, parser->root, txl); |
---|
| 912 | xt_free(parser); |
---|
| 913 | |
---|
| 914 | td->home_timeline_obj = txl; |
---|
| 915 | |
---|
| 916 | end: |
---|
| 917 | td->flags |= TWITTER_GOT_TIMELINE; |
---|
| 918 | |
---|
| 919 | twitter_flush_timeline(ic); |
---|
| 920 | } |
---|
| 921 | |
---|
| 922 | /** |
---|
| 923 | * Callback for getting mentions. |
---|
| 924 | */ |
---|
| 925 | static void twitter_http_get_mentions(struct http_request *req) |
---|
| 926 | { |
---|
| 927 | struct im_connection *ic = req->data; |
---|
| 928 | struct twitter_data *td; |
---|
| 929 | struct xt_parser *parser; |
---|
| 930 | struct twitter_xml_list *txl; |
---|
| 931 | |
---|
| 932 | // Check if the connection is still active. |
---|
| 933 | if (!g_slist_find(twitter_connections, ic)) |
---|
[1b221e0] | 934 | return; |
---|
[2322a9f] | 935 | |
---|
| 936 | td = ic->proto_data; |
---|
| 937 | |
---|
| 938 | // Check if the HTTP request went well. |
---|
| 939 | if (req->status_code == 200) { |
---|
| 940 | td->http_fails = 0; |
---|
| 941 | if (!(ic->flags & OPT_LOGGED_IN)) |
---|
| 942 | imcb_connected(ic); |
---|
| 943 | } else { |
---|
| 944 | // It didn't go well, output the error and return. |
---|
| 945 | if (++td->http_fails >= 5) |
---|
[90fc864] | 946 | imcb_error(ic, "Could not retrieve %s: %s", |
---|
| 947 | TWITTER_MENTIONS_URL, twitter_parse_error(req)); |
---|
[2322a9f] | 948 | |
---|
| 949 | goto end; |
---|
[1b221e0] | 950 | } |
---|
| 951 | |
---|
| 952 | txl = g_new0(struct twitter_xml_list, 1); |
---|
| 953 | txl->list = NULL; |
---|
[62d2cfb] | 954 | |
---|
[1b221e0] | 955 | // Parse the data. |
---|
[5983eca] | 956 | parser = xt_new(NULL, txl); |
---|
| 957 | xt_feed(parser, req->reply_body, req->body_size); |
---|
[1b221e0] | 958 | // The root <statuses> node should hold the list of statuses <status> |
---|
[203a2d2] | 959 | twitter_xt_get_status_list(ic, parser->root, txl); |
---|
[5983eca] | 960 | xt_free(parser); |
---|
[1b221e0] | 961 | |
---|
[2322a9f] | 962 | td->mentions_obj = txl; |
---|
[1b221e0] | 963 | |
---|
[2322a9f] | 964 | end: |
---|
| 965 | td->flags |= TWITTER_GOT_MENTIONS; |
---|
| 966 | |
---|
| 967 | twitter_flush_timeline(ic); |
---|
[1b221e0] | 968 | } |
---|
| 969 | |
---|
| 970 | /** |
---|
[de923d5] | 971 | * Callback to use after sending a POST request to twitter. |
---|
| 972 | * (Generic, used for a few kinds of queries.) |
---|
[1b221e0] | 973 | */ |
---|
[7d53efb] | 974 | static void twitter_http_post(struct http_request *req) |
---|
[1b221e0] | 975 | { |
---|
| 976 | struct im_connection *ic = req->data; |
---|
[7b87539] | 977 | struct twitter_data *td; |
---|
[1b221e0] | 978 | |
---|
[62d2cfb] | 979 | // Check if the connection is still active. |
---|
[5983eca] | 980 | if (!g_slist_find(twitter_connections, ic)) |
---|
[62d2cfb] | 981 | return; |
---|
| 982 | |
---|
[7b87539] | 983 | td = ic->proto_data; |
---|
| 984 | td->last_status_id = 0; |
---|
[5983eca] | 985 | |
---|
[1b221e0] | 986 | // Check if the HTTP request went well. |
---|
| 987 | if (req->status_code != 200) { |
---|
| 988 | // It didn't go well, output the error and return. |
---|
[ba3233c] | 989 | imcb_error(ic, "HTTP error: %s", twitter_parse_error(req)); |
---|
[1b221e0] | 990 | return; |
---|
| 991 | } |
---|
[5983eca] | 992 | |
---|
| 993 | if (req->body_size > 0) { |
---|
[7b87539] | 994 | struct xt_parser *xp = NULL; |
---|
| 995 | struct xt_node *node; |
---|
[5983eca] | 996 | |
---|
[7b87539] | 997 | xp = xt_new(NULL, NULL); |
---|
| 998 | xt_feed(xp, req->reply_body, req->body_size); |
---|
[5983eca] | 999 | |
---|
[7b87539] | 1000 | if ((node = xt_find_node(xp->root, "status")) && |
---|
| 1001 | (node = xt_find_node(node->children, "id")) && node->text) |
---|
[5983eca] | 1002 | td->last_status_id = g_ascii_strtoull(node->text, NULL, 10); |
---|
| 1003 | |
---|
[7b87539] | 1004 | xt_free(xp); |
---|
| 1005 | } |
---|
[1b221e0] | 1006 | } |
---|
| 1007 | |
---|
| 1008 | /** |
---|
| 1009 | * Function to POST a new status to twitter. |
---|
[5983eca] | 1010 | */ |
---|
[b890626] | 1011 | void twitter_post_status(struct im_connection *ic, char *msg, guint64 in_reply_to) |
---|
[1b221e0] | 1012 | { |
---|
[5983eca] | 1013 | char *args[4] = { |
---|
[b890626] | 1014 | "status", msg, |
---|
| 1015 | "in_reply_to_status_id", |
---|
| 1016 | g_strdup_printf("%llu", (unsigned long long) in_reply_to) |
---|
| 1017 | }; |
---|
| 1018 | twitter_http(ic, TWITTER_STATUS_UPDATE_URL, twitter_http_post, ic, 1, |
---|
[5983eca] | 1019 | args, in_reply_to ? 4 : 2); |
---|
[b890626] | 1020 | g_free(args[3]); |
---|
[1b221e0] | 1021 | } |
---|
| 1022 | |
---|
| 1023 | |
---|
[62d2cfb] | 1024 | /** |
---|
| 1025 | * Function to POST a new message to twitter. |
---|
| 1026 | */ |
---|
| 1027 | void twitter_direct_messages_new(struct im_connection *ic, char *who, char *msg) |
---|
| 1028 | { |
---|
[5983eca] | 1029 | char *args[4]; |
---|
[62d2cfb] | 1030 | args[0] = "screen_name"; |
---|
| 1031 | args[1] = who; |
---|
| 1032 | args[2] = "text"; |
---|
| 1033 | args[3] = msg; |
---|
| 1034 | // Use the same callback as for twitter_post_status, since it does basically the same. |
---|
[ba3233c] | 1035 | twitter_http(ic, TWITTER_DIRECT_MESSAGES_NEW_URL, twitter_http_post, ic, 1, args, 4); |
---|
[62d2cfb] | 1036 | } |
---|
[7d53efb] | 1037 | |
---|
| 1038 | void twitter_friendships_create_destroy(struct im_connection *ic, char *who, int create) |
---|
| 1039 | { |
---|
[5983eca] | 1040 | char *args[2]; |
---|
[7d53efb] | 1041 | args[0] = "screen_name"; |
---|
| 1042 | args[1] = who; |
---|
[5983eca] | 1043 | twitter_http(ic, create ? TWITTER_FRIENDSHIPS_CREATE_URL : TWITTER_FRIENDSHIPS_DESTROY_URL, |
---|
| 1044 | twitter_http_post, ic, 1, args, 2); |
---|
[a26af5c] | 1045 | } |
---|
[7b87539] | 1046 | |
---|
| 1047 | void twitter_status_destroy(struct im_connection *ic, guint64 id) |
---|
| 1048 | { |
---|
| 1049 | char *url; |
---|
[de923d5] | 1050 | url = g_strdup_printf("%s%llu%s", TWITTER_STATUS_DESTROY_URL, |
---|
| 1051 | (unsigned long long) id, ".xml"); |
---|
[7b87539] | 1052 | twitter_http(ic, url, twitter_http_post, ic, 1, NULL, 0); |
---|
| 1053 | g_free(url); |
---|
| 1054 | } |
---|
[b890626] | 1055 | |
---|
| 1056 | void twitter_status_retweet(struct im_connection *ic, guint64 id) |
---|
| 1057 | { |
---|
| 1058 | char *url; |
---|
[de923d5] | 1059 | url = g_strdup_printf("%s%llu%s", TWITTER_STATUS_RETWEET_URL, |
---|
| 1060 | (unsigned long long) id, ".xml"); |
---|
[b890626] | 1061 | twitter_http(ic, url, twitter_http_post, ic, 1, NULL, 0); |
---|
| 1062 | g_free(url); |
---|
| 1063 | } |
---|
[d18dee42] | 1064 | |
---|
| 1065 | /** |
---|
| 1066 | * Report a user for sending spam. |
---|
| 1067 | */ |
---|
| 1068 | void twitter_report_spam(struct im_connection *ic, char *screen_name) |
---|
| 1069 | { |
---|
| 1070 | char *args[2] = { |
---|
| 1071 | "screen_name", |
---|
| 1072 | NULL, |
---|
| 1073 | }; |
---|
| 1074 | args[1] = screen_name; |
---|
| 1075 | twitter_http(ic, TWITTER_REPORT_SPAM_URL, twitter_http_post, |
---|
| 1076 | ic, 1, args, 2); |
---|
| 1077 | } |
---|