NOISSUE finalize curse modpack import work
This commit is contained in:
parent
f3c46dbf11
commit
ab5045b54c
@ -10,6 +10,8 @@
|
|||||||
#include "settings/INISettingsObject.h"
|
#include "settings/INISettingsObject.h"
|
||||||
#include "icons/IIconList.h"
|
#include "icons/IIconList.h"
|
||||||
#include <QtConcurrentRun>
|
#include <QtConcurrentRun>
|
||||||
|
|
||||||
|
// FIXME: this does not belong here, it's Minecraft/Curse specific
|
||||||
#include "minecraft/curse/FileResolvingTask.h"
|
#include "minecraft/curse/FileResolvingTask.h"
|
||||||
#include "minecraft/curse/PackManifest.h"
|
#include "minecraft/curse/PackManifest.h"
|
||||||
#include "Json.h"
|
#include "Json.h"
|
||||||
@ -56,11 +58,13 @@ void InstanceImportTask::executeTask()
|
|||||||
void InstanceImportTask::downloadSucceeded()
|
void InstanceImportTask::downloadSucceeded()
|
||||||
{
|
{
|
||||||
extractAndTweak();
|
extractAndTweak();
|
||||||
|
m_filesNetJob.reset();
|
||||||
}
|
}
|
||||||
|
|
||||||
void InstanceImportTask::downloadFailed(QString reason)
|
void InstanceImportTask::downloadFailed(QString reason)
|
||||||
{
|
{
|
||||||
emitFailed(reason);
|
emitFailed(reason);
|
||||||
|
m_filesNetJob.reset();
|
||||||
}
|
}
|
||||||
|
|
||||||
void InstanceImportTask::downloadProgressChanged(qint64 current, qint64 total)
|
void InstanceImportTask::downloadProgressChanged(qint64 current, qint64 total)
|
||||||
@ -93,7 +97,7 @@ void InstanceImportTask::extractAndTweak()
|
|||||||
setStatus(tr("Extracting modpack"));
|
setStatus(tr("Extracting modpack"));
|
||||||
m_stagingPath = m_target->getStagedInstancePath();
|
m_stagingPath = m_target->getStagedInstancePath();
|
||||||
QDir extractDir(m_stagingPath);
|
QDir extractDir(m_stagingPath);
|
||||||
qDebug() << "Attempting to create instance from" << m_archivePath;
|
qInfo() << "Attempting to create instance from" << m_archivePath;
|
||||||
|
|
||||||
m_extractFuture = QtConcurrent::run(QThreadPool::globalInstance(), MMCZip::extractDir, m_archivePath, extractDir.absolutePath());
|
m_extractFuture = QtConcurrent::run(QThreadPool::globalInstance(), MMCZip::extractDir, m_archivePath, extractDir.absolutePath());
|
||||||
connect(&m_extractFutureWatcher, &QFutureWatcher<QStringList>::finished, this, &InstanceImportTask::extractFinished);
|
connect(&m_extractFutureWatcher, &QFutureWatcher<QStringList>::finished, this, &InstanceImportTask::extractFinished);
|
||||||
@ -110,18 +114,53 @@ void InstanceImportTask::extractFinished()
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
QDir extractDir(m_stagingPath);
|
QDir extractDir(m_stagingPath);
|
||||||
|
|
||||||
|
qInfo() << "Fixing permissions for extracted pack files...";
|
||||||
|
QDirIterator it(extractDir, QDirIterator::Subdirectories);
|
||||||
|
while (it.hasNext())
|
||||||
|
{
|
||||||
|
auto filepath = it.next();
|
||||||
|
QFileInfo file(filepath);
|
||||||
|
auto permissions = QFile::permissions(filepath);
|
||||||
|
auto origPermissions = permissions;
|
||||||
|
if(file.isDir())
|
||||||
|
{
|
||||||
|
// Folder +rwx for current user
|
||||||
|
permissions |= QFileDevice::Permission::ReadUser | QFileDevice::Permission::WriteUser | QFileDevice::Permission::ExeUser;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// File +rw for current user
|
||||||
|
permissions |= QFileDevice::Permission::ReadUser | QFileDevice::Permission::WriteUser;
|
||||||
|
}
|
||||||
|
if(origPermissions != permissions)
|
||||||
|
{
|
||||||
|
if(!QFile::setPermissions(filepath, permissions))
|
||||||
|
{
|
||||||
|
qWarning() << "Could not fix" << filepath;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
qDebug() << "Fixed" << filepath;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const QFileInfo instanceCfgFile = findRecursive(extractDir.absolutePath(), "instance.cfg");
|
const QFileInfo instanceCfgFile = findRecursive(extractDir.absolutePath(), "instance.cfg");
|
||||||
const QFileInfo curseJson = findRecursive(extractDir.absolutePath(), "manifest.json");
|
const QFileInfo curseJson = findRecursive(extractDir.absolutePath(), "manifest.json");
|
||||||
if (instanceCfgFile.isFile())
|
if (instanceCfgFile.isFile())
|
||||||
{
|
{
|
||||||
|
qInfo() << "Pack appears to be exported from MultiMC.";
|
||||||
processMultiMC(instanceCfgFile);
|
processMultiMC(instanceCfgFile);
|
||||||
}
|
}
|
||||||
else if (curseJson.isFile())
|
else if (curseJson.isFile())
|
||||||
{
|
{
|
||||||
|
qInfo() << "Pack appears to be from Curse.";
|
||||||
processCurse(curseJson);
|
processCurse(curseJson);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
qCritical() << "Archive does not contain a recognized modpack type.";
|
||||||
m_target->destroyStagingPath(m_stagingPath);
|
m_target->destroyStagingPath(m_stagingPath);
|
||||||
emitFailed(tr("Archive does not contain a recognized modpack type."));
|
emitFailed(tr("Archive does not contain a recognized modpack type."));
|
||||||
}
|
}
|
||||||
@ -143,39 +182,63 @@ void InstanceImportTask::processCurse(const QFileInfo & manifest)
|
|||||||
}
|
}
|
||||||
catch (JSONValidationError & e)
|
catch (JSONValidationError & e)
|
||||||
{
|
{
|
||||||
|
m_target->destroyStagingPath(m_stagingPath);
|
||||||
emitFailed(tr("Could not understand curse manifest:\n") + e.cause());
|
emitFailed(tr("Could not understand curse manifest:\n") + e.cause());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
m_packRoot = manifest.absolutePath();
|
m_packRoot = manifest.absolutePath();
|
||||||
QString configPath = FS::PathCombine(m_packRoot, "instance.cfg");
|
QString configPath = FS::PathCombine(m_packRoot, "instance.cfg");
|
||||||
|
if(!pack.overrides.isEmpty())
|
||||||
|
{
|
||||||
|
QString overridePath = FS::PathCombine(m_packRoot, pack.overrides);
|
||||||
|
QString mcPath = FS::PathCombine(m_packRoot, "minecraft");
|
||||||
|
if (!QFile::rename(overridePath, mcPath))
|
||||||
|
{
|
||||||
|
m_target->destroyStagingPath(m_stagingPath);
|
||||||
|
emitFailed(tr("Could not rename the curse overrides:\n") + pack.overrides);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
QString forgeVersion;
|
||||||
|
for(auto &loader: pack.minecraft.modLoaders)
|
||||||
|
{
|
||||||
|
auto id = loader.id;
|
||||||
|
if(id.startsWith("forge-"))
|
||||||
|
{
|
||||||
|
id.remove("forge-");
|
||||||
|
forgeVersion = id;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
qWarning() << "Unknown mod loader in curse manifest:" << id;
|
||||||
|
}
|
||||||
|
|
||||||
auto instanceSettings = std::make_shared<INISettingsObject>(configPath);
|
auto instanceSettings = std::make_shared<INISettingsObject>(configPath);
|
||||||
instanceSettings->registerSetting("InstanceType", "Legacy");
|
instanceSettings->registerSetting("InstanceType", "Legacy");
|
||||||
instanceSettings->set("InstanceType", "OneSix");
|
instanceSettings->set("InstanceType", "OneSix");
|
||||||
OneSixInstance instance(m_globalSettings, instanceSettings, m_packRoot);
|
OneSixInstance instance(m_globalSettings, instanceSettings, m_packRoot);
|
||||||
instance.setIntendedVersionId(pack.minecraft.version);
|
instance.setIntendedVersionId(pack.minecraft.version);
|
||||||
|
if(!forgeVersion.isEmpty())
|
||||||
|
{
|
||||||
|
instance.setComponentVersion("net.minecraftforge", forgeVersion);
|
||||||
|
}
|
||||||
instance.setName(m_instName);
|
instance.setName(m_instName);
|
||||||
instance.setIconKey(m_instIcon);
|
instance.setIconKey(m_instIcon);
|
||||||
m_curseResolver.reset(new Curse::FileResolvingTask(pack.files));
|
m_curseResolver.reset(new Curse::FileResolvingTask(pack));
|
||||||
connect(m_curseResolver.get(), &Curse::FileResolvingTask::succeeded, this, &InstanceImportTask::curseResolvingSucceeded);
|
connect(m_curseResolver.get(), &Curse::FileResolvingTask::succeeded, [&]()
|
||||||
connect(m_curseResolver.get(), &Curse::FileResolvingTask::failed, this, &InstanceImportTask::curseResolvingFailed);
|
|
||||||
m_curseResolver->start();
|
|
||||||
}
|
|
||||||
|
|
||||||
void InstanceImportTask::curseResolvingFailed(QString reason)
|
|
||||||
{
|
|
||||||
m_target->destroyStagingPath(m_stagingPath);
|
|
||||||
m_curseResolver.reset();
|
|
||||||
emitFailed(tr("Unable to resolve Curse mod IDs:\n") + reason);
|
|
||||||
}
|
|
||||||
|
|
||||||
void InstanceImportTask::curseResolvingSucceeded()
|
|
||||||
{
|
{
|
||||||
auto results = m_curseResolver->getResults();
|
auto results = m_curseResolver->getResults();
|
||||||
for(auto result: results)
|
m_filesNetJob.reset(new NetJob(tr("Curse mod download")));
|
||||||
|
for(auto result: results.files)
|
||||||
{
|
{
|
||||||
qDebug() << result.fileName << " = " << result.url;
|
auto path = FS::PathCombine(m_packRoot, "minecraft/mods", result.fileName);
|
||||||
|
auto dl = Net::Download::makeFile(result.url,path);
|
||||||
|
m_filesNetJob->addNetAction(dl);
|
||||||
}
|
}
|
||||||
m_curseResolver.reset();
|
m_curseResolver.reset();
|
||||||
|
connect(m_filesNetJob.get(), &NetJob::succeeded, this, [&]()
|
||||||
|
{
|
||||||
|
m_filesNetJob.reset();
|
||||||
if (!m_target->commitStagedInstance(m_stagingPath, m_packRoot, m_instName, m_instGroup))
|
if (!m_target->commitStagedInstance(m_stagingPath, m_packRoot, m_instName, m_instGroup))
|
||||||
{
|
{
|
||||||
m_target->destroyStagingPath(m_stagingPath);
|
m_target->destroyStagingPath(m_stagingPath);
|
||||||
@ -184,6 +247,37 @@ void InstanceImportTask::curseResolvingSucceeded()
|
|||||||
}
|
}
|
||||||
emitSucceeded();
|
emitSucceeded();
|
||||||
}
|
}
|
||||||
|
);
|
||||||
|
connect(m_filesNetJob.get(), &NetJob::failed, [&](QString reason)
|
||||||
|
{
|
||||||
|
m_target->destroyStagingPath(m_stagingPath);
|
||||||
|
m_filesNetJob.reset();
|
||||||
|
emitFailed(reason);
|
||||||
|
});
|
||||||
|
connect(m_filesNetJob.get(), &NetJob::progress, [&](qint64 current, qint64 total)
|
||||||
|
{
|
||||||
|
setProgress(current, total);
|
||||||
|
});
|
||||||
|
setStatus(tr("Downloading mods..."));
|
||||||
|
m_filesNetJob->start();
|
||||||
|
}
|
||||||
|
);
|
||||||
|
connect(m_curseResolver.get(), &Curse::FileResolvingTask::failed, [&](QString reason)
|
||||||
|
{
|
||||||
|
m_target->destroyStagingPath(m_stagingPath);
|
||||||
|
m_curseResolver.reset();
|
||||||
|
emitFailed(tr("Unable to resolve Curse mod IDs:\n") + reason);
|
||||||
|
});
|
||||||
|
connect(m_curseResolver.get(), &Curse::FileResolvingTask::progress, [&](qint64 current, qint64 total)
|
||||||
|
{
|
||||||
|
setProgress(current, total);
|
||||||
|
});
|
||||||
|
connect(m_curseResolver.get(), &Curse::FileResolvingTask::status, [&](QString status)
|
||||||
|
{
|
||||||
|
setStatus(status);
|
||||||
|
});
|
||||||
|
m_curseResolver->start();
|
||||||
|
}
|
||||||
|
|
||||||
void InstanceImportTask::processMultiMC(const QFileInfo & config)
|
void InstanceImportTask::processMultiMC(const QFileInfo & config)
|
||||||
{
|
{
|
||||||
|
@ -37,8 +37,6 @@ private slots:
|
|||||||
void downloadProgressChanged(qint64 current, qint64 total);
|
void downloadProgressChanged(qint64 current, qint64 total);
|
||||||
void extractFinished();
|
void extractFinished();
|
||||||
void extractAborted();
|
void extractAborted();
|
||||||
void curseResolvingSucceeded();
|
|
||||||
void curseResolvingFailed(QString reason);
|
|
||||||
|
|
||||||
private: /* data */
|
private: /* data */
|
||||||
SettingsObjectPtr m_globalSettings;
|
SettingsObjectPtr m_globalSettings;
|
||||||
|
@ -3,17 +3,19 @@
|
|||||||
|
|
||||||
const char * metabase = "https://cursemeta.dries007.net";
|
const char * metabase = "https://cursemeta.dries007.net";
|
||||||
|
|
||||||
Curse::FileResolvingTask::FileResolvingTask(QVector<Curse::File>& toProcess)
|
Curse::FileResolvingTask::FileResolvingTask(Curse::Manifest& toProcess)
|
||||||
: m_toProcess(toProcess)
|
: m_toProcess(toProcess)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
void Curse::FileResolvingTask::executeTask()
|
void Curse::FileResolvingTask::executeTask()
|
||||||
{
|
{
|
||||||
|
setStatus(tr("Resolving curse mod IDs..."));
|
||||||
|
setProgress(0, m_toProcess.files.size());
|
||||||
m_dljob.reset(new NetJob("Curse file resolver"));
|
m_dljob.reset(new NetJob("Curse file resolver"));
|
||||||
results.resize(m_toProcess.size());
|
results.resize(m_toProcess.files.size());
|
||||||
int index = 0;
|
int index = 0;
|
||||||
for(auto & file: m_toProcess)
|
for(auto & file: m_toProcess.files)
|
||||||
{
|
{
|
||||||
auto projectIdStr = QString::number(file.projectId);
|
auto projectIdStr = QString::number(file.projectId);
|
||||||
auto fileIdStr = QString::number(file.fileId);
|
auto fileIdStr = QString::number(file.fileId);
|
||||||
@ -42,7 +44,7 @@ void Curse::FileResolvingTask::netJobFinished()
|
|||||||
failed = true;
|
failed = true;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
auto & out = m_toProcess[index];
|
auto & out = m_toProcess.files[index];
|
||||||
out.fileName = Json::requireString(obj, "FileNameOnDisk");
|
out.fileName = Json::requireString(obj, "FileNameOnDisk");
|
||||||
out.url = Json::requireString(obj, "DownloadURL");
|
out.url = Json::requireString(obj, "DownloadURL");
|
||||||
out.resolved = true;
|
out.resolved = true;
|
||||||
|
@ -12,8 +12,8 @@ class MULTIMC_LOGIC_EXPORT FileResolvingTask : public Task
|
|||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
explicit FileResolvingTask(QVector<Curse::File> &toProcess);
|
explicit FileResolvingTask(Curse::Manifest &toProcess);
|
||||||
const QVector<Curse::File> &getResults() const
|
const Curse::Manifest &getResults() const
|
||||||
{
|
{
|
||||||
return m_toProcess;
|
return m_toProcess;
|
||||||
}
|
}
|
||||||
@ -25,7 +25,7 @@ protected slots:
|
|||||||
void netJobFinished();
|
void netJobFinished();
|
||||||
|
|
||||||
private: /* data */
|
private: /* data */
|
||||||
QVector<Curse::File> m_toProcess;
|
Curse::Manifest m_toProcess;
|
||||||
QVector<QByteArray> results;
|
QVector<QByteArray> results;
|
||||||
NetJobPtr m_dljob;
|
NetJobPtr m_dljob;
|
||||||
};
|
};
|
||||||
|
@ -11,7 +11,7 @@ static void loadFileV1(Curse::File & f, QJsonObject & file)
|
|||||||
static void loadModloaderV1(Curse::Modloader & m, QJsonObject & modLoader)
|
static void loadModloaderV1(Curse::Modloader & m, QJsonObject & modLoader)
|
||||||
{
|
{
|
||||||
m.id = Json::requireString(modLoader, "id");
|
m.id = Json::requireString(modLoader, "id");
|
||||||
m.primary = Json::ensureBoolean(modLoader, "primary", false);
|
m.primary = Json::ensureBoolean(modLoader, QString("primary"), false);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void loadMinecraftV1(Curse::Minecraft & m, QJsonObject & minecraft)
|
static void loadMinecraftV1(Curse::Minecraft & m, QJsonObject & minecraft)
|
||||||
|
Loading…
Reference in New Issue
Block a user