Changeset 40e6dac


Ignore:
Timestamp:
2010-07-24T15:46:59Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
e135cd09
Parents:
7989d40d
Message:

Adding account tags as a way to 100% uniquely identify an account.
protocol(screenname) doesn't do this and is a little bit long. These will
be used for nick_format and XML storage.

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • protocols/account.c

    r7989d40d r40e6dac  
    3434        account_t *a;
    3535        set_t *s;
     36        char tag[strlen(prpl->name)+10];
    3637       
    3738        if( bee->accounts )
     
    6566        s->flags |= ACC_SET_NOSAVE | SET_NULL_OK;
    6667       
     68        s = set_add( &a->set, "tag", NULL, set_eval_account, a );
     69       
    6770        s = set_add( &a->set, "username", NULL, set_eval_account, a );
    6871        s->flags |= ACC_SET_NOSAVE | ACC_SET_OFFLINE_ONLY;
    6972        set_setstr( &a->set, "username", user );
     73       
     74        if( account_by_tag( bee, prpl->name ) )
     75        {
     76                int i;
     77
     78                for( i = 2; i < 10000; i ++ )
     79                {
     80                        sprintf( tag, "%s%d", prpl->name, i );
     81                        if( !account_by_tag( bee, tag ) )
     82                                break;
     83                }
     84        }
     85        else
     86        {
     87                strcpy( tag, prpl->name );
     88        }
     89        set_setstr( &a->set, "tag", tag );
    7090       
    7191        a->nicks = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free );
     
    130150                        return SET_INVALID;
    131151                }
     152        }
     153        else if( strcmp( set->key, "tag" ) == 0 )
     154        {
     155                account_t *oa;
     156               
     157                /* Enforce uniqueness. */
     158                if( ( oa = account_by_tag( acc->bee, value ) ) && oa != acc )
     159                        return SET_INVALID;
     160               
     161                g_free( acc->tag );
     162                acc->tag = g_strdup( value );
     163                return value;
    132164        }
    133165        else if( strcmp( set->key, "auto_connect" ) == 0 )
     
    173205}
    174206
    175 account_t *account_get( bee_t *bee, char *id )
     207account_t *account_get( bee_t *bee, const char *id )
    176208{
    177209        account_t *a, *ret = NULL;
    178210        char *handle, *s;
    179211        int nr;
     212       
     213        /* Tags get priority above anything else. */
     214        if( ( a = account_by_tag( bee, id ) ) )
     215                return a;
    180216       
    181217        /* This checks if the id string ends with (...) */
     
    232268       
    233269        return( ret );
     270}
     271
     272account_t *account_by_tag( bee_t *bee, const char *tag )
     273{
     274        account_t *a;
     275       
     276        for( a = bee->accounts; a; a = a->next )
     277                if( a->tag && g_strcasecmp( tag, a->tag ) == 0 )
     278                        return a;
     279       
     280        return NULL;
    234281}
    235282
     
    264311                        g_hash_table_destroy( a->nicks );
    265312                       
     313                        g_free( a->tag );
    266314                        g_free( a->user );
    267315                        g_free( a->pass );
  • protocols/account.h

    r7989d40d r40e6dac  
    3333        char *pass;
    3434        char *server;
     35        char *tag;
    3536       
    3637        int auto_connect;
     
    4849
    4950account_t *account_add( bee_t *bee, struct prpl *prpl, char *user, char *pass );
    50 account_t *account_get( bee_t *bee, char *id );
     51account_t *account_get( bee_t *bee, const char *id );
     52account_t *account_by_tag( bee_t *bee, const char *tag );
    5153void account_del( bee_t *bee, account_t *acc );
    5254void account_on( bee_t *bee, account_t *a );
  • root_commands.c

    r7989d40d r40e6dac  
    413413                                con = "";
    414414                       
    415                         irc_usermsg( irc, "%2d. %s, %s%s", i, a->prpl->name, a->user, con );
     415                        irc_usermsg( irc, "%2d (%s): %s, %s%s", i, a->tag, a->prpl->name, a->user, con );
    416416                       
    417417                        i ++;
Note: See TracChangeset for help on using the changeset viewer.