aboutsummaryrefslogtreecommitdiffstats
path: root/mail/importers/pine-importer.c
blob: 9ce7f4520adb9a7be7ef4f970f99c9cd28d811bf (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
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/* pine-importer.c
 * 
 * Authors: 
 *    Iain Holmes  <iain@ximian.com>
 *    Michael Zucchi <notzed@ximian.com>
 *
 * Copyright 2001 Ximian, Inc. (www.ximian.com)
 * Copyright 2004 Novell, Inc.
 *
 * This program 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 program; 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 <stdio.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <dirent.h>
#include <ctype.h>
#include <string.h>

#include <glib.h>

#include <libgnomeui/gnome-messagebox.h>
#include <gtk/gtk.h>

#include <gconf/gconf.h>
#include <gconf/gconf-client.h>

#include <bonobo/bonobo-object.h>
#include <bonobo/bonobo-generic-factory.h>
#include <bonobo/bonobo-control.h>
#include <bonobo/bonobo-context.h>
#include <bonobo/bonobo-main.h>
#include <bonobo/bonobo-exception.h>
#include <bonobo/bonobo-moniker-util.h>

#include <importer/evolution-intelligent-importer.h>
#include <importer/evolution-importer-client.h>
#include <importer/GNOME_Evolution_Importer.h>

#include "mail-importer.h"

#include "mail/mail-mt.h"
#include "mail/mail-component.h"

#include <libebook/e-book.h>

#define KEY "pine-mail-imported"

/*#define SUPER_IMPORTER_DEBUG*/
#ifdef SUPER_IMPORTER_DEBUG
#define d(x) x
#else
#define d(x)
#endif

typedef struct {
    EvolutionIntelligentImporter *ii;

    GMutex *status_lock;
    char *status_what;
    int status_pc;
    int status_timeout_id;
    CamelOperation *cancel; /* cancel/status port */

    GtkWidget *mail;
    GtkWidget *address;

    gboolean do_mail;
    gboolean done_mail;
    gboolean do_address;
    gboolean done_address;

    /* GUI */
    GtkWidget *dialog;
    GtkWidget *label;
    GtkWidget *progressbar;
} PineImporter;

static void
pine_importer_response(GtkWidget *w, guint button, void *data)
{
    PineImporter *importer = data;

    if (button == GTK_RESPONSE_CANCEL
        && importer->cancel)
        camel_operation_cancel(importer->cancel);
}

static GtkWidget *
create_importer_gui (PineImporter *importer)
{
    GtkWidget *dialog;

    dialog = gtk_message_dialog_new(NULL, 0/*GTK_DIALOG_NO_SEPARATOR*/,
                    GTK_MESSAGE_INFO, GTK_BUTTONS_CANCEL,
                    _("Evolution is importing your old Pine data"));
    gtk_window_set_title (GTK_WINDOW (dialog), _("Importing..."));

    importer->label = gtk_label_new (_("Please wait"));
    importer->progressbar = gtk_progress_bar_new ();
    gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox), importer->label, FALSE, FALSE, 0);
    gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox), importer->progressbar, FALSE, FALSE, 0);
    g_signal_connect(dialog, "response", G_CALLBACK(pine_importer_response), importer);

    return dialog;
}

static void
pine_store_settings (PineImporter *importer)
{
    GConfClient *gconf = gconf_client_get_default ();

    gconf_client_set_bool (gconf, "/apps/evolution/importer/pine/mail", importer->done_mail, NULL);
    gconf_client_set_bool (gconf, "/apps/evolution/importer/pine/address", importer->done_address, NULL);
    g_object_unref(gconf);
}

static void
pine_restore_settings (PineImporter *importer)
{
    GConfClient *gconf = gconf_client_get_default ();

    importer->done_mail = gconf_client_get_bool (gconf, "/apps/evolution/importer/pine/mail", NULL);
    importer->done_address = gconf_client_get_bool (gconf, "/apps/evolution/importer/pine/address", NULL);
    g_object_unref(gconf);
}

static gboolean
pine_can_import (EvolutionIntelligentImporter *ii, void *closure)
{
    PineImporter *importer = closure;
    char *maildir, *addrfile;
    gboolean md_exists = FALSE, addr_exists = FALSE;
    struct stat st;
    
    maildir = g_build_filename(g_get_home_dir(), "mail", NULL);
    md_exists = lstat(maildir, &st) == 0 && S_ISDIR(st.st_mode);
    g_free (maildir);

    importer->do_mail = md_exists && !importer->done_mail;
    gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (importer->mail), importer->do_mail);
    gtk_widget_set_sensitive (importer->mail, md_exists);

    addrfile = g_build_filename(g_get_home_dir(), ".addressbook", NULL);
    addr_exists = lstat(addrfile, &st) == 0 && S_ISREG(st.st_mode);
    g_free (addrfile);

    gtk_widget_set_sensitive (importer->address, addr_exists);

    return md_exists || addr_exists;
}

