mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 02:42:51 +00:00
189 lines
6.6 KiB
C++
189 lines
6.6 KiB
C++
/* -*- mode: c++; c-basic-offset:4 -*-
|
|
uiserver/prepsigncommand.cpp
|
|
|
|
This file is part of Kleopatra, the KDE keymanager
|
|
Copyright (c) 2007 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 "prepsigncommand.h"
|
|
|
|
#include <crypto/newsignencryptemailcontroller.h>
|
|
|
|
#include <utils/kleo_assert.h>
|
|
|
|
#include <kleo/exception.h>
|
|
|
|
#include <KLocalizedString>
|
|
|
|
#include <QPointer>
|
|
#include <QTimer>
|
|
|
|
using namespace Kleo;
|
|
using namespace Kleo::Crypto;
|
|
using namespace boost;
|
|
|
|
class PrepSignCommand::Private : public QObject {
|
|
Q_OBJECT
|
|
private:
|
|
friend class ::Kleo::PrepSignCommand;
|
|
PrepSignCommand * const q;
|
|
public:
|
|
explicit Private( PrepSignCommand * qq )
|
|
: q( qq ), controller() {}
|
|
|
|
private:
|
|
void checkForErrors() const;
|
|
|
|
public Q_SLOTS:
|
|
void slotSignersResolved();
|
|
void slotError( int, const QString & );
|
|
|
|
private:
|
|
shared_ptr<NewSignEncryptEMailController> controller;
|
|
};
|
|
|
|
PrepSignCommand::PrepSignCommand()
|
|
: AssuanCommandMixin<PrepSignCommand>(), d( new Private( this ) )
|
|
{
|
|
|
|
}
|
|
|
|
PrepSignCommand::~PrepSignCommand() {}
|
|
|
|
void PrepSignCommand::Private::checkForErrors() const {
|
|
|
|
if ( !q->inputs().empty() || !q->outputs().empty() || !q->messages().empty() )
|
|
throw Exception( makeError( GPG_ERR_CONFLICT ),
|
|
i18n( "INPUT/OUTPUT/MESSAGE may only be given after PREP_SIGN" ) );
|
|
|
|
if ( q->numFiles() )
|
|
throw Exception( makeError( GPG_ERR_CONFLICT ),
|
|
i18n( "PREP_SIGN is an email mode command, connection seems to be in filemanager mode" ) );
|
|
|
|
if ( q->senders().empty() )
|
|
throw Exception( makeError( GPG_ERR_CONFLICT ),
|
|
i18n( "No SENDER given" ) );
|
|
|
|
const shared_ptr<NewSignEncryptEMailController> m = q->mementoContent< shared_ptr<NewSignEncryptEMailController> >( NewSignEncryptEMailController::mementoName() );
|
|
|
|
if ( m && m->isSigning() ) {
|
|
|
|
if ( q->hasOption( "protocol" ) )
|
|
if ( m->protocol() != q->checkProtocol( EMail ) )
|
|
throw Exception( makeError( GPG_ERR_CONFLICT ),
|
|
i18n( "Protocol given conflicts with protocol determined by PREP_ENCRYPT in this session" ) );
|
|
|
|
// ### check that any SENDER here is the same as the one for PREP_ENCRYPT
|
|
|
|
// ### ditto RECIPIENT
|
|
|
|
}
|
|
|
|
}
|
|
|
|
static void connectController( const QObject * controller, const QObject * d ) {
|
|
QObject::connect( controller, SIGNAL(certificatesResolved()), d, SLOT(slotSignersResolved()) );
|
|
QObject::connect( controller, SIGNAL(error(int,QString)), d, SLOT(slotError(int,QString)) );
|
|
}
|
|
|
|
int PrepSignCommand::doStart() {
|
|
|
|
d->checkForErrors();
|
|
|
|
const shared_ptr<NewSignEncryptEMailController> seec = mementoContent< shared_ptr<NewSignEncryptEMailController> >( NewSignEncryptEMailController::mementoName() );
|
|
|
|
if ( seec && seec->isSigning() ) {
|
|
// reuse the controller from a previous PREP_ENCRYPT --expect-sign, if available:
|
|
d->controller = seec;
|
|
connectController( seec.get(), d.get() );
|
|
seec->setExecutionContext( shared_from_this() );
|
|
if ( seec->areCertificatesResolved() )
|
|
QTimer::singleShot( 0, d.get(), SLOT(slotSignersResolved()) );
|
|
else
|
|
kleo_assert( seec->isResolvingInProgress() );
|
|
} else {
|
|
// use a new controller
|
|
d->controller.reset( new NewSignEncryptEMailController( shared_from_this() ) );
|
|
|
|
const QString session = sessionTitle();
|
|
if ( !session.isEmpty() )
|
|
d->controller->setSubject( session );
|
|
|
|
if ( hasOption( "protocol" ) )
|
|
// --protocol is optional for PREP_SIGN
|
|
d->controller->setProtocol( checkProtocol( EMail ) );
|
|
|
|
d->controller->setEncrypting( false );
|
|
d->controller->setSigning( true );
|
|
connectController( d->controller.get(), d.get() );
|
|
d->controller->startResolveCertificates( recipients(), senders() );
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
void PrepSignCommand::Private::slotSignersResolved() {
|
|
//hold local shared_ptr to member as q->done() deletes *this
|
|
const shared_ptr<NewSignEncryptEMailController> cont = controller;
|
|
QPointer<Private> that( this );
|
|
|
|
try {
|
|
|
|
q->sendStatus( "PROTOCOL", QLatin1String(controller->protocolAsString()) );
|
|
q->registerMemento( NewSignEncryptEMailController::mementoName(),
|
|
make_typed_memento( controller ) );
|
|
q->done();
|
|
return;
|
|
|
|
} catch ( const Exception & e ) {
|
|
q->done( e.error(), e.message() );
|
|
} catch ( const std::exception & e ) {
|
|
q->done( makeError( GPG_ERR_UNEXPECTED ),
|
|
i18n("Caught unexpected exception in PrepSignCommand::Private::slotRecipientsResolved: %1",
|
|
QString::fromLocal8Bit( e.what() ) ) );
|
|
} catch ( ... ) {
|
|
q->done( makeError( GPG_ERR_UNEXPECTED ),
|
|
i18n("Caught unknown exception in PrepSignCommand::Private::slotRecipientsResolved") );
|
|
}
|
|
if ( that ) // isn't this always deleted here and thus unnecessary?
|
|
q->removeMemento( NewSignEncryptEMailController::mementoName() );
|
|
cont->cancel();
|
|
}
|
|
|
|
void PrepSignCommand::Private::slotError( int err, const QString & details ) {
|
|
q->done( err, details );
|
|
}
|
|
|
|
void PrepSignCommand::doCanceled() {
|
|
if ( d->controller )
|
|
d->controller->cancel();
|
|
}
|
|
|
|
#include "prepsigncommand.moc"
|