aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-account-list.c
blob: 29d0183c1924a078c023f143155c69150593b694 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 * Copyright (C) 2003 Ximian, Inc.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of version 2 of the GNU General Public
 * License as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public
 * License along with this library; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include "e-account-list.h"
#include "e-account.h"
#include "e-util-marshal.h"

#include <string.h>

struct EAccountListPrivate {
    GConfClient *gconf;
    guint notify_id;
};

enum {
    ACCOUNT_ADDED,
    ACCOUNT_CHANGED,
    ACCOUNT_REMOVED,
    LAST_SIGNAL
};

static guint signals [LAST_SIGNAL] = { 0 };

static void e_account_list_dispose (GObject *);
static void e_account_list_finalize (GObject *);

G_DEFINE_TYPE (EAccountList, e_account_list, E_TYPE_LIST)

static void
e_account_list_class_init (EAccountListClass *klass)
{
    GObjectClass *object_class;
    
    /* virtual method override */
    object_class = G_OBJECT_CLASS (klass);
    object_class->dispose = e_account_list_dispose;
    object_class->finalize = e_account_list_finalize;

    /* signals */
    signals[ACCOUNT_ADDED] =
        g_signal_new ("account-added",
                  G_OBJECT_CLASS_TYPE (object_class),
                  G_SIGNAL_RUN_LAST,
                  G_STRUCT_OFFSET (EAccountListClass, account_added),
                  NULL, NULL,
                  e_util_marshal_NONE__OBJECT,
                  G_TYPE_NONE, 1,
                  E_TYPE_ACCOUNT);
    signals[ACCOUNT_CHANGED] =
        g_signal_new ("account-changed",
                  G_OBJECT_CLASS_TYPE (object_class),
                  G_SIGNAL_RUN_LAST,
                  G_STRUCT_OFFSET (EAccountListClass, account_changed),
                  NULL, NULL,
                  e_util_marshal_NONE__OBJECT,
                  G_TYPE_NONE, 1,
                  E_TYPE_ACCOUNT);
    signals[ACCOUNT_REMOVED] =
        g_signal_new ("account-removed",
                  G_OBJECT_CLASS_TYPE (object_class),
                  G_SIGNAL_RUN_LAST,
                  G_STRUCT_OFFSET (EAccountListClass, account_removed),
                  NULL, NULL,
                  e_util_marshal_NONE__OBJECT,
                  G_TYPE_NONE, 1,
                  E_TYPE_ACCOUNT);
}

static void
e_account_list_init (EAccountList *account_list)
{
    account_list->priv = g_new0 (EAccountListPrivate, 1);
}

static void
e_account_list_dispose (GObject *object)
{
    EAccountList *account_list = E_ACCOUNT_LIST (object);

    if (account_list->priv->gconf) {
        if (account_list->priv->notify_id) {
            gconf_client_notify_remove (account_list->priv->gconf,
                            account_list->priv->notify_id);
        }
        g_object_unref (account_list->priv->gconf);
        account_list->priv->gconf = NULL;
    }

    G_OBJECT_CLASS (e_account_list_parent_class)->dispose (object);
}

static void
e_account_list_finalize (GObject *object)
{
    EAccountList *account_list = E_ACCOUNT_LIST (object);

    g_free (account_list->priv);

    G_OBJECT_CLASS (e_account_list_parent_class)->finalize (object);
}

static void
gconf_accounts_changed (GConfClient *client, guint cnxn_id,
            GConfEntry *entry, gpointer user_data)
{
    EAccountList *account_list = user_data;
    GSList *list, *l, *new_accounts = NULL;
    EAccount *account;
    EList *old_accounts;
    EIterator *iter;
    char *uid;

    old_accounts = e_list_duplicate (E_LIST (account_list));

    list = gconf_client_get_list (client, "/apps/evolution/mail/accounts",
                      GCONF_VALUE_STRING, NULL);
    for (l = list; l; l = l->next) {
        uid = e_account_uid_from_xml (l->data);
        if (!uid)
            continue;

        /* See if this is an existing account */
        for (iter = e_list_get_iterator (old_accounts);
             e_iterator_is_valid (iter);
             e_iterator_next (iter)) {
            account = (EAccount *)e_iterator_get (iter);
            if (!strcmp (account->uid, uid)) {
                /* The account still exists, so remove
                 * it from "old_accounts" and update it.
                 */
                e_iterator_delete (iter);
                if (e_account_set_from_xml (account, l->data))
                    g_signal_emit (account_list, signals[ACCOUNT_CHANGED], 0, account);
                goto next;
            }
        }

        /* Must be a new account */
        account = e_account_new_from_xml (l->data);
        e_list_append (E_LIST (account_list), account);
        new_accounts = g_slist_prepend (new_accounts, account);

    next:
        g_free (uid);
        g_object_unref (iter);
    }

    /* Now emit signals for each added account. (We do this after
     * adding all of them because otherwise if the signal handler
     * calls e_account_list_get_default_account() it will end up
     * causing the first account in the list to become the
     * default.)
     */
    for (l = new_accounts; l; l = l->next) {
        account = l->data;
        g_signal_emit (account_list, signals[ACCOUNT_ADDED], 0, account);
        g_object_unref (account);
    }
    g_slist_free (new_accounts);

    /* Anything left in old_accounts must have been deleted */
    for (iter = e_list_get_iterator (old_accounts);
         e_iterator_is_valid (iter);
         e_iterator_next (iter)) {
        account = (EAccount *)e_iterator_get (iter);
        e_list_remove (E_LIST (account_list), account);
        g_signal_emit (account_list, signals[ACCOUNT_REMOVED], 0, account);
    }
    g_object_unref (iter);
    g_object_unref (old_accounts);
}

