-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathkgpgtextinterface.cpp
More file actions
98 lines (79 loc) · 2.16 KB
/
Copy pathkgpgtextinterface.cpp
File metadata and controls
98 lines (79 loc) · 2.16 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
/*
SPDX-FileCopyrightText: 2002 Jean-Baptiste Mardelle <bj@altern.org>
SPDX-FileCopyrightText: 2007, 2008, 2009, 2010, 2011, 2012 Rolf Eike Beer <kde@opensource.sf-tec.de>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "kgpgtextinterface.h"
#include "gpgproc.h"
#include "kgpgsettings.h"
#include <QString>
class KGpgTextInterfacePrivate
{
Q_DISABLE_COPY(KGpgTextInterfacePrivate)
public:
KGpgTextInterfacePrivate(QObject *parent, const QString &keyID, const QStringList &options);
GPGProc * const m_process;
int m_step;
const QStringList m_gpgopts;
QList<QUrl> m_files;
void signFile(const QString &fileName);
};
static QStringList
buildCmdLine(const QString &keyID, const QStringList &options)
{
return QStringList(QLatin1String("-u")) <<
keyID <<
options <<
QLatin1String("--detach-sign") <<
QLatin1String("--output");
}
KGpgTextInterfacePrivate::KGpgTextInterfacePrivate(QObject *parent, const QString &keyID, const QStringList &options)
: m_process(new GPGProc(parent)),
m_step(0),
m_gpgopts(buildCmdLine(keyID, options))
{
}
void
KGpgTextInterfacePrivate::signFile(const QString &fileName)
{
m_process->resetProcess();
*m_process <<
m_gpgopts <<
fileName + QLatin1String(".sig") <<
fileName;
m_process->start();
}
KGpgTextInterface::KGpgTextInterface(QObject *parent, const QString &keyID, const QStringList &options)
: QObject(parent),
d(new KGpgTextInterfacePrivate(parent, keyID, options))
{
connect(d->m_process, &GPGProc::processExited, this, &KGpgTextInterface::slotSignFile);
}
KGpgTextInterface::~KGpgTextInterface()
{
delete d->m_process;
delete d;
}
// signatures
void
KGpgTextInterface::signFiles(const QList<QUrl> &srcUrls)
{
d->m_files = srcUrls;
slotSignFile();
}
void
KGpgTextInterface::slotSignFile()
{
const QString fileName = d->m_files.takeFirst().path();
if (d->m_files.isEmpty()) {
disconnect(d->m_process, &GPGProc::processExited, this, &KGpgTextInterface::slotSignFile);
connect(d->m_process, &GPGProc::processExited, this, &KGpgTextInterface::slotSignFinished);
}
d->signFile(fileName);
}
void
KGpgTextInterface::slotSignFinished()
{
Q_EMIT fileSignFinished();
}
#include "moc_kgpgtextinterface.cpp"