mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 10:52:53 +00:00
109 lines
3.4 KiB
C++
109 lines
3.4 KiB
C++
/*
|
|
* Copyright (C) 2009 Rolf Eike Beer <kde@opensource.sf-tec.de>
|
|
*/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* This program 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. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifndef KGPGKEYSERVERGETTRANSACTION_H
|
|
#define KGPGKEYSERVERGETTRANSACTION_H
|
|
|
|
#include <QObject>
|
|
#include <QString>
|
|
#include <QStringList>
|
|
|
|
#include "kgpgkeyservertransaction.h"
|
|
|
|
/**
|
|
* @brief base class for transactions downloading from key servers
|
|
*/
|
|
class KGpgKeyserverGetTransaction: public KGpgKeyserverTransaction {
|
|
Q_OBJECT
|
|
|
|
Q_DISABLE_COPY(KGpgKeyserverGetTransaction)
|
|
/**
|
|
* @brief forbidden
|
|
*/
|
|
KGpgKeyserverGetTransaction(); // = delete C++0x
|
|
|
|
public:
|
|
/**
|
|
* @brief construct a new transaction for the given keyserver
|
|
* @param parent object that owns the transaction
|
|
* @param keyserver keyserver to work with
|
|
* @param keys the key ids to get
|
|
* @param withProgress show a progress window with cancel button
|
|
* @param proxy http proxy to use
|
|
*
|
|
* You should call this from the childrens constructor to set up
|
|
* everything properly
|
|
*/
|
|
KGpgKeyserverGetTransaction(QObject *parent, const QString &keyserver, const QStringList &keys, const bool withProgress = false, const QString &proxy = QString());
|
|
virtual ~KGpgKeyserverGetTransaction();
|
|
|
|
void setKeyIds(const QStringList &keys);
|
|
|
|
const QStringList &getLog() const;
|
|
|
|
protected:
|
|
virtual QString getGpgCommand() const = 0;
|
|
virtual bool preStart();
|
|
virtual bool nextLine(const QString &line);
|
|
|
|
private:
|
|
int m_cmdpos;
|
|
QStringList m_keys;
|
|
QStringList m_log;
|
|
};
|
|
|
|
/**
|
|
* @brief class for downloading new keys from keyserver
|
|
*/
|
|
class KGpgReceiveKeys: public KGpgKeyserverGetTransaction {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
/**
|
|
* @brief construct a new transaction for the given keyserver
|
|
* @param parent object that owns the transaction
|
|
* @param keyserver keyserver to work with
|
|
* @param keys the key ids to get
|
|
* @param withProgress show a progress window with cancel button
|
|
* @param proxy http proxy to use
|
|
*/
|
|
KGpgReceiveKeys(QObject *parent, const QString &keyserver, const QStringList &keys, const bool withProgress = false, const QString &proxy = QString());
|
|
virtual ~KGpgReceiveKeys();
|
|
|
|
protected:
|
|
virtual QString getGpgCommand() const;
|
|
};
|
|
|
|
/**
|
|
* @brief class for refreshing keys already in the keyring from keyserver
|
|
*/
|
|
class KGpgRefreshKeys: public KGpgKeyserverGetTransaction {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
/**
|
|
* @brief construct a new transaction for the given keyserver
|
|
* @param parent object that owns the transaction
|
|
* @param keyserver keyserver to work with
|
|
* @param keys the key ids to get
|
|
* @param withProgress show a progress window with cancel button
|
|
* @param proxy http proxy to use
|
|
*/
|
|
KGpgRefreshKeys(QObject *parent, const QString &keyserver, const QStringList &keys, const bool withProgress = false, const QString &proxy = QString());
|
|
virtual ~KGpgRefreshKeys();
|
|
|
|
protected:
|
|
virtual QString getGpgCommand() const;
|
|
};
|
|
|
|
#endif // KGPGUIDTRANSACTION_H
|