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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
|
/*
* Copyright (C) 2008,2009,2010,2012 Rolf Eike Beer <[email protected]>
*/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
#include "kgpgimport.h"
//#include "model/kgpgitemmodel.h"
#include "../core/KGpgKeyNode.h"
#include <QDebug>
//#include <KLocale>
KGpgImport::KGpgImport(QObject *parent, const QString &text)
: KGpgTextOrFileTransaction(parent, text, true)
{
}
KGpgImport::KGpgImport(QObject *parent, const QList<QUrl> &files)
: KGpgTextOrFileTransaction(parent, files, true)
{
}
KGpgImport::~KGpgImport()
{
}
QStringList
KGpgImport::command() const
{
QStringList ret;
ret << QLatin1String( "--import" ) << QLatin1String( "--allow-secret-key-import" );
return ret;
}
QStringList
KGpgImport::getImportedKeys() const
{
QStringList res;
foreach (const QString &str, getMessages())
if (str.startsWith(QLatin1String("[GNUPG:] IMPORTED ")))
res << str.mid(18);
return res;
}
QStringList
KGpgImport::getImportedIds(const QStringList &log, const int reason)
{
QStringList res;
foreach (const QString &str, log) {
if (!str.startsWith(QLatin1String("[GNUPG:] IMPORT_OK ")))
continue;
QString tmpstr(str.mid(19).simplified());
int space = tmpstr.indexOf(QLatin1Char( ' ' ));
if (space <= 0) {
qDebug() << __LINE__ << "invalid format:" << str;
continue;
}
bool ok;
unsigned char code = tmpstr.left(space).toUInt(&ok);
if (!ok) {
qDebug() << __LINE__ << "invalid format:" << str << space << tmpstr.left(space - 1);
continue;
}
if ((reason == -1) || ((reason == 0) && (code == 0)) || ((reason & code) != 0))
res << tmpstr.mid(space + 1);
}
return res;
}
QStringList
KGpgImport::getImportedIds(const int reason) const
{
return getImportedIds(getMessages(), reason);
}
QString
KGpgImport::getImportMessage() const
{
return getImportMessage(getMessages());
}
QString
KGpgImport::getImportMessage(const QStringList &log)
{
#define RESULT_PARTS 14
unsigned long rcode[RESULT_PARTS];
unsigned int i = 0;
int line = 0;
bool fine;
memset(rcode, 0, sizeof(rcode));
foreach (const QString &str, log) {
line++;
if (!str.startsWith(QLatin1String("[GNUPG:] IMPORT_RES ")))
continue;
const QStringList rstr(str.mid(20).simplified().split(QLatin1Char( ' ' )));
fine = (rstr.count() == RESULT_PARTS);
i = 0;
while (fine && (i < RESULT_PARTS)) {
rcode[i] += rstr.at(i).toULong(&fine);
i++;
}
if (!fine)
return tr("The import result string has an unsupported format in line %1.<br />Please see the detailed log for more information.").arg(line);
}
fine = false;
i = 0;
while (!fine && (i < RESULT_PARTS)) {
fine = (rcode[i] != 0);
i++;
}
if (!fine)
return tr("No key imported.<br />Please see the detailed log for more information.");
QString resultMessage(tr("<qt>%1 key processed.</qt>", "<qt>%1 keys processed.</qt>", rcode[0]));
if (rcode[1])
resultMessage += tr("<qt><br />One key without ID.</qt>", "<qt><br />%1 keys without ID.</qt>", rcode[1]);
if (rcode[2])
resultMessage += tr("<qt><br /><b>One key imported:</b></qt>", "<qt><br /><b>%1 keys imported:</b></qt>", rcode[2]);
if (rcode[3])
resultMessage += tr("<qt><br />One RSA key imported.</qt>", "<qt><br />%1 RSA keys imported.</qt>", rcode[3]);
if (rcode[4])
resultMessage += tr("<qt><br />One key unchanged.</qt>", "<qt><br />%1 keys unchanged.</qt>", rcode[4]);
if (rcode[5])
resultMessage += tr("<qt><br />One user ID imported.</qt>", "<qt><br />%1 user IDs imported.</qt>", rcode[5]);
if (rcode[6])
resultMessage += tr("<qt><br />One subkey imported.</qt>", "<qt><br />%1 subkeys imported.</qt>", rcode[6]);
if (rcode[7])
resultMessage += tr("<qt><br />One signature imported.</qt>", "<qt><br />%1 signatures imported.</qt>", rcode[7]);
if (rcode[8])
resultMessage += tr("<qt><br />One revocation certificate imported.</qt>", "<qt><br />%1 revocation certificates imported.</qt>", rcode[8]);
if (rcode[9])
resultMessage += tr("<qt><br />One secret key processed.</qt>", "<qt><br />%1 secret keys processed.</qt>", rcode[9]);
if (rcode[10])
resultMessage += tr("<qt><br /><b>One secret key imported.</b></qt>", "<qt><br /><b>%1 secret keys imported.</b></qt>", rcode[10]);
if (rcode[11])
resultMessage += tr("<qt><br />One secret key unchanged.</qt>", "<qt><br />%1 secret keys unchanged.</qt>", rcode[11]);
if (rcode[12])
resultMessage += tr("<qt><br />One secret key not imported.</qt>", "<qt><br />%1 secret keys not imported.</qt>", rcode[12]);
if (rcode[9])
resultMessage += tr("<qt><br /><b>You have imported a secret key.</b> <br />"
"Please note that imported secret keys are not trusted by default.<br />"
"To fully use this secret key for signing and encryption, you must edit the key (double click on it) and set its trust to Full or Ultimate.</qt>");
return resultMessage;
}
/*static QString
beautifyKeyList(const QStringList &keyIds, const KGpgItemModel *model)
{
QString result;
result.append(QLatin1String("\n"));
if (model == NULL) {
result.append(QLatin1String(" ") + keyIds.join(QLatin1String("\n ")));
} else {
foreach (const QString &changed, keyIds) {
const KGpgKeyNode *node = model->findKeyNode(changed);
QString line;
if (node == NULL) {
line = changed;
} else {
if (node->getEmail().isEmpty())
line = trc("ID: Name", "%1: %2", node->getFingerprint(), node->getName());
else
line = trc("ID: Name <Email>", "%1: %2 <%3>", node->getFingerprint(), node->getName(), node->getEmail());
}
result.append(QLatin1String(" ") + line + QLatin1String("\n"));
}
}
return result;
}*/
QString
KGpgImport::getDetailedImportMessage(const QStringList &log, const KGpgItemModel *model)
{
QString result;
QMap<QString, unsigned int> resultcodes;
foreach (const QString &keyresult, log) {
if (!keyresult.startsWith(QLatin1String("[GNUPG:] IMPORT_OK ")))
continue;
QStringList rc(keyresult.mid(19).split(QLatin1Char( ' ' )));
if (rc.count() < 2) {
qDebug() << "unexpected syntax:" << keyresult;
continue;
}
resultcodes[rc.at(1)] = rc.at(0).toUInt();
}
QMap<QString, unsigned int>::const_iterator iterend = resultcodes.constEnd();
for (unsigned int flag = 1; flag <= 16; flag <<= 1) {
QStringList thischanged;
for (QMap<QString, unsigned int>::const_iterator iter = resultcodes.constBegin(); iter != iterend; ++iter) {
if (iter.value() & flag)
thischanged << iter.key();
}
if (thischanged.isEmpty())
continue;
switch (flag) {
case 1:
result.append(tr("New Key", "New Keys", thischanged.count()));
break;
case 2:
result.append(tr("Key with new User Id", "Keys with new User Ids", thischanged.count()));
break;
case 4:
result.append(tr("Key with new Signatures", "Keys with new Signatures", thischanged.count()));
break;
case 8:
result.append(tr("Key with new Subkeys", "Keys with new Subkeys", thischanged.count()));
break;
case 16:
result.append(tr("New Private Key", "New Private Keys", thischanged.count()));
break;
default:
Q_ASSERT(flag == 1);
}
// result.append(beautifyKeyList(thischanged, model));
result.append(QLatin1String("\n\n"));
}
QStringList unchanged(resultcodes.keys(0));
if (unchanged.isEmpty()) {
// remove empty line at end
result.chop(1);
} else {
result.append(tr("Unchanged Key", "Unchanged Keys", unchanged.count()));
// result.append(beautifyKeyList(unchanged, model));
result.append(QLatin1String("\n"));
}
return result;
}
int
KGpgImport::isKey(const QString &text, const bool incomplete)
{
int markpos = text.indexOf(QLatin1String("-----BEGIN PGP PUBLIC KEY BLOCK-----"));
if (markpos >= 0) {
markpos = text.indexOf(QLatin1String("-----END PGP PUBLIC KEY BLOCK-----"), markpos);
return ((markpos > 0) || incomplete) ? 1 : 0;
}
markpos = text.indexOf(QLatin1String("-----BEGIN PGP PRIVATE KEY BLOCK-----"));
if (markpos < 0)
return 0;
markpos = text.indexOf(QLatin1String("-----END PGP PRIVATE KEY BLOCK-----"), markpos);
if ((markpos < 0) && !incomplete)
return 0;
return 2;
}
//#include "kgpgimport.moc"
|