
* added error handler for api controller * while downloading the config from the api, the Connecting status is now displayed * added a button to delete container config for api servers * added crc check to avoid re-import of api configs * fixed currentIndex of serversMenuContent after DefaultServerIndexChanged * added closing the import window after re-importing the config from api
70 lines
2 KiB
C++
70 lines
2 KiB
C++
#ifndef IMPORTCONTROLLER_H
|
|
#define IMPORTCONTROLLER_H
|
|
|
|
#include <QObject>
|
|
|
|
#include "containers/containers_defs.h"
|
|
#include "core/defs.h"
|
|
#include "ui/models/containers_model.h"
|
|
#include "ui/models/servers_model.h"
|
|
|
|
class ImportController : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit ImportController(const QSharedPointer<ServersModel> &serversModel,
|
|
const QSharedPointer<ContainersModel> &containersModel,
|
|
const std::shared_ptr<Settings> &settings, QObject *parent = nullptr);
|
|
|
|
public slots:
|
|
void importConfig();
|
|
void extractConfigFromFile(const QString &fileName);
|
|
void extractConfigFromData(QString data);
|
|
void extractConfigFromCode(QString code);
|
|
bool extractConfigFromQr(const QByteArray &data);
|
|
QString getConfig();
|
|
QString getConfigFileName();
|
|
|
|
#if defined Q_OS_ANDROID || defined Q_OS_IOS
|
|
void startDecodingQr();
|
|
bool parseQrCodeChunk(const QString &code);
|
|
|
|
double getQrCodeScanProgressBarValue();
|
|
QString getQrCodeScanProgressString();
|
|
#endif
|
|
|
|
#if defined Q_OS_ANDROID
|
|
static bool decodeQrCode(const QString &code);
|
|
#endif
|
|
|
|
signals:
|
|
void importFinished();
|
|
void importErrorOccurred(const QString &errorMessage, bool goToPageHome = false);
|
|
|
|
void qrDecodingFinished();
|
|
|
|
private:
|
|
QJsonObject extractAmneziaConfig(QString &data);
|
|
QJsonObject extractOpenVpnConfig(const QString &data);
|
|
QJsonObject extractWireGuardConfig(const QString &data);
|
|
|
|
#if defined Q_OS_ANDROID || defined Q_OS_IOS
|
|
void stopDecodingQr();
|
|
#endif
|
|
|
|
QSharedPointer<ServersModel> m_serversModel;
|
|
QSharedPointer<ContainersModel> m_containersModel;
|
|
std::shared_ptr<Settings> m_settings;
|
|
|
|
QJsonObject m_config;
|
|
QString m_configFileName;
|
|
|
|
#if defined Q_OS_ANDROID || defined Q_OS_IOS
|
|
QMap<int, QByteArray> m_qrCodeChunks;
|
|
bool m_isQrCodeProcessed;
|
|
int m_totalQrCodeChunksCount;
|
|
int m_receivedQrCodeChunksCount;
|
|
#endif
|
|
};
|
|
|
|
#endif // IMPORTCONTROLLER_H
|