2021-01-18 12:58:54 +05:30
|
|
|
/* Copyright 2013-2021 MultiMC Contributors
|
2019-08-04 06:57:53 +05:30
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
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>
|
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-15 08:54:57 +05:30
|
|
|
Mod::Mod(const QDir& mods_dir, const Packwiz::Mod& metadata)
|
|
|
|
: 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_from_metadata = true;
|
|
|
|
m_enabled = true;
|
|
|
|
m_changedDateTime = m_file.lastModified();
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Mod::enable(bool value)
|
|
|
|
{
|
|
|
|
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
|
|
|
|
|
|
|
if (!fromMetadata())
|
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-15 08:54:57 +05:30
|
|
|
bool Mod::destroy(QDir& index_dir)
|
2019-08-04 06:57:53 +05:30
|
|
|
{
|
2022-04-15 08:54:57 +05:30
|
|
|
// Delete metadata
|
|
|
|
Packwiz::deleteModIndex(index_dir, m_name);
|
|
|
|
|
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-16 06:37:35 +05:30
|
|
|
const ModDetails& Mod::details() const
|
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
|
|
|
}
|
|
|
|
|
|
|
|
QString Mod::name() const
|
|
|
|
{
|
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-16 06:37:35 +05:30
|
|
|
QString Mod::version() const
|
|
|
|
{
|
|
|
|
return details().version;
|
|
|
|
}
|
|
|
|
|
2019-08-04 06:57:53 +05:30
|
|
|
QString Mod::homeurl() const
|
|
|
|
{
|
|
|
|
return details().homeurl;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString Mod::description() const
|
|
|
|
{
|
|
|
|
return details().description;
|
|
|
|
}
|
|
|
|
|
|
|
|
QStringList Mod::authors() const
|
|
|
|
{
|
|
|
|
return details().authors;
|
|
|
|
}
|