/* * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client * Copyright (C) 1999-2009 Hiroyuki Yamamoto * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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 "defs.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "main.h" #include "inc.h" #include "mbox.h" #include "folderview.h" #include "menu.h" #include "filesel.h" #include "foldersel.h" #include "gtkutils.h" #include "manage_window.h" #include "folder.h" #include "procmsg.h" #include "procheader.h" #include "progressdialog.h" #include "alertpanel.h" enum { IMPORT_MBOX, IMPORT_EML_FOLDER }; static GtkWidget *window; static GtkWidget *format_optmenu; static GtkWidget *desc_label; static GtkWidget *file_label; static GtkWidget *file_entry; static GtkWidget *dest_entry; static GtkWidget *file_button; static GtkWidget *dest_button; static GtkWidget *ok_button; static GtkWidget *cancel_button; static gboolean import_finished; static gboolean import_ack; static ProgressDialog *progress; static void import_create (void); static gint import_do (void); static gint import_eml_folder (FolderItem *dest, const gchar *path); static void import_format_menu_cb (GtkWidget *widget, gpointer data); static void import_ok_cb (GtkWidget *widget, gpointer data); static void import_cancel_cb (GtkWidget *widget, gpointer data); static void import_filesel_cb (GtkWidget *widget, gpointer data); static void import_destsel_cb (GtkWidget *widget, gpointer data); static gint delete_event (GtkWidget *widget, GdkEventAny *event, gpointer data); static gboolean key_pressed (GtkWidget *widget, GdkEventKey *event, gpointer data); static void proc_mbox_func(Folder *folder, FolderItem *item, gpointer data) { gchar str[64]; gint count = GPOINTER_TO_INT(data); static GTimeVal tv_prev = {0, 0}; GTimeVal tv_cur; g_get_current_time(&tv_cur); g_snprintf(str, sizeof(str), "%d", count); gtk_progress_bar_set_text(GTK_PROGRESS_BAR(progress->progressbar), str); if (tv_prev.tv_sec == 0 || (tv_cur.tv_sec - tv_prev.tv_sec) * G_USEC_PER_SEC + tv_cur.tv_usec - tv_prev.tv_usec > 100 * 1000) { gtk_progress_bar_pulse(GTK_PROGRESS_BAR(progress->progressbar)); ui_update(); tv_prev = tv_cur; } } gint import_mail(FolderItem *default_dest) { gint ok = 0; gchar *dest_id = NULL; import_create(); if (default_dest && default_dest->path) dest_id = folder_item_get_identifier(default_dest); if (dest_id) { gtk_entry_set_text(GTK_ENTRY(dest_entry), dest_id); g_free(dest_id); } gtk_widget_grab_focus(file_entry); manage_window_set_transient(GTK_WINDOW(window)); import_finished = FALSE; import_ack = FALSE; inc_lock(); while (!import_finished) gtk_main_iteration(); if (import_ack) ok = import_do(); gtk_widget_destroy(window); window = NULL; format_optmenu = NULL; desc_label = file_label = NULL; file_entry = dest_entry = NULL; file_button = dest_button = ok_button = cancel_button = NULL; inc_unlock(); return ok; } static gint import_do(void) { gint ok = 0; const gchar *utf8filename, *destdir; FolderItem *dest; gchar *filename; gchar *msg; gint type; type = menu_get_option_menu_active_index (GTK_OPTION_MENU(format_optmenu)); utf8filename = gtk_entry_get_text(GTK_ENTRY(file_entry)); destdir = gtk_entry_get_text(GTK_ENTRY(dest_entry)); if (!utf8filename || !*utf8filename) return -1; filename = g_filename_from_utf8(utf8filename, -1, NULL, NULL, NULL); if (!filename) { g_warning("faild to convert character set."); filename = g_strdup(utf8filename); } if (!g_file_test(filename, G_FILE_TEST_EXISTS)) { alertpanel_error(_("The source file does not exist.")); g_free(filename); return -1; } if (!destdir || !*destdir) { dest = folder_find_item_from_path(INBOX_DIR); } else dest = folder_find_item_from_identifier(destdir); if (!dest) { alertpanel_error(_("Can't find the destination folder.")); g_free(filename); return -1; } msg = g_strdup_printf(_("Importing %s ..."), g_basename(utf8filename)); progress = progress_dialog_simple_create(); gtk_window_set_title(GTK_WINDOW(progress->window), _("Importing")); progress_dialog_set_label(progress, msg); g_free(msg); gtk_window_set_modal(GTK_WINDOW(progress->window), TRUE); manage_window_set_transient(GTK_WINDOW(progress->window)); gtk_widget_hide(progress->cancel_btn); g_signal_connect(G_OBJECT(progress->window), "delete_event", G_CALLBACK(gtk_true), NULL); gtk_widget_show(progress->window); ui_update(); if (type == IMPORT_MBOX) { folder_set_ui_func(dest->folder, proc_mbox_func, NULL); ok = proc_mbox(dest, filename, NULL); folder_set_ui_func(dest->folder, NULL, NULL); } else if (type == IMPORT_EML_FOLDER) { ok = import_eml_folder(dest, filename); } progress_dialog_set_label(progress, _("Scanning folder...")); ui_update(); folder_item_scan(dest); folderview_update_item(dest, TRUE); progress_dialog_destroy(progress); progress = NULL; g_free(filename); if (ok < 0) alertpanel_error(_("Error occurred on import.")); return ok; } static gint import_eml_folder(FolderItem *dest, const gchar *path) { GDir *dir; const gchar *dir_name, *p; gchar *file; MsgInfo *msginfo; MsgFlags flags = {MSG_NEW|MSG_UNREAD, MSG_RECEIVED}; gint count = 0; gint ok = 0; g_return_val_if_fail(dest != NULL, -1); g_return_val_if_fail(path != NULL, -1); if ((dir = g_dir_open(path, 0, NULL)) == NULL) { g_warning("failed to open directory: %s", path); return -1; } while ((dir_name = g_dir_read_name(dir)) != NULL) { if (((p = strrchr(dir_name, '.')) && !g_ascii_strcasecmp(p + 1, "eml")) || to_number(dir_name) > 0) { file = g_strconcat(path, G_DIR_SEPARATOR_S, dir_name, NULL); if (!g_file_test(file, G_FILE_TEST_IS_REGULAR)) { g_free(file); continue; } msginfo = procheader_parse_file(file, flags, FALSE); if (!msginfo) { g_warning("import_eml_folder(): procheader_parse_file() failed."); g_free(file); continue; } msginfo->file_path = file; file = NULL; count++; proc_mbox_func(dest->folder, dest, GINT_TO_POINTER(count)); ok = folder_item_add_msg_msginfo(dest, msginfo, FALSE); procmsg_msginfo_free(msginfo); if (ok < 0) { g_warning("import_eml_folder(): folder_item_add_msg_msginfo() failed."); break; } } } g_dir_close(dir); return ok; } static void import_create(void) { GtkWidget *vbox; GtkWidget *hbox; GtkWidget *table; GtkWidget *menu; GtkWidget *menuitem; GtkWidget *format_label; GtkWidget *dest_label; GtkWidget *confirm_area; window = gtk_window_new(GTK_WINDOW_TOPLEVEL); gtk_window_set_title(GTK_WINDOW(window), _("Import")); gtk_container_set_border_width(GTK_CONTAINER(window), 5); gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER); gtk_window_set_modal(GTK_WINDOW(window), TRUE); gtk_window_set_policy(GTK_WINDOW(window), FALSE, TRUE, FALSE); g_signal_connect(G_OBJECT(window), "delete_event", G_CALLBACK(delete_event), NULL); g_signal_connect(G_OBJECT(window), "key_press_event", G_CALLBACK(key_pressed), NULL); MANAGE_WINDOW_SIGNALS_CONNECT(window); vbox = gtk_vbox_new(FALSE, 4); gtk_container_add(GTK_CONTAINER(window), vbox); hbox = gtk_hbox_new(FALSE, 0); gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); gtk_container_set_border_width(GTK_CONTAINER(hbox), 4); desc_label = gtk_label_new (_("Specify source file and destination folder.")); gtk_box_pack_start(GTK_BOX(hbox), desc_label, FALSE, FALSE, 0); table = gtk_table_new(2, 3, FALSE); gtk_box_pack_start(GTK_BOX(vbox), table, FALSE, FALSE, 0); gtk_container_set_border_width(GTK_CONTAINER(table), 8); gtk_table_set_row_spacings(GTK_TABLE(table), 8); gtk_table_set_col_spacings(GTK_TABLE(table), 8); gtk_widget_set_size_request(table, 420, -1); format_label = gtk_label_new(_("File format:")); gtk_table_attach(GTK_TABLE(table), format_label, 0, 1, 0, 1, GTK_FILL, GTK_EXPAND|GTK_FILL, 0, 0); gtk_misc_set_alignment(GTK_MISC(format_label), 1, 0.5); file_label = gtk_label_new(_("Source:")); gtk_table_attach(GTK_TABLE(table), file_label, 0, 1, 1, 2, GTK_FILL, GTK_EXPAND|GTK_FILL, 0, 0); gtk_misc_set_alignment(GTK_MISC(file_label), 1, 0.5); dest_label = gtk_label_new(_("Destination folder:")); gtk_table_attach(GTK_TABLE(table), dest_label, 0, 1, 2, 3, GTK_FILL, GTK_EXPAND|GTK_FILL, 0, 0); gtk_misc_set_alignment(GTK_MISC(dest_label), 1, 0.5); format_optmenu = gtk_option_menu_new(); gtk_table_attach(GTK_TABLE(table), format_optmenu, 1, 2, 0, 1, GTK_EXPAND|GTK_SHRINK|GTK_FILL, 0, 0, 0); menu = gtk_menu_new(); MENUITEM_ADD(menu, menuitem, _("UNIX mbox"), IMPORT_MBOX); g_signal_connect(G_OBJECT(menuitem), "activate", G_CALLBACK(import_format_menu_cb), NULL); MENUITEM_ADD(menu, menuitem, _("eml (folder)"), IMPORT_EML_FOLDER); g_signal_connect(G_OBJECT(menuitem), "activate", G_CALLBACK(import_format_menu_cb), NULL); gtk_option_menu_set_menu(GTK_OPTION_MENU(format_optmenu), menu); file_entry = gtk_entry_new(); gtk_table_attach(GTK_TABLE(table), file_entry, 1, 2, 1, 2, GTK_EXPAND|GTK_SHRINK|GTK_FILL, 0, 0, 0); dest_entry = gtk_entry_new(); gtk_table_attach(GTK_TABLE(table), dest_entry, 1, 2, 2, 3, GTK_EXPAND|GTK_SHRINK|GTK_FILL, 0, 0, 0); file_button = gtk_button_new_with_label(_(" Select... ")); gtk_table_attach(GTK_TABLE(table), file_button, 2, 3, 1, 2, 0, 0, 0, 0); g_signal_connect(G_OBJECT(file_button), "clicked", G_CALLBACK(import_filesel_cb), NULL); dest_button = gtk_button_new_with_label(_(" Select... ")); gtk_table_attach(GTK_TABLE(table), dest_button, 2, 3, 2, 3, 0, 0, 0, 0); g_signal_connect(G_OBJECT(dest_button), "clicked", G_CALLBACK(import_destsel_cb), NULL); gtkut_stock_button_set_create(&confirm_area, &ok_button, GTK_STOCK_OK, &cancel_button, GTK_STOCK_CANCEL, NULL, NULL); gtk_box_pack_end(GTK_BOX(vbox), confirm_area, FALSE, FALSE, 0); gtk_widget_grab_default(ok_button); g_signal_connect(G_OBJECT(ok_button), "clicked", G_CALLBACK(import_ok_cb), NULL); g_signal_connect(G_OBJECT(cancel_button), "clicked", G_CALLBACK(import_cancel_cb), NULL); gtk_widget_show_all(window); } static void import_format_menu_cb(GtkWidget *widget, gpointer data) { gint type; type = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(widget), MENU_VAL_ID)); if (type == IMPORT_EML_FOLDER) { gtk_label_set_text(GTK_LABEL(desc_label), _("Specify source folder including eml files and destination folder.")); } else { gtk_label_set_text(GTK_LABEL(desc_label), _("Specify source file and destination folder.")); } } static void import_ok_cb(GtkWidget *widget, gpointer data) { import_finished = TRUE; import_ack = TRUE; } static void import_cancel_cb(GtkWidget *widget, gpointer data) { import_finished = TRUE; import_ack = FALSE; } static void import_filesel_cb(GtkWidget *widget, gpointer data) { gchar *filename; gchar *utf8_filename; gint type; type = menu_get_option_menu_active_index (GTK_OPTION_MENU(format_optmenu)); if (type == IMPORT_EML_FOLDER) filename = filesel_select_file (_("Select importing folder"), NULL, GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER); else filename = filesel_select_file(_("Select importing file"), NULL, GTK_FILE_CHOOSER_ACTION_OPEN); if (!filename) return; utf8_filename = g_filename_to_utf8(filename, -1, NULL, NULL, NULL); if (!utf8_filename) { g_warning("import_filesel_cb(): faild to convert characer set."); utf8_filename = g_strdup(filename); } gtk_entry_set_text(GTK_ENTRY(file_entry), utf8_filename); g_free(utf8_filename); g_free(filename); } static void import_destsel_cb(GtkWidget *widget, gpointer data) { FolderItem *dest; gchar *dest_id; dest = foldersel_folder_sel(NULL, FOLDER_SEL_COPY, NULL); if (dest && dest->path) { dest_id = folder_item_get_identifier(dest); if (dest_id) { gtk_entry_set_text(GTK_ENTRY(dest_entry), dest_id); g_free(dest_id); } } } static gint delete_event(GtkWidget *widget, GdkEventAny *event, gpointer data) { import_cancel_cb(NULL, NULL); return TRUE; } static gboolean key_pressed(GtkWidget *widget, GdkEventKey *event, gpointer data) { if (event && event->keyval == GDK_Escape) import_cancel_cb(NULL, NULL); return FALSE; }