[5ebff60] | 1 | /********************************************************************\ |
---|
[b7d3cc34] | 2 | * BitlBee -- An IRC to other IM-networks gateway * |
---|
| 3 | * * |
---|
[0e788f5] | 4 | * Copyright 2002-2013 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; |
---|
[6f10697] | 22 | if not, write to the Free Software Foundation, Inc., 51 Franklin St., |
---|
| 23 | Fifth Floor, Boston, MA 02110-1301 USA |
---|
[b7d3cc34] | 24 | */ |
---|
| 25 | |
---|
| 26 | #define BITLBEE_CORE |
---|
| 27 | #include "bitlbee.h" |
---|
| 28 | #include "account.h" |
---|
| 29 | |
---|
[5ebff60] | 30 | static char *set_eval_nick_source(set_t *set, char *value); |
---|
[06b39f2] | 31 | |
---|
[5ebff60] | 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; |
---|
[5ebff60] | 36 | char tag[strlen(prpl->name) + 10]; |
---|
| 37 | |
---|
| 38 | if (bee->accounts) { |
---|
| 39 | for (a = bee->accounts; a->next; a = a->next) { |
---|
| 40 | ; |
---|
| 41 | } |
---|
| 42 | a = a->next = g_new0(account_t, 1); |
---|
| 43 | } else { |
---|
| 44 | bee->accounts = a = g_new0(account_t, 1); |
---|
[b7d3cc34] | 45 | } |
---|
[5ebff60] | 46 | |
---|
[7b23afd] | 47 | a->prpl = prpl; |
---|
[5ebff60] | 48 | a->user = g_strdup(user); |
---|
| 49 | a->pass = g_strdup(pass); |
---|
[2b14eef] | 50 | a->auto_connect = 1; |
---|
[81e04e1] | 51 | a->bee = bee; |
---|
[5ebff60] | 52 | |
---|
| 53 | s = set_add(&a->set, "auto_connect", "true", set_eval_account, a); |
---|
[bb5ce568] | 54 | s->flags |= SET_NOSAVE; |
---|
[5ebff60] | 55 | |
---|
| 56 | s = set_add(&a->set, "auto_reconnect", "true", set_eval_bool, a); |
---|
| 57 | |
---|
| 58 | s = set_add(&a->set, "nick_format", NULL, NULL, a); |
---|
[badd148] | 59 | s->flags |= SET_NULL_OK; |
---|
[5ebff60] | 60 | |
---|
| 61 | s = set_add(&a->set, "nick_source", "handle", set_eval_nick_source, a); |
---|
[bb5ce568] | 62 | s->flags |= SET_NOSAVE; /* Just for bw compatibility! */ |
---|
[5ebff60] | 63 | |
---|
| 64 | s = set_add(&a->set, "password", NULL, set_eval_account, a); |
---|
[bb5ce568] | 65 | s->flags |= SET_NOSAVE | SET_NULL_OK | SET_PASSWORD; |
---|
[5ebff60] | 66 | |
---|
| 67 | s = set_add(&a->set, "tag", NULL, set_eval_account, a); |
---|
[bb5ce568] | 68 | s->flags |= SET_NOSAVE; |
---|
[5ebff60] | 69 | |
---|
| 70 | s = set_add(&a->set, "username", NULL, set_eval_account, a); |
---|
[bb5ce568] | 71 | s->flags |= SET_NOSAVE | ACC_SET_OFFLINE_ONLY; |
---|
[5ebff60] | 72 | set_setstr(&a->set, "username", user); |
---|
| 73 | |
---|
[3b3c50d9] | 74 | /* Hardcode some more clever tag guesses. */ |
---|
[5ebff60] | 75 | strcpy(tag, prpl->name); |
---|
| 76 | if (strcmp(prpl->name, "oscar") == 0) { |
---|
| 77 | if (g_ascii_isdigit(a->user[0])) { |
---|
| 78 | strcpy(tag, "icq"); |
---|
| 79 | } else { |
---|
| 80 | strcpy(tag, "aim"); |
---|
| 81 | } |
---|
| 82 | } else if (strcmp(prpl->name, "jabber") == 0) { |
---|
| 83 | if (strstr(a->user, "@gmail.com") || |
---|
| 84 | strstr(a->user, "@googlemail.com")) { |
---|
| 85 | strcpy(tag, "gtalk"); |
---|
| 86 | } else if (strstr(a->user, "@chat.facebook.com")) { |
---|
| 87 | strcpy(tag, "fb"); |
---|
| 88 | } |
---|
[3b3c50d9] | 89 | } |
---|
[5ebff60] | 90 | |
---|
| 91 | if (account_by_tag(bee, tag)) { |
---|
| 92 | char *numpos = tag + strlen(tag); |
---|
[40e6dac] | 93 | int i; |
---|
| 94 | |
---|
[5ebff60] | 95 | for (i = 2; i < 10000; i++) { |
---|
| 96 | sprintf(numpos, "%d", i); |
---|
| 97 | if (!account_by_tag(bee, tag)) { |
---|
[40e6dac] | 98 | break; |
---|
[5ebff60] | 99 | } |
---|
[40e6dac] | 100 | } |
---|
| 101 | } |
---|
[5ebff60] | 102 | set_setstr(&a->set, "tag", tag); |
---|
| 103 | |
---|
| 104 | a->nicks = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free); |
---|
| 105 | |
---|
[96863f6] | 106 | /* This function adds some more settings (and might want to do more |
---|
| 107 | things that have to be done now, although I can't think of anything. */ |
---|
[5ebff60] | 108 | if (prpl->init) { |
---|
| 109 | prpl->init(a); |
---|
| 110 | } |
---|
| 111 | |
---|
| 112 | s = set_add(&a->set, "away", NULL, set_eval_account, a); |
---|
[58adb7e] | 113 | s->flags |= SET_NULL_OK; |
---|
[5ebff60] | 114 | |
---|
| 115 | if (a->flags & ACC_FLAG_STATUS_MESSAGE) { |
---|
| 116 | s = set_add(&a->set, "status", NULL, set_eval_account, a); |
---|
[58adb7e] | 117 | s->flags |= SET_NULL_OK; |
---|
| 118 | } |
---|
[5ebff60] | 119 | |
---|
[58adb7e] | 120 | return a; |
---|
[b7d3cc34] | 121 | } |
---|
| 122 | |
---|
[5ebff60] | 123 | char *set_eval_account(set_t *set, char *value) |
---|
[5100caa] | 124 | { |
---|
| 125 | account_t *acc = set->data; |
---|
[5ebff60] | 126 | |
---|
[5100caa] | 127 | /* Double-check: We refuse to edit on-line accounts. */ |
---|
[5ebff60] | 128 | if (set->flags & ACC_SET_OFFLINE_ONLY && acc->ic) { |
---|
[7125cb3] | 129 | return SET_INVALID; |
---|
[5ebff60] | 130 | } |
---|
| 131 | |
---|
| 132 | if (strcmp(set->key, "server") == 0) { |
---|
| 133 | g_free(acc->server); |
---|
| 134 | if (value && *value) { |
---|
| 135 | acc->server = g_strdup(value); |
---|
[30ce1ce] | 136 | return value; |
---|
[5ebff60] | 137 | } else { |
---|
| 138 | acc->server = g_strdup(set->def); |
---|
| 139 | return g_strdup(set->def); |
---|
[30ce1ce] | 140 | } |
---|
[5ebff60] | 141 | } else if (strcmp(set->key, "username") == 0) { |
---|
| 142 | g_free(acc->user); |
---|
| 143 | acc->user = g_strdup(value); |
---|
[3b32017] | 144 | return value; |
---|
[5ebff60] | 145 | } else if (strcmp(set->key, "password") == 0) { |
---|
[35987a1] | 146 | /* set -del allows /oper to be used to change the password or, |
---|
| 147 | iff oauth is enabled, reset the oauth credential magic. |
---|
| 148 | */ |
---|
[5ebff60] | 149 | if (!value) { |
---|
| 150 | if (set_getbool(&(acc->set), "oauth")) { |
---|
[35987a1] | 151 | value = ""; |
---|
| 152 | } else { |
---|
| 153 | value = PASSWORD_PENDING; |
---|
[5ebff60] | 154 | ((irc_t *) acc->bee->ui_data)->status |= OPER_HACK_ACCOUNT_PASSWORD; |
---|
| 155 | irc_rootmsg((irc_t *) acc->bee->ui_data, "You may now use /OPER to set the password"); |
---|
[35987a1] | 156 | } |
---|
| 157 | } |
---|
[5ebff60] | 158 | |
---|
| 159 | g_free(acc->pass); |
---|
| 160 | acc->pass = g_strdup(value); |
---|
| 161 | return NULL; /* password shouldn't be visible in plaintext! */ |
---|
| 162 | } else if (strcmp(set->key, "tag") == 0) { |
---|
[40e6dac] | 163 | account_t *oa; |
---|
[5ebff60] | 164 | |
---|
[40e6dac] | 165 | /* Enforce uniqueness. */ |
---|
[5ebff60] | 166 | if ((oa = account_by_tag(acc->bee, value)) && oa != acc) { |
---|
[40e6dac] | 167 | return SET_INVALID; |
---|
[5ebff60] | 168 | } |
---|
| 169 | |
---|
| 170 | g_free(acc->tag); |
---|
| 171 | acc->tag = g_strdup(value); |
---|
[40e6dac] | 172 | return value; |
---|
[5ebff60] | 173 | } else if (strcmp(set->key, "auto_connect") == 0) { |
---|
| 174 | if (!is_bool(value)) { |
---|
[7125cb3] | 175 | return SET_INVALID; |
---|
[5ebff60] | 176 | } |
---|
| 177 | |
---|
| 178 | acc->auto_connect = bool2int(value); |
---|
[5100caa] | 179 | return value; |
---|
[5ebff60] | 180 | } else if (strcmp(set->key, "away") == 0 || |
---|
| 181 | strcmp(set->key, "status") == 0) { |
---|
| 182 | if (acc->ic && acc->ic->flags & OPT_LOGGED_IN) { |
---|
[58adb7e] | 183 | /* If we're currently on-line, set the var now already |
---|
| 184 | (bit of a hack) and send an update. */ |
---|
[5ebff60] | 185 | g_free(set->value); |
---|
| 186 | set->value = g_strdup(value); |
---|
| 187 | |
---|
| 188 | imc_away_send_update(acc->ic); |
---|
[58adb7e] | 189 | } |
---|
[5ebff60] | 190 | |
---|
[58adb7e] | 191 | return value; |
---|
| 192 | } |
---|
[5ebff60] | 193 | |
---|
[7125cb3] | 194 | return SET_INVALID; |
---|
[5100caa] | 195 | } |
---|
| 196 | |
---|
[06b39f2] | 197 | /* For bw compatibility, have this write-only setting. */ |
---|
[5ebff60] | 198 | static char *set_eval_nick_source(set_t *set, char *value) |
---|
[06b39f2] | 199 | { |
---|
| 200 | account_t *a = set->data; |
---|
[5ebff60] | 201 | |
---|
| 202 | if (strcmp(value, "full_name") == 0) { |
---|
| 203 | set_setstr(&a->set, "nick_format", "%full_name"); |
---|
| 204 | } else if (strcmp(value, "first_name") == 0) { |
---|
| 205 | set_setstr(&a->set, "nick_format", "%first_name"); |
---|
| 206 | } else { |
---|
| 207 | set_setstr(&a->set, "nick_format", "%-@nick"); |
---|
| 208 | } |
---|
| 209 | |
---|
[06b39f2] | 210 | return value; |
---|
| 211 | } |
---|
| 212 | |
---|
[5ebff60] | 213 | account_t *account_get(bee_t *bee, const char *id) |
---|
[b7d3cc34] | 214 | { |
---|
| 215 | account_t *a, *ret = NULL; |
---|
[85616c3] | 216 | char *handle, *s; |
---|
[b7d3cc34] | 217 | int nr; |
---|
[5ebff60] | 218 | |
---|
[40e6dac] | 219 | /* Tags get priority above anything else. */ |
---|
[5ebff60] | 220 | if ((a = account_by_tag(bee, id))) { |
---|
[40e6dac] | 221 | return a; |
---|
[5ebff60] | 222 | } |
---|
| 223 | |
---|
[85616c3] | 224 | /* This checks if the id string ends with (...) */ |
---|
[5ebff60] | 225 | if ((handle = strchr(id, '(')) && (s = strchr(handle, ')')) && s[1] == 0) { |
---|
[85616c3] | 226 | struct prpl *proto; |
---|
[5ebff60] | 227 | |
---|
[85616c3] | 228 | *s = *handle = 0; |
---|
[5ebff60] | 229 | handle++; |
---|
| 230 | |
---|
| 231 | if ((proto = find_protocol(id))) { |
---|
| 232 | for (a = bee->accounts; a; a = a->next) { |
---|
| 233 | if (a->prpl == proto && |
---|
| 234 | a->prpl->handle_cmp(handle, a->user) == 0) { |
---|
[85616c3] | 235 | ret = a; |
---|
[5ebff60] | 236 | } |
---|
| 237 | } |
---|
[85616c3] | 238 | } |
---|
[5ebff60] | 239 | |
---|
[85616c3] | 240 | /* Restore the string. */ |
---|
[5ebff60] | 241 | handle--; |
---|
[85616c3] | 242 | *handle = '('; |
---|
| 243 | *s = ')'; |
---|
[5ebff60] | 244 | |
---|
| 245 | if (ret) { |
---|
[85616c3] | 246 | return ret; |
---|
[5ebff60] | 247 | } |
---|
[85616c3] | 248 | } |
---|
[5ebff60] | 249 | |
---|
| 250 | if (sscanf(id, "%d", &nr) == 1 && nr < 1000) { |
---|
| 251 | for (a = bee->accounts; a; a = a->next) { |
---|
| 252 | if ((nr--) == 0) { |
---|
| 253 | return(a); |
---|
| 254 | } |
---|
| 255 | } |
---|
| 256 | |
---|
| 257 | return(NULL); |
---|
[b7d3cc34] | 258 | } |
---|
[5ebff60] | 259 | |
---|
| 260 | for (a = bee->accounts; a; a = a->next) { |
---|
| 261 | if (g_strcasecmp(id, a->prpl->name) == 0) { |
---|
| 262 | if (!ret) { |
---|
[b7d3cc34] | 263 | ret = a; |
---|
[5ebff60] | 264 | } else { |
---|
| 265 | return(NULL); /* We don't want to match more than one... */ |
---|
| 266 | } |
---|
| 267 | } else if (strstr(a->user, id)) { |
---|
| 268 | if (!ret) { |
---|
[b7d3cc34] | 269 | ret = a; |
---|
[5ebff60] | 270 | } else { |
---|
| 271 | return(NULL); |
---|
| 272 | } |
---|
[b7d3cc34] | 273 | } |
---|
| 274 | } |
---|
[5ebff60] | 275 | |
---|
| 276 | return(ret); |
---|
[b7d3cc34] | 277 | } |
---|
| 278 | |
---|
[5ebff60] | 279 | account_t *account_by_tag(bee_t *bee, const char *tag) |
---|
[40e6dac] | 280 | { |
---|
| 281 | account_t *a; |
---|
[5ebff60] | 282 | |
---|
| 283 | for (a = bee->accounts; a; a = a->next) { |
---|
| 284 | if (a->tag && g_strcasecmp(tag, a->tag) == 0) { |
---|
[40e6dac] | 285 | return a; |
---|
[5ebff60] | 286 | } |
---|
| 287 | } |
---|
| 288 | |
---|
[40e6dac] | 289 | return NULL; |
---|
| 290 | } |
---|
| 291 | |
---|
[5ebff60] | 292 | void account_del(bee_t *bee, account_t *acc) |
---|
[b7d3cc34] | 293 | { |
---|
| 294 | account_t *a, *l = NULL; |
---|
[5ebff60] | 295 | |
---|
| 296 | if (acc->ic) { |
---|
[fa75134] | 297 | /* Caller should have checked, accounts still in use can't be deleted. */ |
---|
| 298 | return; |
---|
[5ebff60] | 299 | } |
---|
| 300 | |
---|
| 301 | for (a = bee->accounts; a; a = (l = a)->next) { |
---|
| 302 | if (a == acc) { |
---|
| 303 | if (l) { |
---|
[b7d3cc34] | 304 | l->next = a->next; |
---|
[5ebff60] | 305 | } else { |
---|
[81e04e1] | 306 | bee->accounts = a->next; |
---|
[5ebff60] | 307 | } |
---|
| 308 | |
---|
[81e04e1] | 309 | /** FIXME |
---|
| 310 | for( c = bee->chatrooms; c; c = nc ) |
---|
[f86a3d5] | 311 | { |
---|
[5ebff60] | 312 | nc = c->next; |
---|
| 313 | if( acc == c->acc ) |
---|
| 314 | chat_del( bee, c ); |
---|
[f86a3d5] | 315 | } |
---|
[81e04e1] | 316 | */ |
---|
[5ebff60] | 317 | |
---|
| 318 | while (a->set) { |
---|
| 319 | set_del(&a->set, a->set->key); |
---|
| 320 | } |
---|
| 321 | |
---|
| 322 | g_hash_table_destroy(a->nicks); |
---|
| 323 | |
---|
| 324 | g_free(a->tag); |
---|
| 325 | g_free(a->user); |
---|
| 326 | g_free(a->pass); |
---|
| 327 | g_free(a->server); |
---|
| 328 | if (a->reconnect) { /* This prevents any reconnect still queued to happen */ |
---|
| 329 | cancel_auto_reconnect(a); |
---|
| 330 | } |
---|
| 331 | g_free(a); |
---|
| 332 | |
---|
[b7d3cc34] | 333 | break; |
---|
| 334 | } |
---|
[5ebff60] | 335 | } |
---|
[b7d3cc34] | 336 | } |
---|
| 337 | |
---|
[5ebff60] | 338 | static gboolean account_on_timeout(gpointer d, gint fd, b_input_condition cond); |
---|
[748bcdd] | 339 | |
---|
[5ebff60] | 340 | void account_on(bee_t *bee, account_t *a) |
---|
[b7d3cc34] | 341 | { |
---|
[5ebff60] | 342 | if (a->ic) { |
---|
[b7d3cc34] | 343 | /* Trying to enable an already-enabled account */ |
---|
| 344 | return; |
---|
| 345 | } |
---|
[5ebff60] | 346 | |
---|
| 347 | cancel_auto_reconnect(a); |
---|
| 348 | |
---|
[b7d3cc34] | 349 | a->reconnect = 0; |
---|
[5ebff60] | 350 | a->prpl->login(a); |
---|
| 351 | |
---|
| 352 | if (a->ic && !(a->ic->flags & (OPT_SLOW_LOGIN | OPT_LOGGED_IN))) { |
---|
| 353 | a->ic->keepalive = b_timeout_add(120000, account_on_timeout, a->ic); |
---|
| 354 | } |
---|
[b7d3cc34] | 355 | } |
---|
| 356 | |
---|
[5ebff60] | 357 | void account_off(bee_t *bee, account_t *a) |
---|
[b7d3cc34] | 358 | { |
---|
[5ebff60] | 359 | imc_logout(a->ic, FALSE); |
---|
[0da65d5] | 360 | a->ic = NULL; |
---|
[5ebff60] | 361 | if (a->reconnect) { |
---|
[b7d3cc34] | 362 | /* Shouldn't happen */ |
---|
[5ebff60] | 363 | cancel_auto_reconnect(a); |
---|
[b7d3cc34] | 364 | } |
---|
| 365 | } |
---|
[280e655] | 366 | |
---|
[5ebff60] | 367 | static gboolean account_on_timeout(gpointer d, gint fd, b_input_condition cond) |
---|
[748bcdd] | 368 | { |
---|
| 369 | struct im_connection *ic = d; |
---|
[5ebff60] | 370 | |
---|
| 371 | if (!(ic->flags & (OPT_SLOW_LOGIN | OPT_LOGGED_IN))) { |
---|
| 372 | imcb_error(ic, "Connection timeout"); |
---|
| 373 | imc_logout(ic, TRUE); |
---|
[4cb21b7] | 374 | } |
---|
[5ebff60] | 375 | |
---|
[748bcdd] | 376 | return FALSE; |
---|
| 377 | } |
---|
| 378 | |
---|
[5ebff60] | 379 | struct account_reconnect_delay { |
---|
[280e655] | 380 | int start; |
---|
| 381 | char op; |
---|
| 382 | int step; |
---|
[4230221] | 383 | int max; |
---|
| 384 | }; |
---|
| 385 | |
---|
[5ebff60] | 386 | int account_reconnect_delay_parse(char *value, struct account_reconnect_delay *p) |
---|
[4230221] | 387 | { |
---|
[5ebff60] | 388 | memset(p, 0, sizeof(*p)); |
---|
[4230221] | 389 | /* A whole day seems like a sane "maximum maximum". */ |
---|
| 390 | p->max = 86400; |
---|
[5ebff60] | 391 | |
---|
[58adb7e] | 392 | /* Format: /[0-9]+([*+][0-9]+(<[0-9+])?)?/ */ |
---|
[5ebff60] | 393 | while (*value && g_ascii_isdigit(*value)) { |
---|
[4230221] | 394 | p->start = p->start * 10 + *value++ - '0'; |
---|
[5ebff60] | 395 | } |
---|
| 396 | |
---|
[4230221] | 397 | /* Sure, call me evil for implementing my own fscanf here, but it's |
---|
[7125cb3] | 398 | dead simple and I immediately know where to continue parsing. */ |
---|
[5ebff60] | 399 | |
---|
| 400 | if (*value == 0) { |
---|
[4230221] | 401 | /* If the string ends now, the delay is constant. */ |
---|
| 402 | return 1; |
---|
[5ebff60] | 403 | } else if (*value != '+' && *value != '*') { |
---|
[4230221] | 404 | /* Otherwise allow either a + or a * */ |
---|
| 405 | return 0; |
---|
[5ebff60] | 406 | } |
---|
| 407 | |
---|
[4230221] | 408 | p->op = *value++; |
---|
[5ebff60] | 409 | |
---|
[4230221] | 410 | /* + or * the delay by this number every time. */ |
---|
[5ebff60] | 411 | while (*value && g_ascii_isdigit(*value)) { |
---|
[4230221] | 412 | p->step = p->step * 10 + *value++ - '0'; |
---|
[5ebff60] | 413 | } |
---|
| 414 | |
---|
| 415 | if (*value == 0) { |
---|
[4230221] | 416 | /* Use the default maximum (one day). */ |
---|
| 417 | return 1; |
---|
[5ebff60] | 418 | } else if (*value != '<') { |
---|
[4230221] | 419 | return 0; |
---|
[5ebff60] | 420 | } |
---|
| 421 | |
---|
[4230221] | 422 | p->max = 0; |
---|
[5ebff60] | 423 | value++; |
---|
| 424 | while (*value && g_ascii_isdigit(*value)) { |
---|
[4230221] | 425 | p->max = p->max * 10 + *value++ - '0'; |
---|
[5ebff60] | 426 | } |
---|
| 427 | |
---|
[4230221] | 428 | return p->max > 0; |
---|
| 429 | } |
---|
| 430 | |
---|
[5ebff60] | 431 | char *set_eval_account_reconnect_delay(set_t *set, char *value) |
---|
[4230221] | 432 | { |
---|
| 433 | struct account_reconnect_delay p; |
---|
[5ebff60] | 434 | |
---|
| 435 | return account_reconnect_delay_parse(value, &p) ? value : SET_INVALID; |
---|
[280e655] | 436 | } |
---|
| 437 | |
---|
[5ebff60] | 438 | int account_reconnect_delay(account_t *a) |
---|
[280e655] | 439 | { |
---|
[5ebff60] | 440 | char *setting = set_getstr(&a->bee->set, "auto_reconnect_delay"); |
---|
[4230221] | 441 | struct account_reconnect_delay p; |
---|
[5ebff60] | 442 | |
---|
| 443 | if (account_reconnect_delay_parse(setting, &p)) { |
---|
| 444 | if (a->auto_reconnect_delay == 0) { |
---|
[4230221] | 445 | a->auto_reconnect_delay = p.start; |
---|
[5ebff60] | 446 | } else if (p.op == '+') { |
---|
[4230221] | 447 | a->auto_reconnect_delay += p.step; |
---|
[5ebff60] | 448 | } else if (p.op == '*') { |
---|
[4230221] | 449 | a->auto_reconnect_delay *= p.step; |
---|
[5ebff60] | 450 | } |
---|
| 451 | |
---|
| 452 | if (a->auto_reconnect_delay > p.max) { |
---|
[4230221] | 453 | a->auto_reconnect_delay = p.max; |
---|
[5ebff60] | 454 | } |
---|
| 455 | } else { |
---|
[4230221] | 456 | a->auto_reconnect_delay = 0; |
---|
[280e655] | 457 | } |
---|
[5ebff60] | 458 | |
---|
[4230221] | 459 | return a->auto_reconnect_delay; |
---|
[280e655] | 460 | } |
---|