source: protocols/account.c @ 537d9b9

Last change on this file since 537d9b9 was 537d9b9, checked in by dequis <dx@…>, at 2016-11-20T08:40:36Z

Merge master up to commit '9f03c47' into parson

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