Changeset 3b3c50d9 for protocols


Ignore:
Timestamp:
2010-07-28T08:24:47Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
3963fdd
Parents:
13fa2db
Message:

Allow including account tags in nicknames, and be a bit more clever about
the default tags (recognize AIM/ICQ/GTalk/Facebook).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/account.c

    r13fa2db r3b3c50d9  
    7373        set_setstr( &a->set, "username", user );
    7474       
    75         if( account_by_tag( bee, prpl->name ) )
    76         {
     75        /* Hardcode some more clever tag guesses. */
     76        strcpy( tag, prpl->name );
     77        if( strcmp( prpl->name, "oscar" ) == 0 )
     78        {
     79                if( isdigit( a->user[0] ) )
     80                        strcpy( tag, "icq" );
     81                else
     82                        strcpy( tag, "aim" );
     83        }
     84        else if( strcmp( prpl->name, "jabber" ) == 0 )
     85        {
     86                if( strstr( a->user, "@gmail.com" ) ||
     87                    strstr( a->user, "@googlemail.com" ) )
     88                        strcpy( tag, "gtalk" );
     89                else if( strstr( a->user, "@chat.facebook.com" ) )
     90                        strcpy( tag, "fb" );
     91        }
     92       
     93        if( account_by_tag( bee, tag ) )
     94        {
     95                char *numpos = tag + strlen( tag );
    7796                int i;
    7897
    7998                for( i = 2; i < 10000; i ++ )
    8099                {
    81                         sprintf( tag, "%s%d", prpl->name, i );
     100                        sprintf( numpos, "%d", i );
    82101                        if( !account_by_tag( bee, tag ) )
    83102                                break;
    84103                }
    85         }
    86         else
    87         {
    88                 strcpy( tag, prpl->name );
    89104        }
    90105        set_setstr( &a->set, "tag", tag );
Note: See TracChangeset for help on using the changeset viewer.