-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathExportImportPage.cpp
More file actions
194 lines (166 loc) · 5.45 KB
/
ExportImportPage.cpp
File metadata and controls
194 lines (166 loc) · 5.45 KB
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
#include "ExportImportPage.h"
#include "ExportManager.h"
#include "ImportManager.h"
#include "ui_ExportImportPage.h"
#include "ExportImportPlugin.h"
#include <retroshare-gui/RsAutoUpdatePage.h>
#include <QMessageBox>
#include <QFileDialog>
#include <QTextStream>
//#define DEBUG
#define SEPARATOR ";"
ExportImportPage::ExportImportPage(RsPeers* mPeers, QWidget* parent, Qt::WindowFlags flags)
: MainPage(parent, flags)
{
this->mPeers = mPeers;
/* Invoke the Qt Designer generated object setup routine */
ui.setupUi(this);
connect(ui.importDirButton, SIGNAL(clicked()), this, SLOT(setImportFile()));
connect(ui.exportDirButton, SIGNAL(clicked()), this, SLOT(setExportFile()));
connect(ui.importFromFileStart, SIGNAL(clicked()), this, SLOT(runImportFile()));
connect(ui.exportToFileStart, SIGNAL(clicked()), this, SLOT(runExportFile()));
connect(ui.pb_export, SIGNAL(clicked()), this, SLOT(exportKeysToTxt()));
connect(ui.pb_import, SIGNAL(clicked()), this, SLOT(importKeysFromTxt()));
}
ExportImportPage::~ExportImportPage(){}
/*!
* \brief ExportImportPage::displayMessage
*
* Display a message in a QMessageBox. Title is always "RetroShare".
*
* \param msg The message to display.
*/
void ExportImportPage::displayMessage(const QString &msg)
{
QMessageBox::information(this, tr("RetroShare"), msg);
}
/*!
* \brief ExportImportPage::importGroups
* \return True if the import check box is checked.
*/
bool ExportImportPage::importGroups()
{
return (ui.cb_importGrps->checkState() == Qt::Checked);
}
/**************************** Exporting ***************************************/
/*!
* \brief ExportImportPage::setExportFile
*
* Slot for the browse export file botton. Opens a file browser to select a file
* and sets that file's path to the export path text box.
*
*/
void ExportImportPage::setExportFile()
{
QString exportFile = QFileDialog::getSaveFileName(this, tr("Set Export File"));
ui.exportFilepath->setText(exportFile);
}
/*!
* \brief ExportImportPage::runExportFile
*
* Slot for file export button. Exports peer id data to the file in the export
* file name text box.
*/
void ExportImportPage::runExportFile()
{
QString exportFile = ui.exportFilepath->text();
printExportsToFile(exportFile);
}
/*!
* \brief ExportImportPage::printExportsToFile
*
* Prints json data of peers to file path given.
*
* \param fileName Path of file where peer data will be printed.
*/
void ExportImportPage::printExportsToFile(const QString &filePath)
{
QFile certFile(filePath);
if(filePath.isEmpty()) {
displayMessage(QString(tr("Export failed, no filepath set")));
} else if (!certFile.open(QIODevice::WriteOnly | QIODevice::Text)) {
displayMessage(QString(tr("Export failed, file open failed!")));
} else {
QTextStream out(&certFile);
ExportManager exporter(mPeers);
// export the data
out << exporter.exportJson().c_str();
certFile.close();
int exportCount = exporter.getExportCount();
displayMessage(QString(tr("%1 keys exported!")).arg(exportCount));
}
}
/**************************** Importing ***************************************/
/*!
* \brief ExportImportPage::setImportFile
*
* Slot for the browse import file button. Opens a file dialog to select a file
* to import from and writes that file's path to the import file path text box.
*/
void ExportImportPage::setImportFile()
{
QString importFile = QFileDialog::getOpenFileName(this, tr("Set Import File"));
ui.importFilepath->setText(importFile);
}
/*!
* \brief ExportImportPage::runImportFile
*
* Slot fo
*/
void ExportImportPage::runImportFile()
{
QString importFile = ui.importFilepath->text();
importKeysFromFile(importFile);
}
/*!
* \brief ExportImportPage::importKeys
*
* Imports keys from a given file path.
*
* Will fail with a message to the user if the file path given is empty, does
* not exist, or cannot be opened for reading.
*/
void ExportImportPage::importKeysFromFile(const QString &filePath)
{
QFile certFile(filePath);
if (filePath.isEmpty()) {
displayMessage(QString(tr("Import failed, no filepath set")));
} else if (!QFile::exists(filePath)) {
displayMessage(QString(tr("Certificate Load Failed:file %1 not found")).arg(filePath));
} else if (!certFile.open(QIODevice::ReadOnly | QIODevice::Text)) {
displayMessage(QString(tr("Certificate Load Failed:can't read from file %1 ")).arg(filePath));
} else {
QString jsonData = QString(certFile.readAll());
certFile.close();
ImportManager importer(mPeers);
importer.importData(jsonData.toStdString(), importGroups());
}
}
/************************* Copy Paste *****************************************/
/*!
* \brief ExportImportPage::exportKeysToTxt
*
* Exports peers to the copy-paste field.
*
*/
void ExportImportPage::exportKeysToTxt()
{
ui.pte_text->clear();
ExportManager exporter(mPeers);
QString result = QString::fromUtf8(exporter.exportJson().c_str());
ui.pte_text->appendPlainText(result);
}
/*!
* \brief ExportImportPage::importKeysFromTxt
*
* Imports peers from the copy-paste field
*/
void ExportImportPage::importKeysFromTxt()
{
RsAutoUpdatePage::lockAllEvents();
QString pastedText = ui.pte_text->toPlainText();
ImportManager importer(mPeers);
importer.importData(pastedText.toStdString(), importGroups());
RsAutoUpdatePage::unlockAllEvents();
ui.pte_text->clear();
}