fix bug 2989, 'Segfault at startup because of corrupted folderlist.xml'
[claws.git] / src / importpine.c
blob681ff1d5f96412fca8836a4550a9aa08dace0ac8
1 /*
2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 2002-2012 Match Grun and the Claws Mail team
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 * Import Pine address book data.
24 #ifdef HAVE_CONFIG_H
25 # include "config.h"
26 #include "claws-features.h"
27 #endif
29 #include "defs.h"
31 #include <glib.h>
32 #include <glib/gi18n.h>
33 #include <gdk/gdkkeysyms.h>
34 #include <gtk/gtk.h>
36 #include "addrbook.h"
37 #include "addressbook.h"
38 #include "addressitem.h"
39 #include "gtkutils.h"
40 #include "prefs_common.h"
41 #include "manage_window.h"
42 #include "mgutils.h"
43 #include "pine.h"
44 #include "filesel.h"
46 #define IMPORTPINE_GUESS_NAME "Pine Import"
48 static struct _ImpPine_Dlg {
49 GtkWidget *window;
50 GtkWidget *file_entry;
51 GtkWidget *name_entry;
52 GtkWidget *ok_btn;
53 GtkWidget *cancel_btn;
54 GtkWidget *statusbar;
55 gint status_cid;
56 } imppine_dlg;
58 static struct _AddressFileSelection _imp_pine_file_selector_;
59 static AddressBookFile *_importedBook_;
60 static AddressIndex *_imp_addressIndex_;
63 * Edit functions.
65 static void imp_pine_status_show( gchar *msg ) {
66 if( imppine_dlg.statusbar != NULL ) {
67 gtk_statusbar_pop( GTK_STATUSBAR(imppine_dlg.statusbar), imppine_dlg.status_cid );
68 if( msg ) {
69 gtk_statusbar_push( GTK_STATUSBAR(imppine_dlg.statusbar), imppine_dlg.status_cid, msg );
74 static gboolean imp_pine_import_file( gchar *sName, gchar *sFile ) {
75 gboolean retVal = FALSE;
76 gchar *newFile;
77 AddressBookFile *abf = NULL;
78 PineFile *pdf = NULL;
80 if( _importedBook_ ) {
81 addrbook_free_book( _importedBook_ );
84 abf = addrbook_create_book();
85 addrbook_set_path( abf, _imp_addressIndex_->filePath );
86 addrbook_set_name( abf, sName );
87 newFile = addrbook_guess_next_file( abf );
88 addrbook_set_file( abf, newFile );
89 g_free( newFile );
91 /* Import data from file */
92 pdf = pine_create();
93 pine_set_file( pdf, sFile );
94 if( pine_import_data( pdf, abf->addressCache ) == MGU_SUCCESS ) {
95 addrbook_save_data( abf );
96 _importedBook_ = abf;
97 retVal = TRUE;
99 else {
100 addrbook_free_book( abf );
102 pine_free(pdf);
104 return retVal;
107 static void imp_pine_ok( GtkWidget *widget, gboolean *cancelled ) {
108 gchar *sName;
109 gchar *sFile;
110 gchar *sMsg = NULL;
111 gboolean errFlag = FALSE;
113 sFile = gtk_editable_get_chars( GTK_EDITABLE(imppine_dlg.file_entry), 0, -1 );
114 g_strchug( sFile ); g_strchomp( sFile );
115 gtk_entry_set_text( GTK_ENTRY(imppine_dlg.file_entry), sFile );
117 sName = gtk_editable_get_chars( GTK_EDITABLE(imppine_dlg.name_entry), 0, -1 );
118 g_strchug( sName ); g_strchomp( sName );
119 gtk_entry_set_text( GTK_ENTRY(imppine_dlg.name_entry), sName );
121 if( *sFile == '\0'|| strlen( sFile ) < 1 ) {
122 sMsg = _( "Please select a file." );
123 errFlag = TRUE;
126 if( *sName == '\0'|| strlen( sName ) < 1 ) {
127 if( ! errFlag ) sMsg = _( "Address book name must be supplied." );
128 errFlag = TRUE;
131 if( errFlag ) {
132 imp_pine_status_show( sMsg );
134 else {
135 /* Import the file */
136 if( imp_pine_import_file( sName, sFile ) ) {
137 *cancelled = FALSE;
138 gtk_main_quit();
140 else {
141 imp_pine_status_show( _( "Error importing Pine file." ) );
145 g_free( sFile );
146 g_free( sName );
150 static void imp_pine_cancel( GtkWidget *widget, gboolean *cancelled ) {
151 *cancelled = TRUE;
152 gtk_main_quit();
155 static void imp_pine_file_select_create( AddressFileSelection *afs ) {
156 gchar *file = filesel_select_file_open(_("Select Pine File"), NULL);
158 if (file == NULL)
159 afs->cancelled = TRUE;
160 else {
161 afs->cancelled = FALSE;
162 gtk_entry_set_text( GTK_ENTRY(imppine_dlg.file_entry), file );
163 g_free(file);
167 static void imp_pine_file_select( void ) {
168 imp_pine_file_select_create( & _imp_pine_file_selector_ );
171 static gint imp_pine_delete_event( GtkWidget *widget, GdkEventAny *event, gboolean *cancelled ) {
172 *cancelled = TRUE;
173 gtk_main_quit();
174 return TRUE;
177 static gboolean imp_pine_key_pressed( GtkWidget *widget, GdkEventKey *event, gboolean *cancelled ) {
178 if (event && event->keyval == GDK_KEY_Escape) {
179 *cancelled = TRUE;
180 gtk_main_quit();
182 return FALSE;
185 static void imp_pine_create( gboolean *cancelled ) {
186 GtkWidget *window;
187 GtkWidget *vbox;
188 GtkWidget *table;
189 GtkWidget *label;
190 GtkWidget *file_entry;
191 GtkWidget *name_entry;
192 GtkWidget *hbbox;
193 GtkWidget *ok_btn;
194 GtkWidget *cancel_btn;
195 GtkWidget *file_btn;
196 GtkWidget *statusbar;
197 GtkWidget *hsbox;
198 gint top;
200 window = gtkut_window_new(GTK_WINDOW_TOPLEVEL, "importpine");
201 gtk_widget_set_size_request(window, 450, -1);
202 gtk_container_set_border_width( GTK_CONTAINER(window), 0 );
203 gtk_window_set_title( GTK_WINDOW(window), _("Import Pine file into Address Book") );
204 gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER);
205 g_signal_connect(G_OBJECT(window), "delete_event",
206 G_CALLBACK(imp_pine_delete_event), cancelled);
207 g_signal_connect(G_OBJECT(window), "key_press_event",
208 G_CALLBACK(imp_pine_key_pressed), cancelled);
210 vbox = gtk_vbox_new(FALSE, 8);
211 gtk_container_add(GTK_CONTAINER(window), vbox);
212 gtk_container_set_border_width( GTK_CONTAINER(vbox), 0 );
214 table = gtk_table_new(2, 3, FALSE);
215 gtk_box_pack_start(GTK_BOX(vbox), table, FALSE, FALSE, 0);
216 gtk_container_set_border_width( GTK_CONTAINER(table), 8 );
217 gtk_table_set_row_spacings(GTK_TABLE(table), 8);
218 gtk_table_set_col_spacings(GTK_TABLE(table), 8 );
220 /* First row */
221 top = 0;
222 label = gtk_label_new(_("Name"));
223 gtk_table_attach(GTK_TABLE(table), label, 0, 1, top, (top + 1), GTK_FILL, 0, 0, 0);
224 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
226 name_entry = gtk_entry_new();
227 gtk_table_attach(GTK_TABLE(table), name_entry, 1, 2, top, (top + 1), GTK_EXPAND|GTK_SHRINK|GTK_FILL, 0, 0, 0);
229 /* Second row */
230 top = 1;
231 label = gtk_label_new(_("File"));
232 gtk_table_attach(GTK_TABLE(table), label, 0, 1, top, (top + 1), GTK_FILL, 0, 0, 0);
233 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
235 file_entry = gtk_entry_new();
236 gtk_table_attach(GTK_TABLE(table), file_entry, 1, 2, top, (top + 1), GTK_EXPAND|GTK_SHRINK|GTK_FILL, 0, 0, 0);
238 file_btn = gtkut_get_browse_file_btn(_("_Browse"));
239 gtk_table_attach(GTK_TABLE(table), file_btn, 2, 3, top, (top + 1), GTK_FILL, 0, 3, 0);
241 /* Status line */
242 hsbox = gtk_hbox_new(FALSE, 0);
243 gtk_box_pack_end(GTK_BOX(vbox), hsbox, FALSE, FALSE, BORDER_WIDTH);
244 statusbar = gtk_statusbar_new();
245 gtk_box_pack_start(GTK_BOX(hsbox), statusbar, TRUE, TRUE, BORDER_WIDTH);
247 /* Button panel */
248 gtkut_stock_button_set_create(&hbbox, &cancel_btn, GTK_STOCK_CANCEL,
249 &ok_btn, GTK_STOCK_OK,
250 NULL, NULL);
251 gtk_box_pack_end(GTK_BOX(vbox), hbbox, FALSE, FALSE, 0);
252 gtk_container_set_border_width( GTK_CONTAINER(hbbox), 5);
253 gtk_widget_grab_default(ok_btn);
255 g_signal_connect(G_OBJECT(ok_btn), "clicked",
256 G_CALLBACK(imp_pine_ok), cancelled);
257 g_signal_connect(G_OBJECT(cancel_btn), "clicked",
258 G_CALLBACK(imp_pine_cancel), cancelled);
259 g_signal_connect(G_OBJECT(file_btn), "clicked",
260 G_CALLBACK(imp_pine_file_select), NULL);
262 gtk_widget_show_all(vbox);
264 imppine_dlg.window = window;
265 imppine_dlg.file_entry = file_entry;
266 imppine_dlg.name_entry = name_entry;
267 imppine_dlg.ok_btn = ok_btn;
268 imppine_dlg.cancel_btn = cancel_btn;
269 imppine_dlg.statusbar = statusbar;
270 imppine_dlg.status_cid = gtk_statusbar_get_context_id(
271 GTK_STATUSBAR(statusbar), "Import Pine Dialog" );
274 AddressBookFile *addressbook_imp_pine( AddressIndex *addrIndex ) {
275 static gboolean cancelled;
276 gchar *pineFile;
278 _importedBook_ = NULL;
279 _imp_addressIndex_ = addrIndex;
281 if( ! imppine_dlg.window )
282 imp_pine_create(&cancelled);
283 gtk_widget_grab_focus(imppine_dlg.ok_btn);
284 gtk_widget_grab_focus(imppine_dlg.file_entry);
285 gtk_widget_show(imppine_dlg.window);
286 manage_window_set_transient(GTK_WINDOW(imppine_dlg.window));
287 gtk_window_set_modal(GTK_WINDOW(imppine_dlg.window), TRUE);
289 imp_pine_status_show( _( "Please select a file to import." ) );
290 pineFile = pine_find_file();
291 gtk_entry_set_text( GTK_ENTRY(imppine_dlg.name_entry), IMPORTPINE_GUESS_NAME );
292 gtk_entry_set_text( GTK_ENTRY(imppine_dlg.file_entry), pineFile );
293 g_free( pineFile );
294 pineFile = NULL;
296 gtk_main();
297 gtk_widget_hide(imppine_dlg.window);
298 gtk_window_set_modal(GTK_WINDOW(imppine_dlg.window), FALSE);
299 _imp_addressIndex_ = NULL;
301 if (cancelled == TRUE) return NULL;
302 return _importedBook_;
306 * End of Source.