2017-04-23 14:35:08 +02:00
|
|
|
/*
|
|
|
|
Minetest
|
|
|
|
Copyright (C) 2017 nerzhul, Loic Blot <loic.blot@unix-experience.fr>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2.1 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
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 Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
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 19:28:49 +01: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 19:28:49 +01:00
|
|
|
|
2022-11-23 23:25:34 +01:00
|
|
|
class ModStorageDatabaseFiles : public ModStorageDatabase
|
2022-01-07 19:28:49 +01:00
|
|
|
{
|
|
|
|
public:
|
2022-11-23 23:25:34 +01:00
|
|
|
ModStorageDatabaseFiles(const std::string &savedir);
|
|
|
|
virtual ~ModStorageDatabaseFiles() = default;
|
2022-01-07 19:28:49 +01:00
|
|
|
|
2022-11-23 23:46:20 +01: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 23:03:43 +02: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 19:28:49 +01:00
|
|
|
virtual bool setModEntry(const std::string &modname,
|
|
|
|
const std::string &key, const std::string &value);
|
|
|
|
virtual bool removeModEntry(const std::string &modname, const std::string &key);
|
2022-09-26 23:03:43 +02:00
|
|
|
virtual bool removeModEntries(const std::string &modname);
|
2022-01-07 19:28:49 +01:00
|
|
|
virtual void listMods(std::vector<std::string> *res);
|
|
|
|
|
|
|
|
virtual void beginSave();
|
|
|
|
virtual void endSave();
|
|
|
|
|
|
|
|
private:
|
|
|
|
Json::Value *getOrCreateJson(const std::string &modname);
|
|
|
|
bool writeJson(const std::string &modname, const Json::Value &json);
|
|
|
|
|
|
|
|
std::string m_storage_dir;
|
2022-11-23 23:25:34 +01:00
|
|
|
std::unordered_map<std::string, Json::Value> m_mod_storage;
|
2022-01-07 19:28:49 +01:00
|
|
|
std::unordered_set<std::string> m_modified;
|
|
|
|
};
|