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

137 lines
6.8 KiB
C++

/* -*- mode: c++; c-basic-offset:4 -*-
commands/refreshopenpgpcertscommand.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 "refreshopenpgpcertscommand.h"
#include <utils/gnupg-helper.h>
#include <kleo/cryptobackendfactory.h>
#include <kleo/cryptoconfig.h>
#include <KLocalizedString>
#include <KMessageBox>
using namespace Kleo;
using namespace Kleo::Commands;
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();
}
RefreshOpenPGPCertsCommand::RefreshOpenPGPCertsCommand( KeyListController * c )
: GnuPGProcessCommand( c )
{
setShowsOutputWindow( true );
}
RefreshOpenPGPCertsCommand::RefreshOpenPGPCertsCommand( QAbstractItemView * v, KeyListController * c )
: GnuPGProcessCommand( v, c )
{
setShowsOutputWindow( true );
}
RefreshOpenPGPCertsCommand::~RefreshOpenPGPCertsCommand() {}
bool RefreshOpenPGPCertsCommand::preStartHook( QWidget * parent ) const {
if ( !haveKeyserverConfigured() )
if ( KMessageBox::warningContinueCancel( parent,
i18nc("@info",
"<para>No OpenPGP directory services have been configured.</para>"
"<para>If not all of the certificates carry the name of their preferred "
"certificate server (few do), a fallback server is needed to fetch from.</para>"
"<para>Since none is configured, <application>Kleopatra</application> will use "
"<resource>keys.gnupg.net</resource> as the fallback.</para>"
"<para>You can configure OpenPGP directory servers in Kleopatra's "
"configuration dialog.</para>"
"<para>Do you want to continue with <resource>keys.gnupg.net</resource> "
"as fallback server?</para>" ),
i18nc("@title:window", "OpenPGP Certificate Refresh"),
KStandardGuiItem::cont(), KStandardGuiItem::cancel(),
QLatin1String( "warn-refresh-openpgp-missing-keyserver" ) )
!= KMessageBox::Continue )
return false;
return KMessageBox::warningContinueCancel( parent,
i18nc("@info",
"<para>Refreshing OpenPGP certificates implies downloading all certificates anew, "
"to check if any of them have been revoked in the meantime.</para>"
"<para>This can put a severe strain on your own as well as other people's network "
"connections, and can take up to an hour or more to complete, depending on "
"your network connection, and the number of certificates to check.</para> "
"<para>Are you sure you want to continue?</para>"),
i18nc("@title:window", "OpenPGP Certificate Refresh"),
KStandardGuiItem::cont(), KStandardGuiItem::cancel(),
QLatin1String( "warn-refresh-openpgp-expensive" ) )
== KMessageBox::Continue;
}
QStringList RefreshOpenPGPCertsCommand::arguments() const {
QStringList result;
result << gpgPath();
if ( !haveKeyserverConfigured() )
result << QLatin1String("--keyserver") << QLatin1String("keys.gnupg.net");
result << QLatin1String("--refresh-keys");
return result;
}
QString RefreshOpenPGPCertsCommand::errorCaption() const {
return i18nc( "@title:window", "OpenPGP Certificate Refresh Error" );
}
QString RefreshOpenPGPCertsCommand::successCaption() const {
return i18nc( "@title:window", "OpenPGP Certificate Refresh Finished" );
}
QString RefreshOpenPGPCertsCommand::crashExitMessage( const QStringList & args ) const {
return i18nc("@info",
"<para>The GPG process that tried to refresh OpenPGP certificates "
"ended prematurely because of an unexpected error.</para>"
"<para>Please check the output of <icode>%1</icode> for details.</para>", args.join( QLatin1String(" ") ) ) ;
}
QString RefreshOpenPGPCertsCommand::errorExitMessage( const QStringList & args ) const {
return i18nc("@info",
"<para>An error occurred while trying to refresh OpenPGP certificates.</para> "
"<para>The output from <command>%1</command> was: <message>%2</message></para>",
args[0], errorString() );
}
QString RefreshOpenPGPCertsCommand::successMessage( const QStringList & ) const {
return i18nc( "@info", "OpenPGP certificates refreshed successfully." );
// ### --check-trustdb
}