[b7d3cc34] | 1 | /********************************************************************\ |
---|
| 2 | * BitlBee -- An IRC to other IM-networks gateway * |
---|
| 3 | * * |
---|
[58adb7e] | 4 | * Copyright 2002-2010 Wilmer van der Gaast and others * |
---|
[b7d3cc34] | 5 | \********************************************************************/ |
---|
| 6 | |
---|
| 7 | /* Account management functions */ |
---|
| 8 | |
---|
| 9 | /* |
---|
| 10 | This program is free software; you can redistribute it and/or modify |
---|
| 11 | it under the terms of the GNU General Public License as published by |
---|
| 12 | the Free Software Foundation; either version 2 of the License, or |
---|
| 13 | (at your option) any later version. |
---|
| 14 | |
---|
| 15 | This program is distributed in the hope that it will be useful, |
---|
| 16 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 18 | GNU General Public License for more details. |
---|
| 19 | |
---|
| 20 | You should have received a copy of the GNU General Public License with |
---|
| 21 | the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL; |
---|
| 22 | if not, write to the Free Software Foundation, Inc., 59 Temple Place, |
---|
| 23 | Suite 330, Boston, MA 02111-1307 USA |
---|
| 24 | */ |
---|
| 25 | |
---|
| 26 | #define BITLBEE_CORE |
---|
| 27 | #include "bitlbee.h" |
---|
| 28 | #include "account.h" |
---|
| 29 | |
---|
[06b39f2] | 30 | static char *set_eval_nick_source( set_t *set, char *value ); |
---|
| 31 | |
---|
[81e04e1] | 32 | account_t *account_add( bee_t *bee, struct prpl *prpl, char *user, char *pass ) |
---|
[b7d3cc34] | 33 | { |
---|
| 34 | account_t *a; |
---|
[5100caa] | 35 | set_t *s; |
---|
[40e6dac] | 36 | char tag[strlen(prpl->name)+10]; |
---|
[b7d3cc34] | 37 | |
---|
[81e04e1] | 38 | if( bee->accounts ) |
---|
[b7d3cc34] | 39 | { |
---|
[81e04e1] | 40 | for( a = bee->accounts; a->next; a = a->next ); |
---|
[a312b6b] | 41 | a = a->next = g_new0( account_t, 1 ); |
---|
[b7d3cc34] | 42 | } |
---|
| 43 | else |
---|
| 44 | { |
---|
[81e04e1] | 45 | bee->accounts = a = g_new0 ( account_t, 1 ); |
---|
[b7d3cc34] | 46 | } |
---|
| 47 | |
---|
[7b23afd] | 48 | a->prpl = prpl; |
---|
[b7d3cc34] | 49 | a->user = g_strdup( user ); |
---|
| 50 | a->pass = g_strdup( pass ); |
---|
[2b14eef] | 51 | a->auto_connect = 1; |
---|
[81e04e1] | 52 | a->bee = bee; |
---|
[b7d3cc34] | 53 | |
---|
[96863f6] | 54 | s = set_add( &a->set, "auto_connect", "true", set_eval_account, a ); |
---|
[5100caa] | 55 | s->flags |= ACC_SET_NOSAVE; |
---|
| 56 | |
---|
[04026d4] | 57 | s = set_add( &a->set, "auto_reconnect", "true", set_eval_bool, a ); |
---|
[00a5270] | 58 | |
---|
[2e0eaac] | 59 | s = set_add( &a->set, "nick_format", NULL, NULL, a ); |
---|
[badd148] | 60 | s->flags |= SET_NULL_OK; |
---|
[2e0eaac] | 61 | |
---|
[06b39f2] | 62 | s = set_add( &a->set, "nick_source", "handle", set_eval_nick_source, a ); |
---|
| 63 | s->flags |= ACC_SET_NOSAVE; /* Just for bw compatibility! */ |
---|
[286b28e] | 64 | |
---|
[5100caa] | 65 | s = set_add( &a->set, "password", NULL, set_eval_account, a ); |
---|
[f3579fd] | 66 | s->flags |= ACC_SET_NOSAVE | SET_NULL_OK; |
---|
[5100caa] | 67 | |
---|
[40e6dac] | 68 | s = set_add( &a->set, "tag", NULL, set_eval_account, a ); |
---|
[e135cd09] | 69 | s->flags |= ACC_SET_NOSAVE; |
---|
[40e6dac] | 70 | |
---|
[5100caa] | 71 | s = set_add( &a->set, "username", NULL, set_eval_account, a ); |
---|
| 72 | s->flags |= ACC_SET_NOSAVE | ACC_SET_OFFLINE_ONLY; |
---|
| 73 | set_setstr( &a->set, "username", user ); |
---|
| 74 | |
---|
[3b3c50d9] | 75 | /* Hardcode some more clever tag guesses. */ |
---|
| 76 | strcpy( tag, prpl->name ); |
---|
| 77 | if( strcmp( prpl->name, "oscar" ) == 0 ) |
---|
[40e6dac] | 78 | { |
---|
[3b3c50d9] | 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 ); |
---|
[40e6dac] | 96 | int i; |
---|
| 97 | |
---|
| 98 | for( i = 2; i < 10000; i ++ ) |
---|
| 99 | { |
---|
[3b3c50d9] | 100 | sprintf( numpos, "%d", i ); |
---|
[40e6dac] | 101 | if( !account_by_tag( bee, tag ) ) |
---|
| 102 | break; |
---|
| 103 | } |
---|
| 104 | } |
---|
| 105 | set_setstr( &a->set, "tag", tag ); |
---|
| 106 | |
---|
[5b52a48] | 107 | a->nicks = g_hash_table_new_full( g_str_hash, g_str_equal, g_free, g_free ); |
---|
| 108 | |
---|
[96863f6] | 109 | /* This function adds some more settings (and might want to do more |
---|
| 110 | things that have to be done now, although I can't think of anything. */ |
---|
[0da65d5] | 111 | if( prpl->init ) |
---|
| 112 | prpl->init( a ); |
---|
[96863f6] | 113 | |
---|
[58adb7e] | 114 | s = set_add( &a->set, "away", NULL, set_eval_account, a ); |
---|
| 115 | s->flags |= SET_NULL_OK; |
---|
| 116 | |
---|
| 117 | if( a->flags & ACC_FLAG_STATUS_MESSAGE ) |
---|
| 118 | { |
---|
| 119 | s = set_add( &a->set, "status", NULL, set_eval_account, a ); |
---|
| 120 | s->flags |= SET_NULL_OK; |
---|
| 121 | } |
---|
| 122 | |
---|
| 123 | return a; |
---|
[b7d3cc34] | 124 | } |
---|
| 125 | |
---|
[5100caa] | 126 | char *set_eval_account( set_t *set, char *value ) |
---|
| 127 | { |
---|
| 128 | account_t *acc = set->data; |
---|
| 129 | |
---|
| 130 | /* Double-check: We refuse to edit on-line accounts. */ |
---|
[0da65d5] | 131 | if( set->flags & ACC_SET_OFFLINE_ONLY && acc->ic ) |
---|
[7125cb3] | 132 | return SET_INVALID; |
---|
[5100caa] | 133 | |
---|
[3b32017] | 134 | if( strcmp( set->key, "server" ) == 0 ) |
---|
[5100caa] | 135 | { |
---|
| 136 | g_free( acc->server ); |
---|
[3b32017] | 137 | if( value && *value ) |
---|
[30ce1ce] | 138 | { |
---|
[5100caa] | 139 | acc->server = g_strdup( value ); |
---|
[30ce1ce] | 140 | return value; |
---|
| 141 | } |
---|
[5100caa] | 142 | else |
---|
[30ce1ce] | 143 | { |
---|
[7125cb3] | 144 | acc->server = g_strdup( set->def ); |
---|
[30ce1ce] | 145 | return g_strdup( set->def ); |
---|
| 146 | } |
---|
[5100caa] | 147 | } |
---|
[3b32017] | 148 | else if( strcmp( set->key, "username" ) == 0 ) |
---|
| 149 | { |
---|
| 150 | g_free( acc->user ); |
---|
| 151 | acc->user = g_strdup( value ); |
---|
| 152 | return value; |
---|
| 153 | } |
---|
| 154 | else if( strcmp( set->key, "password" ) == 0 ) |
---|
| 155 | { |
---|
[7125cb3] | 156 | if( value ) |
---|
| 157 | { |
---|
| 158 | g_free( acc->pass ); |
---|
| 159 | acc->pass = g_strdup( value ); |
---|
| 160 | return NULL; /* password shouldn't be visible in plaintext! */ |
---|
| 161 | } |
---|
| 162 | else |
---|
| 163 | { |
---|
| 164 | /* NULL can (should) be stored in the set_t |
---|
| 165 | variable, but is otherwise not correct. */ |
---|
| 166 | return SET_INVALID; |
---|
| 167 | } |
---|
[3b32017] | 168 | } |
---|
[40e6dac] | 169 | else if( strcmp( set->key, "tag" ) == 0 ) |
---|
| 170 | { |
---|
| 171 | account_t *oa; |
---|
| 172 | |
---|
| 173 | /* Enforce uniqueness. */ |
---|
| 174 | if( ( oa = account_by_tag( acc->bee, value ) ) && oa != acc ) |
---|
| 175 | return SET_INVALID; |
---|
| 176 | |
---|
| 177 | g_free( acc->tag ); |
---|
| 178 | acc->tag = g_strdup( value ); |
---|
| 179 | return value; |
---|
| 180 | } |
---|
[5100caa] | 181 | else if( strcmp( set->key, "auto_connect" ) == 0 ) |
---|
| 182 | { |
---|
| 183 | if( !is_bool( value ) ) |
---|
[7125cb3] | 184 | return SET_INVALID; |
---|
[5100caa] | 185 | |
---|
| 186 | acc->auto_connect = bool2int( value ); |
---|
| 187 | return value; |
---|
| 188 | } |
---|
[58adb7e] | 189 | else if( strcmp( set->key, "away" ) == 0 || |
---|
| 190 | strcmp( set->key, "status" ) == 0 ) |
---|
| 191 | { |
---|
| 192 | if( acc->ic && acc->ic->flags & OPT_LOGGED_IN ) |
---|
| 193 | { |
---|
| 194 | /* If we're currently on-line, set the var now already |
---|
| 195 | (bit of a hack) and send an update. */ |
---|
| 196 | g_free( set->value ); |
---|
| 197 | set->value = g_strdup( value ); |
---|
| 198 | |
---|
| 199 | imc_away_send_update( acc->ic ); |
---|
| 200 | } |
---|
| 201 | |
---|
| 202 | return value; |
---|
| 203 | } |
---|
[5100caa] | 204 | |
---|
[7125cb3] | 205 | return SET_INVALID; |
---|
[5100caa] | 206 | } |
---|
| 207 | |
---|
[06b39f2] | 208 | /* For bw compatibility, have this write-only setting. */ |
---|
| 209 | static char *set_eval_nick_source( set_t *set, char *value ) |
---|
| 210 | { |
---|
| 211 | account_t *a = set->data; |
---|
| 212 | |
---|
| 213 | if( strcmp( value, "full_name" ) == 0 ) |
---|
| 214 | set_setstr( &a->set, "nick_format", "%full_name" ); |
---|
| 215 | else if( strcmp( value, "first_name" ) == 0 ) |
---|
| 216 | set_setstr( &a->set, "nick_format", "%first_name" ); |
---|
| 217 | else |
---|
| 218 | set_setstr( &a->set, "nick_format", "%-@nick" ); |
---|
| 219 | |
---|
| 220 | return value; |
---|
| 221 | } |
---|
| 222 | |
---|
[40e6dac] | 223 | account_t *account_get( bee_t *bee, const char *id ) |
---|
[b7d3cc34] | 224 | { |
---|
| 225 | account_t *a, *ret = NULL; |
---|
[85616c3] | 226 | char *handle, *s; |
---|
[b7d3cc34] | 227 | int nr; |
---|
| 228 | |
---|
[40e6dac] | 229 | /* Tags get priority above anything else. */ |
---|
| 230 | if( ( a = account_by_tag( bee, id ) ) ) |
---|
| 231 | return a; |
---|
| 232 | |
---|
[85616c3] | 233 | /* This checks if the id string ends with (...) */ |
---|
| 234 | if( ( handle = strchr( id, '(' ) ) && ( s = strchr( handle, ')' ) ) && s[1] == 0 ) |
---|
| 235 | { |
---|
| 236 | struct prpl *proto; |
---|
| 237 | |
---|
| 238 | *s = *handle = 0; |
---|
| 239 | handle ++; |
---|
| 240 | |
---|
| 241 | if( ( proto = find_protocol( id ) ) ) |
---|
| 242 | { |
---|
[81e04e1] | 243 | for( a = bee->accounts; a; a = a->next ) |
---|
[85616c3] | 244 | if( a->prpl == proto && |
---|
[5b52a48] | 245 | a->prpl->handle_cmp( handle, a->user ) == 0 ) |
---|
[85616c3] | 246 | ret = a; |
---|
| 247 | } |
---|
| 248 | |
---|
| 249 | /* Restore the string. */ |
---|
| 250 | handle --; |
---|
| 251 | *handle = '('; |
---|
| 252 | *s = ')'; |
---|
| 253 | |
---|
| 254 | if( ret ) |
---|
| 255 | return ret; |
---|
| 256 | } |
---|
| 257 | |
---|
[b7d3cc34] | 258 | if( sscanf( id, "%d", &nr ) == 1 && nr < 1000 ) |
---|
| 259 | { |
---|
[81e04e1] | 260 | for( a = bee->accounts; a; a = a->next ) |
---|
[b7d3cc34] | 261 | if( ( nr-- ) == 0 ) |
---|
| 262 | return( a ); |
---|
| 263 | |
---|
| 264 | return( NULL ); |
---|
| 265 | } |
---|
| 266 | |
---|
[81e04e1] | 267 | for( a = bee->accounts; a; a = a->next ) |
---|
[b7d3cc34] | 268 | { |
---|
[7b23afd] | 269 | if( g_strcasecmp( id, a->prpl->name ) == 0 ) |
---|
[b7d3cc34] | 270 | { |
---|
| 271 | if( !ret ) |
---|
| 272 | ret = a; |
---|
| 273 | else |
---|
| 274 | return( NULL ); /* We don't want to match more than one... */ |
---|
| 275 | } |
---|
| 276 | else if( strstr( a->user, id ) ) |
---|
| 277 | { |
---|
| 278 | if( !ret ) |
---|
| 279 | ret = a; |
---|
| 280 | else |
---|
| 281 | return( NULL ); |
---|
| 282 | } |
---|
| 283 | } |
---|
| 284 | |
---|
| 285 | return( ret ); |
---|
| 286 | } |
---|
| 287 | |
---|
[40e6dac] | 288 | account_t *account_by_tag( bee_t *bee, const char *tag ) |
---|
| 289 | { |
---|
| 290 | account_t *a; |
---|
| 291 | |
---|
| 292 | for( a = bee->accounts; a; a = a->next ) |
---|
| 293 | if( a->tag && g_strcasecmp( tag, a->tag ) == 0 ) |
---|
| 294 | return a; |
---|
| 295 | |
---|
| 296 | return NULL; |
---|
| 297 | } |
---|
| 298 | |
---|
[81e04e1] | 299 | void account_del( bee_t *bee, account_t *acc ) |
---|
[b7d3cc34] | 300 | { |
---|
| 301 | account_t *a, *l = NULL; |
---|
| 302 | |
---|
[fa75134] | 303 | if( acc->ic ) |
---|
| 304 | /* Caller should have checked, accounts still in use can't be deleted. */ |
---|
| 305 | return; |
---|
| 306 | |
---|
[81e04e1] | 307 | for( a = bee->accounts; a; a = (l=a)->next ) |
---|
[b7d3cc34] | 308 | if( a == acc ) |
---|
| 309 | { |
---|
| 310 | if( l ) |
---|
| 311 | l->next = a->next; |
---|
| 312 | else |
---|
[81e04e1] | 313 | bee->accounts = a->next; |
---|
[b7d3cc34] | 314 | |
---|
[81e04e1] | 315 | /** FIXME |
---|
| 316 | for( c = bee->chatrooms; c; c = nc ) |
---|
[f86a3d5] | 317 | { |
---|
| 318 | nc = c->next; |
---|
[d995c9b] | 319 | if( acc == c->acc ) |
---|
[81e04e1] | 320 | chat_del( bee, c ); |
---|
[f86a3d5] | 321 | } |
---|
[81e04e1] | 322 | */ |
---|
[d995c9b] | 323 | |
---|
[5100caa] | 324 | while( a->set ) |
---|
| 325 | set_del( &a->set, a->set->key ); |
---|
| 326 | |
---|
[5b52a48] | 327 | g_hash_table_destroy( a->nicks ); |
---|
| 328 | |
---|
[40e6dac] | 329 | g_free( a->tag ); |
---|
[b7d3cc34] | 330 | g_free( a->user ); |
---|
| 331 | g_free( a->pass ); |
---|
[fa75134] | 332 | g_free( a->server ); |
---|
[b7d3cc34] | 333 | if( a->reconnect ) /* This prevents any reconnect still queued to happen */ |
---|
| 334 | cancel_auto_reconnect( a ); |
---|
| 335 | g_free( a ); |
---|
| 336 | |
---|
| 337 | break; |
---|
| 338 | } |
---|
| 339 | } |
---|
| 340 | |
---|
[81e04e1] | 341 | void account_on( bee_t *bee, account_t *a ) |
---|
[b7d3cc34] | 342 | { |
---|
[0da65d5] | 343 | if( a->ic ) |
---|
[b7d3cc34] | 344 | { |
---|
| 345 | /* Trying to enable an already-enabled account */ |
---|
| 346 | return; |
---|
| 347 | } |
---|
| 348 | |
---|
| 349 | cancel_auto_reconnect( a ); |
---|
| 350 | |
---|
| 351 | a->reconnect = 0; |
---|
[0a3c243] | 352 | a->prpl->login( a ); |
---|
[b7d3cc34] | 353 | } |
---|
| 354 | |
---|
[81e04e1] | 355 | void account_off( bee_t *bee, account_t *a ) |
---|
[b7d3cc34] | 356 | { |
---|
[b0eaa5b] | 357 | imc_logout( a->ic, FALSE ); |
---|
[0da65d5] | 358 | a->ic = NULL; |
---|
[b7d3cc34] | 359 | if( a->reconnect ) |
---|
| 360 | { |
---|
| 361 | /* Shouldn't happen */ |
---|
| 362 | cancel_auto_reconnect( a ); |
---|
| 363 | } |
---|
| 364 | } |
---|
[280e655] | 365 | |
---|
[4230221] | 366 | struct account_reconnect_delay |
---|
[280e655] | 367 | { |
---|
| 368 | int start; |
---|
| 369 | char op; |
---|
| 370 | int step; |
---|
[4230221] | 371 | int max; |
---|
| 372 | }; |
---|
| 373 | |
---|
| 374 | int account_reconnect_delay_parse( char *value, struct account_reconnect_delay *p ) |
---|
| 375 | { |
---|
| 376 | memset( p, 0, sizeof( *p ) ); |
---|
| 377 | /* A whole day seems like a sane "maximum maximum". */ |
---|
| 378 | p->max = 86400; |
---|
[280e655] | 379 | |
---|
[58adb7e] | 380 | /* Format: /[0-9]+([*+][0-9]+(<[0-9+])?)?/ */ |
---|
[4230221] | 381 | while( *value && isdigit( *value ) ) |
---|
| 382 | p->start = p->start * 10 + *value++ - '0'; |
---|
| 383 | |
---|
| 384 | /* Sure, call me evil for implementing my own fscanf here, but it's |
---|
[7125cb3] | 385 | dead simple and I immediately know where to continue parsing. */ |
---|
[4230221] | 386 | |
---|
| 387 | if( *value == 0 ) |
---|
| 388 | /* If the string ends now, the delay is constant. */ |
---|
| 389 | return 1; |
---|
| 390 | else if( *value != '+' && *value != '*' ) |
---|
| 391 | /* Otherwise allow either a + or a * */ |
---|
| 392 | return 0; |
---|
| 393 | |
---|
| 394 | p->op = *value++; |
---|
| 395 | |
---|
| 396 | /* + or * the delay by this number every time. */ |
---|
| 397 | while( *value && isdigit( *value ) ) |
---|
| 398 | p->step = p->step * 10 + *value++ - '0'; |
---|
| 399 | |
---|
| 400 | if( *value == 0 ) |
---|
| 401 | /* Use the default maximum (one day). */ |
---|
| 402 | return 1; |
---|
| 403 | else if( *value != '<' ) |
---|
| 404 | return 0; |
---|
| 405 | |
---|
| 406 | p->max = 0; |
---|
| 407 | value ++; |
---|
| 408 | while( *value && isdigit( *value ) ) |
---|
| 409 | p->max = p->max * 10 + *value++ - '0'; |
---|
| 410 | |
---|
| 411 | return p->max > 0; |
---|
| 412 | } |
---|
| 413 | |
---|
| 414 | char *set_eval_account_reconnect_delay( set_t *set, char *value ) |
---|
| 415 | { |
---|
| 416 | struct account_reconnect_delay p; |
---|
| 417 | |
---|
[7125cb3] | 418 | return account_reconnect_delay_parse( value, &p ) ? value : SET_INVALID; |
---|
[280e655] | 419 | } |
---|
| 420 | |
---|
| 421 | int account_reconnect_delay( account_t *a ) |
---|
| 422 | { |
---|
[81e04e1] | 423 | char *setting = set_getstr( &a->bee->set, "auto_reconnect_delay" ); |
---|
[4230221] | 424 | struct account_reconnect_delay p; |
---|
[280e655] | 425 | |
---|
[4230221] | 426 | if( account_reconnect_delay_parse( setting, &p ) ) |
---|
[280e655] | 427 | { |
---|
| 428 | if( a->auto_reconnect_delay == 0 ) |
---|
[4230221] | 429 | a->auto_reconnect_delay = p.start; |
---|
| 430 | else if( p.op == '+' ) |
---|
| 431 | a->auto_reconnect_delay += p.step; |
---|
| 432 | else if( p.op == '*' ) |
---|
| 433 | a->auto_reconnect_delay *= p.step; |
---|
| 434 | |
---|
| 435 | if( a->auto_reconnect_delay > p.max ) |
---|
| 436 | a->auto_reconnect_delay = p.max; |
---|
[280e655] | 437 | } |
---|
[4230221] | 438 | else |
---|
[280e655] | 439 | { |
---|
[4230221] | 440 | a->auto_reconnect_delay = 0; |
---|
[280e655] | 441 | } |
---|
| 442 | |
---|
[4230221] | 443 | return a->auto_reconnect_delay; |
---|
[280e655] | 444 | } |
---|