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
|
/*
Copyright (c) 2014-2017 Montel Laurent <montel@kde.org>
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License, version 2, as
published by the Free Software Foundation.
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, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "verifyopaquebodypartmemento.h"
#include "mimetreeparser_debug.h"
#include <QGpgME/VerifyOpaqueJob>
#include <QGpgME/KeyListJob>
#include <gpgme++/keylistresult.h>
#include <qstringlist.h>
#include <cassert>
using namespace QGpgME;
using namespace GpgME;
using namespace MimeTreeParser;
VerifyOpaqueBodyPartMemento::VerifyOpaqueBodyPartMemento(VerifyOpaqueJob *job,
KeyListJob *klj,
const QByteArray &signature)
: CryptoBodyPartMemento(),
m_signature(signature),
m_job(job),
m_keylistjob(klj)
{
assert(m_job);
}
VerifyOpaqueBodyPartMemento::~VerifyOpaqueBodyPartMemento()
{
if (m_job) {
m_job->slotCancel();
}
if (m_keylistjob) {
m_keylistjob->slotCancel();
}
}
bool VerifyOpaqueBodyPartMemento::start()
{
assert(m_job);
#ifdef DEBUG_SIGNATURE
qCDebug(MIMETREEPARSER_LOG) << "tokoe: VerifyOpaqueBodyPartMemento started";
#endif
if (const Error err = m_job->start(m_signature)) {
m_vr = VerificationResult(err);
#ifdef DEBUG_SIGNATURE
qCDebug(MIMETREEPARSER_LOG) << "tokoe: VerifyOpaqueBodyPartMemento stopped with error";
#endif
return false;
}
connect(m_job, SIGNAL(result(GpgME::VerificationResult,QByteArray)),
this, SLOT(slotResult(GpgME::VerificationResult,QByteArray)));
setRunning(true);
return true;
}
void VerifyOpaqueBodyPartMemento::exec()
{
assert(m_job);
setRunning(true);
QByteArray plainText;
#ifdef DEBUG_SIGNATURE
qCDebug(MIMETREEPARSER_LOG) << "tokoe: VerifyOpaqueBodyPartMemento execed";
#endif
saveResult(m_job->exec(m_signature, plainText), plainText);
#ifdef DEBUG_SIGNATURE
qCDebug(MIMETREEPARSER_LOG) << "tokoe: VerifyOpaqueBodyPartMemento after execed";
#endif
m_job->deleteLater(); // exec'ed jobs don't delete themselves
m_job = nullptr;
if (canStartKeyListJob()) {
std::vector<GpgME::Key> keys;
m_keylistjob->exec(keyListPattern(), /*secretOnly=*/false, keys);
if (!keys.empty()) {
m_key = keys.back();
}
}
if (m_keylistjob) {
m_keylistjob->deleteLater(); // exec'ed jobs don't delete themselves
}
m_keylistjob = nullptr;
setRunning(false);
}
bool VerifyOpaqueBodyPartMemento::canStartKeyListJob() const
{
if (!m_keylistjob) {
return false;
}
const char *const fpr = m_vr.signature(0).fingerprint();
return fpr && *fpr;
}
QStringList VerifyOpaqueBodyPartMemento::keyListPattern() const
{
assert(canStartKeyListJob());
return QStringList(QString::fromLatin1(m_vr.signature(0).fingerprint()));
}
void VerifyOpaqueBodyPartMemento::saveResult(const VerificationResult &vr,
const QByteArray &plainText)
{
assert(m_job);
#ifdef DEBUG_SIGNATURE
qCDebug(MIMETREEPARSER_LOG) << "tokoe: VerifyOpaqueBodyPartMemento::saveResult called";
#endif
m_vr = vr;
m_plainText = plainText;
setAuditLog(m_job->auditLogError(), m_job->auditLogAsHtml());
}
void VerifyOpaqueBodyPartMemento::slotResult(const VerificationResult &vr,
const QByteArray &plainText)
{
#ifdef DEBUG_SIGNATURE
qCDebug(MIMETREEPARSER_LOG) << "tokoe: VerifyOpaqueBodyPartMemento::slotResult called";
#endif
saveResult(vr, plainText);
m_job = nullptr;
if (canStartKeyListJob() && startKeyListJob()) {
#ifdef DEBUG_SIGNATURE
qCDebug(MIMETREEPARSER_LOG) << "tokoe: VerifyOpaqueBodyPartMemento: canStartKeyListJob && startKeyListJob";
#endif
return;
}
if (m_keylistjob) {
m_keylistjob->deleteLater();
}
m_keylistjob = nullptr;
setRunning(false);
notify();
}
bool VerifyOpaqueBodyPartMemento::startKeyListJob()
{
assert(canStartKeyListJob());
if (const GpgME::Error err = m_keylistjob->start(keyListPattern())) {
return false;
}
connect(m_keylistjob, SIGNAL(done()), this, SLOT(slotKeyListJobDone()));
connect(m_keylistjob, SIGNAL(nextKey(GpgME::Key)),
this, SLOT(slotNextKey(GpgME::Key)));
return true;
}
void VerifyOpaqueBodyPartMemento::slotNextKey(const GpgME::Key &key)
{
#ifdef DEBUG_SIGNATURE
qCDebug(MIMETREEPARSER_LOG) << "tokoe: VerifyOpaqueBodyPartMemento::slotNextKey called";
#endif
m_key = key;
}
void VerifyOpaqueBodyPartMemento::slotKeyListJobDone()
{
#ifdef DEBUG_SIGNATURE
qCDebug(MIMETREEPARSER_LOG) << "tokoe: VerifyOpaqueBodyPartMemento::slotKeyListJobDone called";
#endif
m_keylistjob = nullptr;
setRunning(false);
notify();
}
|