/*
See: http://www.washington.edu/pine/tech-notes/low-level.html

addressbook line is:
     <nickname>TAB<fullname>TAB<address>TAB<fcc>TAB<comments>
lists, address is:
     "(" <address>, <address>, <address>, ... ")"

<address> is rfc822 address, or alias address.
if rfc822 address includes a phrase, then that overrides <fullname>

FIXME: we dont handle aliases in lists.
*/

static void
import_contact(EBook *book, char *line)
{
    char **strings, *addr, **addrs;
    int i;
    GList *list;
    /*EContactName *name;*/
    EContact *card;
    size_t len;

    card = e_contact_new();
    strings = g_strsplit(line, "\t", 5);
    if (strings[0] && strings[1] && strings[2]) {
        e_contact_set(card, E_CONTACT_NICKNAME, strings[0]);
        e_contact_set(card, E_CONTACT_FULL_NAME, strings[1]);

        addr = strings[2];
        len = strlen(addr);
        if (addr[0] == '(' && addr[len-1] == ')') {
            addr[0] = 0;
            addr[len-1] = 0;
            addrs = g_strsplit(addr+1, ",", 0);
            list = NULL;
            for (i=0;addrs[i];i++)
                list = g_list_append(list, addrs[i]);
            e_contact_set(card, E_CONTACT_EMAIL, list);
            g_strfreev(addrs);
            e_contact_set(card, E_CONTACT_IS_LIST, GINT_TO_POINTER(TRUE));
        } else {
            e_contact_set(card, E_CONTACT_EMAIL_1, strings[2]);
        }

        /*name = e_contact_name_from_string(strings[1]);*/

        if (strings[3] && strings[4])
            e_contact_set(card, E_CONTACT_NOTE, strings[4]);

        /* FIXME Error checking */
        e_book_add_contact(book, card, NULL);
        g_object_unref(card);
    }
    g_strfreev (strings);
}

static void
import_contacts(PineImporter *importer)
{
    ESource *primary;
    ESourceList *source_list;
    EBook *book;
    char *name;
    GString *line;
    FILE *fp;
    size_t offset;

    printf("importing pine addressbook\n");

    if (!e_book_get_addressbooks(&source_list, NULL))
        return;     

    name = g_build_filename(g_get_home_dir(), ".addressbook", NULL);
    fp = fopen(name, "r");
    g_free(name);
    if (fp == NULL)
        return;

    /* FIXME Better error handling */
    if ((book = e_book_new()) == NULL) {
        fclose(fp);
        g_warning ("Could not create EBook.");
        return;
    }
    
    primary = e_source_list_peek_source_any(source_list);
    e_book_load_source(book, primary, TRUE, NULL);
    g_object_unref(primary);
    g_object_unref(source_list);

    line = g_string_new("");
    g_string_set_size(line, 256);
    offset = 0;
    while (fgets(line->str+offset, 256, fp)) {
        size_t len;

        len = strlen(line->str+offset)+offset;
        if (line->str[len-1] == '\n')
            g_string_truncate(line, len-1);
        else if (!feof(fp)) {
            offset = len;
            g_string_set_size(line, len+256);
            continue;
        } else {
            g_string_truncate(line, len);
        }

        import_contact(book, line->str);
        offset = 0;
    }

    g_string_free(line, TRUE);
    fclose(fp);
    g_object_unref(book);
}

struct _pine_import_msg {
    struct _mail_msg msg;

    PineImporter *importer;
};

static char *
pine_import_describe (struct _mail_msg *mm, int complete)
{
    return g_strdup (_("Importing Pine data"));
}

static MailImporterSpecial pine_special_folders[] = {
    { "sent-mail", "Sent" }, /* pine */
    { "saved-messages", "Drafts" }, /* pine */
    { 0 },
};

static void
pine_import_import(struct _mail_msg *mm)
{
    struct _pine_import_msg *m = (struct _pine_import_msg *) mm;

    if (m->importer->do_address)
        import_contacts(m->importer);

    if (m->importer->do_mail) {
        char *path;

        path = g_build_filename(g_get_home_dir(), "mail", NULL);
        mail_importer_import_folders_sync(path, NULL, pine_special_folders, m->importer->cancel);
        g_free(path);
    }
}

static void
pine_import_imported(struct _mail_msg *mm)
{
}

