aboutsummaryrefslogtreecommitdiffstats
path: root/mail/importers/elm-importer.c
blob: 24db1041e361159717cb220288b97ccd84474830 (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
/*
 * 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/>
 *
 *
 * Authors:
 *      Iain Holmes  <iain@ximian.com>
 *      Michael Zucchi <notzed@ximian.com>
 *
 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
 *
 */

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

#include <stdio.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <dirent.h>
#include <string.h>

#include <gtk/gtk.h>
#include <glib/gi18n.h>

#include "mail-importer.h"

#include "libemail-utils/mail-mt.h"
#include "mail/e-mail-backend.h"
#include "e-util/e-import.h"
#include "shell/e-shell.h"

#define d(x)

struct _elm_import_msg {
    MailMsg base;

    EImport *import;
    EImportTargetHome *target;

    GMutex *status_lock;
    gchar *status_what;
    gint status_pc;
    gint status_timeout_id;
    GCancellable *status;
};

static GHashTable *
parse_elm_rc (const gchar *elmrc)
{
    gchar line[4096];
    FILE *handle;
    GHashTable *prefs;

    prefs = g_hash_table_new_full (
        g_str_hash, g_str_equal,
        (GDestroyNotify) g_free,
        (GDestroyNotify) g_free);

    if (!g_file_test (elmrc, G_FILE_TEST_IS_REGULAR))
        return prefs;

    handle = fopen (elmrc, "r");
    if (handle == NULL)
        return prefs;

    while (fgets (line, 4096, handle) != NULL) {
        gchar *linestart, *end;
        gchar *key, *value;
        if (*line == '#' &&
            (line[1] != '#' && line[2] != '#')) {
            continue;
        } else if (*line == '\n') {
            continue;
        } else if (*line == '#' && line[1] == '#' && line[2] == '#') {
            linestart = line + 4;
        } else {
            linestart = line;
        }

        end = strstr (linestart, " = ");
        if (end == NULL) {
            g_warning ("Broken line");
            continue;
        }

        *end = 0;
        key = g_strdup (linestart);

        linestart = end + 3;
        end = strchr (linestart, '\n');
        if (end == NULL) {
            g_warning ("Broken line");
            g_free (key);
            continue;
        }

        *end = 0;
        value = g_strdup (linestart);

        g_hash_table_insert (prefs, key, value);
    }

    fclose (handle);

    return prefs;
}

static gchar *
elm_get_rc (EImport *ei,
            const gchar *name)
{
    GHashTable *prefs;
    gchar *elmrc;

    prefs = g_object_get_data((GObject *)ei, "elm-rc");
    if (prefs == NULL) {
        elmrc = g_build_filename(g_get_home_dir(), ".elm/elmrc", NULL);
        prefs = parse_elm_rc (elmrc);
        g_free (elmrc);
        g_object_set_data((GObject *)ei, "elm-rc", prefs);
    }

    if (prefs == NULL)
        return NULL;
    else
        return g_hash_table_lookup (prefs, name);
}

static gboolean
elm_supported (EImport *ei,
               EImportTarget *target,
               EImportImporter *im)
{
    const gchar *maildir;
    gchar *elmdir;
    gboolean mailexists, exists;

    if (target->type != E_IMPORT_TARGET_HOME)
        return FALSE;

    elmdir = g_build_filename(g_get_home_dir (), ".elm", NULL);
    exists = g_file_test (elmdir, G_FILE_TEST_IS_DIR);
    g_free (elmdir);
    if (!exists)
        return FALSE;

    maildir = elm_get_rc(ei, "maildir");
    if (maildir == NULL)
        maildir = "Mail";

    if (!g_path_is_absolute (maildir))
        elmdir = g_build_filename (g_get_home_dir (), maildir, NULL);
    else
        elmdir = g_strdup (maildir);

    mailexists = g_file_test (elmdir, G_FILE_TEST_IS_DIR);
    g_free (elmdir);

    return mailexists;
}

static gchar *
elm_import_desc (struct _elm_import_msg *m)
{
    return g_strdup (_("Importing Elm data"));
}

static MailImporterSpecial elm_special_folders[] = {
    { "received", "Inbox" },
    { NULL },
};

static void
elm_import_exec (struct _elm_import_msg *m,
                 GCancellable *cancellable,
                 GError **error)
{
    EShell *shell;
    EShellBackend *shell_backend;
    EMailSession *session;
    const gchar *maildir;
    gchar *elmdir;

    /* XXX Dig up the EMailSession from the default EShell.
     *     Since the EImport framework doesn't allow for user
     *     data, I don't see how else to get to it. */
    shell = e_shell_get_default ();
    shell_backend = e_shell_get_backend_by_name (shell, "mail");
    session = e_mail_backend_get_session (E_MAIL_BACKEND (shell_backend));

    maildir = elm_get_rc(m->import, "maildir");
    if (maildir == NULL)
        maildir = "Mail";

    if (!g_path_is_absolute (maildir))
        elmdir = g_build_filename (g_get_home_dir (), maildir, NULL);
    else
        elmdir = g_strdup (maildir);

    mail_importer_import_folders_sync (
        session, elmdir, elm_special_folders, 0, m->status);
    g_free (elmdir);
}

static void
elm_import_done (struct _elm_import_msg *m)
{
    e_import_complete (m->import, (EImportTarget *) m->target);
}

static void
elm_import_free (struct _elm_import_msg *m)
{
    g_object_unref (m->status);

    g_free (m->status_what);
    g_mutex_free (m->status_lock);

    g_source_remove (m->status_timeout_id);
    m->status_timeout_id = 0;

    g_object_unref (m->import);
}

static void
elm_status (CamelOperation *op,
            const gchar *what,
            gint pc,
            gpointer data)
{
    struct _elm_import_msg *importer = data;

    g_mutex_lock (importer->status_lock);
    g_free (importer->status_what);
    importer->status_what = g_strdup (what);
    importer->status_pc = pc;
    g_mutex_unlock (importer->status_lock);
}

static gboolean
elm_status_timeout (gpointer data)
{
    struct _elm_import_msg *importer = data;
    gint pc;
    gchar *what;

    if (importer->status_what) {
        g_mutex_lock (importer->status_lock);
        what = importer->status_what;
        importer->status_what = NULL;
        pc = importer->status_pc;
        g_mutex_unlock (importer->status_lock);

        e_import_status (
            importer->import, (EImportTarget *)
            importer->target, what, pc);
    }

    return TRUE;
}

static MailMsgInfo elm_import_info = {
    sizeof (struct _elm_import_msg),
    (MailMsgDescFunc) elm_import_desc,
    (MailMsgExecFunc) elm_import_exec,
    (MailMsgDoneFunc) elm_import_done,
    (MailMsgFreeFunc) elm_import_free
};

static gint
mail_importer_elm_import (EImport *ei,
                          EImportTarget *target)
{
    struct _elm_import_msg *m;
    gint id;

    m = mail_msg_new (&elm_import_info);
    g_datalist_set_data(&target->data, "elm-msg", m);
    m->import = ei;
    g_object_ref (m->import);
    m->target = (EImportTargetHome *) target;
    m->status_timeout_id = g_timeout_add (100, elm_status_timeout, m);
    m->status_lock = g_mutex_new ();
    m->status = camel_operation_new ();

    g_signal_connect (
        m->status, "status",
        G_CALLBACK (elm_status), m);

    id = m->base.seq;

    mail_msg_fast_ordered_push (m);

    return id;
}

static void
checkbox_toggle_cb (GtkToggleButton *tb,
                    EImportTarget *target)
{
    g_datalist_set_data (
        &target->data, "elm-do-mail",
        GINT_TO_POINTER (gtk_toggle_button_get_active (tb)));
}

static GtkWidget *
elm_getwidget (EImport *ei,
               EImportTarget *target,
               EImportImporter *im)
{
    GtkWidget *box, *w;

    g_datalist_set_data (
        &target->data, "elm-do-mail", GINT_TO_POINTER(TRUE));

    box = gtk_vbox_new (FALSE, 2);

    w = gtk_check_button_new_with_label(_("Mail"));
    gtk_toggle_button_set_active ((GtkToggleButton *) w, TRUE);
    g_signal_connect (
        w, "toggled",
        G_CALLBACK (checkbox_toggle_cb), target);

    gtk_box_pack_start ((GtkBox *) box, w, FALSE, FALSE, 0);
    gtk_widget_show_all (box);

    return box;
}

static void
elm_import (EImport *ei,
            EImportTarget *target,
            EImportImporter *im)
{
    if (GPOINTER_TO_INT(g_datalist_get_data(&target->data, "elm-do-mail")))
        mail_importer_elm_import (ei, target);
    else
        e_import_complete (ei, target);
}

static void
elm_cancel (EImport *ei,
            EImportTarget *target,
            EImportImporter *im)
{
    struct _elm_import_msg *m = g_datalist_get_data(&target->data, "elm-msg");

    if (m)
        g_cancellable_cancel (m->status);
}

static EImportImporter elm_importer = {
    E_IMPORT_TARGET_HOME,
    0,
    elm_supported,
    elm_getwidget,
    elm_import,
    elm_cancel,
    NULL, /* get_preview */
};

EImportImporter *
elm_importer_peek (void)
{
    elm_importer.name = _("Evolution Elm importer");
    elm_importer.description = _("Import mail from Elm.");

    return &elm_importer;
}