2018-03-01 00:12:30 +05:30
|
|
|
#include "FtbPackFetchTask.h"
|
|
|
|
#include <QDomDocument>
|
|
|
|
|
2018-04-01 23:54:28 +05:30
|
|
|
FtbPackFetchTask::FtbPackFetchTask()
|
|
|
|
{
|
2018-03-01 00:12:30 +05:30
|
|
|
}
|
|
|
|
|
2018-04-01 23:54:28 +05:30
|
|
|
FtbPackFetchTask::~FtbPackFetchTask()
|
|
|
|
{
|
2018-03-01 00:12:30 +05:30
|
|
|
}
|
|
|
|
|
2018-04-01 23:54:28 +05:30
|
|
|
void FtbPackFetchTask::fetch()
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
NetJob *netJob = new NetJob("FtbModpackFetch");
|
2018-03-01 00:12:30 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
QUrl publicPacksUrl = QUrl("https://ftb.cursecdn.com/FTB2/static/modpacks.xml");
|
|
|
|
qDebug() << "Downloading public version info from" << publicPacksUrl.toString();
|
|
|
|
netJob->addNetAction(Net::Download::makeByteArray(publicPacksUrl, &publicModpacksXmlFileData));
|
2018-03-01 00:12:30 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
QUrl thirdPartyUrl = QUrl("https://ftb.cursecdn.com/FTB2/static/thirdparty.xml");
|
|
|
|
qDebug() << "Downloading thirdparty version info from" << thirdPartyUrl.toString();
|
|
|
|
netJob->addNetAction(Net::Download::makeByteArray(thirdPartyUrl, &thirdPartyModpacksXmlFileData));
|
2018-03-01 00:12:30 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
QObject::connect(netJob, &NetJob::succeeded, this, &FtbPackFetchTask::fileDownloadFinished);
|
|
|
|
QObject::connect(netJob, &NetJob::failed, this, &FtbPackFetchTask::fileDownloadFailed);
|
2018-03-01 00:12:30 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
jobPtr.reset(netJob);
|
|
|
|
netJob->start();
|
2018-03-01 00:12:30 +05:30
|
|
|
}
|
|
|
|
|
2018-04-01 23:54:28 +05:30
|
|
|
void FtbPackFetchTask::fileDownloadFinished()
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
jobPtr.reset();
|
2018-03-01 00:12:30 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
QStringList failedLists;
|
2018-04-01 23:54:28 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
if(!parseAndAddPacks(publicModpacksXmlFileData, FtbPackType::Public, publicPacks)) {
|
|
|
|
failedLists.append(tr("Public Packs"));
|
|
|
|
}
|
2018-04-01 23:54:28 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
if(!parseAndAddPacks(thirdPartyModpacksXmlFileData, FtbPackType::ThirdParty, thirdPartyPacks)) {
|
|
|
|
failedLists.append(tr("Third Party Packs"));
|
|
|
|
}
|
2018-04-01 23:54:28 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
if(failedLists.size() > 0) {
|
|
|
|
emit failed(QString("Failed to download some pack lists:%1").arg(failedLists.join("\n- ")));
|
|
|
|
} else {
|
|
|
|
emit finished(publicPacks, thirdPartyPacks);
|
|
|
|
}
|
2018-04-01 23:54:28 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
bool FtbPackFetchTask::parseAndAddPacks(QByteArray &data, FtbPackType packType, FtbModpackList &list)
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
QDomDocument doc;
|
|
|
|
|
|
|
|
QString errorMsg = "Unknown error.";
|
|
|
|
int errorLine = -1;
|
|
|
|
int errorCol = -1;
|
|
|
|
|
|
|
|
if(!doc.setContent(data, false, &errorMsg, &errorLine, &errorCol)){
|
|
|
|
auto fullErrMsg = QString("Failed to fetch modpack data: %s %d:%d!").arg(errorMsg, errorLine, errorCol);
|
|
|
|
qWarning() << fullErrMsg;
|
|
|
|
data.clear();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
QDomNodeList nodes = doc.elementsByTagName("modpack");
|
|
|
|
for(int i = 0; i < nodes.length(); i++) {
|
|
|
|
QDomElement element = nodes.at(i).toElement();
|
|
|
|
|
|
|
|
FtbModpack modpack;
|
|
|
|
modpack.name = element.attribute("name");
|
|
|
|
modpack.currentVersion = element.attribute("version");
|
|
|
|
modpack.mcVersion = element.attribute("mcVersion");
|
|
|
|
modpack.description = element.attribute("description");
|
|
|
|
modpack.mods = element.attribute("mods");
|
|
|
|
modpack.logo = element.attribute("logo");
|
|
|
|
modpack.oldVersions = element.attribute("oldVersions").split(";");
|
|
|
|
modpack.broken = false;
|
|
|
|
modpack.bugged = false;
|
|
|
|
|
|
|
|
//remove empty if the xml is bugged
|
|
|
|
for(QString curr : modpack.oldVersions) {
|
|
|
|
if(curr.isNull() || curr.isEmpty()) {
|
|
|
|
modpack.oldVersions.removeAll(curr);
|
|
|
|
modpack.bugged = true;
|
|
|
|
qWarning() << "Removed some empty versions from" << modpack.name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(modpack.oldVersions.size() < 1) {
|
|
|
|
if(!modpack.currentVersion.isNull() && !modpack.currentVersion.isEmpty()) {
|
|
|
|
modpack.oldVersions.append(modpack.currentVersion);
|
|
|
|
qWarning() << "Added current version to oldVersions because oldVersions was empty! (" + modpack.name + ")";
|
|
|
|
} else {
|
|
|
|
modpack.broken = true;
|
|
|
|
qWarning() << "Broken pack:" << modpack.name << " => No valid version!";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
modpack.author = element.attribute("author");
|
|
|
|
|
|
|
|
modpack.dir = element.attribute("dir");
|
|
|
|
modpack.file = element.attribute("url");
|
|
|
|
|
|
|
|
modpack.type = packType;
|
|
|
|
|
|
|
|
list.append(modpack);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2018-03-01 00:12:30 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void FtbPackFetchTask::fileDownloadFailed(QString reason){
|
2018-07-15 18:21:05 +05:30
|
|
|
qWarning() << "Fetching FtbPacks failed: " << reason;
|
|
|
|
emit failed(reason);
|
2018-03-01 00:12:30 +05:30
|
|
|
}
|