2022-08-14 10:55:08 -07:00
|
|
|
/* Copyright (C) 2022 Wildfire Games.
|
2023-12-02 16:30:12 -08:00
|
|
|
* This file is part of 0 A.D.
|
2018-04-14 18:46:28 -07:00
|
|
|
*
|
2023-12-02 16:30:12 -08:00
|
|
|
* 0 A.D. is free software: you can redistribute it and/or modify
|
2018-04-14 18:46:28 -07:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
2023-12-02 16:30:12 -08:00
|
|
|
* 0 A.D. is distributed in the hope that it will be useful,
|
2018-04-14 18:46:28 -07:00
|
|
|
* 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
|
2023-12-02 16:30:12 -08:00
|
|
|
* along with 0 A.D. If not, see <http://www.gnu.org/licenses/>.
|
2018-04-14 18:46:28 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "precompiled.h"
|
|
|
|
|
|
|
|
|
|
#include "ModInstaller.h"
|
|
|
|
|
|
|
|
|
|
#include "lib/file/vfs/vfs_util.h"
|
2021-08-22 06:20:41 -07:00
|
|
|
#include "lib/file/file_system.h"
|
2022-08-14 10:55:08 -07:00
|
|
|
#include "lib/sysdep/os.h"
|
2021-08-22 06:20:41 -07:00
|
|
|
#include "ps/CLogger.h"
|
2018-04-14 18:46:28 -07:00
|
|
|
#include "ps/Filesystem.h"
|
|
|
|
|
#include "ps/XML/Xeromyces.h"
|
2021-05-14 03:18:03 -07:00
|
|
|
#include "scriptinterface/ScriptInterface.h"
|
|
|
|
|
#include "scriptinterface/JSON.h"
|
2018-04-14 18:46:28 -07:00
|
|
|
|
2022-08-14 10:55:08 -07:00
|
|
|
#if !OS_WIN
|
|
|
|
|
#include "lib/os_path.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
2018-04-14 18:46:28 -07:00
|
|
|
#include <fstream>
|
2022-08-14 10:55:08 -07:00
|
|
|
#if OS_WIN
|
|
|
|
|
#include <filesystem>
|
|
|
|
|
#endif
|
2018-04-14 18:46:28 -07:00
|
|
|
|
|
|
|
|
CModInstaller::CModInstaller(const OsPath& modsdir, const OsPath& tempdir) :
|
|
|
|
|
m_ModsDir(modsdir), m_TempDir(tempdir / "_modscache"), m_CacheDir("cache/")
|
|
|
|
|
{
|
|
|
|
|
m_VFS = CreateVfs();
|
|
|
|
|
CreateDirectories(m_TempDir, 0700);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CModInstaller::~CModInstaller()
|
|
|
|
|
{
|
|
|
|
|
m_VFS.reset();
|
|
|
|
|
DeleteDirectory(m_TempDir);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CModInstaller::ModInstallationResult CModInstaller::Install(
|
|
|
|
|
const OsPath& mod,
|
2020-11-14 02:57:50 -08:00
|
|
|
const std::shared_ptr<ScriptContext>& scriptContext,
|
2018-04-22 11:14:45 -07:00
|
|
|
bool keepFile)
|
2018-04-14 18:46:28 -07:00
|
|
|
{
|
|
|
|
|
const OsPath modTemp = m_TempDir / mod.Basename() / mod.Filename().ChangeExtension(L".zip");
|
|
|
|
|
CreateDirectories(modTemp.Parent(), 0700);
|
|
|
|
|
|
2018-04-22 11:14:45 -07:00
|
|
|
if (keepFile)
|
2021-08-22 04:35:34 -07:00
|
|
|
{
|
|
|
|
|
if (CopyFile(mod, modTemp, true) != INFO::OK)
|
|
|
|
|
{
|
|
|
|
|
LOGERROR("Failed to copy '%s' to '%s'", mod.string8().c_str(), modTemp.string8().c_str());
|
|
|
|
|
return FAIL_ON_MOD_COPY;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (RenameFile(mod, modTemp) != INFO::OK)
|
|
|
|
|
{
|
|
|
|
|
LOGERROR("Failed to rename '%s' into '%s'", mod.string8().c_str(), modTemp.string8().c_str());
|
|
|
|
|
return FAIL_ON_MOD_MOVE;
|
|
|
|
|
}
|
2018-04-14 18:46:28 -07:00
|
|
|
|
|
|
|
|
// Load the mod to VFS
|
|
|
|
|
if (m_VFS->Mount(m_CacheDir, m_TempDir / "") != INFO::OK)
|
|
|
|
|
return FAIL_ON_VFS_MOUNT;
|
|
|
|
|
CVFSFile modinfo;
|
|
|
|
|
PSRETURN modinfo_status = modinfo.Load(m_VFS, m_CacheDir / modTemp.Basename() / "mod.json", false);
|
|
|
|
|
m_VFS->Clear();
|
|
|
|
|
if (modinfo_status != PSRETURN_OK)
|
|
|
|
|
return FAIL_ON_MOD_LOAD;
|
|
|
|
|
|
|
|
|
|
// Extract the name of the mod
|
|
|
|
|
CStr modName;
|
2020-11-13 05:18:22 -08:00
|
|
|
{
|
2020-11-14 02:57:50 -08:00
|
|
|
ScriptInterface scriptInterface("Engine", "ModInstaller", scriptContext);
|
Improve JS Exception handling.
- Check for pending exceptions after function calls and script
executions.
- Call LOGERROR instead of JS_ReportError when there is a conversion
error in FromJSVal, since that can only be called from C++ (where JS
errors don't really make sense). Instead, C++ callers of FromJSVal
should handle the failure and, themselves, either report an error or
simply do something else.
- Wrap JS_ReportError since that makes updating it later easier.
This isn't a systematical fix since ToJSVal also ought return a boolean
for failures, and we probably should trigger errors instead of warnings
on 'implicit' conversions, rather a preparation diff.
Part of the SM52 migration, stage: SM45 compatible (actually SM52
incompatible, too).
Based on a patch by: Itms
Comments by: Vladislavbelov, Stan`
Refs #742, #4893
Differential Revision: https://code.wildfiregames.com/D3093
This was SVN commit r24187.
2020-11-15 10:29:17 -08:00
|
|
|
ScriptRequest rq(scriptInterface);
|
2020-11-13 05:18:22 -08:00
|
|
|
|
|
|
|
|
JS::RootedValue json_val(rq.cx);
|
2021-05-14 03:18:03 -07:00
|
|
|
if (!Script::ParseJSON(rq, modinfo.GetAsString(), &json_val))
|
2020-11-13 05:18:22 -08:00
|
|
|
return FAIL_ON_PARSE_JSON;
|
|
|
|
|
JS::RootedObject json_obj(rq.cx, json_val.toObjectOrNull());
|
|
|
|
|
JS::RootedValue name_val(rq.cx);
|
|
|
|
|
if (!JS_GetProperty(rq.cx, json_obj, "name", &name_val))
|
|
|
|
|
return FAIL_ON_EXTRACT_NAME;
|
2021-05-13 02:43:33 -07:00
|
|
|
Script::FromJSVal(rq, name_val, modName);
|
2020-11-13 05:18:22 -08:00
|
|
|
if (modName.empty())
|
|
|
|
|
return FAIL_ON_EXTRACT_NAME;
|
|
|
|
|
}
|
2018-04-14 18:46:28 -07:00
|
|
|
|
|
|
|
|
const OsPath modDir = m_ModsDir / modName;
|
|
|
|
|
const OsPath modPath = modDir / (modName + ".zip");
|
|
|
|
|
|
|
|
|
|
// Create a directory with the following structure:
|
|
|
|
|
// mod-name/
|
|
|
|
|
// mod-name.zip
|
2021-05-16 06:50:05 -07:00
|
|
|
// mod.json
|
2018-04-14 18:46:28 -07:00
|
|
|
CreateDirectories(modDir, 0700);
|
2021-08-22 04:35:34 -07:00
|
|
|
if (RenameFile(modTemp, modPath) != INFO::OK)
|
|
|
|
|
{
|
|
|
|
|
LOGERROR("Failed to rename '%s' into '%s'", modTemp.string8().c_str(), modPath.string8().c_str());
|
2018-04-14 18:46:28 -07:00
|
|
|
return FAIL_ON_MOD_MOVE;
|
2021-08-22 04:35:34 -07:00
|
|
|
}
|
|
|
|
|
|
2018-04-14 18:46:28 -07:00
|
|
|
DeleteDirectory(modTemp.Parent());
|
|
|
|
|
|
2022-08-14 10:55:08 -07:00
|
|
|
#if OS_WIN
|
|
|
|
|
const std::filesystem::path modJsonPath = (modDir / L"mod.json").fileSystemPath();
|
|
|
|
|
#else
|
2022-08-16 07:57:28 -07:00
|
|
|
const std::string modJsonPath = OsString(modDir / L"mod.json");
|
2022-08-14 10:55:08 -07:00
|
|
|
#endif
|
|
|
|
|
std::ofstream mod_json(modJsonPath);
|
2018-04-14 18:46:28 -07:00
|
|
|
if (mod_json.good())
|
|
|
|
|
{
|
|
|
|
|
mod_json << modinfo.GetAsString();
|
|
|
|
|
mod_json.close();
|
|
|
|
|
}
|
2021-05-16 06:50:05 -07:00
|
|
|
else
|
|
|
|
|
return FAIL_ON_JSON_WRITE;
|
2018-04-14 18:46:28 -07:00
|
|
|
|
|
|
|
|
m_InstalledMods.emplace_back(modName);
|
|
|
|
|
|
|
|
|
|
return SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const std::vector<CStr>& CModInstaller::GetInstalledMods() const
|
|
|
|
|
{
|
|
|
|
|
return m_InstalledMods;
|
|
|
|
|
}
|