mirror-chatterino2/src/singletons/Updates.cpp

306 lines
9.4 KiB
C++
Raw Normal View History

2018-06-28 19:46:45 +02:00
#include "Updates.hpp"
2018-04-19 22:16:55 +02:00
2018-06-26 15:33:51 +02:00
#include "common/NetworkRequest.hpp"
#include "common/Outcome.hpp"
2018-06-26 15:33:51 +02:00
#include "common/Version.hpp"
2018-07-07 12:03:37 +02:00
#include "singletons/Paths.hpp"
2018-06-26 14:09:39 +02:00
#include "util/CombinePath.hpp"
#include "util/PostToThread.hpp"
2018-04-19 22:16:55 +02:00
#include <QDebug>
2019-08-18 20:14:00 +02:00
#include <QDesktopServices>
2018-06-21 22:02:35 +02:00
#include <QMessageBox>
#include <QProcess>
2018-04-19 22:16:55 +02:00
namespace chatterino {
2018-06-28 19:51:07 +02:00
Updates::Updates()
2018-06-01 14:20:46 +02:00
: currentVersion_(CHATTERINO_VERSION)
2019-08-18 20:14:00 +02:00
, updateGuideLink_("https://chatterino.com")
2018-04-19 22:16:55 +02:00
{
qDebug() << "init UpdateManager";
2018-04-19 22:16:55 +02:00
}
2018-06-28 19:51:07 +02:00
Updates &Updates::getInstance()
2018-04-19 22:16:55 +02:00
{
2018-06-01 14:20:46 +02:00
// fourtf: don't add this class to the application class
2018-06-28 19:51:07 +02:00
static Updates instance;
2018-06-01 14:20:46 +02:00
2018-04-19 22:16:55 +02:00
return instance;
}
2018-06-28 19:51:07 +02:00
const QString &Updates::getCurrentVersion() const
2018-04-19 22:16:55 +02:00
{
2018-06-01 14:20:46 +02:00
return currentVersion_;
2018-04-19 22:16:55 +02:00
}
2018-06-28 19:51:07 +02:00
const QString &Updates::getOnlineVersion() const
2018-04-19 22:16:55 +02:00
{
2018-06-01 14:20:46 +02:00
return onlineVersion_;
}
2018-06-28 19:51:07 +02:00
void Updates::installUpdates()
2018-06-01 14:20:46 +02:00
{
2018-10-21 13:43:02 +02:00
if (this->status_ != UpdateAvailable)
{
2018-06-21 22:02:35 +02:00
assert(false);
return;
}
2019-08-18 20:14:00 +02:00
#ifdef Q_OS_MACOS
QMessageBox *box = new QMessageBox(
QMessageBox::Information, "Chatterino Update",
"A link will open in your browser. Download and install to update.");
box->setAttribute(Qt::WA_DeleteOnClose);
box->exec();
QDesktopServices::openUrl(this->updateExe_);
#elif defined Q_OS_LINUX
QMessageBox *box =
new QMessageBox(QMessageBox::Information, "Chatterino Update",
"Automatic updates are currently not available on "
"linux. Please redownload the app to update.");
box->setAttribute(Qt::WA_DeleteOnClose);
box->exec();
QDesktopServices::openUrl(this->updateGuideLink_);
#elif defined Q_OS_WIN
if (getPaths()->isPortable())
{
2019-08-18 20:14:00 +02:00
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.");
2019-08-18 20:14:00 +02:00
box->setAttribute(Qt::WA_DeleteOnClose);
box->show();
2019-08-20 21:50:36 +02:00
NetworkRequest(this->updatePortable_)
.timeout(600000)
.onError([this](int) -> bool {
this->setStatus_(DownloadFailed);
postToThread([] {
QMessageBox *box = new QMessageBox(
QMessageBox::Information, "Chatterino Update",
"Failed while trying to download the update.");
box->setAttribute(Qt::WA_DeleteOnClose);
box->show();
box->raise();
});
return true;
})
.onSuccess([this](auto result) -> Outcome {
QByteArray object = result.getData();
auto filename =
combinePath(getPaths()->miscDirectory, "update.zip");
QFile file(filename);
file.open(QIODevice::Truncate | QIODevice::WriteOnly);
if (file.write(object) == -1)
{
this->setStatus_(WriteFileFailed);
return Failure;
}
QProcess::startDetached(
combinePath(QCoreApplication::applicationDirPath(),
"updater.1/ChatterinoUpdater.exe"),
{filename, "restart"});
2019-08-20 21:50:36 +02:00
QApplication::exit(0);
return Success;
})
.execute();
this->setStatus_(Downloading);
}
else
{
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();
2018-06-21 22:02:35 +02:00
2019-08-20 21:50:36 +02:00
NetworkRequest(this->updateExe_)
.timeout(600000)
.onError([this](int) -> bool {
this->setStatus_(DownloadFailed);
QMessageBox *box = new QMessageBox(
QMessageBox::Information, "Chatterino Update",
2019-08-20 21:50:36 +02:00
"Failed to download the update. \n\nTry manually "
"downloading the update.");
box->setAttribute(Qt::WA_DeleteOnClose);
box->exec();
2019-08-20 21:50:36 +02:00
return true;
})
.onSuccess([this](auto result) -> Outcome {
QByteArray object = result.getData();
auto filename =
combinePath(getPaths()->miscDirectory, "Update.exe");
QFile file(filename);
file.open(QIODevice::Truncate | QIODevice::WriteOnly);
if (file.write(object) == -1)
{
this->setStatus_(WriteFileFailed);
QMessageBox *box = new QMessageBox(
QMessageBox::Information, "Chatterino Update",
"Failed to save the update file. This could be due to "
"window settings or antivirus software.\n\nTry "
"manually "
"downloading the update.");
box->setAttribute(Qt::WA_DeleteOnClose);
box->exec();
QDesktopServices::openUrl(this->updateExe_);
return Failure;
}
file.close();
if (QProcess::startDetached(filename))
{
QApplication::exit(0);
}
else
{
QMessageBox *box = new QMessageBox(
QMessageBox::Information, "Chatterino Update",
"Failed to execute update binary. This could be due to "
"window "
"settings or antivirus software.\n\nTry manually "
"downloading "
"the update.");
box->setAttribute(Qt::WA_DeleteOnClose);
box->exec();
QDesktopServices::openUrl(this->updateExe_);
}
return Success;
})
.execute();
this->setStatus_(Downloading);
}
#endif
2018-04-19 22:16:55 +02:00
}
2018-06-28 19:51:07 +02:00
void Updates::checkForUpdates()
2018-04-19 22:16:55 +02:00
{
2018-08-06 21:17:03 +02:00
QString url =
"https://notitia.chatterino.com/version/chatterino/" CHATTERINO_OS
"/stable";
2018-04-19 22:16:55 +02:00
2019-08-20 21:50:36 +02:00
NetworkRequest(url)
.timeout(60000)
.onSuccess([this](auto result) -> Outcome {
auto object = result.parseJson();
/// Version available on every platform
QJsonValue version_val = object.value("version");
if (!version_val.isString())
{
this->setStatus_(SearchFailed);
qDebug() << "error updating";
return Failure;
}
2018-06-21 22:02:35 +02:00
2019-08-18 20:14:00 +02:00
#if defined Q_OS_WIN || defined Q_OS_MACOS
2019-08-20 21:50:36 +02:00
/// Windows downloads an installer for the new version
QJsonValue updateExe_val = object.value("updateexe");
if (!updateExe_val.isString())
{
this->setStatus_(SearchFailed);
qDebug() << "error updating";
return Failure;
}
this->updateExe_ = updateExe_val.toString();
/// Windows portable
QJsonValue portable_val = object.value("portable_download");
if (!portable_val.isString())
{
this->setStatus_(SearchFailed);
qDebug() << "error updating";
return Failure;
}
this->updatePortable_ = portable_val.toString();
2019-08-18 20:14:00 +02:00
#elif defined Q_OS_LINUX
2019-08-20 21:50:36 +02:00
QJsonValue updateGuide_val = object.value("updateguide");
if (updateGuide_val.isString())
{
this->updateGuideLink_ = updateGuide_val.toString();
}
2019-08-18 20:14:00 +02:00
#else
2019-08-20 21:50:36 +02:00
return Failure;
2019-08-18 20:14:00 +02:00
#endif
2019-08-20 21:50:36 +02:00
/// Current version
this->onlineVersion_ = version_val.toString();
/// Update available :)
if (this->currentVersion_ != this->onlineVersion_)
{
this->setStatus_(UpdateAvailable);
}
else
{
this->setStatus_(NoUpdateAvailable);
}
return Failure;
})
.execute();
2018-06-01 14:20:46 +02:00
this->setStatus_(Searching);
}
2018-07-05 11:42:40 +02:00
Updates::Status Updates::getStatus() const
2018-06-01 14:20:46 +02:00
{
return this->status_;
}
2018-07-05 11:42:40 +02:00
bool Updates::shouldShowUpdateButton() const
{
2018-10-21 13:43:02 +02:00
switch (this->getStatus())
{
2018-07-05 11:42:40 +02:00
case UpdateAvailable:
case SearchFailed:
case Downloading:
case DownloadFailed:
case WriteFileFailed:
return true;
default:
return false;
}
}
bool Updates::isError() const
{
2018-10-21 13:43:02 +02:00
switch (this->getStatus())
{
2018-07-05 11:42:40 +02:00
case SearchFailed:
case DownloadFailed:
case WriteFileFailed:
return true;
default:
return false;
}
}
void Updates::setStatus_(Status status)
2018-06-01 14:20:46 +02:00
{
2018-10-21 13:43:02 +02:00
if (this->status_ != status)
{
2018-06-01 14:20:46 +02:00
this->status_ = status;
2018-06-26 17:06:17 +02:00
postToThread([this, status] { this->statusUpdated.invoke(status); });
2018-06-01 14:20:46 +02:00
}
2018-04-19 22:16:55 +02:00
}
} // namespace chatterino