2022-05-11 04:27:47 +05:30
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
|
|
|
* PolyMC - Minecraft Launcher
|
|
|
|
* Copyright (c) 2022 flowln <flowlnlnln@gmail.com>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2019-08-04 06:57:53 +05:30
|
|
|
|
2022-04-16 06:37:35 +05:30
|
|
|
#include "Mod.h"
|
|
|
|
|
2019-08-04 06:57:53 +05:30
|
|
|
#include <QDir>
|
|
|
|
#include <QString>
|
|
|
|
|
2019-08-05 04:14:56 +05:30
|
|
|
#include <FileSystem.h>
|
2022-04-16 06:37:35 +05:30
|
|
|
#include <QDebug>
|
2022-04-17 20:10:41 +05:30
|
|
|
|
|
|
|
#include "Application.h"
|
2022-04-16 21:57:29 +05:30
|
|
|
#include "MetadataHandler.h"
|
2019-08-04 06:57:53 +05:30
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
ModDetails invalidDetails;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-04-16 06:37:35 +05:30
|
|
|
Mod::Mod(const QFileInfo& file)
|
2019-08-04 06:57:53 +05:30
|
|
|
{
|
|
|
|
repath(file);
|
|
|
|
m_changedDateTime = file.lastModified();
|
|
|
|
}
|
|
|
|
|
2022-04-16 21:57:29 +05:30
|
|
|
Mod::Mod(const QDir& mods_dir, const Metadata::ModStruct& metadata)
|
2022-04-15 08:54:57 +05:30
|
|
|
: m_file(mods_dir.absoluteFilePath(metadata.filename))
|
|
|
|
// It is weird, but name is not reliable for comparing with the JAR files name
|
|
|
|
// FIXME: Maybe use hash when implemented?
|
2022-04-16 06:37:35 +05:30
|
|
|
, m_internal_id(metadata.filename)
|
2022-04-15 08:54:57 +05:30
|
|
|
, m_name(metadata.name)
|
|
|
|
{
|
2022-04-16 06:37:35 +05:30
|
|
|
if (m_file.isDir()) {
|
2022-04-15 08:54:57 +05:30
|
|
|
m_type = MOD_FOLDER;
|
2022-04-16 06:37:35 +05:30
|
|
|
} else {
|
2022-04-15 08:54:57 +05:30
|
|
|
if (metadata.filename.endsWith(".zip") || metadata.filename.endsWith(".jar"))
|
|
|
|
m_type = MOD_ZIPFILE;
|
|
|
|
else if (metadata.filename.endsWith(".litemod"))
|
|
|
|
m_type = MOD_LITEMOD;
|
|
|
|
else
|
|
|
|
m_type = MOD_SINGLEFILE;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_enabled = true;
|
|
|
|
m_changedDateTime = m_file.lastModified();
|
2022-04-17 18:00:32 +05:30
|
|
|
|
|
|
|
m_temp_metadata = std::make_shared<Metadata::ModStruct>(std::move(metadata));
|
2022-04-15 08:54:57 +05:30
|
|
|
}
|
|
|
|
|
2022-04-16 06:37:35 +05:30
|
|
|
void Mod::repath(const QFileInfo& file)
|
2019-08-04 06:57:53 +05:30
|
|
|
{
|
|
|
|
m_file = file;
|
|
|
|
QString name_base = file.fileName();
|
|
|
|
|
|
|
|
m_type = Mod::MOD_UNKNOWN;
|
|
|
|
|
2022-04-16 06:37:35 +05:30
|
|
|
m_internal_id = name_base;
|
2019-08-04 06:57:53 +05:30
|
|
|
|
2022-04-16 06:37:35 +05:30
|
|
|
if (m_file.isDir()) {
|
2019-08-04 06:57:53 +05:30
|
|
|
m_type = MOD_FOLDER;
|
|
|
|
m_name = name_base;
|
2022-04-16 06:37:35 +05:30
|
|
|
} else if (m_file.isFile()) {
|
|
|
|
if (name_base.endsWith(".disabled")) {
|
2019-08-04 06:57:53 +05:30
|
|
|
m_enabled = false;
|
|
|
|
name_base.chop(9);
|
2022-04-16 06:37:35 +05:30
|
|
|
} else {
|
2019-08-04 06:57:53 +05:30
|
|
|
m_enabled = true;
|
|
|
|
}
|
2022-04-16 06:37:35 +05:30
|
|
|
if (name_base.endsWith(".zip") || name_base.endsWith(".jar")) {
|
2019-08-04 06:57:53 +05:30
|
|
|
m_type = MOD_ZIPFILE;
|
|
|
|
name_base.chop(4);
|
2022-04-16 06:37:35 +05:30
|
|
|
} else if (name_base.endsWith(".litemod")) {
|
2019-08-04 06:57:53 +05:30
|
|
|
m_type = MOD_LITEMOD;
|
|
|
|
name_base.chop(8);
|
2022-04-16 06:37:35 +05:30
|
|
|
} else {
|
2019-08-04 06:57:53 +05:30
|
|
|
m_type = MOD_SINGLEFILE;
|
|
|
|
}
|
|
|
|
m_name = name_base;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-20 04:49:51 +05:30
|
|
|
auto Mod::enable(bool value) -> bool
|
2019-08-04 06:57:53 +05:30
|
|
|
{
|
|
|
|
if (m_type == Mod::MOD_UNKNOWN || m_type == Mod::MOD_FOLDER)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (m_enabled == value)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
QString path = m_file.absoluteFilePath();
|
2022-04-16 06:37:35 +05:30
|
|
|
QFile file(path);
|
|
|
|
if (value) {
|
2019-08-04 06:57:53 +05:30
|
|
|
if (!path.endsWith(".disabled"))
|
|
|
|
return false;
|
|
|
|
path.chop(9);
|
2022-04-16 06:37:35 +05:30
|
|
|
|
|
|
|
if (!file.rename(path))
|
2019-08-04 06:57:53 +05:30
|
|
|
return false;
|
2022-04-16 06:37:35 +05:30
|
|
|
} else {
|
2019-08-04 06:57:53 +05:30
|
|
|
path += ".disabled";
|
2022-04-16 06:37:35 +05:30
|
|
|
|
|
|
|
if (!file.rename(path))
|
2019-08-04 06:57:53 +05:30
|
|
|
return false;
|
|
|
|
}
|
2022-04-16 06:37:35 +05:30
|
|
|
|
2022-04-21 03:15:39 +05:30
|
|
|
if (status() == ModStatus::NoMetadata)
|
2022-04-15 08:54:57 +05:30
|
|
|
repath(QFileInfo(path));
|
|
|
|
|
2019-08-04 06:57:53 +05:30
|
|
|
m_enabled = value;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-04-21 03:15:39 +05:30
|
|
|
void Mod::setStatus(ModStatus status)
|
|
|
|
{
|
|
|
|
if(m_localDetails.get())
|
|
|
|
m_localDetails->status = status;
|
|
|
|
}
|
|
|
|
void Mod::setMetadata(Metadata::ModStruct* metadata)
|
|
|
|
{
|
|
|
|
if(status() == ModStatus::NoMetadata)
|
|
|
|
setStatus(ModStatus::Installed);
|
|
|
|
|
|
|
|
if(m_localDetails.get())
|
|
|
|
m_localDetails->metadata.reset(metadata);
|
|
|
|
}
|
|
|
|
|
2022-04-20 04:49:51 +05:30
|
|
|
auto Mod::destroy(QDir& index_dir) -> bool
|
2019-08-04 06:57:53 +05:30
|
|
|
{
|
2022-04-17 18:49:23 +05:30
|
|
|
auto n = name();
|
|
|
|
// FIXME: This can fail to remove the metadata if the
|
|
|
|
// "DontUseModMetadata" setting is on, since there could
|
|
|
|
// be a name mismatch!
|
|
|
|
Metadata::remove(index_dir, n);
|
2022-04-15 08:54:57 +05:30
|
|
|
|
2019-08-05 04:14:56 +05:30
|
|
|
m_type = MOD_UNKNOWN;
|
|
|
|
return FS::deletePath(m_file.filePath());
|
2019-08-04 06:57:53 +05:30
|
|
|
}
|
|
|
|
|
2022-04-20 04:49:51 +05:30
|
|
|
auto Mod::details() const -> const ModDetails&
|
2019-08-04 06:57:53 +05:30
|
|
|
{
|
2022-04-16 06:37:35 +05:30
|
|
|
return m_localDetails ? *m_localDetails : invalidDetails;
|
2019-08-04 06:57:53 +05:30
|
|
|
}
|
|
|
|
|
2022-04-20 04:49:51 +05:30
|
|
|
auto Mod::name() const -> QString
|
2019-08-04 06:57:53 +05:30
|
|
|
{
|
2022-04-16 06:37:35 +05:30
|
|
|
auto d_name = details().name;
|
|
|
|
if (!d_name.isEmpty()) {
|
|
|
|
return d_name;
|
2019-08-04 06:57:53 +05:30
|
|
|
}
|
|
|
|
return m_name;
|
|
|
|
}
|
|
|
|
|
2022-04-20 04:49:51 +05:30
|
|
|
auto Mod::version() const -> QString
|
2022-04-16 06:37:35 +05:30
|
|
|
{
|
|
|
|
return details().version;
|
|
|
|
}
|
|
|
|
|
2022-04-20 04:49:51 +05:30
|
|
|
auto Mod::homeurl() const -> QString
|
2019-08-04 06:57:53 +05:30
|
|
|
{
|
|
|
|
return details().homeurl;
|
|
|
|
}
|
|
|
|
|
2022-04-20 04:49:51 +05:30
|
|
|
auto Mod::description() const -> QString
|
2019-08-04 06:57:53 +05:30
|
|
|
{
|
|
|
|
return details().description;
|
|
|
|
}
|
|
|
|
|
2022-04-20 04:49:51 +05:30
|
|
|
auto Mod::authors() const -> QStringList
|
2019-08-04 06:57:53 +05:30
|
|
|
{
|
|
|
|
return details().authors;
|
|
|
|
}
|
2022-04-17 18:00:32 +05:30
|
|
|
|
2022-04-21 03:15:39 +05:30
|
|
|
auto Mod::status() const -> ModStatus
|
|
|
|
{
|
|
|
|
return details().status;
|
|
|
|
}
|
|
|
|
|
2022-04-17 18:00:32 +05:30
|
|
|
void Mod::finishResolvingWithDetails(std::shared_ptr<ModDetails> details)
|
|
|
|
{
|
|
|
|
m_resolving = false;
|
|
|
|
m_resolved = true;
|
|
|
|
m_localDetails = details;
|
|
|
|
|
2022-04-21 03:15:39 +05:30
|
|
|
if (status() != ModStatus::NoMetadata
|
|
|
|
&& m_temp_metadata.get()
|
|
|
|
&& m_temp_metadata->isValid() &&
|
|
|
|
m_localDetails.get()) {
|
|
|
|
|
2022-04-17 20:10:41 +05:30
|
|
|
m_localDetails->metadata.swap(m_temp_metadata);
|
2022-04-17 18:00:32 +05:30
|
|
|
}
|
|
|
|
}
|