static void *
copy_func (const void *data, void *closure)
{
    GObject *object = (GObject *)data;

    g_object_ref (object);
    return object;
}

static void
free_func (void *data, void *closure)
{
    g_object_unref (data);
}

/**
 * e_account_list_new:
 * @gconf: a #GConfClient
 *
 * Reads the list of accounts from @gconf and listens for changes.
 * Will emit %account_added, %account_changed, and %account_removed
 * signals according to notifications from GConf.
 *
 * You can modify the list using e_list_append(), e_list_remove(), and
 * e_iterator_delete(). After adding, removing, or changing accounts,
 * you must call e_account_list_save() to push the changes back to
 * GConf.
 *
 * Return value: the list of accounts
 **/
EAccountList *
e_account_list_new (GConfClient *gconf)
{
    EAccountList *account_list;

    g_return_val_if_fail (GCONF_IS_CLIENT (gconf), NULL);

    account_list = g_object_new (E_TYPE_ACCOUNT_LIST, NULL);
    e_account_list_construct (account_list, gconf);

    return account_list;
}

void
e_account_list_construct (EAccountList *account_list, GConfClient *gconf)
{
    g_return_if_fail (GCONF_IS_CLIENT (gconf));

    e_list_construct (E_LIST (account_list), copy_func, free_func, NULL);
    account_list->priv->gconf = gconf;
    g_object_ref (gconf);

    gconf_client_add_dir (account_list->priv->gconf,
                  "/apps/evolution/mail/accounts",
                  GCONF_CLIENT_PRELOAD_ONELEVEL, NULL);
    account_list->priv->notify_id =
        gconf_client_notify_add (account_list->priv->gconf,
                     "/apps/evolution/mail/accounts",
                     gconf_accounts_changed, account_list,
                     NULL, NULL);

    gconf_accounts_changed (account_list->priv->gconf,
                account_list->priv->notify_id,
                NULL, account_list);
}

/**
 * e_account_list_save:
 * @account_list: an #EAccountList
 *
 * Saves @account_list to GConf. Signals will be emitted for changes.
 **/
void
e_account_list_save (EAccountList *account_list)
{
    GSList *list = NULL;
    EAccount *account;
    EIterator *iter;
    char *xmlbuf;

    for (iter = e_list_get_iterator (E_LIST (account_list));
         e_iterator_is_valid (iter);
         e_iterator_next (iter)) {
        account = (EAccount *)e_iterator_get (iter);

        xmlbuf = e_account_to_xml (account);
        if (xmlbuf)
            list = g_slist_append (list, xmlbuf);
    }
    g_object_unref (iter);

    gconf_client_set_list (account_list->priv->gconf,
                   "/apps/evolution/mail/accounts",
                   GCONF_VALUE_STRING, list, NULL);

    while (list) {
        g_free (list->data);
        list = g_slist_remove (list, list->data);
    }

    gconf_client_suggest_sync (account_list->priv->gconf, NULL);
}

void 
e_account_list_prune_proxies (EAccountList *account_list)
{
    EAccount *account;
    EIterator *iter;
    
    for (iter = e_list_get_iterator (E_LIST (account_list));
         e_iterator_is_valid (iter);
         e_iterator_next (iter)) {
        account = (EAccount *)e_iterator_get (iter);
        if (account->parent_uid) 
            e_account_list_remove (account_list, account);
    }

    e_account_list_save (account_list);
    g_object_unref (iter);
}

void 
e_account_list_remove_account_proxies (EAccountList *accounts, EAccount *account)
{
    EAccount *child_account;

    while ( (child_account = (EAccount *)e_account_list_find (accounts, E_ACCOUNT_FIND_PARENT_UID, account->uid))) {
        e_account_list_remove (accounts, child_account);
        child_account = NULL;
    }

    e_account_list_save (accounts);
}

int
e_account_list_account_has_proxies (EAccountList *accounts, EAccount *account)
{
    if (e_account_list_find (accounts, E_ACCOUNT_FIND_PARENT_UID, account->uid))
        return TRUE;

    return FALSE;
}
/**
 * e_account_list_add:
 * @accounts: 
 * @account: 
 * 
 * Add an account to the account list.  Will emit the account-changed
 * event.
 **/
