2018-04-19 22:16:55 +02:00
|
|
|
#include "updatemanager.hpp"
|
|
|
|
|
2018-06-21 22:02:35 +02:00
|
|
|
#include "util/combine_path.hpp"
|
2018-04-19 22:16:55 +02:00
|
|
|
#include "util/networkrequest.hpp"
|
2018-06-21 22:44:48 +02:00
|
|
|
#include "util/posttothread.hpp"
|
2018-04-19 22:16:55 +02:00
|
|
|
#include "version.hpp"
|
|
|
|
|
2018-06-21 22:02:35 +02:00
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QProcess>
|
|
|
|
|
2018-04-19 22:16:55 +02:00
|
|
|
namespace chatterino {
|
|
|
|
namespace singletons {
|
|
|
|
|
|
|
|
UpdateManager::UpdateManager()
|
2018-06-01 14:20:46 +02:00
|
|
|
: currentVersion_(CHATTERINO_VERSION)
|
2018-04-19 22:16:55 +02:00
|
|
|
{
|
2018-04-26 18:10:26 +02:00
|
|
|
qDebug() << "init UpdateManager";
|
2018-04-19 22:16:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
UpdateManager &UpdateManager::getInstance()
|
|
|
|
{
|
2018-06-01 14:20:46 +02:00
|
|
|
// fourtf: don't add this class to the application class
|
2018-04-19 22:16:55 +02:00
|
|
|
static UpdateManager instance;
|
2018-06-01 14:20:46 +02:00
|
|
|
|
2018-04-19 22:16:55 +02:00
|
|
|
return instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
const QString &UpdateManager::getCurrentVersion() const
|
|
|
|
{
|
2018-06-01 14:20:46 +02:00
|
|
|
return currentVersion_;
|
2018-04-19 22:16:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const QString &UpdateManager::getOnlineVersion() const
|
|
|
|
{
|
2018-06-01 14:20:46 +02:00
|
|
|
return onlineVersion_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void UpdateManager::installUpdates()
|
|
|
|
{
|
2018-06-21 22:02:35 +02:00
|
|
|
if (this->status_ != UpdateAvailable) {
|
|
|
|
assert(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
QMessageBox *box = new QMessageBox(QMessageBox::Information, "Chatterino Update",
|
|
|
|
"Chatterino is downloading the update "
|
|
|
|
"in the background and will run the "
|
|
|
|
"updater once it is finished.");
|
|
|
|
box->setAttribute(Qt::WA_DeleteOnClose);
|
|
|
|
box->show();
|
|
|
|
|
|
|
|
util::NetworkRequest req(this->updateUrl_);
|
|
|
|
req.setTimeout(600000);
|
|
|
|
req.onError([this](int) -> bool {
|
|
|
|
this->setStatus_(DownloadFailed);
|
2018-06-21 22:39:17 +02:00
|
|
|
|
|
|
|
QMessageBox *box = new QMessageBox(QMessageBox::Information, "Chatterino Update",
|
|
|
|
"Failed while trying to download the update.");
|
|
|
|
box->setAttribute(Qt::WA_DeleteOnClose);
|
|
|
|
box->show();
|
|
|
|
|
2018-06-21 22:02:35 +02:00
|
|
|
return true;
|
|
|
|
});
|
|
|
|
req.get([this](QByteArray &object) {
|
|
|
|
auto filename = util::combinePath(getApp()->paths->miscDirectory, "update.zip");
|
|
|
|
|
|
|
|
QFile file(filename);
|
|
|
|
if (file.write(object) == -1) {
|
|
|
|
this->setStatus_(WriteFileFailed);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
QProcess::startDetached("./updater.1/ChatterinoUpdater.exe", {filename, "restart"});
|
|
|
|
|
|
|
|
QApplication::exit(0);
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
this->setStatus_(Downloading);
|
|
|
|
req.execute();
|
|
|
|
#endif
|
2018-04-19 22:16:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void UpdateManager::checkForUpdates()
|
|
|
|
{
|
2018-06-21 22:02:35 +02:00
|
|
|
#ifdef Q_OS_WIN
|
2018-04-19 22:16:55 +02:00
|
|
|
QString url = "https://notitia.chatterino.com/version/chatterino/" CHATTERINO_OS "/stable";
|
|
|
|
|
|
|
|
util::NetworkRequest req(url);
|
2018-06-01 14:20:46 +02:00
|
|
|
req.setTimeout(30000);
|
2018-04-20 00:15:57 +02:00
|
|
|
req.getJSON([this](QJsonObject &object) {
|
|
|
|
QJsonValue version_val = object.value("version");
|
2018-06-21 22:02:35 +02:00
|
|
|
QJsonValue update_val = object.value("update");
|
|
|
|
|
|
|
|
if (!version_val.isString() || !update_val.isString()) {
|
|
|
|
this->setStatus_(SearchFailed);
|
2018-04-19 22:16:55 +02:00
|
|
|
qDebug() << "error updating";
|
2018-06-21 22:02:35 +02:00
|
|
|
|
2018-06-21 22:44:48 +02:00
|
|
|
util::postToThread([] {
|
|
|
|
QMessageBox *box = new QMessageBox(
|
|
|
|
QMessageBox::Information, "Chatterino Update",
|
|
|
|
"Error while searching for updates.\n\nEither the service is down "
|
|
|
|
"temporarily or everything is broken.");
|
|
|
|
box->setAttribute(Qt::WA_DeleteOnClose);
|
|
|
|
box->show();
|
|
|
|
});
|
2018-04-19 22:16:55 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-06-01 14:20:46 +02:00
|
|
|
this->onlineVersion_ = version_val.toString();
|
2018-06-21 22:02:35 +02:00
|
|
|
this->updateUrl_ = update_val.toString();
|
2018-06-01 14:20:46 +02:00
|
|
|
|
|
|
|
if (this->currentVersion_ != this->onlineVersion_) {
|
|
|
|
this->setStatus_(UpdateAvailable);
|
2018-06-21 22:02:35 +02:00
|
|
|
|
|
|
|
QMessageBox *box = new QMessageBox(QMessageBox::Information, "Chatterino Update",
|
|
|
|
"An update for chatterino is available.\n\nDo you "
|
|
|
|
"want to download and install it?",
|
|
|
|
QMessageBox::Yes | QMessageBox::No);
|
|
|
|
box->setAttribute(Qt::WA_DeleteOnClose);
|
|
|
|
box->show();
|
|
|
|
if (box->exec() == QMessageBox::Yes) {
|
|
|
|
this->installUpdates();
|
|
|
|
}
|
2018-06-01 14:20:46 +02:00
|
|
|
} else {
|
|
|
|
this->setStatus_(NoUpdateAvailable);
|
|
|
|
}
|
2018-04-19 22:16:55 +02:00
|
|
|
});
|
2018-06-01 14:20:46 +02:00
|
|
|
this->setStatus_(Searching);
|
|
|
|
req.execute();
|
2018-06-21 22:02:35 +02:00
|
|
|
#endif
|
2018-06-01 14:20:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
UpdateManager::UpdateStatus UpdateManager::getStatus() const
|
|
|
|
{
|
|
|
|
return this->status_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void UpdateManager::setStatus_(UpdateStatus status)
|
|
|
|
{
|
|
|
|
if (this->status_ != status) {
|
|
|
|
this->status_ = status;
|
|
|
|
this->statusUpdated.invoke(status);
|
|
|
|
}
|
2018-04-19 22:16:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace singletons
|
|
|
|
} // namespace chatterino
|