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
|
/*
* This file is part of Cryptkeeper.
* Copyright (C) 2007 Tom Morton
*
* Cryptkeeper is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* Cryptkeeper 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <gtk/gtk.h>
#include <sys/stat.h>
#include "ImportStashWizard.h"
#include "defines.h"
#include "cryptkeeper.h"
#include <string.h>
#include <stdlib.h>
static gboolean on_window_close (GtkWidget *window, GdkEvent *event, ImportStashWizard *wizard)
{
wizard->Hide ();
return TRUE;
}
static void on_cancel_clicked (GtkButton *button, ImportStashWizard *wizard)
{
wizard->Hide ();
}
static void on_forward_clicked (GtkButton *button, ImportStashWizard *wizard)
{
wizard->GoForward ();
}
/*static void on_back_clicked (GtkButton *button, ImportStashWizard *wizard)
{
wizard->GoBack ();
}*/
ImportStashWizard::ImportStashWizard ()
{
m_window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
gtk_container_set_border_width (GTK_CONTAINER (m_window), UI_WINDOW_BORDER);
gtk_window_set_title (GTK_WINDOW (m_window), _("Import an Encfs encrypted folder"));
g_signal_connect(G_OBJECT(m_window), "delete-event", G_CALLBACK(on_window_close), this);
m_vbox = gtk_vbox_new (FALSE, UI_SPACING);
gtk_container_add (GTK_CONTAINER (m_window), m_vbox);
GtkWidget *buttonBox = gtk_hbutton_box_new ();
gtk_box_pack_end (GTK_BOX (m_vbox), buttonBox, FALSE, FALSE, UI_SPACING);
//GtkWidget *button = gtk_button_new_from_stock (GTK_STOCK_GO_BACK);
//g_signal_connect (G_OBJECT (button), "clicked", G_CALLBACK (on_back_clicked), this);
//gtk_box_pack_end (GTK_BOX (buttonBox), button, FALSE, FALSE, UI_SPACING);
m_button_forward = gtk_button_new_from_stock (GTK_STOCK_GO_FORWARD);
g_signal_connect (G_OBJECT (m_button_forward), "clicked", G_CALLBACK (on_forward_clicked), this);
gtk_box_pack_end (GTK_BOX (buttonBox), m_button_forward, FALSE, FALSE, UI_SPACING);
m_button_cancel = gtk_button_new_from_stock (GTK_STOCK_CANCEL);
g_signal_connect (G_OBJECT (m_button_cancel), "clicked", G_CALLBACK (on_cancel_clicked), this);
gtk_box_pack_end (GTK_BOX (buttonBox), m_button_cancel, FALSE, FALSE, UI_SPACING);
m_contents = NULL;
m_mount_dir = NULL;
m_crypt_dir = NULL;
Restart ();
}
void ImportStashWizard::UpdateStageUI ()
{
char *blah, *last_slash;
if (m_contents != NULL) gtk_widget_destroy (m_contents);
m_contents = gtk_vbox_new (FALSE, UI_SPACING);
gtk_box_pack_start (GTK_BOX (m_vbox), m_contents, TRUE, TRUE, UI_SPACING);
GtkWidget *w;
switch (m_stage) {
case WIZ_START:
w = gtk_label_new (_("Select an existing EncFS encrypted folder (eg ~/.crypt)"));
gtk_box_pack_start (GTK_BOX (m_contents), w, FALSE, FALSE, UI_SPACING);
m_magic = gtk_file_chooser_widget_new (GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER);
gtk_file_chooser_set_show_hidden (GTK_FILE_CHOOSER (m_magic), TRUE);
gtk_box_pack_start (GTK_BOX (m_contents), m_magic, TRUE, TRUE, UI_SPACING);
break;
case WIZ_PASSWD:
w = gtk_label_new (_("Choose the name and location at which you want the EncFS folder to be mounted"));
gtk_box_pack_start (GTK_BOX (m_contents), w, FALSE, FALSE, UI_SPACING);
// Start mount point locator in parent of crypt dir, because that
// is the sane place to be mounting the thing.
blah = strdup (m_crypt_dir);
last_slash = strrchr (blah, '/');
if (last_slash) *last_slash = '\0';
m_magic = gtk_file_chooser_widget_new (GTK_FILE_CHOOSER_ACTION_SAVE);
gtk_file_chooser_set_current_folder (GTK_FILE_CHOOSER (m_magic), blah);
gtk_box_pack_start (GTK_BOX (m_contents), m_magic, TRUE, TRUE, UI_SPACING);
break;
case WIZ_END:
w = gtk_label_new (_("The EncFS encrypted folder has been successfully imported into Cryptkeeper"));
gtk_box_pack_start (GTK_BOX (m_contents), w, FALSE, FALSE, UI_SPACING);
break;
default:
break;
}
gtk_widget_show_all (m_contents);
}
ImportStashWizard::~ImportStashWizard ()
{
gtk_widget_destroy (m_window);
}
void ImportStashWizard::Show ()
{
gtk_widget_show_all (m_window);
}
void ImportStashWizard::Hide ()
{
gtk_widget_hide (m_window);
gtk_button_set_label (GTK_BUTTON (m_button_forward), GTK_STOCK_GO_FORWARD);
gtk_widget_set_sensitive (m_button_cancel, TRUE);
Restart ();
}
void ImportStashWizard::Restart ()
{
m_stage = WIZ_START;
if (m_crypt_dir) g_free (m_crypt_dir);
m_crypt_dir = NULL;
if (m_mount_dir) g_free (m_mount_dir);
m_mount_dir = NULL;
UpdateStageUI ();
}
void ImportStashWizard::GoForward ()
{
if (m_stage == WIZ_START) {
m_crypt_dir = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (m_magic));
if (m_crypt_dir == NULL) {
GtkWidget *dialog =
gtk_message_dialog_new_with_markup (GTK_WINDOW (m_window),
GTK_DIALOG_MODAL,
GTK_MESSAGE_ERROR,
GTK_BUTTONS_OK,
"<span weight=\"bold\" size=\"larger\">%s</span>",
_("You must select a folder"));
gtk_dialog_run (GTK_DIALOG (dialog));
gtk_widget_destroy (dialog);
return;
}
char buf[1024];
struct stat blah;
const char* const conf[] = {"%s/.encfs5", "%s/.encfs6.xml"};
unsigned int confs = sizeof conf / sizeof conf[0];
for (int i = 0; i <= confs; i++) {
if (i == confs) {
GtkWidget *dialog =
gtk_message_dialog_new_with_markup (GTK_WINDOW (m_window),
GTK_DIALOG_MODAL,
GTK_MESSAGE_ERROR,
GTK_BUTTONS_OK,
"<span weight=\"bold\" size=\"larger\">%s</span>",
_("The selected folder is not an EncFS encrypted folder"));
gtk_dialog_run (GTK_DIALOG (dialog));
gtk_widget_destroy (dialog);
g_free (m_crypt_dir);
m_crypt_dir = NULL;
return;
}
snprintf (buf, sizeof (buf), conf[i], m_crypt_dir);
if (stat (buf, &blah) == 0 )
break;
}
}
if (m_stage == WIZ_PASSWD) {
m_mount_dir = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (m_magic));
if (m_mount_dir == NULL) {
GtkWidget *dialog =
gtk_message_dialog_new_with_markup (GTK_WINDOW (m_window),
GTK_DIALOG_MODAL,
GTK_MESSAGE_ERROR,
GTK_BUTTONS_OK,
"<span weight=\"bold\" size=\"larger\">%s</span>",
_("You must enter a name"));
gtk_dialog_run (GTK_DIALOG (dialog));
gtk_widget_destroy (dialog);
return;
}
}
m_stage++;
if (m_stage == WIZ_END) {
gtk_widget_set_sensitive (m_button_cancel, FALSE);
gtk_button_set_label (GTK_BUTTON (m_button_forward), GTK_STOCK_OK);
add_crypt_point (m_crypt_dir, m_mount_dir);
g_free (m_crypt_dir);
g_free (m_mount_dir);
m_mount_dir = NULL;
m_crypt_dir = NULL;
}
if (m_stage > WIZ_END) {
Hide ();
} else {
UpdateStageUI ();
}
}
void ImportStashWizard::GoBack ()
{
m_stage--;
UpdateStageUI ();
}
|