void
e_account_list_add(EAccountList *accounts, EAccount *account)
{
    /* FIXME: should we check for duplicate accounts? */

    e_list_append ((EList *)accounts, account);
    g_signal_emit(accounts, signals[ACCOUNT_ADDED], 0, account);
}

/**
 * e_account_list_change:
 * @accounts: 
 * @account: 
 * 
 * Signal that the details of an account have changed.
 **/
void
e_account_list_change(EAccountList *accounts, EAccount *account)
{
    /* maybe the account should do this itself ... */
    g_signal_emit(accounts, signals[ACCOUNT_CHANGED], 0, account);
}

/**
 * e_account_list_remove:
 * @accounts: 
 * @account: 
 * 
 * Remove an account from the account list, and emit the
 * account-removed signal.  If the account was the default account,
 * then reset the default to the first account.
 **/
void
e_account_list_remove(EAccountList *accounts, EAccount *account)
{
    if (account == e_account_list_get_default(accounts))
        gconf_client_unset (accounts->priv->gconf, "/apps/evolution/mail/default_account", NULL);

    /* not sure if need to ref but no harm */
    g_object_ref (account);
    e_list_remove ((EList *) accounts, account);
    g_signal_emit(accounts, signals[ACCOUNT_REMOVED], 0, account);
    g_object_unref (account);
}

/**
 * e_account_list_get_default:
 * @accounts: 
 * 
 * Get the default account.  If no default is specified, or the default
 * has become stale, then the first account is made the default.
 * 
 * Return value: The account or NULL if no accounts are defined.
 **/
const EAccount *
e_account_list_get_default(EAccountList *accounts)
{
    char *uid;
    EIterator *it;
    const EAccount *account = NULL;

    uid = gconf_client_get_string (accounts->priv->gconf, "/apps/evolution/mail/default_account", NULL);
    it = e_list_get_iterator ((EList *)accounts);

    if (uid) {
        for (;e_iterator_is_valid (it);e_iterator_next (it)) {
            account = (const EAccount *)e_iterator_get (it);

            if (!strcmp(uid, account->uid))
                break;
            account = NULL;
        }
        e_iterator_reset(it);
    }

    /* no uid or uid not found, @it will be at the first account */
    if (account == NULL && e_iterator_is_valid(it)) {
        account = (const EAccount *) e_iterator_get (it);
        gconf_client_set_string (accounts->priv->gconf, "/apps/evolution/mail/default_account", account->uid, NULL);
    }

    g_object_unref(it);
    g_free(uid);

    return account;
}

/**
 * e_account_list_set_default:
 * @accounts: 
 * @account: 
 * 
 * Set the account @account to be the default account.
 **/
void
e_account_list_set_default(EAccountList *accounts, EAccount *account)
{
    gconf_client_set_string (accounts->priv->gconf, "/apps/evolution/mail/default_account", account->uid, NULL);
}

/**
 * e_account_list_find:
 * @accounts: 
 * @type: Type of search.
 * @key: Search key.
 * 
 * Perform a search of the account list on a single key.
 *
 * @type must be set from one of the following search types:
 * E_ACCOUNT_FIND_NAME - Find an account by account name.
 * E_ACCOUNT_FIND_ID_NAME - Find an account by the owner's identity name.
 * E_ACCOUNT_FIND_ID_ADDRESS - Find an account by the owner's identity address.
 * 
 * Return value: The account or NULL if it doesn't exist.
 **/
const EAccount *
e_account_list_find(EAccountList *accounts, e_account_find_t type, const char *key)
{
    char *val;
    EIterator *it;
    const EAccount *account = NULL;

    /* this could use a callback for more flexibility ...
       ... but this makes the common cases easier */

    if (!key)
        return NULL;
    
    for (it = e_list_get_iterator ((EList *)accounts);
         e_iterator_is_valid (it);
         e_iterator_next (it)) {
        int found = 0;

        account = (const EAccount *)e_iterator_get (it);

        val = NULL;
        switch(type) {
        case E_ACCOUNT_FIND_NAME:
            found = strcmp(account->name, key) == 0;
            break;
        case E_ACCOUNT_FIND_UID:
            found = strcmp(account->uid, key) == 0;
            break;
        case E_ACCOUNT_FIND_ID_NAME:
            if (account->id)
                found = strcmp(account->id->name, key) == 0;
            break;
        case E_ACCOUNT_FIND_ID_ADDRESS:
            if (account->id)
                found = g_ascii_strcasecmp(account->id->address, key) == 0;
            break;
        case E_ACCOUNT_FIND_PARENT_UID:
            if (account->parent_uid)
                found = strcmp(account->parent_uid, key) == 0;
            break;
        }

        if (found)
            break;

        account = NULL;
    }
    g_object_unref(it);

    return account;
}