static void
pine_import_free(struct _mail_msg *mm)
{
    /*struct _pine_import_msg *m = (struct _pine_import_msg *)mm;*/
}

static struct _mail_msg_op pine_import_op = {
    pine_import_describe,
    pine_import_import,
    pine_import_imported,
    pine_import_free,
};

static int
mail_importer_pine_import(PineImporter *importer)
{
    struct _pine_import_msg *m;
    int id;

    m = mail_msg_new(&pine_import_op, NULL, sizeof (*m));
    m->importer = importer;

    id = m->msg.seq;
    
    e_thread_put(mail_thread_queued, (EMsg *) m);

    return id;
}

static void
pine_status(CamelOperation *op, const char *what, int pc, void *data)
{
    PineImporter *importer = data;

    if (pc == CAMEL_OPERATION_START)
        pc = 0;
    else if (pc == CAMEL_OPERATION_END)
        pc = 100;

    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
pine_status_timeout(void *data)
{
    PineImporter *importer = data;
    int pc;
    char *what;

    if (!importer->status_what)
        return TRUE;

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

    gtk_progress_bar_set_fraction((GtkProgressBar *)importer->progressbar, (gfloat)(pc/100.0));
    gtk_progress_bar_set_text((GtkProgressBar *)importer->progressbar, what);
    
    return TRUE;
}

static void
pine_create_structure (EvolutionIntelligentImporter *ii, void *closure)
{
    PineImporter *importer = closure;

    if (importer->do_address || importer->do_mail) {
        importer->dialog = create_importer_gui (importer);
        gtk_widget_show_all (importer->dialog);
        importer->status_timeout_id = g_timeout_add(100, pine_status_timeout, importer);
        importer->cancel = camel_operation_new(pine_status, importer);

        mail_msg_wait(mail_importer_pine_import(importer));

        camel_operation_unref(importer->cancel);
        g_source_remove(importer->status_timeout_id);
        importer->status_timeout_id = 0;

        if (importer->do_address)
            importer->done_address = TRUE;
        if (importer->do_mail)
            importer->done_mail = TRUE;
    }

    pine_store_settings (importer);

    bonobo_object_unref (BONOBO_OBJECT (ii));
}

static void
pine_destroy_cb (PineImporter *importer, GtkObject *object)
{
    pine_store_settings (importer);

    if (importer->status_timeout_id)
        g_source_remove(importer->status_timeout_id);
    g_mutex_free(importer->status_lock);

    if (importer->dialog)
        gtk_widget_destroy(importer->dialog);
}

/* Fun inity stuff */

/* Fun control stuff */
static void
checkbox_toggle_cb(GtkToggleButton *tb, gboolean *do_item)
{
    *do_item = gtk_toggle_button_get_active(tb);
}

static BonoboControl *
create_checkboxes_control (PineImporter *importer)
{
    GtkWidget *hbox;
    BonoboControl *control;

    hbox = gtk_hbox_new (FALSE, 2);

    importer->mail = gtk_check_button_new_with_label (_("Mail"));
    gtk_signal_connect (GTK_OBJECT (importer->mail), "toggled",
                GTK_SIGNAL_FUNC (checkbox_toggle_cb),
                &importer->do_mail);

    importer->address = gtk_check_button_new_with_label (_("Addressbook"));
    gtk_signal_connect (GTK_OBJECT (importer->address), "toggled",
                GTK_SIGNAL_FUNC (checkbox_toggle_cb),
                &importer->do_address);

    gtk_box_pack_start (GTK_BOX (hbox), importer->mail, FALSE, FALSE, 0);
    gtk_box_pack_start (GTK_BOX (hbox), importer->address, FALSE, FALSE, 0);

    gtk_widget_show_all (hbox);
    control = bonobo_control_new (hbox);
    return control;
}

BonoboObject *
pine_intelligent_importer_new(void)
{
    EvolutionIntelligentImporter *importer;
    BonoboControl *control;
    PineImporter *pine;
    char *message = N_("Evolution has found Pine mail files.\n"
               "Would you like to import them into Evolution?");

    pine = g_new0 (PineImporter, 1);

    pine->status_lock = g_mutex_new();

    pine_restore_settings (pine);

    importer = evolution_intelligent_importer_new (pine_can_import,
                               pine_create_structure,
                               _("Pine"),
                               _(message), pine);
    g_object_weak_ref((GObject *)importer, (GWeakNotify)pine_destroy_cb, pine);
    pine->ii = importer;

    control = create_checkboxes_control (pine);
    bonobo_object_add_interface (BONOBO_OBJECT (importer),
                     BONOBO_OBJECT (control));
    return BONOBO_OBJECT (importer);
}