2024-10-28 15:57:39 +01:00
|
|
|
// Luanti
|
|
|
|
// SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
// Copyright (C) 2017 nerzhul, Loic Blot <loic.blot@unix-experience.fr>
|
2017-04-23 14:35:08 +02:00
|
|
|
|
2017-08-17 22:19:39 +02:00
|
|
|
#pragma once
|
2017-04-23 14:35:08 +02:00
|
|
|
|
|
|
|
// !!! WARNING !!!
|
2017-04-23 16:22:53 +02:00
|
|
|
// This backend is intended to be used on Minetest 0.4.16 only for the transition backend
|
|
|
|
// for player files
|
2017-04-23 14:35:08 +02:00
|
|
|
|
|
|
|
#include "database.h"
|
2018-08-05 13:13:38 +02:00
|
|
|
#include <unordered_map>
|
2022-01-07 13:28:49 -05:00
|
|
|
#include <unordered_set>
|
2023-03-25 19:48:50 +01:00
|
|
|
#include <json/json.h> // for Json::Value
|
2017-04-23 14:35:08 +02:00
|
|
|
|
|
|
|
class PlayerDatabaseFiles : public PlayerDatabase
|
|
|
|
{
|
|
|
|
public:
|
2019-01-04 10:06:46 +01:00
|
|
|
PlayerDatabaseFiles(const std::string &savedir);
|
2017-08-17 23:02:50 +02:00
|
|
|
virtual ~PlayerDatabaseFiles() = default;
|
2017-04-23 14:35:08 +02:00
|
|
|
|
|
|
|
void savePlayer(RemotePlayer *player);
|
|
|
|
bool loadPlayer(RemotePlayer *player, PlayerSAO *sao);
|
|
|
|
bool removePlayer(const std::string &name);
|
|
|
|
void listPlayers(std::vector<std::string> &res);
|
|
|
|
|
|
|
|
private:
|
2020-11-22 17:49:30 +01:00
|
|
|
void deSerialize(RemotePlayer *p, std::istream &is, const std::string &playername,
|
|
|
|
PlayerSAO *sao);
|
2020-11-25 20:16:08 +01:00
|
|
|
/*
|
|
|
|
serialize() writes a bunch of text that can contain
|
|
|
|
any characters except a '\0', and such an ending that
|
|
|
|
deSerialize stops reading exactly at the right point.
|
|
|
|
*/
|
|
|
|
void serialize(RemotePlayer *p, std::ostream &os);
|
2017-04-23 14:35:08 +02:00
|
|
|
|
|
|
|
std::string m_savedir;
|
|
|
|
};
|
2018-08-05 13:13:38 +02:00
|
|
|
|
|
|
|
class AuthDatabaseFiles : public AuthDatabase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
AuthDatabaseFiles(const std::string &savedir);
|
|
|
|
virtual ~AuthDatabaseFiles() = default;
|
|
|
|
|
|
|
|
virtual bool getAuth(const std::string &name, AuthEntry &res);
|
|
|
|
virtual bool saveAuth(const AuthEntry &authEntry);
|
|
|
|
virtual bool createAuth(AuthEntry &authEntry);
|
|
|
|
virtual bool deleteAuth(const std::string &name);
|
|
|
|
virtual void listNames(std::vector<std::string> &res);
|
|
|
|
virtual void reload();
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::unordered_map<std::string, AuthEntry> m_auth_list;
|
|
|
|
std::string m_savedir;
|
|
|
|
bool readAuthFile();
|
|
|
|
bool writeAuthFile();
|
|
|
|
};
|
2022-01-07 13:28:49 -05:00
|
|
|
|
2022-11-23 17:25:34 -05:00
|
|
|
class ModStorageDatabaseFiles : public ModStorageDatabase
|
2022-01-07 13:28:49 -05:00
|
|
|
{
|
|
|
|
public:
|
2022-11-23 17:25:34 -05:00
|
|
|
ModStorageDatabaseFiles(const std::string &savedir);
|
|
|
|
virtual ~ModStorageDatabaseFiles() = default;
|
2022-01-07 13:28:49 -05:00
|
|
|
|
2022-11-23 17:46:20 -05:00
|
|
|
virtual void getModEntries(const std::string &modname, StringMap *storage);
|
|
|
|
virtual void getModKeys(const std::string &modname, std::vector<std::string> *storage);
|
2022-09-26 17:03:43 -04:00
|
|
|
virtual bool getModEntry(const std::string &modname,
|
|
|
|
const std::string &key, std::string *value);
|
|
|
|
virtual bool hasModEntry(const std::string &modname, const std::string &key);
|
2022-01-07 13:28:49 -05:00
|
|
|
virtual bool setModEntry(const std::string &modname,
|
2024-02-17 15:35:33 +01:00
|
|
|
const std::string &key, std::string_view value);
|
2022-01-07 13:28:49 -05:00
|
|
|
virtual bool removeModEntry(const std::string &modname, const std::string &key);
|
2022-09-26 17:03:43 -04:00
|
|
|
virtual bool removeModEntries(const std::string &modname);
|
2022-01-07 13:28:49 -05:00
|
|
|
virtual void listMods(std::vector<std::string> *res);
|
|
|
|
|
|
|
|
virtual void beginSave();
|
|
|
|
virtual void endSave();
|
|
|
|
|
|
|
|
private:
|
|
|
|
Json::Value *getOrCreateJson(const std::string &modname);
|
|
|
|
|
|
|
|
std::string m_storage_dir;
|
2022-11-23 17:25:34 -05:00
|
|
|
std::unordered_map<std::string, Json::Value> m_mod_storage;
|
2022-01-07 13:28:49 -05:00
|
|
|
std::unordered_set<std::string> m_modified;
|
|
|
|
};
|