2022-05-27 02:48:54 +05:30
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
|
|
|
* PolyMC - Minecraft Launcher
|
|
|
|
* Copyright (C) 2022 Sefa Eyeoglu <contact@scrumplex.net>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, version 3.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following copyright and
|
|
|
|
* permission notice:
|
|
|
|
*
|
|
|
|
* Copyright 2013-2021 MultiMC Contributors
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2015-01-28 03:01:07 +05:30
|
|
|
#include "ProfileUtils.h"
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "minecraft/VersionFilterData.h"
|
2017-07-24 12:31:37 +05:30
|
|
|
#include "minecraft/OneSixVersionFormat.h"
|
2015-05-28 23:08:29 +05:30
|
|
|
#include "Json.h"
|
2015-02-02 06:44:14 +05:30
|
|
|
#include <QDebug>
|
2015-01-28 03:01:07 +05:30
|
|
|
|
|
|
|
#include <QJsonDocument>
|
|
|
|
#include <QJsonArray>
|
|
|
|
#include <QRegularExpression>
|
2015-02-28 14:50:25 +05:30
|
|
|
#include <QSaveFile>
|
2015-01-28 03:01:07 +05:30
|
|
|
|
|
|
|
namespace ProfileUtils
|
|
|
|
{
|
|
|
|
|
|
|
|
static const int currentOrderFileVersion = 1;
|
|
|
|
|
|
|
|
bool readOverrideOrders(QString path, PatchOrder &order)
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
QFile orderFile(path);
|
|
|
|
if (!orderFile.exists())
|
|
|
|
{
|
|
|
|
qWarning() << "Order file doesn't exist. Ignoring.";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!orderFile.open(QFile::ReadOnly))
|
|
|
|
{
|
|
|
|
qCritical() << "Couldn't open" << orderFile.fileName()
|
|
|
|
<< " for reading:" << orderFile.errorString();
|
|
|
|
qWarning() << "Ignoring overriden order";
|
|
|
|
return false;
|
|
|
|
}
|
2015-01-28 03:01:07 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
// and it's valid JSON
|
|
|
|
QJsonParseError error;
|
|
|
|
QJsonDocument doc = QJsonDocument::fromJson(orderFile.readAll(), &error);
|
|
|
|
if (error.error != QJsonParseError::NoError)
|
|
|
|
{
|
|
|
|
qCritical() << "Couldn't parse" << orderFile.fileName() << ":" << error.errorString();
|
|
|
|
qWarning() << "Ignoring overriden order";
|
|
|
|
return false;
|
|
|
|
}
|
2015-01-28 03:01:07 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
// and then read it and process it if all above is true.
|
|
|
|
try
|
|
|
|
{
|
|
|
|
auto obj = Json::requireObject(doc);
|
|
|
|
// check order file version.
|
|
|
|
auto version = Json::requireInteger(obj.value("version"));
|
|
|
|
if (version != currentOrderFileVersion)
|
|
|
|
{
|
|
|
|
throw JSONValidationError(QObject::tr("Invalid order file version, expected %1")
|
|
|
|
.arg(currentOrderFileVersion));
|
|
|
|
}
|
|
|
|
auto orderArray = Json::requireArray(obj.value("order"));
|
|
|
|
for(auto item: orderArray)
|
|
|
|
{
|
|
|
|
order.append(Json::requireString(item));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (const JSONValidationError &err)
|
|
|
|
{
|
|
|
|
qCritical() << "Couldn't parse" << orderFile.fileName() << ": bad file format";
|
|
|
|
qWarning() << "Ignoring overriden order";
|
|
|
|
order.clear();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
2015-01-28 03:01:07 +05:30
|
|
|
}
|
|
|
|
|
2016-03-18 19:32:54 +05:30
|
|
|
static VersionFilePtr createErrorVersionFile(QString fileId, QString filepath, QString error)
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
auto outError = std::make_shared<VersionFile>();
|
|
|
|
outError->uid = outError->name = fileId;
|
|
|
|
// outError->filename = filepath;
|
|
|
|
outError->addProblem(ProblemSeverity::Error, error);
|
|
|
|
return outError;
|
2016-03-18 19:32:54 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
static VersionFilePtr guardedParseJson(const QJsonDocument & doc,const QString &fileId,const QString &filepath,const bool &requireOrder)
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
try
|
|
|
|
{
|
|
|
|
return OneSixVersionFormat::versionFileFromJson(doc, filepath, requireOrder);
|
|
|
|
}
|
|
|
|
catch (const Exception &e)
|
|
|
|
{
|
|
|
|
return createErrorVersionFile(fileId, filepath, e.cause());
|
|
|
|
}
|
2016-03-18 19:32:54 +05:30
|
|
|
}
|
|
|
|
|
2015-04-04 05:31:52 +05:30
|
|
|
VersionFilePtr parseJsonFile(const QFileInfo &fileInfo, const bool requireOrder)
|
2015-01-28 03:01:07 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
QFile file(fileInfo.absoluteFilePath());
|
|
|
|
if (!file.open(QFile::ReadOnly))
|
|
|
|
{
|
|
|
|
auto errorStr = QObject::tr("Unable to open the version file %1: %2.").arg(fileInfo.fileName(), file.errorString());
|
|
|
|
return createErrorVersionFile(fileInfo.completeBaseName(), fileInfo.absoluteFilePath(), errorStr);
|
|
|
|
}
|
|
|
|
QJsonParseError error;
|
|
|
|
auto data = file.readAll();
|
|
|
|
QJsonDocument doc = QJsonDocument::fromJson(data, &error);
|
|
|
|
file.close();
|
|
|
|
if (error.error != QJsonParseError::NoError)
|
|
|
|
{
|
|
|
|
int line = 1;
|
|
|
|
int column = 0;
|
|
|
|
for(int i = 0; i < error.offset; i++)
|
|
|
|
{
|
|
|
|
if(data[i] == '\n')
|
|
|
|
{
|
|
|
|
line++;
|
|
|
|
column = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
column++;
|
|
|
|
}
|
|
|
|
auto errorStr = QObject::tr("Unable to process the version file %1: %2 at line %3 column %4.")
|
|
|
|
.arg(fileInfo.fileName(), error.errorString())
|
|
|
|
.arg(line).arg(column);
|
|
|
|
return createErrorVersionFile(fileInfo.completeBaseName(), fileInfo.absoluteFilePath(), errorStr);
|
|
|
|
}
|
|
|
|
return guardedParseJson(doc, fileInfo.completeBaseName(), fileInfo.absoluteFilePath(), requireOrder);
|
2015-01-28 03:01:07 +05:30
|
|
|
}
|
|
|
|
|
2017-11-11 06:08:31 +05:30
|
|
|
bool saveJsonFile(const QJsonDocument doc, const QString & filename)
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
auto data = doc.toJson();
|
|
|
|
QSaveFile jsonFile(filename);
|
|
|
|
if(!jsonFile.open(QIODevice::WriteOnly))
|
|
|
|
{
|
|
|
|
jsonFile.cancelWriting();
|
|
|
|
qWarning() << "Couldn't open" << filename << "for writing";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
jsonFile.write(data);
|
|
|
|
if(!jsonFile.commit())
|
|
|
|
{
|
|
|
|
qWarning() << "Couldn't save" << filename;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
2017-11-11 06:08:31 +05:30
|
|
|
}
|
|
|
|
|
2015-01-28 03:01:07 +05:30
|
|
|
void removeLwjglFromPatch(VersionFilePtr patch)
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
auto filter = [](QList<LibraryPtr>& libs)
|
|
|
|
{
|
|
|
|
QList<LibraryPtr> filteredLibs;
|
|
|
|
for (auto lib : libs)
|
|
|
|
{
|
|
|
|
if (!g_VersionFilterData.lwjglWhitelist.contains(lib->artifactPrefix()))
|
|
|
|
{
|
|
|
|
filteredLibs.append(lib);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
libs = filteredLibs;
|
|
|
|
};
|
|
|
|
filter(patch->libraries);
|
2015-01-28 03:01:07 +05:30
|
|
|
}
|
|
|
|
}
|