2020-08-06 12:08:22 +00:00
|
|
|
#pragma once
|
|
|
|
#include "ui_autoupdaterdialog.h"
|
2020-12-21 16:47:48 +00:00
|
|
|
#include <string>
|
|
|
|
#include <QtCore/QStringList>
|
2020-08-06 12:08:22 +00:00
|
|
|
#include <QtWidgets/QDialog>
|
|
|
|
|
|
|
|
class QNetworkAccessManager;
|
|
|
|
class QNetworkReply;
|
|
|
|
|
|
|
|
class QtHostInterface;
|
|
|
|
|
|
|
|
class AutoUpdaterDialog final : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit AutoUpdaterDialog(QtHostInterface* host_interface, QWidget* parent = nullptr);
|
|
|
|
~AutoUpdaterDialog();
|
|
|
|
|
|
|
|
static bool isSupported();
|
2020-12-21 16:47:48 +00:00
|
|
|
static QStringList getTagList();
|
|
|
|
static std::string getDefaultTag();
|
2020-08-06 12:08:22 +00:00
|
|
|
|
|
|
|
Q_SIGNALS:
|
|
|
|
void updateCheckCompleted();
|
|
|
|
|
|
|
|
public Q_SLOTS:
|
|
|
|
void queueUpdateCheck(bool display_message);
|
|
|
|
void queueGetLatestRelease();
|
|
|
|
|
|
|
|
private Q_SLOTS:
|
|
|
|
void getLatestTagComplete(QNetworkReply* reply);
|
|
|
|
void getLatestReleaseComplete(QNetworkReply* reply);
|
|
|
|
|
2020-08-19 14:20:34 +00:00
|
|
|
void queueGetChanges();
|
|
|
|
void getChangesComplete(QNetworkReply* reply);
|
|
|
|
|
2020-08-06 12:08:22 +00:00
|
|
|
void downloadUpdateClicked();
|
|
|
|
void skipThisUpdateClicked();
|
|
|
|
void remindMeLaterClicked();
|
|
|
|
|
|
|
|
private:
|
|
|
|
void reportError(const char* msg, ...);
|
|
|
|
bool updateNeeded() const;
|
2020-12-21 16:47:48 +00:00
|
|
|
std::string getCurrentUpdateTag() const;
|
2020-08-06 12:08:22 +00:00
|
|
|
|
2021-06-28 10:16:48 +00:00
|
|
|
#ifdef _WIN32
|
2020-08-06 12:08:22 +00:00
|
|
|
bool processUpdate(const QByteArray& update_data);
|
|
|
|
bool extractUpdater(const QString& zip_path, const QString& destination_path);
|
|
|
|
bool doUpdate(const QString& zip_path, const QString& updater_path, const QString& destination_path);
|
|
|
|
#else
|
|
|
|
bool processUpdate(const QByteArray& update_data);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
Ui::AutoUpdaterDialog m_ui;
|
|
|
|
|
|
|
|
QtHostInterface* m_host_interface;
|
|
|
|
QNetworkAccessManager* m_network_access_mgr = nullptr;
|
|
|
|
QString m_latest_sha;
|
|
|
|
QString m_download_url;
|
2020-09-29 15:10:13 +00:00
|
|
|
int m_download_size = 0;
|
2020-08-06 12:08:22 +00:00
|
|
|
|
|
|
|
bool m_display_messages = false;
|
2020-09-29 13:12:43 +00:00
|
|
|
bool m_update_will_break_save_states = false;
|
2020-08-06 12:08:22 +00:00
|
|
|
};
|