Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/twitter/twitter.c

    r3bd4a93 rf4b0911  
    2323
    2424#include "nogaim.h"
     25#include "oauth.h"
    2526#include "twitter.h"
    2627#include "twitter_http.h"
    2728#include "twitter_lib.h"
    2829
    29 
    3030/**
    3131 * Main loop function
     
    4141        // If the user uses multiple private message windows we need to get the
    4242        // users buddies.
    43         if (!set_getbool( &ic->acc->set, "use_groupchat" ))
     43        if (g_strcasecmp(set_getstr(&ic->acc->set, "mode"), "many") == 0)
    4444                twitter_get_statuses_friends(ic, -1);
    4545
     
    5151}
    5252
    53 
    54 static void twitter_init( account_t *acc )
    55 {
    56         set_t *s;
    57         s = set_add( &acc->set, "use_groupchat", "false", set_eval_bool, acc );
    58         s->flags |= ACC_SET_OFFLINE_ONLY;
    59 }
    60 
    61 /**
    62  * Login method. Since the twitter API works with seperate HTTP request we
    63  * only save the user and pass to the twitter_data object.
    64  */
    65 static void twitter_login( account_t *acc )
    66 {
    67         struct im_connection *ic = imcb_new( acc );
    68         struct twitter_data *td = g_new0( struct twitter_data, 1 );
    69 
    70         twitter_connections = g_slist_append( twitter_connections, ic );
    71 
    72         td->user = acc->user;
    73         td->pass = acc->pass;
    74         td->home_timeline_id = 0;
    75 
    76         ic->proto_data = td;
    77 
     53static void twitter_main_loop_start( struct im_connection *ic )
     54{
     55        struct twitter_data *td = ic->proto_data;
     56       
    7857        imcb_log( ic, "Connecting to Twitter" );
    7958
     
    8665}
    8766
     67
     68static struct oauth_service twitter_oauth =
     69{
     70        "http://api.twitter.com/oauth/request_token",
     71        "http://api.twitter.com/oauth/access_token",
     72        "http://api.twitter.com/oauth/authorize",
     73        .consumer_key = "xsDNKJuNZYkZyMcu914uEA",
     74        .consumer_secret = "FCxqcr0pXKzsF9ajmP57S3VQ8V6Drk4o2QYtqMcOszo",
     75};
     76
     77static gboolean twitter_oauth_callback( struct oauth_info *info );
     78
     79static void twitter_oauth_start( struct im_connection *ic )
     80{
     81        struct twitter_data *td = ic->proto_data;
     82       
     83        imcb_log( ic, "Requesting OAuth request token" );
     84
     85        td->oauth_info = oauth_request_token( &twitter_oauth, twitter_oauth_callback, ic );
     86}
     87
     88static gboolean twitter_oauth_callback( struct oauth_info *info )
     89{
     90        struct im_connection *ic = info->data;
     91        struct twitter_data *td;
     92       
     93        if( !g_slist_find( twitter_connections, ic ) )
     94                return FALSE;
     95       
     96        td = ic->proto_data;
     97        if( info->stage == OAUTH_REQUEST_TOKEN )
     98        {
     99                char name[strlen(ic->acc->user)+9], *msg;
     100               
     101                if( info->request_token == NULL )
     102                {
     103                        imcb_error( ic, "OAuth error: %s", info->http->status_string );
     104                        imc_logout( ic, TRUE );
     105                        return FALSE;
     106                }
     107               
     108                sprintf( name, "twitter_%s", ic->acc->user );
     109                msg = g_strdup_printf( "To finish OAuth authentication, please visit "
     110                                       "%s and respond with the resulting PIN code.",
     111                                       info->auth_url );
     112                imcb_buddy_msg( ic, name, msg, 0, 0 );
     113                g_free( msg );
     114        }
     115        else if( info->stage == OAUTH_ACCESS_TOKEN )
     116        {
     117                if( info->token == NULL )
     118                {
     119                        imcb_error( ic, "OAuth error: %s", info->http->status_string );
     120                        imc_logout( ic, TRUE );
     121                        return FALSE;
     122                }
     123               
     124                /* IM mods didn't do this so far and it's ugly but I should
     125                   be able to get away with it... */
     126                g_free( ic->acc->pass );
     127                ic->acc->pass = oauth_to_string( info );
     128               
     129                twitter_main_loop_start( ic );
     130        }
     131       
     132        return TRUE;
     133}
     134
     135
     136static char *set_eval_mode( set_t *set, char *value )
     137{
     138        if( g_strcasecmp( value, "one" ) == 0 ||
     139            g_strcasecmp( value, "many" ) == 0 ||
     140            g_strcasecmp( value, "chat" ) == 0 )
     141                return value;
     142        else
     143                return NULL;
     144}
     145
     146static void twitter_init( account_t *acc )
     147{
     148        set_t *s;
     149       
     150        s = set_add( &acc->set, "mode", "one", set_eval_mode, acc );
     151        s->flags |= ACC_SET_OFFLINE_ONLY;
     152       
     153        s = set_add( &acc->set, "oauth", "true", set_eval_bool, acc );
     154}
     155
     156/**
     157 * Login method. Since the twitter API works with seperate HTTP request we
     158 * only save the user and pass to the twitter_data object.
     159 */
     160static void twitter_login( account_t *acc )
     161{
     162        struct im_connection *ic = imcb_new( acc );
     163        struct twitter_data *td = g_new0( struct twitter_data, 1 );
     164        char name[strlen(acc->user)+9];
     165
     166        twitter_connections = g_slist_append( twitter_connections, ic );
     167        ic->proto_data = td;
     168        ic->flags |= OPT_DOES_HTML;
     169       
     170        td->user = acc->user;
     171        if( !set_getbool( &acc->set, "oauth" ) )
     172                td->pass = g_strdup( acc->pass );
     173        else if( strstr( acc->pass, "oauth_token=" ) )
     174                td->oauth_info = oauth_from_string( acc->pass, &twitter_oauth );
     175        td->home_timeline_id = 0;
     176       
     177        sprintf( name, "twitter_%s", acc->user );
     178        imcb_add_buddy( ic, name, NULL );
     179        imcb_buddy_status( ic, name, OPT_LOGGED_IN, NULL, NULL );
     180       
     181        if( td->pass || td->oauth_info )
     182                twitter_main_loop_start( ic );
     183        else
     184                twitter_oauth_start( ic );
     185}
     186
    88187/**
    89188 * Logout method. Just free the twitter_data.
     
    104203        if( td )
    105204        {
     205                oauth_info_free( td->oauth_info );
     206                g_free( td->pass );
    106207                g_free( td );
    107208        }
     
    115216static int twitter_buddy_msg( struct im_connection *ic, char *who, char *message, int away )
    116217{
    117         // Let's just update the status.
    118 //      if ( g_strcasecmp(who, ic->acc->user) == 0 )
    119                 twitter_post_status(ic, message);
    120 //      else
    121 //              twitter_direct_messages_new(ic, who, message);
     218        struct twitter_data *td = ic->proto_data;
     219       
     220        if (g_strncasecmp(who, "twitter_", 8) == 0 &&
     221            g_strcasecmp(who + 8, ic->acc->user) == 0)
     222        {
     223                if( set_getbool( &ic->acc->set, "oauth" ) &&
     224                    td->oauth_info && td->oauth_info->token == NULL )
     225                {
     226                        if( !oauth_access_token( message, td->oauth_info ) )
     227                        {
     228                                imcb_error( ic, "OAuth error: %s", "Failed to send access token request" );
     229                                imc_logout( ic, TRUE );
     230                                return FALSE;
     231                        }
     232                }
     233                else
     234                        twitter_post_status(ic, message);
     235        }
     236        else
     237        {
     238                twitter_direct_messages_new(ic, who, message);
     239        }
    122240        return( 0 );
    123241}
Note: See TracChangeset for help on using the changeset viewer.