claws-mail/src/importpine.c

310 lines
8.7 KiB
C

/*
* Claws Mail -- a GTK based, lightweight, and fast e-mail client
* Copyright (C) 2002-2022 the Claws Mail team and Match Grun
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/
/*
* Import Pine address book data.
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#include "claws-features.h"
#endif
#include "defs.h"
#include <glib.h>
#include <glib/gi18n.h>
#include <gdk/gdkkeysyms.h>
#include <gtk/gtk.h>
#include "addrbook.h"
#include "addressbook.h"
#include "addressitem.h"
#include "gtkutils.h"
#include "prefs_common.h"
#include "manage_window.h"
#include "mgutils.h"
#include "pine.h"
#include "filesel.h"
#define IMPORTPINE_GUESS_NAME "Pine Import"
static struct _ImpPine_Dlg {
GtkWidget *window;
GtkWidget *file_entry;
GtkWidget *name_entry;
GtkWidget *ok_btn;
GtkWidget *cancel_btn;
GtkWidget *statusbar;
gint status_cid;
} imppine_dlg;
static struct _AddressFileSelection _imp_pine_file_selector_;
static AddressBookFile *_importedBook_;
static AddressIndex *_imp_addressIndex_;
/*
* Edit functions.
*/
static void imp_pine_status_show( gchar *msg ) {
if( imppine_dlg.statusbar != NULL ) {
gtk_statusbar_pop( GTK_STATUSBAR(imppine_dlg.statusbar), imppine_dlg.status_cid );
if( msg ) {
gtk_statusbar_push( GTK_STATUSBAR(imppine_dlg.statusbar), imppine_dlg.status_cid, msg );
}
}
}
static gboolean imp_pine_import_file( gchar *sName, gchar *sFile ) {
gboolean retVal = FALSE;
gchar *newFile;
AddressBookFile *abf = NULL;
PineFile *pdf = NULL;
if( _importedBook_ ) {
addrbook_free_book( _importedBook_ );
}
abf = addrbook_create_book();
addrbook_set_path( abf, _imp_addressIndex_->filePath );
addrbook_set_name( abf, sName );
newFile = addrbook_guess_next_file( abf );
addrbook_set_file( abf, newFile );
g_free( newFile );
/* Import data from file */
pdf = pine_create();
pine_set_file( pdf, sFile );
if( pine_import_data( pdf, abf->addressCache ) == MGU_SUCCESS ) {
addrbook_save_data( abf );
_importedBook_ = abf;
retVal = TRUE;
}
else {
addrbook_free_book( abf );
}
pine_free(pdf);
return retVal;
}
static void imp_pine_ok( GtkWidget *widget, gboolean *cancelled ) {
gchar *sName;
gchar *sFile;
gchar *sMsg = NULL;
gboolean errFlag = FALSE;
sFile = gtk_editable_get_chars( GTK_EDITABLE(imppine_dlg.file_entry), 0, -1 );
g_strstrip( sFile );
gtk_entry_set_text( GTK_ENTRY(imppine_dlg.file_entry), sFile );
sName = gtk_editable_get_chars( GTK_EDITABLE(imppine_dlg.name_entry), 0, -1 );
g_strstrip( sName );
gtk_entry_set_text( GTK_ENTRY(imppine_dlg.name_entry), sName );
if( *sFile == '\0'|| strlen( sFile ) < 1 ) {
sMsg = _( "Please select a file." );
errFlag = TRUE;
}
if( *sName == '\0'|| strlen( sName ) < 1 ) {
if( ! errFlag ) sMsg = _( "Address book name must be supplied." );
errFlag = TRUE;
}
if( errFlag ) {
imp_pine_status_show( sMsg );
}
else {
/* Import the file */
if( imp_pine_import_file( sName, sFile ) ) {
*cancelled = FALSE;
gtk_main_quit();
}
else {
imp_pine_status_show( _( "Error importing Pine file." ) );
}
}
g_free( sFile );
g_free( sName );
}
static void imp_pine_cancel( GtkWidget *widget, gboolean *cancelled ) {
*cancelled = TRUE;
gtk_main_quit();
}
static void imp_pine_file_select_create( AddressFileSelection *afs ) {
gchar *file = filesel_select_file_open(_("Select Pine File"), NULL);
if (file == NULL)
afs->cancelled = TRUE;
else {
afs->cancelled = FALSE;
gtk_entry_set_text( GTK_ENTRY(imppine_dlg.file_entry), file );
g_free(file);
}
}
static void imp_pine_file_select( void ) {
imp_pine_file_select_create( & _imp_pine_file_selector_ );
}
static gint imp_pine_delete_event( GtkWidget *widget, GdkEventAny *event, gboolean *cancelled ) {
*cancelled = TRUE;
gtk_main_quit();
return TRUE;
}
static gboolean imp_pine_key_pressed( GtkWidget *widget, GdkEventKey *event, gboolean *cancelled ) {
if (event && event->keyval == GDK_KEY_Escape) {
*cancelled = TRUE;
gtk_main_quit();
}
return FALSE;
}
static void imp_pine_create( gboolean *cancelled ) {
GtkWidget *window;
GtkWidget *vbox;
GtkWidget *table;
GtkWidget *label;
GtkWidget *file_entry;
GtkWidget *name_entry;
GtkWidget *hbbox;
GtkWidget *ok_btn;
GtkWidget *cancel_btn;
GtkWidget *file_btn;
GtkWidget *statusbar;
GtkWidget *hsbox;
window = gtkut_window_new(GTK_WINDOW_TOPLEVEL, "importpine");
gtk_widget_set_size_request(window, 450, -1);
gtk_container_set_border_width( GTK_CONTAINER(window), 0 );
gtk_window_set_title( GTK_WINDOW(window), _("Import Pine file into Address Book") );
gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER);
gtk_window_set_type_hint(GTK_WINDOW(window), GDK_WINDOW_TYPE_HINT_DIALOG);
g_signal_connect(G_OBJECT(window), "delete_event",
G_CALLBACK(imp_pine_delete_event), cancelled);
g_signal_connect(G_OBJECT(window), "key_press_event",
G_CALLBACK(imp_pine_key_pressed), cancelled);
vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 8);
gtk_container_add(GTK_CONTAINER(window), vbox);
gtk_container_set_border_width( GTK_CONTAINER(vbox), 0 );
table = gtk_grid_new();
gtk_box_pack_start(GTK_BOX(vbox), table, FALSE, FALSE, 0);
gtk_container_set_border_width( GTK_CONTAINER(table), 8 );
gtk_grid_set_row_spacing(GTK_GRID(table), 8);
gtk_grid_set_column_spacing(GTK_GRID(table), 8);
/* First row */
label = gtk_label_new(_("Name"));
gtk_label_set_xalign(GTK_LABEL(label), 0.0);
gtk_grid_attach(GTK_GRID(table), label, 0, 0, 1, 1);
name_entry = gtk_entry_new();
gtk_grid_attach(GTK_GRID(table), name_entry, 1, 0, 1, 1);
gtk_widget_set_hexpand(name_entry, TRUE);
gtk_widget_set_halign(name_entry, GTK_ALIGN_FILL);
/* Second row */
label = gtk_label_new(_("File"));
gtk_label_set_xalign(GTK_LABEL(label), 0.0);
gtk_grid_attach(GTK_GRID(table), label, 0, 1, 1, 1);
file_entry = gtk_entry_new();
gtk_grid_attach(GTK_GRID(table), file_entry, 1, 1, 1, 1);
gtk_widget_set_hexpand(file_entry, TRUE);
gtk_widget_set_halign(file_entry, GTK_ALIGN_FILL);
file_btn = gtkut_get_browse_file_btn(_("_Browse"));
gtk_grid_attach(GTK_GRID(table), file_btn, 2, 1, 1, 1);
/* Status line */
hsbox = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 0);
gtk_box_pack_end(GTK_BOX(vbox), hsbox, FALSE, FALSE, BORDER_WIDTH);
statusbar = gtk_statusbar_new();
gtk_box_pack_start(GTK_BOX(hsbox), statusbar, TRUE, TRUE, BORDER_WIDTH);
/* Button panel */
gtkut_stock_button_set_create(&hbbox, &cancel_btn, NULL, _("_Cancel"),
&ok_btn, NULL, _("_OK"),
NULL, NULL, NULL);
gtk_box_pack_end(GTK_BOX(vbox), hbbox, FALSE, FALSE, 0);
gtk_container_set_border_width( GTK_CONTAINER(hbbox), 5);
gtk_widget_grab_default(ok_btn);
g_signal_connect(G_OBJECT(ok_btn), "clicked",
G_CALLBACK(imp_pine_ok), cancelled);
g_signal_connect(G_OBJECT(cancel_btn), "clicked",
G_CALLBACK(imp_pine_cancel), cancelled);
g_signal_connect(G_OBJECT(file_btn), "clicked",
G_CALLBACK(imp_pine_file_select), NULL);
gtk_widget_show_all(vbox);
imppine_dlg.window = window;
imppine_dlg.file_entry = file_entry;
imppine_dlg.name_entry = name_entry;
imppine_dlg.ok_btn = ok_btn;
imppine_dlg.cancel_btn = cancel_btn;
imppine_dlg.statusbar = statusbar;
imppine_dlg.status_cid = gtk_statusbar_get_context_id(
GTK_STATUSBAR(statusbar), "Import Pine Dialog" );
}
AddressBookFile *addressbook_imp_pine( AddressIndex *addrIndex ) {
static gboolean cancelled;
gchar *pineFile;
_importedBook_ = NULL;
_imp_addressIndex_ = addrIndex;
if( ! imppine_dlg.window )
imp_pine_create(&cancelled);
gtk_widget_grab_focus(imppine_dlg.ok_btn);
gtk_widget_grab_focus(imppine_dlg.file_entry);
gtk_widget_show(imppine_dlg.window);
manage_window_set_transient(GTK_WINDOW(imppine_dlg.window));
gtk_window_set_modal(GTK_WINDOW(imppine_dlg.window), TRUE);
imp_pine_status_show( _( "Please select a file to import." ) );
pineFile = pine_find_file();
gtk_entry_set_text( GTK_ENTRY(imppine_dlg.name_entry), IMPORTPINE_GUESS_NAME );
gtk_entry_set_text( GTK_ENTRY(imppine_dlg.file_entry), pineFile );
g_free( pineFile );
pineFile = NULL;
gtk_main();
gtk_widget_hide(imppine_dlg.window);
gtk_window_set_modal(GTK_WINDOW(imppine_dlg.window), FALSE);
_imp_addressIndex_ = NULL;
if (cancelled == TRUE) return NULL;
return _importedBook_;
}
/*
* End of Source.
*/