Changeset 7b87539


Ignore:
Timestamp:
2010-08-07T19:39:01Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
203a2d2
Parents:
daae10f
Message:

Add commands to the Twitter module, starting with undo (which deletes
either your most recent tweet, or a specific id (pass it as an argument)).

Files:
5 edited

Legend:

Unmodified
Added
Removed
  • lib/misc.c

    rdaae10f r7b87539  
    652652}
    653653
     654/* Split commands (root-style, *not* IRC-style). Handles "quoting of"
     655   white\ space in 'various ways'. Returns a NULL-terminated static
     656   char** so watch out with nested use! Definitely not thread-safe. */
    654657char **split_command_parts( char *command )
    655658{
  • protocols/twitter/twitter.c

    rdaae10f r7b87539  
    189189        s->flags |= ACC_SET_OFFLINE_ONLY;
    190190       
     191        s = set_add( &acc->set, "commands", "true", set_eval_bool, acc );
     192       
    191193        s = set_add( &acc->set, "message_length", "140", set_eval_int, acc );
    192194       
     
    273275        twitter_connections = g_slist_remove( twitter_connections, ic );
    274276}
     277
     278static void twitter_handle_command( struct im_connection *ic, char *message );
    275279
    276280/**
     
    302306                        }
    303307                }
    304                 else if( twitter_length_check(ic, message) )
    305                         twitter_post_status(ic, message);
     308                else
     309                        twitter_handle_command(ic, message);
    306310        }
    307311        else
     
    335339static void twitter_chat_msg( struct groupchat *c, char *message, int flags )
    336340{
    337         if( c && message && twitter_length_check( c->ic, message ) )
    338         {
    339                 char *s, *new = NULL;
    340                
    341                 if( ( s = strchr( message, ':' ) ) ||
    342                     ( s = strchr( message, ',' ) ) )
    343                 {
    344                         bee_user_t *bu;
    345                        
    346                         new = g_strdup( message );
    347                         new[s-message] = '\0';
    348                         if( ( bu = bee_user_by_handle( c->ic->bee, c->ic, new ) ) )
    349                         {
    350                                 sprintf( new, "@%s", bu->handle );
    351                                 new[s-message+1] = ' ';
    352                                 message = new;
    353                         }
    354                 }
    355                
    356                 twitter_post_status( c->ic, message );
    357                 g_free( new );
    358         }
     341        if( c && message )
     342                twitter_handle_command( c->ic, message );
    359343}
    360344
     
    410394//      return value;
    411395//}
     396
     397static void twitter_handle_command( struct im_connection *ic, char *message )
     398{
     399        struct twitter_data *td = ic->proto_data;
     400        char *cmds, **cmd;
     401       
     402        cmds = g_strdup( message );
     403        cmd = split_command_parts( cmds );
     404       
     405        if( cmd[0] == NULL )
     406        {
     407                g_free( cmds );
     408                return;
     409        }
     410        else if( !set_getbool( &ic->set, "commands" ) )
     411        {
     412                /* Not supporting commands. */
     413        }
     414        else if( g_strcasecmp( cmd[0], "undo" ) == 0 )
     415        {
     416                guint64 id;
     417               
     418                if( cmd[1] )
     419                {
     420                        char *end = NULL;
     421                       
     422                        id = g_ascii_strtoull( cmd[1], &end, 10 );
     423                        if( end == NULL )
     424                                id = 0;
     425                }
     426                else
     427                        id = td->last_status_id;
     428               
     429                /* TODO: User feedback. */
     430                if( id )
     431                        twitter_status_destroy( ic, id );
     432               
     433                g_free( cmds );
     434                return;
     435        }
     436        else if( g_strcasecmp( cmd[0], "post" ) == 0 )
     437        {
     438                message += 5;
     439        }
     440       
     441        {
     442                char *s, *new = NULL;
     443                bee_user_t *bu;
     444               
     445                if( !twitter_length_check( ic, message ) )
     446                {
     447                        g_free( cmds );
     448                        return;
     449                }
     450               
     451                s = cmd[0] + strlen( cmd[0] ) - 1;
     452                if( s > cmd[0] && ( *s == ':' || *s == ',' ) )
     453                {
     454                        *s = '\0';
     455                       
     456                        if( ( bu = bee_user_by_handle( ic->bee, ic, cmd[0] ) ) )
     457                        {
     458                                new = g_strdup_printf( "@%s %s", bu->handle,
     459                                                       message + ( s - cmd[0] ) + 2 );
     460                                message = new;
     461                        }
     462                }
     463               
     464                twitter_post_status( ic, message );
     465                g_free( new );
     466        }
     467        g_free( cmds );
     468}
    412469
    413470void twitter_initmodule()
  • protocols/twitter/twitter.h

    rdaae10f r7b87539  
    4444        struct oauth_info *oauth_info;
    4545        guint64 home_timeline_id;
     46        guint64 last_status_id; /* For undo */
    4647        gint main_loop_id;
    4748        struct groupchat *home_timeline_gc;
  • protocols/twitter/twitter_lib.c

    rdaae10f r7b87539  
    736736{
    737737        struct im_connection *ic = req->data;
     738        struct twitter_data *td;
    738739
    739740        // Check if the connection is still active.
     
    741742                return;
    742743
     744        td = ic->proto_data;
     745        td->last_status_id = 0;
     746       
    743747        // Check if the HTTP request went well.
    744748        if (req->status_code != 200) {
     
    746750                imcb_error(ic, "HTTP error: %s", twitter_parse_error(req));
    747751                return;
     752        }
     753       
     754        if (req->body_size > 0)
     755        {
     756                struct xt_parser *xp = NULL;
     757                struct xt_node *node;
     758               
     759                xp = xt_new(NULL, NULL);
     760                xt_feed(xp, req->reply_body, req->body_size);
     761               
     762                if ((node = xt_find_node(xp->root, "status")) &&
     763                    (node = xt_find_node(node->children, "id")) && node->text)
     764                        td->last_status_id = g_ascii_strtoull( node->text, NULL, 10 );
     765               
     766                xt_free(xp);
    748767        }
    749768}
     
    785804        twitter_http(ic, create ? TWITTER_FRIENDSHIPS_CREATE_URL : TWITTER_FRIENDSHIPS_DESTROY_URL, twitter_http_post, ic, 1, args, 2);
    786805}
     806
     807void twitter_status_destroy(struct im_connection *ic, guint64 id)
     808{
     809        char *url;
     810        url = g_strdup_printf("%s%llu%s", TWITTER_STATUS_DESTROY_URL, (unsigned long long) id, ".xml");
     811        twitter_http(ic, url, twitter_http_post, ic, 1, NULL, 0);
     812        g_free(url);
     813}
  • protocols/twitter/twitter_lib.h

    rdaae10f r7b87539  
    8484void twitter_direct_messages_new(struct im_connection *ic, char *who, char *message);
    8585void twitter_friendships_create_destroy(struct im_connection *ic, char *who, int create);
     86void twitter_status_destroy(struct im_connection *ic, guint64 id);
    8687
    8788#endif //_TWITTER_LIB_H
Note: See TracChangeset for help on using the changeset viewer.