2021-11-23 14:37:37 -05:00
|
|
|
#include "assetupdater.h"
|
|
|
|
|
|
|
|
#include <QFile>
|
2022-01-27 10:46:22 -05:00
|
|
|
#include <QJsonDocument>
|
|
|
|
#include <QJsonObject>
|
2022-02-23 19:05:53 -05:00
|
|
|
#include <QNetworkReply>
|
|
|
|
#include <QStandardPaths>
|
2022-02-25 18:08:57 -05:00
|
|
|
#include <QJsonArray>
|
2021-11-23 14:37:37 -05:00
|
|
|
|
2022-03-01 16:43:49 -05:00
|
|
|
#include <JlCompress.h>
|
2021-11-23 14:37:37 -05:00
|
|
|
|
2021-11-23 15:34:23 -05:00
|
|
|
#include "launchercore.h"
|
2021-11-23 14:37:37 -05:00
|
|
|
|
2022-03-13 20:44:57 -04:00
|
|
|
const QString baseGoatDomain = "https://goatcorp.github.io";
|
2022-02-25 18:08:57 -05:00
|
|
|
|
2022-03-13 20:44:57 -04:00
|
|
|
const QString baseDalamudDistribution = baseGoatDomain + "/dalamud-distrib";
|
|
|
|
const QString dalamudLatestPackageURL = baseDalamudDistribution + "/latest.zip";
|
|
|
|
const QString dalamudVersionManifestURL = baseDalamudDistribution + "/version";
|
2022-02-25 18:08:57 -05:00
|
|
|
|
2022-03-13 20:44:57 -04:00
|
|
|
const QString baseDalamudAssetDistribution = baseGoatDomain + "/DalamudAssets";
|
|
|
|
const QString dalamudAssetManifestURL = baseDalamudAssetDistribution + "/asset.json";
|
2021-11-23 14:37:37 -05:00
|
|
|
|
2022-03-13 20:44:57 -04:00
|
|
|
const QString baseNativeLauncherDistribution =
|
2022-02-23 19:05:53 -05:00
|
|
|
"https://github.com/redstrate/nativelauncher/releases/download/";
|
2022-03-13 20:44:57 -04:00
|
|
|
const QString nativeLauncherLatestPackageURL =
|
|
|
|
baseNativeLauncherDistribution + "/latest/NativeLauncher.exe";
|
2021-11-23 14:37:37 -05:00
|
|
|
|
2022-03-13 20:44:57 -04:00
|
|
|
const QString dotnetRuntimePackageURL =
|
|
|
|
"https://dotnetcli.azureedge.net/dotnet/Runtime/%1/dotnet-runtime-%1-win-x64.zip";
|
|
|
|
const QString dotnetDesktopPackageURL =
|
|
|
|
"https://dotnetcli.azureedge.net/dotnet/WindowsDesktop/%1/windowsdesktop-runtime-%1-win-x64.zip";
|
2021-11-23 14:37:37 -05:00
|
|
|
|
2022-03-13 20:44:57 -04:00
|
|
|
AssetUpdater::AssetUpdater(LauncherCore& launcher) : launcher(launcher) {
|
2021-11-23 14:37:37 -05:00
|
|
|
launcher.mgr->setRedirectPolicy(QNetworkRequest::NoLessSafeRedirectPolicy);
|
2022-03-13 20:44:57 -04:00
|
|
|
|
|
|
|
dialog = new QProgressDialog("Updating assets...", "Cancel", 0, 0);
|
|
|
|
|
|
|
|
dataDir =
|
|
|
|
QStandardPaths::writableLocation(QStandardPaths::AppDataLocation);
|
2021-11-23 14:37:37 -05:00
|
|
|
}
|
|
|
|
|
2021-11-23 15:34:23 -05:00
|
|
|
void AssetUpdater::update(const ProfileSettings& profile) {
|
2022-02-25 18:08:57 -05:00
|
|
|
// non-dalamud users can bypass this process since it's not needed
|
2022-03-13 19:58:58 -04:00
|
|
|
if(!profile.dalamud.enabled) {
|
2022-02-25 18:08:57 -05:00
|
|
|
finishedUpdating();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-03-13 20:44:57 -04:00
|
|
|
// first, we want to collect all of the remote versions
|
2021-11-23 14:37:37 -05:00
|
|
|
|
2022-02-23 19:05:53 -05:00
|
|
|
qInfo() << "Starting update sequence...";
|
2022-03-13 20:44:57 -04:00
|
|
|
dialog->setLabelText("Checking for updates...");
|
2022-02-23 19:05:53 -05:00
|
|
|
|
2022-03-13 20:44:57 -04:00
|
|
|
// dalamud assets
|
|
|
|
{
|
2022-02-25 18:08:57 -05:00
|
|
|
// we want to prevent logging in before we actually check the version
|
|
|
|
dalamudAssetNeededFilenames.append("dummy");
|
|
|
|
|
|
|
|
// first we want to fetch the list of assets required
|
2022-03-13 20:44:57 -04:00
|
|
|
QNetworkRequest request(dalamudAssetManifestURL);
|
2022-02-25 18:08:57 -05:00
|
|
|
|
|
|
|
auto reply = launcher.mgr->get(request);
|
|
|
|
connect(reply, &QNetworkReply::finished, [reply, this, profile] {
|
2022-03-13 20:44:57 -04:00
|
|
|
dialog->setLabelText("Checking for Dalamud asset updates...");
|
|
|
|
|
2022-02-25 18:08:57 -05:00
|
|
|
// lol, they actually provide invalid json. let's fix it if it's borked
|
|
|
|
QString badJson = reply->readAll();
|
|
|
|
|
|
|
|
qInfo() << reply->errorString();
|
|
|
|
qInfo() << "Got asset manifest: " << badJson;
|
|
|
|
|
|
|
|
auto lastCommaLoc = badJson.lastIndexOf(',');
|
|
|
|
auto lastBracketLoc = badJson.lastIndexOf('{');
|
|
|
|
|
|
|
|
qInfo() << "Location of last comma: " << lastCommaLoc;
|
|
|
|
qInfo() << "Location of last bracket: " << lastBracketLoc;
|
|
|
|
|
|
|
|
// basically, if { supersedes the last ,
|
|
|
|
if (lastCommaLoc > lastBracketLoc) {
|
|
|
|
qInfo() << "Dalamud server gave bad json, attempting to fix...";
|
|
|
|
badJson.remove(lastCommaLoc, 1);
|
|
|
|
} else {
|
|
|
|
qInfo() << "Got valid json.";
|
|
|
|
}
|
|
|
|
|
|
|
|
QJsonDocument doc = QJsonDocument::fromJson(badJson.toUtf8());
|
|
|
|
|
|
|
|
qInfo() << "Dalamud asset remote version" << doc.object()["Version"].toInt();
|
2022-02-25 22:25:21 -05:00
|
|
|
qInfo() << "Dalamud asset local version" << launcher.dalamudAssetVersion;
|
2022-02-25 18:08:57 -05:00
|
|
|
|
|
|
|
remoteDalamudAssetVersion = doc.object()["Version"].toInt();
|
|
|
|
|
2022-03-13 20:44:57 -04:00
|
|
|
remoteDalamudAssetArray = doc.object()["Assets"].toArray();
|
2022-02-25 18:08:57 -05:00
|
|
|
|
2022-03-13 20:44:57 -04:00
|
|
|
checkIfCheckingIsDone();
|
2022-02-25 18:08:57 -05:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-03-13 20:44:57 -04:00
|
|
|
// dalamud injector / net runtime / nativelauncher
|
|
|
|
// they're all updated in unison, so there's no reason to have multiple checks
|
|
|
|
{
|
|
|
|
QNetworkRequest request(dalamudVersionManifestURL);
|
2022-02-25 20:06:29 -05:00
|
|
|
|
|
|
|
auto reply = launcher.mgr->get(request);
|
2022-03-13 20:44:57 -04:00
|
|
|
connect(reply, &QNetworkReply::finished, [this, profile, reply] {
|
|
|
|
dialog->setLabelText("Checking for Dalamud updates...");
|
|
|
|
|
|
|
|
QByteArray str = reply->readAll();
|
|
|
|
// for some god forsaken reason, the version string comes back as raw
|
|
|
|
// bytes, ex: \xFF\xFE{\x00\"\x00""A\x00s\x00s\x00""e\x00m\x00 so we
|
|
|
|
// start at the first character of the json '{' and work our way up.
|
|
|
|
QString reassmbled;
|
|
|
|
for (int i = str.indexOf('{'); i < str.size(); i++) {
|
|
|
|
char t = str[i];
|
|
|
|
if (QChar(t).isPrint())
|
|
|
|
reassmbled += t;
|
|
|
|
}
|
2022-02-25 20:06:29 -05:00
|
|
|
|
2022-03-13 20:44:57 -04:00
|
|
|
QJsonDocument doc = QJsonDocument::fromJson(reassmbled.toUtf8());
|
|
|
|
remoteDalamudVersion = doc["AssemblyVersion"].toString();
|
|
|
|
remoteRuntimeVersion = doc["RuntimeVersion"].toString();
|
2022-02-25 20:06:29 -05:00
|
|
|
|
2022-03-13 20:44:57 -04:00
|
|
|
qInfo() << "Latest Dalamud version reported: " << remoteDalamudVersion;
|
|
|
|
qInfo() << "Latest NET runtime reported: " << remoteRuntimeVersion;
|
2022-02-25 20:06:29 -05:00
|
|
|
|
2022-03-13 20:44:57 -04:00
|
|
|
checkIfCheckingIsDone();
|
|
|
|
});
|
2021-11-23 14:37:37 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void AssetUpdater::beginInstall() {
|
2022-02-25 20:06:29 -05:00
|
|
|
if(needsDalamudInstall) {
|
|
|
|
bool success = !JlCompress::extractDir(tempDir.path() + "/latest.zip",
|
|
|
|
dataDir + "/Dalamud")
|
|
|
|
.empty();
|
|
|
|
|
|
|
|
if(!success) {
|
|
|
|
// TODO: handle failure here
|
|
|
|
} else {
|
|
|
|
needsDalamudInstall = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(needsNativeInstall) {
|
2022-02-23 19:05:53 -05:00
|
|
|
QFile::copy(tempDir.path() + "/NativeLauncher.exe",
|
|
|
|
dataDir + "/NativeLauncher.exe");
|
2021-11-23 14:37:37 -05:00
|
|
|
|
2022-02-25 20:06:29 -05:00
|
|
|
needsNativeInstall = false;
|
2021-11-23 14:37:37 -05:00
|
|
|
}
|
2022-02-25 20:06:29 -05:00
|
|
|
|
|
|
|
if(needsRuntimeInstall) {
|
|
|
|
bool success = !JlCompress::extractDir(tempDir.path() + "/dotnet-core.zip",
|
|
|
|
dataDir + "/DalamudRuntime")
|
|
|
|
.empty();
|
|
|
|
|
|
|
|
success |= !JlCompress::extractDir(tempDir.path() + "/dotnet-desktop.zip",
|
|
|
|
dataDir + "/DalamudRuntime")
|
|
|
|
.empty();
|
|
|
|
|
|
|
|
if(!success) {
|
|
|
|
// TODO: handle failure here
|
|
|
|
} else {
|
|
|
|
QFile file(dataDir + "/DalamudRuntime/runtime.ver");
|
|
|
|
file.open(QIODevice::WriteOnly | QIODevice::Text);
|
|
|
|
file.write(remoteRuntimeVersion.toUtf8());
|
|
|
|
file.close();
|
|
|
|
|
|
|
|
needsRuntimeInstall = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
checkIfFinished();
|
2022-01-27 10:46:22 -05:00
|
|
|
}
|
2022-02-25 18:08:57 -05:00
|
|
|
|
|
|
|
void AssetUpdater::checkIfDalamudAssetsDone() {
|
|
|
|
if(dalamudAssetNeededFilenames.empty()) {
|
|
|
|
qInfo() << "Finished downloading Dalamud assets.";
|
|
|
|
|
2022-03-13 20:07:09 -04:00
|
|
|
launcher.dalamudAssetVersion = remoteDalamudAssetVersion;
|
|
|
|
|
2022-03-13 20:44:57 -04:00
|
|
|
QFile file(dataDir + "/DalamudAssets/" + "asset.ver");
|
2022-02-25 18:08:57 -05:00
|
|
|
file.open(QIODevice::WriteOnly | QIODevice::Text);
|
|
|
|
file.write(QString::number(remoteDalamudAssetVersion).toUtf8());
|
|
|
|
file.close();
|
|
|
|
|
|
|
|
checkIfFinished();
|
|
|
|
}
|
|
|
|
}
|
2022-02-25 20:06:29 -05:00
|
|
|
|
2022-02-25 18:08:57 -05:00
|
|
|
void AssetUpdater::checkIfFinished() {
|
|
|
|
if (doneDownloadingDalamud &&
|
|
|
|
doneDownloadingNativelauncher &&
|
2022-02-25 20:06:29 -05:00
|
|
|
doneDownloadingRuntimeCore &&
|
|
|
|
doneDownloadingRuntimeDesktop &&
|
2022-02-25 18:08:57 -05:00
|
|
|
dalamudAssetNeededFilenames.empty()) {
|
2022-03-13 20:44:57 -04:00
|
|
|
if (needsRuntimeInstall || needsNativeInstall || needsDalamudInstall) {
|
2022-02-25 18:08:57 -05:00
|
|
|
beginInstall();
|
2022-03-13 20:44:57 -04:00
|
|
|
} else {
|
|
|
|
dialog->setLabelText("Finished!");
|
|
|
|
dialog->close();
|
|
|
|
|
2022-02-25 18:08:57 -05:00
|
|
|
finishedUpdating();
|
2022-03-13 20:44:57 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void AssetUpdater::checkIfCheckingIsDone() {
|
|
|
|
if(remoteDalamudVersion.isEmpty() || remoteRuntimeVersion.isEmpty() || remoteDalamudAssetVersion == -1) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// now that we got all the information we need, let's check if anything is
|
|
|
|
// updateable
|
|
|
|
|
|
|
|
dialog->setLabelText("Starting update...");
|
|
|
|
|
|
|
|
// dalamud injector / net runtime
|
|
|
|
if(launcher.runtimeVersion != remoteRuntimeVersion) {
|
|
|
|
doneDownloadingRuntimeCore = false;
|
|
|
|
doneDownloadingRuntimeDesktop = false;
|
|
|
|
needsRuntimeInstall = true;
|
|
|
|
|
|
|
|
// core
|
|
|
|
{
|
|
|
|
QNetworkRequest request(dotnetRuntimePackageURL.arg(remoteRuntimeVersion));
|
|
|
|
|
|
|
|
auto reply = launcher.mgr->get(request);
|
|
|
|
connect(reply, &QNetworkReply::finished, [this, reply] {
|
|
|
|
qInfo() << "Dotnet-core finished downloading!";
|
|
|
|
|
|
|
|
dialog->setLabelText("Updating Dotnet-core...");
|
|
|
|
|
|
|
|
QFile file(tempDir.path() + "/dotnet-core.zip");
|
|
|
|
file.open(QIODevice::WriteOnly);
|
|
|
|
file.write(reply->readAll());
|
|
|
|
file.close();
|
|
|
|
|
|
|
|
doneDownloadingRuntimeCore = true;
|
|
|
|
|
|
|
|
checkIfFinished();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// desktop
|
|
|
|
{
|
|
|
|
QNetworkRequest request(dotnetDesktopPackageURL.arg(remoteRuntimeVersion));
|
|
|
|
|
|
|
|
auto reply = launcher.mgr->get(request);
|
|
|
|
connect(reply, &QNetworkReply::finished, [this, reply] {
|
|
|
|
qInfo() << "Dotnet-desktop finished downloading!";
|
|
|
|
|
|
|
|
dialog->setLabelText("Updating Dotnet-desktop...");
|
|
|
|
|
|
|
|
QFile file(tempDir.path() + "/dotnet-desktop.zip");
|
|
|
|
file.open(QIODevice::WriteOnly);
|
|
|
|
file.write(reply->readAll());
|
|
|
|
file.close();
|
|
|
|
|
|
|
|
doneDownloadingRuntimeDesktop = true;
|
|
|
|
|
|
|
|
checkIfFinished();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
doneDownloadingRuntimeCore = true;
|
|
|
|
doneDownloadingRuntimeDesktop = true;
|
|
|
|
needsRuntimeInstall = false;
|
|
|
|
|
|
|
|
checkIfFinished();
|
|
|
|
}
|
|
|
|
|
|
|
|
if(remoteDalamudVersion != launcher.dalamudVersion) {
|
|
|
|
qInfo() << "Downloading Dalamud...";
|
|
|
|
doneDownloadingDalamud = false;
|
|
|
|
needsDalamudInstall = true;
|
|
|
|
|
|
|
|
QNetworkRequest request(dalamudLatestPackageURL);
|
|
|
|
|
|
|
|
auto reply = launcher.mgr->get(request);
|
|
|
|
connect(reply, &QNetworkReply::finished, [this, reply] {
|
|
|
|
qInfo() << "Dalamud finished downloading!";
|
|
|
|
|
|
|
|
dialog->setLabelText("Updating Dalamud...");
|
|
|
|
|
|
|
|
QFile file(tempDir.path() + "/latest.zip");
|
|
|
|
file.open(QIODevice::WriteOnly);
|
|
|
|
file.write(reply->readAll());
|
|
|
|
file.close();
|
|
|
|
|
|
|
|
doneDownloadingDalamud = true;
|
|
|
|
|
|
|
|
launcher.dalamudVersion = remoteDalamudVersion;
|
|
|
|
|
|
|
|
checkIfFinished();
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
qInfo() << "No need to update Dalamud.";
|
|
|
|
|
|
|
|
doneDownloadingDalamud = true;
|
|
|
|
needsDalamudInstall = false;
|
|
|
|
|
|
|
|
checkIfFinished();
|
|
|
|
}
|
|
|
|
|
|
|
|
// dalamud assets
|
|
|
|
if(remoteDalamudAssetVersion != launcher.dalamudAssetVersion) {
|
|
|
|
qInfo() << "Dalamud assets out of date.";
|
|
|
|
|
|
|
|
dialog->setLabelText("Updating Dalamud assets...");
|
|
|
|
|
|
|
|
dalamudAssetNeededFilenames.clear();
|
|
|
|
|
|
|
|
for(auto assetObject : remoteDalamudAssetArray) {
|
|
|
|
{
|
|
|
|
qInfo() << "Starting download for " << assetObject.toObject()["FileName"];
|
|
|
|
|
|
|
|
dalamudAssetNeededFilenames.append(assetObject.toObject()["FileName"].toString());
|
|
|
|
|
|
|
|
QNetworkRequest assetRequest(assetObject.toObject()["Url"].toString());
|
|
|
|
auto assetReply = launcher.mgr->get(assetRequest);
|
|
|
|
|
|
|
|
connect(assetReply, &QNetworkReply::finished, [this, assetReply, assetObject = assetObject.toObject()] {
|
|
|
|
if (!QDir().exists(dataDir + "/DalamudAssets/"))
|
|
|
|
QDir().mkdir(dataDir + "/DalamudAssets/");
|
|
|
|
|
|
|
|
const QString fileName = assetObject["FileName"].toString();
|
|
|
|
const QList<QString> dirPath = fileName.left(fileName.lastIndexOf("/")).split('/');
|
|
|
|
|
|
|
|
qInfo() << "Needed directories: " << dirPath;
|
|
|
|
|
|
|
|
QString build = dataDir + "/DalamudAssets/";
|
|
|
|
for(auto dir : dirPath) {
|
|
|
|
if (!QDir().exists(build + dir))
|
|
|
|
QDir().mkdir(build + dir);
|
|
|
|
|
|
|
|
build += dir + "/";
|
|
|
|
}
|
|
|
|
|
|
|
|
QFile file(dataDir + "/DalamudAssets/" + assetObject["FileName"].toString());
|
|
|
|
file.open(QIODevice::WriteOnly);
|
|
|
|
file.write(assetReply->readAll());
|
|
|
|
file.close();
|
|
|
|
|
|
|
|
dalamudAssetNeededFilenames.removeOne(assetObject["FileName"].toString());
|
|
|
|
checkIfDalamudAssetsDone();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
dalamudAssetNeededFilenames.clear();
|
|
|
|
|
|
|
|
qInfo() << "Dalamud assets up to date.";
|
|
|
|
|
|
|
|
checkIfFinished();
|
|
|
|
}
|
|
|
|
|
|
|
|
// nativelauncher
|
|
|
|
const bool hasNative = QFile::exists(dataDir + "/NativeLauncher.exe");
|
|
|
|
if (!hasNative) {
|
|
|
|
// download nativelauncher release (needed to launch the game with fixed
|
|
|
|
// ACLs)
|
|
|
|
|
|
|
|
qInfo() << "Downloading NativeLauncher...";
|
|
|
|
doneDownloadingNativelauncher = false;
|
|
|
|
needsNativeInstall = true;
|
|
|
|
|
|
|
|
QNetworkRequest request(nativeLauncherLatestPackageURL);
|
|
|
|
|
|
|
|
auto reply = launcher.mgr->get(request);
|
|
|
|
connect(reply, &QNetworkReply::finished, [this, reply] {
|
|
|
|
qInfo() << "NativeLauncher finished downloading!";
|
|
|
|
|
|
|
|
dialog->setLabelText("Updating Nativelauncher...");
|
|
|
|
|
|
|
|
QFile file(tempDir.path() + "/NativeLauncher.exe");
|
|
|
|
file.open(QIODevice::WriteOnly);
|
|
|
|
file.write(reply->readAll());
|
|
|
|
file.close();
|
|
|
|
|
|
|
|
doneDownloadingNativelauncher = true;
|
|
|
|
|
|
|
|
checkIfFinished();
|
|
|
|
});
|
2022-02-25 18:08:57 -05:00
|
|
|
}
|
|
|
|
}
|