[1b221e0] | 1 | /***************************************************************************\ |
---|
| 2 | * * |
---|
| 3 | * BitlBee - An IRC to IM gateway * |
---|
| 4 | * Simple module to facilitate twitter functionality. * |
---|
| 5 | * * |
---|
| 6 | * Copyright 2009 Geert Mulders <g.c.w.m.mulders@gmail.com> * |
---|
| 7 | * * |
---|
| 8 | * This library is free software; you can redistribute it and/or * |
---|
| 9 | * modify it under the terms of the GNU Lesser General Public * |
---|
| 10 | * License as published by the Free Software Foundation, version * |
---|
| 11 | * 2.1. * |
---|
| 12 | * * |
---|
| 13 | * This library is distributed in the hope that it will be useful, * |
---|
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * |
---|
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * |
---|
| 16 | * Lesser General Public License for more details. * |
---|
| 17 | * * |
---|
| 18 | * You should have received a copy of the GNU Lesser General Public License * |
---|
| 19 | * along with this library; if not, write to the Free Software Foundation, * |
---|
| 20 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * |
---|
| 21 | * * |
---|
| 22 | ****************************************************************************/ |
---|
| 23 | |
---|
| 24 | #include "nogaim.h" |
---|
[713d611] | 25 | #include "oauth.h" |
---|
[1b221e0] | 26 | #include "twitter.h" |
---|
| 27 | #include "twitter_http.h" |
---|
| 28 | #include "twitter_lib.h" |
---|
[bb5ce4d1] | 29 | #include "url.h" |
---|
[1b221e0] | 30 | |
---|
| 31 | /** |
---|
[62d2cfb] | 32 | * Main loop function |
---|
| 33 | */ |
---|
[1b221e0] | 34 | gboolean twitter_main_loop(gpointer data, gint fd, b_input_condition cond) |
---|
| 35 | { |
---|
| 36 | struct im_connection *ic = data; |
---|
[3e69802] | 37 | |
---|
[1b221e0] | 38 | // Check if we are still logged in... |
---|
[3bd4a93] | 39 | if (!g_slist_find( twitter_connections, ic )) |
---|
[1b221e0] | 40 | return 0; |
---|
| 41 | |
---|
| 42 | // Do stuff.. |
---|
| 43 | twitter_get_home_timeline(ic, -1); |
---|
| 44 | |
---|
| 45 | // If we are still logged in run this function again after timeout. |
---|
| 46 | return (ic->flags & OPT_LOGGED_IN) == OPT_LOGGED_IN; |
---|
| 47 | } |
---|
| 48 | |
---|
[713d611] | 49 | static void twitter_main_loop_start( struct im_connection *ic ) |
---|
| 50 | { |
---|
| 51 | struct twitter_data *td = ic->proto_data; |
---|
| 52 | |
---|
[d6aa6dd] | 53 | imcb_log( ic, "Getting initial statuses" ); |
---|
[713d611] | 54 | |
---|
| 55 | // Run this once. After this queue the main loop function. |
---|
| 56 | twitter_main_loop(ic, -1, 0); |
---|
| 57 | |
---|
| 58 | // Queue the main_loop |
---|
| 59 | // Save the return value, so we can remove the timeout on logout. |
---|
| 60 | td->main_loop_id = b_timeout_add(60000, twitter_main_loop, ic); |
---|
| 61 | } |
---|
| 62 | |
---|
[d6aa6dd] | 63 | static void twitter_oauth_start( struct im_connection *ic ); |
---|
| 64 | |
---|
| 65 | void twitter_login_finish( struct im_connection *ic ) |
---|
| 66 | { |
---|
| 67 | struct twitter_data *td = ic->proto_data; |
---|
| 68 | |
---|
| 69 | if( set_getbool( &ic->acc->set, "oauth" ) && !td->oauth_info ) |
---|
| 70 | twitter_oauth_start( ic ); |
---|
| 71 | else if( g_strcasecmp( set_getstr( &ic->acc->set, "mode" ), "one" ) != 0 && |
---|
| 72 | !( td->flags & TWITTER_HAVE_FRIENDS ) ) |
---|
| 73 | { |
---|
| 74 | imcb_log( ic, "Getting contact list" ); |
---|
| 75 | twitter_get_statuses_friends( ic, -1 ); |
---|
| 76 | } |
---|
| 77 | else |
---|
| 78 | twitter_main_loop_start( ic ); |
---|
| 79 | } |
---|
[c2ecadc] | 80 | |
---|
[3b878a1] | 81 | static const struct oauth_service twitter_oauth = |
---|
[c2ecadc] | 82 | { |
---|
| 83 | "http://api.twitter.com/oauth/request_token", |
---|
| 84 | "http://api.twitter.com/oauth/access_token", |
---|
[c01bbd1] | 85 | "https://api.twitter.com/oauth/authorize", |
---|
[c2ecadc] | 86 | .consumer_key = "xsDNKJuNZYkZyMcu914uEA", |
---|
| 87 | .consumer_secret = "FCxqcr0pXKzsF9ajmP57S3VQ8V6Drk4o2QYtqMcOszo", |
---|
| 88 | }; |
---|
| 89 | |
---|
[18dbb20] | 90 | static gboolean twitter_oauth_callback( struct oauth_info *info ); |
---|
[713d611] | 91 | |
---|
| 92 | static void twitter_oauth_start( struct im_connection *ic ) |
---|
| 93 | { |
---|
[18dbb20] | 94 | struct twitter_data *td = ic->proto_data; |
---|
| 95 | |
---|
[c42e8b9] | 96 | imcb_log( ic, "Requesting OAuth request token" ); |
---|
| 97 | |
---|
[c2ecadc] | 98 | td->oauth_info = oauth_request_token( &twitter_oauth, twitter_oauth_callback, ic ); |
---|
[713d611] | 99 | } |
---|
| 100 | |
---|
[18dbb20] | 101 | static gboolean twitter_oauth_callback( struct oauth_info *info ) |
---|
[713d611] | 102 | { |
---|
| 103 | struct im_connection *ic = info->data; |
---|
[18dbb20] | 104 | struct twitter_data *td; |
---|
[713d611] | 105 | |
---|
[18dbb20] | 106 | if( !g_slist_find( twitter_connections, ic ) ) |
---|
| 107 | return FALSE; |
---|
| 108 | |
---|
| 109 | td = ic->proto_data; |
---|
[c42e8b9] | 110 | if( info->stage == OAUTH_REQUEST_TOKEN ) |
---|
[713d611] | 111 | { |
---|
| 112 | char name[strlen(ic->acc->user)+9], *msg; |
---|
| 113 | |
---|
[c42e8b9] | 114 | if( info->request_token == NULL ) |
---|
| 115 | { |
---|
| 116 | imcb_error( ic, "OAuth error: %s", info->http->status_string ); |
---|
| 117 | imc_logout( ic, TRUE ); |
---|
[18dbb20] | 118 | return FALSE; |
---|
[c42e8b9] | 119 | } |
---|
| 120 | |
---|
[713d611] | 121 | sprintf( name, "twitter_%s", ic->acc->user ); |
---|
| 122 | msg = g_strdup_printf( "To finish OAuth authentication, please visit " |
---|
[c2ecadc] | 123 | "%s and respond with the resulting PIN code.", |
---|
| 124 | info->auth_url ); |
---|
[713d611] | 125 | imcb_buddy_msg( ic, name, msg, 0, 0 ); |
---|
| 126 | g_free( msg ); |
---|
| 127 | } |
---|
[c42e8b9] | 128 | else if( info->stage == OAUTH_ACCESS_TOKEN ) |
---|
| 129 | { |
---|
[3b878a1] | 130 | if( info->token == NULL || info->token_secret == NULL ) |
---|
[c42e8b9] | 131 | { |
---|
| 132 | imcb_error( ic, "OAuth error: %s", info->http->status_string ); |
---|
| 133 | imc_logout( ic, TRUE ); |
---|
[18dbb20] | 134 | return FALSE; |
---|
[c42e8b9] | 135 | } |
---|
| 136 | |
---|
[288b215] | 137 | /* IM mods didn't do this so far and it's ugly but I should |
---|
| 138 | be able to get away with it... */ |
---|
| 139 | g_free( ic->acc->pass ); |
---|
[f4b0911] | 140 | ic->acc->pass = oauth_to_string( info ); |
---|
[288b215] | 141 | |
---|
[d6aa6dd] | 142 | twitter_login_finish( ic ); |
---|
[c42e8b9] | 143 | } |
---|
[18dbb20] | 144 | |
---|
| 145 | return TRUE; |
---|
[713d611] | 146 | } |
---|
| 147 | |
---|
[c2ecadc] | 148 | |
---|
[e88fbe27] | 149 | static char *set_eval_mode( set_t *set, char *value ) |
---|
| 150 | { |
---|
| 151 | if( g_strcasecmp( value, "one" ) == 0 || |
---|
| 152 | g_strcasecmp( value, "many" ) == 0 || |
---|
[db57e7c] | 153 | g_strcasecmp( value, "chat" ) == 0 ) |
---|
[e88fbe27] | 154 | return value; |
---|
| 155 | else |
---|
| 156 | return NULL; |
---|
| 157 | } |
---|
[1b221e0] | 158 | |
---|
[9997691] | 159 | static gboolean twitter_length_check( struct im_connection *ic, gchar *msg ) |
---|
| 160 | { |
---|
| 161 | int max = set_getint( &ic->acc->set, "message_length" ), len; |
---|
| 162 | |
---|
| 163 | if( max == 0 || ( len = g_utf8_strlen( msg, -1 ) ) <= max ) |
---|
| 164 | return TRUE; |
---|
| 165 | |
---|
| 166 | imcb_error( ic, "Maximum message length exceeded: %d > %d", len, max ); |
---|
| 167 | |
---|
| 168 | return FALSE; |
---|
| 169 | } |
---|
| 170 | |
---|
[1b221e0] | 171 | static void twitter_init( account_t *acc ) |
---|
| 172 | { |
---|
[62d2cfb] | 173 | set_t *s; |
---|
[e88fbe27] | 174 | |
---|
[bb5ce4d1] | 175 | s = set_add( &acc->set, "base_url", TWITTER_API_URL, NULL, acc ); |
---|
| 176 | s->flags |= ACC_SET_OFFLINE_ONLY; |
---|
| 177 | |
---|
[9997691] | 178 | s = set_add( &acc->set, "message_length", "140", set_eval_int, acc ); |
---|
| 179 | |
---|
[e88fbe27] | 180 | s = set_add( &acc->set, "mode", "one", set_eval_mode, acc ); |
---|
[2abceca] | 181 | s->flags |= ACC_SET_OFFLINE_ONLY; |
---|
[713d611] | 182 | |
---|
| 183 | s = set_add( &acc->set, "oauth", "true", set_eval_bool, acc ); |
---|
[1b221e0] | 184 | } |
---|
| 185 | |
---|
| 186 | /** |
---|
| 187 | * Login method. Since the twitter API works with seperate HTTP request we |
---|
| 188 | * only save the user and pass to the twitter_data object. |
---|
| 189 | */ |
---|
| 190 | static void twitter_login( account_t *acc ) |
---|
| 191 | { |
---|
| 192 | struct im_connection *ic = imcb_new( acc ); |
---|
[bb5ce4d1] | 193 | struct twitter_data *td; |
---|
[e88fbe27] | 194 | char name[strlen(acc->user)+9]; |
---|
[bb5ce4d1] | 195 | url_t url; |
---|
[62d2cfb] | 196 | |
---|
[bb5ce4d1] | 197 | if( !url_set( &url, set_getstr( &ic->acc->set, "base_url" ) ) || |
---|
| 198 | ( url.proto != PROTO_HTTP && url.proto != PROTO_HTTPS ) ) |
---|
| 199 | { |
---|
| 200 | imcb_error( ic, "Incorrect API base URL: %s", set_getstr( &ic->acc->set, "base_url" ) ); |
---|
| 201 | imc_logout( ic, FALSE ); |
---|
| 202 | return; |
---|
| 203 | } |
---|
| 204 | |
---|
[d569019] | 205 | twitter_connections = g_slist_append( twitter_connections, ic ); |
---|
[bb5ce4d1] | 206 | td = g_new0( struct twitter_data, 1 ); |
---|
[713d611] | 207 | ic->proto_data = td; |
---|
| 208 | |
---|
[bb5ce4d1] | 209 | td->url_ssl = url.proto == PROTO_HTTPS; |
---|
| 210 | td->url_port = url.port; |
---|
| 211 | td->url_host = g_strdup( url.host ); |
---|
| 212 | if( strcmp( url.file, "/" ) != 0 ) |
---|
| 213 | td->url_path = g_strdup( url.file ); |
---|
| 214 | else |
---|
| 215 | td->url_path = g_strdup( "" ); |
---|
| 216 | |
---|
[1b221e0] | 217 | td->user = acc->user; |
---|
[bb5ce4d1] | 218 | if( strstr( acc->pass, "oauth_token=" ) ) |
---|
[f4b0911] | 219 | td->oauth_info = oauth_from_string( acc->pass, &twitter_oauth ); |
---|
[e88fbe27] | 220 | |
---|
| 221 | sprintf( name, "twitter_%s", acc->user ); |
---|
| 222 | imcb_add_buddy( ic, name, NULL ); |
---|
| 223 | imcb_buddy_status( ic, name, OPT_LOGGED_IN, NULL, NULL ); |
---|
[713d611] | 224 | |
---|
[d6aa6dd] | 225 | imcb_log( ic, "Connecting" ); |
---|
| 226 | |
---|
| 227 | twitter_login_finish( ic ); |
---|
[1b221e0] | 228 | } |
---|
| 229 | |
---|
| 230 | /** |
---|
| 231 | * Logout method. Just free the twitter_data. |
---|
| 232 | */ |
---|
| 233 | static void twitter_logout( struct im_connection *ic ) |
---|
| 234 | { |
---|
| 235 | struct twitter_data *td = ic->proto_data; |
---|
| 236 | |
---|
| 237 | // Set the status to logged out. |
---|
| 238 | ic->flags = 0; |
---|
| 239 | |
---|
[2abceca] | 240 | // Remove the main_loop function from the function queue. |
---|
| 241 | b_event_remove(td->main_loop_id); |
---|
| 242 | |
---|
[37d84b3] | 243 | if(td->home_timeline_gc) |
---|
| 244 | imcb_chat_free(td->home_timeline_gc); |
---|
[1014cab] | 245 | |
---|
[1b221e0] | 246 | if( td ) |
---|
| 247 | { |
---|
[18dbb20] | 248 | oauth_info_free( td->oauth_info ); |
---|
[04a927c] | 249 | g_free( td->url_host ); |
---|
| 250 | g_free( td->url_path ); |
---|
[508c340] | 251 | g_free( td->pass ); |
---|
[1b221e0] | 252 | g_free( td ); |
---|
| 253 | } |
---|
[62d2cfb] | 254 | |
---|
| 255 | twitter_connections = g_slist_remove( twitter_connections, ic ); |
---|
[1b221e0] | 256 | } |
---|
| 257 | |
---|
| 258 | /** |
---|
| 259 | * |
---|
| 260 | */ |
---|
| 261 | static int twitter_buddy_msg( struct im_connection *ic, char *who, char *message, int away ) |
---|
| 262 | { |
---|
[c42e8b9] | 263 | struct twitter_data *td = ic->proto_data; |
---|
| 264 | |
---|
[e88fbe27] | 265 | if (g_strncasecmp(who, "twitter_", 8) == 0 && |
---|
| 266 | g_strcasecmp(who + 8, ic->acc->user) == 0) |
---|
[c42e8b9] | 267 | { |
---|
[c2ecadc] | 268 | if( set_getbool( &ic->acc->set, "oauth" ) && |
---|
| 269 | td->oauth_info && td->oauth_info->token == NULL ) |
---|
[18dbb20] | 270 | { |
---|
[64f8c425] | 271 | char pin[strlen(message)+1], *s; |
---|
| 272 | |
---|
| 273 | strcpy( pin, message ); |
---|
| 274 | for( s = pin + sizeof( pin ) - 2; s > pin && isspace( *s ); s -- ) |
---|
| 275 | *s = '\0'; |
---|
| 276 | for( s = pin; *s && isspace( *s ); s ++ ) {} |
---|
| 277 | |
---|
| 278 | if( !oauth_access_token( s, td->oauth_info ) ) |
---|
[c2ecadc] | 279 | { |
---|
| 280 | imcb_error( ic, "OAuth error: %s", "Failed to send access token request" ); |
---|
| 281 | imc_logout( ic, TRUE ); |
---|
| 282 | return FALSE; |
---|
| 283 | } |
---|
[18dbb20] | 284 | } |
---|
[9997691] | 285 | else if( twitter_length_check(ic, message) ) |
---|
[c42e8b9] | 286 | twitter_post_status(ic, message); |
---|
| 287 | } |
---|
[e88fbe27] | 288 | else |
---|
[c42e8b9] | 289 | { |
---|
[e88fbe27] | 290 | twitter_direct_messages_new(ic, who, message); |
---|
[c42e8b9] | 291 | } |
---|
[1b221e0] | 292 | return( 0 ); |
---|
| 293 | } |
---|
| 294 | |
---|
| 295 | /** |
---|
| 296 | * |
---|
| 297 | */ |
---|
| 298 | static void twitter_set_my_name( struct im_connection *ic, char *info ) |
---|
| 299 | { |
---|
| 300 | } |
---|
| 301 | |
---|
| 302 | static void twitter_get_info(struct im_connection *ic, char *who) |
---|
| 303 | { |
---|
| 304 | } |
---|
| 305 | |
---|
| 306 | static void twitter_add_buddy( struct im_connection *ic, char *who, char *group ) |
---|
| 307 | { |
---|
[7d53efb] | 308 | twitter_friendships_create_destroy(ic, who, 1); |
---|
[1b221e0] | 309 | } |
---|
| 310 | |
---|
| 311 | static void twitter_remove_buddy( struct im_connection *ic, char *who, char *group ) |
---|
| 312 | { |
---|
[7d53efb] | 313 | twitter_friendships_create_destroy(ic, who, 0); |
---|
[1b221e0] | 314 | } |
---|
| 315 | |
---|
| 316 | static void twitter_chat_msg( struct groupchat *c, char *message, int flags ) |
---|
| 317 | { |
---|
[9997691] | 318 | if( c && message && twitter_length_check(c->ic, message)) |
---|
[2abceca] | 319 | twitter_post_status(c->ic, message); |
---|
[1b221e0] | 320 | } |
---|
| 321 | |
---|
| 322 | static void twitter_chat_invite( struct groupchat *c, char *who, char *message ) |
---|
| 323 | { |
---|
| 324 | } |
---|
| 325 | |
---|
| 326 | static void twitter_chat_leave( struct groupchat *c ) |
---|
| 327 | { |
---|
[16592d8] | 328 | struct twitter_data *td = c->ic->proto_data; |
---|
| 329 | |
---|
| 330 | if( c != td->home_timeline_gc ) |
---|
| 331 | return; /* WTF? */ |
---|
| 332 | |
---|
| 333 | /* If the user leaves the channel: Fine. Rejoin him/her once new |
---|
| 334 | tweets come in. */ |
---|
| 335 | imcb_chat_free(td->home_timeline_gc); |
---|
| 336 | td->home_timeline_gc = NULL; |
---|
[1b221e0] | 337 | } |
---|
| 338 | |
---|
| 339 | static struct groupchat *twitter_chat_with( struct im_connection *ic, char *who ) |
---|
| 340 | { |
---|
| 341 | return NULL; |
---|
| 342 | } |
---|
| 343 | |
---|
| 344 | static void twitter_keepalive( struct im_connection *ic ) |
---|
| 345 | { |
---|
| 346 | } |
---|
| 347 | |
---|
| 348 | static void twitter_add_permit( struct im_connection *ic, char *who ) |
---|
| 349 | { |
---|
| 350 | } |
---|
| 351 | |
---|
| 352 | static void twitter_rem_permit( struct im_connection *ic, char *who ) |
---|
| 353 | { |
---|
| 354 | } |
---|
| 355 | |
---|
| 356 | static void twitter_add_deny( struct im_connection *ic, char *who ) |
---|
| 357 | { |
---|
| 358 | } |
---|
| 359 | |
---|
| 360 | static void twitter_rem_deny( struct im_connection *ic, char *who ) |
---|
| 361 | { |
---|
| 362 | } |
---|
| 363 | |
---|
| 364 | static int twitter_send_typing( struct im_connection *ic, char *who, int typing ) |
---|
| 365 | { |
---|
| 366 | return( 1 ); |
---|
| 367 | } |
---|
| 368 | |
---|
| 369 | //static char *twitter_set_display_name( set_t *set, char *value ) |
---|
| 370 | //{ |
---|
| 371 | // return value; |
---|
| 372 | //} |
---|
| 373 | |
---|
| 374 | void twitter_initmodule() |
---|
| 375 | { |
---|
| 376 | struct prpl *ret = g_new0(struct prpl, 1); |
---|
| 377 | |
---|
| 378 | ret->name = "twitter"; |
---|
| 379 | ret->login = twitter_login; |
---|
| 380 | ret->init = twitter_init; |
---|
| 381 | ret->logout = twitter_logout; |
---|
| 382 | ret->buddy_msg = twitter_buddy_msg; |
---|
| 383 | ret->get_info = twitter_get_info; |
---|
| 384 | ret->set_my_name = twitter_set_my_name; |
---|
| 385 | ret->add_buddy = twitter_add_buddy; |
---|
| 386 | ret->remove_buddy = twitter_remove_buddy; |
---|
| 387 | ret->chat_msg = twitter_chat_msg; |
---|
| 388 | ret->chat_invite = twitter_chat_invite; |
---|
| 389 | ret->chat_leave = twitter_chat_leave; |
---|
| 390 | ret->chat_with = twitter_chat_with; |
---|
| 391 | ret->keepalive = twitter_keepalive; |
---|
| 392 | ret->add_permit = twitter_add_permit; |
---|
| 393 | ret->rem_permit = twitter_rem_permit; |
---|
| 394 | ret->add_deny = twitter_add_deny; |
---|
| 395 | ret->rem_deny = twitter_rem_deny; |
---|
| 396 | ret->send_typing = twitter_send_typing; |
---|
| 397 | ret->handle_cmp = g_strcasecmp; |
---|
| 398 | |
---|
| 399 | register_protocol(ret); |
---|
[62d2cfb] | 400 | |
---|
| 401 | // Initialise the twitter_connections GSList. |
---|
| 402 | twitter_connections = NULL; |
---|
[1b221e0] | 403 | } |
---|
| 404 | |
---|