/* -*- mode: c++; c-basic-offset:4 -*- commands/exportopenpgpcertstoservercommand.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 #include "exportopenpgpcertstoservercommand.h" #include "command_p.h" #include #include #include #include #include #include using namespace Kleo; using namespace Kleo::Commands; using namespace GpgME; static bool haveKeyserverConfigured() { const Kleo::CryptoConfig * const config = Kleo::CryptoBackendFactory::instance()->config(); if ( !config ) return false; const Kleo::CryptoConfigEntry * const entry = config->entry( QLatin1String("gpg"), QLatin1String("Keyserver"), QLatin1String("keyserver") ); return entry && !entry->stringValue().isEmpty(); } ExportOpenPGPCertsToServerCommand::ExportOpenPGPCertsToServerCommand( KeyListController * c ) : GnuPGProcessCommand( c ) { } ExportOpenPGPCertsToServerCommand::ExportOpenPGPCertsToServerCommand( QAbstractItemView * v, KeyListController * c ) : GnuPGProcessCommand( v, c ) { } ExportOpenPGPCertsToServerCommand::ExportOpenPGPCertsToServerCommand( const Key & key ) : GnuPGProcessCommand( key ) { } ExportOpenPGPCertsToServerCommand::~ExportOpenPGPCertsToServerCommand() {} bool ExportOpenPGPCertsToServerCommand::preStartHook( QWidget * parent ) const { if ( !haveKeyserverConfigured() ) if ( KMessageBox::warningContinueCancel( parent, i18nc("@info", "No OpenPGP directory services have been configured." "Since none is configured, Kleopatra will use " "keys.gnupg.net as the server to export to." "You can configure OpenPGP directory servers in Kleopatra's " "configuration dialog." "Do you want to continue with keys.gnupg.net " "as the server to export to?" ), i18nc("@title:window", "OpenPGP Certificate Export"), KStandardGuiItem::cont(), KStandardGuiItem::cancel(), QLatin1String( "warn-export-openpgp-missing-keyserver" ) ) != KMessageBox::Continue ) return false; return KMessageBox::warningContinueCancel( parent, i18nc("@info", "When OpenPGP certificates have been exported to a public directory server, " "it is nearly impossible to remove them again." "Before exporting your certificate to a public directory server, make sure that you " "have created a revocation certificate so you can revoke the certificate if needed later." "Are you sure you want to continue?"), i18nc("@title:window", "OpenPGP Certificate Export"), KStandardGuiItem::cont(), KStandardGuiItem::cancel(), QLatin1String( "warn-export-openpgp-nonrevocable" ) ) == KMessageBox::Continue; } QStringList ExportOpenPGPCertsToServerCommand::arguments() const { QStringList result; result << gpgPath(); if ( !haveKeyserverConfigured() ) result << QLatin1String("--keyserver") << QLatin1String("keys.gnupg.net"); result << QLatin1String("--send-keys"); Q_FOREACH( const Key & key, d->keys() ) //krazy:exclude=foreach result << QLatin1String(key.primaryFingerprint()); return result; } QString ExportOpenPGPCertsToServerCommand::errorCaption() const { return i18nc( "@title:window", "OpenPGP Certificate Export Error" ); } QString ExportOpenPGPCertsToServerCommand::successCaption() const { return i18nc( "@title:window", "OpenPGP Certificate Export Finished" ); } QString ExportOpenPGPCertsToServerCommand::crashExitMessage( const QStringList & args ) const { return i18nc("@info", "The GPG process that tried to export OpenPGP certificates " "ended prematurely because of an unexpected error." "Please check the output of %1 for details.", args.join( QLatin1String(" ") ) ) ; } QString ExportOpenPGPCertsToServerCommand::errorExitMessage( const QStringList & args ) const { return i18nc("@info", "An error occurred while trying to export OpenPGP certificates. " "The output from %1 was: %2", args[0], errorString() ); } QString ExportOpenPGPCertsToServerCommand::successMessage( const QStringList & ) const { return i18nc( "@info", "OpenPGP certificates exported successfully." ); }