aboutsummaryrefslogtreecommitdiffstats
path: root/modules/mail/em-account-prefs.c
blob: e309d2c4ba81116b8da88c42ebfb6e51077577b9 (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
/*
 * em-account-prefs.c
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) version 3.
 *
 * 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with the program; if not, see <http://www.gnu.org/licenses/>
 *
 *
 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
 *
 */

/* XXX EAccountManager handles all the user interface stuff.  This subclass
 *     applies policies using mailer resources that EAccountManager does not
 *     have access to.  The desire is to someday move account management
 *     completely out of the mailer, perhaps to evolution-data-server. */

#include "em-account-prefs.h"

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

#include <glib/gi18n.h>

#include "e-util/e-alert-dialog.h"
#include "e-util/e-account-utils.h"

#include "e-mail-backend.h"
#include "e-mail-store.h"
#include "em-config.h"
#include "em-account-editor.h"
#include "shell/e-shell.h"
#include "capplet/settings/mail-capplet-shell.h"

#define EM_ACCOUNT_PREFS_GET_PRIVATE(obj) \
    (G_TYPE_INSTANCE_GET_PRIVATE \
    ((obj), EM_TYPE_ACCOUNT_PREFS, EMAccountPrefsPrivate))

struct _EMAccountPrefsPrivate {
    EMailSession *session;
    gpointer assistant; /* weak pointer */
    gpointer editor;    /* weak pointer */
};

enum {
    PROP_0,
    PROP_SESSION
};

G_DEFINE_TYPE (
    EMAccountPrefs,
    em_account_prefs,
    E_TYPE_ACCOUNT_MANAGER)

static void
account_prefs_enable_account_cb (EAccountTreeView *tree_view,
                                 EMAccountPrefs *prefs)
{
    EAccount *account;

    account = e_account_tree_view_get_selected (tree_view);
    g_return_if_fail (account != NULL);

    e_mail_store_add_by_uri (
        prefs->priv->session, account->source->url, account->name);
}

static void
account_prefs_disable_account_cb (EAccountTreeView *tree_view,
                                  EMAccountPrefs *prefs)
{
    EAccountList *account_list;
    EAccount *account;
    gpointer parent;
    gint response;

    account = e_account_tree_view_get_selected (tree_view);
    g_return_if_fail (account != NULL);

    account_list = e_account_tree_view_get_account_list (tree_view);
    g_return_if_fail (account_list != NULL);

    if (!e_account_list_account_has_proxies (account_list, account)) {
        e_mail_store_remove_by_uri (prefs->priv->session, account->source->url);
        return;
    }

    parent = gtk_widget_get_toplevel (GTK_WIDGET (tree_view));
    parent = gtk_widget_is_toplevel (parent) ? parent : NULL;

    response = e_alert_run_dialog_for_args (
        parent, "mail:ask-delete-proxy-accounts", NULL);

    if (response != GTK_RESPONSE_YES) {
        g_signal_stop_emission_by_name (tree_view, "disable-account");
        return;
    }

    e_account_list_remove_account_proxies (account_list, account);

    e_mail_store_remove_by_uri (
        prefs->priv->session, account->source->url);
}

static void
account_prefs_set_session (EMAccountPrefs *prefs,
                           EMailSession *session)
{
    g_return_if_fail (E_IS_MAIL_SESSION (session));
    g_return_if_fail (prefs->priv->session == NULL);

    prefs->priv->session = g_object_ref (session);
}

static void
account_prefs_set_property (GObject *object,
                            guint property_id,
                            const GValue *value,
                            GParamSpec *pspec)
{
    switch (property_id) {
        case PROP_SESSION:
            account_prefs_set_session (
                EM_ACCOUNT_PREFS (object),
                g_value_get_object (value));
            return;
    }

    G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
}

static void
account_prefs_get_property (GObject *object,
                            guint property_id,
                            GValue *value,
                            GParamSpec *pspec)
{
    switch (property_id) {
        case PROP_SESSION:
            g_value_set_object (
                value,
                em_account_prefs_get_session (
                EM_ACCOUNT_PREFS (object)));
            return;
    }

    G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
}

static void
account_prefs_dispose (GObject *object)
{
    EMAccountPrefsPrivate *priv;

    priv = EM_ACCOUNT_PREFS_GET_PRIVATE (object);

    if (priv->session != NULL) {
        g_object_unref (priv->session);
        priv->session = NULL;
    }

    if (priv->assistant != NULL) {
        g_object_remove_weak_pointer (
            G_OBJECT (priv->assistant), &priv->assistant);
        priv->assistant = NULL;
    }

    if (priv->editor != NULL) {
        g_object_remove_weak_pointer (
            G_OBJECT (priv->editor), &priv->editor);
        priv->editor = NULL;
    }

    /* Chain up to parent's dispose() method. */
    G_OBJECT_CLASS (em_account_prefs_parent_class)->dispose (object);
}

static void
account_prefs_add_account (EAccountManager *manager)
{
    EMAccountPrefsPrivate *priv;
    EMAccountEditor *emae;
    gpointer parent;

    priv = EM_ACCOUNT_PREFS_GET_PRIVATE (manager);

    if (priv->assistant != NULL) {
        gtk_window_present (GTK_WINDOW (priv->assistant));
        return;
    }

    parent = gtk_widget_get_toplevel (GTK_WIDGET (manager));
    parent = gtk_widget_is_toplevel (parent) ? parent : NULL;

    if (!e_shell_get_express_mode (e_shell_get_default ())) {
        /** @HookPoint-EMConfig: New Mail Account Assistant
         * @Id: org.gnome.evolution.mail.config.accountAssistant
         * @Type: E_CONFIG_ASSISTANT
         * @Class: org.gnome.evolution.mail.config:1.0
         * @Target: EMConfigTargetAccount
         *
         * The new mail account assistant.
         */
        emae = em_account_editor_new (
            NULL, EMAE_ASSISTANT, priv->session,
            "org.gnome.evolution.mail.config.accountAssistant");
        e_config_create_window (
            E_CONFIG (emae->config), NULL,
            _("Evolution Account Assistant"));
        priv->assistant = E_CONFIG (emae->config)->window;
        g_object_set_data_full (
            G_OBJECT (priv->assistant), "AccountEditor",
            emae, (GDestroyNotify) g_object_unref);
    } else {
        priv->assistant = mail_capplet_shell_new (0, TRUE, FALSE);
    }

    g_object_add_weak_pointer (G_OBJECT (priv->assistant), &priv->assistant);
    gtk_window_set_transient_for (GTK_WINDOW (priv->assistant), parent);
    gtk_widget_show (priv->assistant);
}

static void
account_prefs_edit_account (EAccountManager *manager)
{
    EMAccountPrefsPrivate *priv;
    EMAccountEditor *emae;
    EAccountTreeView *tree_view;
    EAccount *account;
    gpointer parent;

    priv = EM_ACCOUNT_PREFS_GET_PRIVATE (manager);

    if (priv->editor != NULL) {
        gtk_window_present (GTK_WINDOW (priv->editor));
        return;
    }

    tree_view = e_account_manager_get_tree_view (manager);
    account = e_account_tree_view_get_selected (tree_view);
    g_return_if_fail (account != NULL);

    parent = gtk_widget_get_toplevel (GTK_WIDGET (manager));
    parent = gtk_widget_is_toplevel (parent) ? parent : NULL;

    /** @HookPoint-EMConfig: Mail Account Editor
     * @Id: org.gnome.evolution.mail.config.accountEditor
     * @Type: E_CONFIG_BOOK
     * @Class: org.gnome.evolution.mail.config:1.0
     * @Target: EMConfigTargetAccount
     *
     * The account editor window.
     */
    emae = em_account_editor_new (
        account, EMAE_NOTEBOOK, priv->session,
        "org.gnome.evolution.mail.config.accountEditor");
    e_config_create_window (
        E_CONFIG (emae->config), parent, _("Account Editor"));
    priv->editor = E_CONFIG (emae->config)->window;
    g_object_set_data_full (
        G_OBJECT (priv->editor), "AccountEditor",
        emae, (GDestroyNotify) g_object_unref);

    g_object_add_weak_pointer (G_OBJECT (priv->editor), &priv->editor);
    gtk_widget_show (priv->editor);
}

static void
account_prefs_delete_account (EAccountManager *manager)
{
    EMAccountPrefsPrivate *priv;
    EAccountTreeView *tree_view;
    EAccountList *account_list;
    EAccount *account;
    gboolean has_proxies;
    gpointer parent;
    gint response;

    priv = EM_ACCOUNT_PREFS_GET_PRIVATE (manager);

    account_list = e_account_manager_get_account_list (manager);
    tree_view = e_account_manager_get_tree_view (manager);
    account = e_account_tree_view_get_selected (tree_view);
    g_return_if_fail (account != NULL);

    /* Make sure we aren't editing anything... */
    if (priv->editor != NULL)
        return;

    parent = gtk_widget_get_toplevel (GTK_WIDGET (manager));
    parent = gtk_widget_is_toplevel (parent) ? parent : NULL;

    has_proxies =
        e_account_list_account_has_proxies (account_list, account);

    response = e_alert_run_dialog_for_args (
        parent, has_proxies ?
        "mail:ask-delete-account-with-proxies" :
        "mail:ask-delete-account", NULL);

    if (response != GTK_RESPONSE_YES) {
        g_signal_stop_emission_by_name (manager, "delete-account");
        return;
    }

    /* Remove the account from the folder tree. */
    if (account->enabled && account->source && account->source->url)
        e_mail_store_remove_by_uri (
            priv->session, account->source->url);

    /* Remove all the proxies the account has created. */
    if (has_proxies)
        e_account_list_remove_account_proxies (account_list, account);

    /* Remove it from the config file. */
    e_account_list_remove (account_list, account);

    e_account_list_save (account_list);
}

static void
em_account_prefs_class_init (EMAccountPrefsClass *class)
{
    GObjectClass *object_class;
    EAccountManagerClass *account_manager_class;

    g_type_class_add_private (class, sizeof (EMAccountPrefsPrivate));

    object_class = G_OBJECT_CLASS (class);
    object_class->set_property = account_prefs_set_property;
    object_class->get_property = account_prefs_get_property;
    object_class->dispose = account_prefs_dispose;

    account_manager_class = E_ACCOUNT_MANAGER_CLASS (class);
    account_manager_class->add_account = account_prefs_add_account;
    account_manager_class->edit_account = account_prefs_edit_account;
    account_manager_class->delete_account = account_prefs_delete_account;

    g_object_class_install_property (
        object_class,
        PROP_SESSION,
        g_param_spec_object (
            "session",
            NULL,
            NULL,
            E_TYPE_MAIL_SESSION,
            G_PARAM_READWRITE |
            G_PARAM_CONSTRUCT_ONLY));
}

static void
em_account_prefs_init (EMAccountPrefs *prefs)
{
    EAccountManager *manager;
    EAccountTreeView *tree_view;

    prefs->priv = EM_ACCOUNT_PREFS_GET_PRIVATE (prefs);

    manager = E_ACCOUNT_MANAGER (prefs);
    tree_view = e_account_manager_get_tree_view (manager);

    g_signal_connect (
        tree_view, "enable-account",
        G_CALLBACK (account_prefs_enable_account_cb), prefs);

    g_signal_connect (
        tree_view, "disable-account",
        G_CALLBACK (account_prefs_disable_account_cb), prefs);
}

GtkWidget *
em_account_prefs_new (EPreferencesWindow *window)
{
    EShell *shell;
    EShellBackend *shell_backend;
    EMailBackend *backend;
    EMailSession *session;
    EAccountList *account_list;

    account_list = e_get_account_list ();
    g_return_val_if_fail (E_IS_ACCOUNT_LIST (account_list), NULL);

    /* XXX Figure out a better way to get the EMailSession. */
    shell = e_preferences_window_get_shell (window);
    shell_backend = e_shell_get_backend_by_name (shell, "mail");

    backend = E_MAIL_BACKEND (shell_backend);
    session = e_mail_backend_get_session (backend);

    return g_object_new (
        EM_TYPE_ACCOUNT_PREFS,
        "account-list", account_list,
        "session", session, NULL);
}

EMailSession *
em_account_prefs_get_session (EMAccountPrefs *prefs)
{
    g_return_val_if_fail (EM_IS_ACCOUNT_PREFS (prefs), NULL);

    return prefs->priv->session;
}