kde-playground/kdepim/kleopatra/commands/dumpcertificatecommand.cpp
2015-04-14 21:49:29 +00:00

326 lines
10 KiB
C++

/* -*- mode: c++; c-basic-offset:4 -*-
commands/dumpcertificatecommand.cpp
This file is part of Kleopatra, the KDE keymanager
Copyright (c) 2008 Klarälvdalens Datakonsult AB
Kleopatra 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.
Kleopatra 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
In addition, as a special exception, the copyright holders give
permission to link the code of this program with any edition of
the Qt library by Trolltech AS, Norway (or with modified versions
of Qt that use the same license as Qt), and distribute linked
combinations including the two. You must obey the GNU General
Public License in all respects for all of the code used other than
Qt. If you modify this file, you may extend this exception to
your version of the file, but you are not obligated to do so. If
you do not wish to do so, delete this exception statement from
your version.
*/
#include <config-kleopatra.h>
#include "dumpcertificatecommand.h"
#include "command_p.h"
#include <utils/kdlogtextwidget.h>
#include <utils/gnupg-helper.h>
#include <gpgme++/key.h>
#include <KProcess>
#include <KMessageBox>
#include <KLocalizedString>
#include <KPushButton>
#include <KStandardGuiItem>
#include <KGlobalSettings>
#include <QString>
#include <QByteArray>
#include <QTimer>
#include <QPointer>
#include <QVBoxLayout>
#include <QHBoxLayout>
static const int PROCESS_TERMINATE_TIMEOUT = 5000; // milliseconds
namespace {
class DumpCertificateDialog : public QDialog {
Q_OBJECT
public:
explicit DumpCertificateDialog( QWidget * parent=0 )
: QDialog( parent ), ui( this )
{
}
Q_SIGNALS:
void updateRequested();
public Q_SLOTS:
void append( const QString & line ) {
ui.logTextWidget.message( line );
}
void clear() {
ui.logTextWidget.clear();
}
private:
struct Ui {
KDLogTextWidget logTextWidget;
KPushButton updateButton, closeButton;
QVBoxLayout vlay;
QHBoxLayout hlay;
explicit Ui( DumpCertificateDialog * q )
: logTextWidget( q ),
updateButton( i18nc("@action:button Update the log text widget", "&Update"), q ),
closeButton( KStandardGuiItem::close(), q ),
vlay( q ),
hlay()
{
KDAB_SET_OBJECT_NAME( logTextWidget );
KDAB_SET_OBJECT_NAME( updateButton );
KDAB_SET_OBJECT_NAME( closeButton );
KDAB_SET_OBJECT_NAME( vlay );
KDAB_SET_OBJECT_NAME( hlay );
logTextWidget.setFont( KGlobalSettings::fixedFont() );
logTextWidget.setMinimumVisibleLines( 25 );
logTextWidget.setMinimumVisibleColumns( 80 );
vlay.addWidget( &logTextWidget, 1 );
vlay.addLayout( &hlay );
hlay.addWidget( &updateButton );
hlay.addStretch( 1 );
hlay.addWidget( &closeButton );
connect( &updateButton, SIGNAL(clicked()),
q, SIGNAL(updateRequested()) );
connect( &closeButton, SIGNAL(clicked()),
q, SLOT(close()) );
}
} ui;
};
}
using namespace Kleo;
using namespace Kleo::Commands;
static QByteArray chomped( QByteArray ba ) {
while ( ba.endsWith( '\n' ) || ba.endsWith( '\r' ) )
ba.chop( 1 );
return ba;
}
class DumpCertificateCommand::Private : Command::Private {
friend class ::Kleo::Commands::DumpCertificateCommand;
DumpCertificateCommand * q_func() const { return static_cast<DumpCertificateCommand*>( q ); }
public:
explicit Private( DumpCertificateCommand * qq, KeyListController * c );
~Private();
QString errorString() const {
return QString::fromLocal8Bit( errorBuffer );
}
private:
void init();
void refreshView();
private:
void slotProcessFinished( int, QProcess::ExitStatus );
void slotProcessReadyReadStandardOutput() {
while ( process.canReadLine() ) {
const QString line = QString::fromUtf8( chomped( process.readLine() ) );
if ( dialog )
dialog->append( line );
outputBuffer.push_back( line );
}
}
void slotProcessReadyReadStandardError() {
errorBuffer += process.readAllStandardError();
}
void slotUpdateRequested() {
if ( process.state() == QProcess::NotRunning )
refreshView();
}
void slotDialogDestroyed() {
dialog = 0;
if ( process.state() != QProcess::NotRunning )
q->cancel();
else
finished();
}
private:
QPointer<DumpCertificateDialog> dialog;
KProcess process;
QByteArray errorBuffer;
QStringList outputBuffer;
bool useDialog;
bool canceled;
};
DumpCertificateCommand::Private * DumpCertificateCommand::d_func() { return static_cast<Private*>( d.get() ); }
const DumpCertificateCommand::Private * DumpCertificateCommand::d_func() const { return static_cast<const Private*>( d.get() ); }
#define d d_func()
#define q q_func()
DumpCertificateCommand::Private::Private( DumpCertificateCommand * qq, KeyListController * c )
: Command::Private( qq, c ),
process(),
errorBuffer(),
outputBuffer(),
useDialog( true ),
canceled( false )
{
process.setOutputChannelMode( KProcess::SeparateChannels );
process.setReadChannel( KProcess::StandardOutput );
}
DumpCertificateCommand::Private::~Private() {
if ( dialog && !dialog->isVisible() )
delete dialog;
}
DumpCertificateCommand::DumpCertificateCommand( KeyListController * c )
: Command( new Private( this, c ) )
{
d->init();
}
DumpCertificateCommand::DumpCertificateCommand( QAbstractItemView * v, KeyListController * c )
: Command( v, new Private( this, c ) )
{
d->init();
}
DumpCertificateCommand::DumpCertificateCommand( const GpgME::Key & k )
: Command( k, new Private( this, 0 ) )
{
d->init();
}
void DumpCertificateCommand::Private::init() {
connect( &process, SIGNAL(finished(int,QProcess::ExitStatus)),
q, SLOT(slotProcessFinished(int,QProcess::ExitStatus)) );
connect( &process, SIGNAL(readyReadStandardError()),
q, SLOT(slotProcessReadyReadStandardError()) );
connect( &process, SIGNAL(readyReadStandardOutput()),
q, SLOT(slotProcessReadyReadStandardOutput()) );
if ( !key().isNull() )
process << gpgSmPath() << QLatin1String("--dump-cert") << QLatin1String(key().primaryFingerprint());
}
DumpCertificateCommand::~DumpCertificateCommand() {}
void DumpCertificateCommand::setUseDialog( bool use ) {
d->useDialog = use;
}
bool DumpCertificateCommand::useDialog() const {
return d->useDialog;
}
QStringList DumpCertificateCommand::output() const {
return d->outputBuffer;
}
void DumpCertificateCommand::doStart() {
const std::vector<GpgME::Key> keys = d->keys();
if ( keys.size() != 1 || keys.front().protocol() != GpgME::CMS ) {
d->finished();
return;
}
if ( d->useDialog ) {
d->dialog = new DumpCertificateDialog;
d->dialog->setAttribute( Qt::WA_DeleteOnClose );
d->dialog->setWindowTitle( i18n("Certificate Dump") );
connect( d->dialog, SIGNAL(updateRequested()),
this, SLOT(slotUpdateRequested()) );
connect( d->dialog, SIGNAL(destroyed()),
this, SLOT(slotDialogDestroyed()) );
}
d->refreshView();
}
void DumpCertificateCommand::Private::refreshView() {
if ( dialog )
dialog->clear();
errorBuffer.clear();
outputBuffer.clear();
process.start();
if ( process.waitForStarted() ) {
if ( dialog )
dialog->show();
} else {
KMessageBox::error( dialog ? static_cast<QWidget*>( dialog ) : parentWidgetOrView(),
i18n( "Unable to start process gpgsm. "
"Please check your installation." ),
i18n( "Dump Certificate Error" ) );
finished();
}
}
void DumpCertificateCommand::doCancel() {
d->canceled = true;
if ( d->process.state() != QProcess::NotRunning ) {
d->process.terminate();
QTimer::singleShot( PROCESS_TERMINATE_TIMEOUT, &d->process, SLOT(kill()) );
}
if ( d->dialog )
d->dialog->close();
d->dialog = 0;
}
void DumpCertificateCommand::Private::slotProcessFinished( int code, QProcess::ExitStatus status ) {
if ( !canceled ) {
if ( status == QProcess::CrashExit )
KMessageBox::error( dialog,
i18n( "The GpgSM process that tried to dump the certificate "
"ended prematurely because of an unexpected error. "
"Please check the output of gpgsm --dump-cert %1 for details.",
QLatin1String(key().primaryFingerprint()) ),
i18n( "Dump Certificate Error" ) );
else if ( code )
KMessageBox::error( dialog,
i18n( "An error occurred while trying to dump the certificate. "
"The output from GpgSM was:\n%1", errorString() ),
i18n( "Dump Certificate Error" ) );
}
if ( !useDialog )
slotDialogDestroyed();
}
#undef d
#undef q
#include "moc_dumpcertificatecommand.cpp"
#include "dumpcertificatecommand.moc"