#include "lc_global.h" #include "lc_qupdatedialog.h" #include "ui_lc_qupdatedialog.h" #include "lc_application.h" #include "lc_library.h" #include "lc_profile.h" void lcDoInitialUpdateCheck() { int updateFrequency = lcGetProfileInt(LC_PROFILE_CHECK_UPDATES); if (updateFrequency == 0) return; QSettings settings; QDateTime CheckTime = settings.value("Updates/LastCheck", QDateTime()).toDateTime(); if (!CheckTime.isNull()) { QDateTime NextCheckTime = CheckTime.addDays(updateFrequency == 1 ? 1 : 7); #if (QT_VERSION >= QT_VERSION_CHECK(4, 7, 0)) if (NextCheckTime > QDateTime::currentDateTimeUtc()) #else if (NextCheckTime > QDateTime::currentDateTime()) #endif return; } new lcQUpdateDialog(NULL, true); } lcQUpdateDialog::lcQUpdateDialog(QWidget* Parent, bool InitialUpdate) : QDialog(Parent), ui(new Ui::lcQUpdateDialog), mInitialUpdate(InitialUpdate) { ui->setupUi(this); connect(this, SIGNAL(finished(int)), this, SLOT(finished(int))); ui->status->setText(tr("Connecting to update server...")); manager = new QNetworkAccessManager(this); connect(manager, SIGNAL(finished(QNetworkReply*)), this, SLOT(replyFinished(QNetworkReply*))); updateReply = manager->get(QNetworkRequest(QUrl("http://www.leocad.org/updates.txt"))); } lcQUpdateDialog::~lcQUpdateDialog() { if (updateReply) { updateReply->abort(); updateReply->deleteLater(); } if (manager) manager->deleteLater(); delete ui; } void lcQUpdateDialog::accept() { QSettings settings; settings.setValue("Updates/IgnoreVersion", versionData); QDialog::accept(); } void lcQUpdateDialog::reject() { if (updateReply) { updateReply->abort(); updateReply->deleteLater(); updateReply = NULL; } QDialog::reject(); } void lcQUpdateDialog::finished(int result) { Q_UNUSED(result); if (mInitialUpdate) deleteLater(); } void lcQUpdateDialog::replyFinished(QNetworkReply *reply) { bool updateAvailable = false; if (reply->error() == QNetworkReply::NoError) { int majorVersion, minorVersion, patchVersion; int parts; versionData = reply->readAll(); const char *update = versionData; QSettings settings; QByteArray ignoreUpdate = settings.value("Updates/IgnoreVersion", QByteArray()).toByteArray(); if (mInitialUpdate && ignoreUpdate == versionData) { updateAvailable = false; } else if (sscanf(update, "%d.%d.%d %d", &majorVersion, &minorVersion, &patchVersion, &parts) == 4) { QString status; if (majorVersion > LC_VERSION_MAJOR) updateAvailable = true; else if (majorVersion == LC_VERSION_MAJOR) { if (minorVersion > LC_VERSION_MINOR) updateAvailable = true; else if (minorVersion == LC_VERSION_MINOR) { if (patchVersion > LC_VERSION_PATCH) updateAvailable = true; } } if (updateAvailable) status = QString(tr("
There's a newer version of LeoCAD available for download (%1.%2.%3).
")).arg(QString::number(majorVersion), QString::number(minorVersion), QString::number(patchVersion)); else status = tr("You are using the latest LeoCAD version.
"); lcPiecesLibrary* library = lcGetPiecesLibrary(); if (library->mNumOfficialPieces) { if (parts > library->mNumOfficialPieces) { status += tr("There are new parts available.
"); updateAvailable = true; } else status += tr("There are no new parts available at this time.
"); } if (updateAvailable) { status += tr("Visit https://github.com/leozide/leocad/releases to download.
"); } ui->status->setText(status); } else ui->status->setText(tr("Error parsing update information.")); #if (QT_VERSION >= QT_VERSION_CHECK(4, 7, 0)) settings.setValue("Updates/LastCheck", QDateTime::currentDateTimeUtc()); #else settings.setValue("Updates/LastCheck", QDateTime::currentDateTime()); #endif updateReply = NULL; reply->deleteLater(); } else ui->status->setText(tr("Error connecting to the update server.")); if (mInitialUpdate) { if (updateAvailable) show(); else deleteLater(); } if (updateAvailable) ui->buttonBox->setStandardButtons(QDialogButtonBox::Close | QDialogButtonBox::Ignore); else ui->buttonBox->setStandardButtons(QDialogButtonBox::Close); }