Some more unfinished work on the auto-Updater

This commit is contained in:
Mark Watkins 2016-03-12 17:20:55 +10:00
parent ee50b6d275
commit f8a90a0187
2 changed files with 95 additions and 19 deletions

View File

@ -60,7 +60,6 @@ UpdaterWindow::UpdaterWindow(QWidget *parent) :
requestmode = RM_None; requestmode = RM_None;
netmanager = new QNetworkAccessManager(this); netmanager = new QNetworkAccessManager(this);
connect(netmanager, SIGNAL(finished(QNetworkReply *)), this, SLOT(replyFinished(QNetworkReply *)));
update = nullptr; update = nullptr;
ui->stackedWidget->setCurrentIndex(0); ui->stackedWidget->setCurrentIndex(0);
} }
@ -107,11 +106,52 @@ void UpdaterWindow::downloadUpdateXML()
req.setRawHeader("User-Agent", "Wget/1.12 (linux-gnu)"); req.setRawHeader("User-Agent", "Wget/1.12 (linux-gnu)");
reply = netmanager->get(req); reply = netmanager->get(req);
ui->plainTextEdit->appendPlainText(tr("Requesting ") + update_url.toString()); ui->plainTextEdit->appendPlainText(tr("Requesting ") + update_url.toString());
netmanager->connect(reply, SIGNAL(downloadProgress(qint64, qint64)), this, // netmanager->connect(reply, SIGNAL(downloadProgress(qint64, qint64)), this,SLOT(downloadProgress(qint64, qint64)));
SLOT(downloadProgress(qint64, qint64)));
connect(netmanager, SIGNAL(finished(QNetworkReply *)), this, SLOT(updateFinished(QNetworkReply *)));
dltime.start(); dltime.start();
} }
void UpdaterWindow::updateFinished(QNetworkReply *reply)
{
if (reply->error() != QNetworkReply::NoError) {
qDebug() << "Update Check Error: "+reply->errorString();
// netmanager->disconnect(reply,
// SIGNAL(downloadProgress(qint64, qint64)), this,
// SLOT(downloadProgress(qint64, qint64)));
disconnect(netmanager, SIGNAL(finished(QNetworkReply *)), this, SLOT(updateFinished(QNetworkReply *)));
mainwin->Notify(tr("SleepyHead Updates are currently unvailable for this platform"),tr("SleepyHead Updates"));
} else {
QUrl redirectUrl = reply->attribute(QNetworkRequest::RedirectionTargetAttribute).toUrl();
if (!redirectUrl.isEmpty() && (redirectUrl != reply->url())) {
update_url = redirectUrl;
reply->deleteLater();
QTimer::singleShot(100, this, SLOT(downloadUpdateXML()));
return;
}
// netmanager->disconnect(reply,
// SIGNAL(downloadProgress(qint64, qint64)), this,
// SLOT(downloadProgress(qint64, qint64)));
disconnect(netmanager, SIGNAL(finished(QNetworkReply *)), this, SLOT(updateFinished(QNetworkReply *)));
ui->plainTextEdit->appendPlainText(tr("%1 bytes received").arg(reply->size()));
QString filename = QApplication::applicationDirPath() + "/Updates.xml";
qDebug() << filename;
QFile file(filename);
file.open(QFile::WriteOnly);
file.write(reply->readAll());
file.close();
file.open(QFile::ReadOnly);
//QTextStream ts(&file);
ParseUpdatesXML(&file);
file.close();
reply->deleteLater();
}
}
void UpdaterWindow::dataReceived() void UpdaterWindow::dataReceived()
{ {
QString rs = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toString(); QString rs = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toString();
@ -332,7 +372,7 @@ const QString UPDATE_SleepyHead = "com.jedimark.sleepyhead";
const QString UPDATE_QT = "com.jedimark.sleepyhead.qtlibraries"; const QString UPDATE_QT = "com.jedimark.sleepyhead.qtlibraries";
const QString UPDATE_Translations = "com.jedimark.sleepyhead.translations"; const QString UPDATE_Translations = "com.jedimark.sleepyhead.translations";
bool SpawnApp(QString apppath, QStringList args) bool SpawnApp(QString apppath, QStringList args = QStringList())
{ {
#ifdef Q_OS_MAC #ifdef Q_OS_MAC
// In Mac OS the full path of aplication binary is: // In Mac OS the full path of aplication binary is:
@ -351,30 +391,64 @@ bool SpawnApp(QString apppath, QStringList args)
void StartMaintenanceTool() void StartMaintenanceTool()
{ {
QString mt_path = QApplication::applicationDirPath()+"/MaintenanceTool.exe";
SpawnApp(mt_path);
#ifdef Q_OS_WINDOWS
#endif
} }
//New, Qt Installer framework version //New, Qt Installer framework version
void UpdaterWindow::ParseUpdatesXML(QIODevice *dev) void UpdaterWindow::ParseUpdatesXML(QIODevice *dev)
{ {
if (updatesparser.read(dev)) { if (updatesparser.read(dev)) {
ui->plainTextEdit->appendPlainText(tr("XML update structure parsed cleanly")); qDebug() << " XML update structure parsed cleanly";
if (updatesparser.packages.contains(UPDATE_SleepyHead)) { QHash<QString, QString> CurrentVersion;
PackageUpdate & update = updatesparser.packages[UPDATE_SleepyHead];
if (compareVersion(update.versionString) <= 0) {
mainwin->Notify(tr("No updates were found for your platform."), tr("SleepyHead Updates"), 5000);
PREF[STR_GEN_UpdatesLastChecked] = QDateTime::currentDateTime();
close();
return;
} else {
if (QMessageBox::question(mainwin, tr("SleepyHead Updates"),
tr("New SleepyHead version %1 was detected.").arg(update.versionString)+"\n\n"+
tr("Would you like to download and install it now?"),
QMessageBox::Yes, QMessageBox::No) == QMessageBox::Yes) {
StartMaintenanceTool(); CurrentVersion[UPDATE_SleepyHead] = VersionString;
QApplication::instance()->quit(); CurrentVersion[UPDATE_QT] = QT_VERSION_STR;
CurrentVersion[UPDATE_Translations] = VersionString;
QList<PackageUpdate> updateList;
QHash<QString, PackageUpdate>::iterator it;
for (it = updatesparser.packages.begin(); it!=updatesparser.packages.end(); ++it) {
const PackageUpdate & update = it.value();
if (it.key() == UPDATE_SleepyHead) {
if (compareVersion(update.versionString)>0) {
updateList.push_back(update);
} }
} else if (it.key() == UPDATE_QT) {
bool ok;
QStringList chunks = update.versionString.split(".");
int major = chunks[0].toInt(&ok);
int minor = chunks[1].toInt(&ok);
int patch = chunks[2].toInt(&ok);
if (QT_VERSION_CHECK(major, minor, patch) > QT_VERSION) {
updateList.push_back(update);
}
} else if (it.key() == UPDATE_Translations) {
if (compareVersion(update.versionString)>0) {
updateList.push_back(update);
}
}
}
if (updateList.size()==0) {
mainwin->Notify(tr("No updates were found for your platform."), tr("SleepyHead Updates"), 5000);
PREF[STR_GEN_UpdatesLastChecked] = QDateTime::currentDateTime();
close();
return;
} else {
if (QMessageBox::question(mainwin, tr("SleepyHead Updates"),
tr("New SleepyHead Updates are avilable:")+"\n\n"+
tr("Would you like t download and install them now?"),
QMessageBox::Yes, QMessageBox::No) == QMessageBox::Yes) {
StartMaintenanceTool();
QApplication::instance()->quit();
} }
} }
} else { } else {

View File

@ -54,6 +54,8 @@ class UpdaterWindow : public QMainWindow
void ParseUpdatesXML(QIODevice *dev); void ParseUpdatesXML(QIODevice *dev);
protected slots: protected slots:
void updateFinished(QNetworkReply *reply);
//! \brief Network reply completed //! \brief Network reply completed
void replyFinished(QNetworkReply *reply); void replyFinished(QNetworkReply *reply);