2021-05-17 00:26:37 +02:00
|
|
|
/*
|
|
|
|
* This file is a part of the SteamWar software.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2021 SteamWar.de-Serverteam
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 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 Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2021-04-29 10:16:28 +02:00
|
|
|
package de.steamwar.bausystem.configplayer;
|
|
|
|
|
2021-05-17 00:26:37 +02:00
|
|
|
import de.steamwar.bausystem.configplayer.serializer.ConfigurationSerializableSerializer;
|
2021-04-29 10:25:20 +02:00
|
|
|
import de.steamwar.bausystem.linkage.LinkageType;
|
|
|
|
import de.steamwar.bausystem.linkage.Linked;
|
2021-05-14 16:33:06 +02:00
|
|
|
import de.steamwar.sql.UserConfig;
|
2021-05-12 21:46:11 +02:00
|
|
|
import lombok.Getter;
|
2021-04-29 10:33:23 +02:00
|
|
|
import org.bukkit.Bukkit;
|
2021-04-29 10:25:20 +02:00
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
import org.bukkit.event.EventHandler;
|
|
|
|
import org.bukkit.event.Listener;
|
|
|
|
import org.bukkit.event.player.PlayerJoinEvent;
|
|
|
|
import org.bukkit.event.player.PlayerQuitEvent;
|
2021-05-14 16:33:06 +02:00
|
|
|
import yapion.hierarchy.output.StringOutput;
|
2021-04-29 10:25:20 +02:00
|
|
|
import yapion.hierarchy.types.YAPIONObject;
|
2021-04-30 21:02:58 +02:00
|
|
|
import yapion.parser.YAPIONParser;
|
2021-05-17 00:26:37 +02:00
|
|
|
import yapion.serializing.SerializeManager;
|
2021-04-29 10:16:28 +02:00
|
|
|
|
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.Map;
|
2021-04-29 10:25:20 +02:00
|
|
|
import java.util.UUID;
|
2021-04-29 10:33:23 +02:00
|
|
|
import java.util.logging.Level;
|
2021-04-29 10:16:28 +02:00
|
|
|
|
2021-04-29 10:25:20 +02:00
|
|
|
@Linked(LinkageType.LISTENER)
|
2021-05-12 21:46:11 +02:00
|
|
|
public class Config implements Listener {
|
|
|
|
|
2021-05-17 00:26:37 +02:00
|
|
|
static {
|
|
|
|
SerializeManager.add(new ConfigurationSerializableSerializer());
|
|
|
|
}
|
|
|
|
|
2021-05-12 21:46:11 +02:00
|
|
|
@Getter
|
|
|
|
private static Config instance;
|
|
|
|
|
|
|
|
{
|
|
|
|
instance = this;
|
|
|
|
}
|
2021-04-29 10:25:20 +02:00
|
|
|
|
|
|
|
private final Map<UUID, YAPIONObject> playerConfigurations = new HashMap<>();
|
2021-04-29 10:16:28 +02:00
|
|
|
|
|
|
|
private static final Map<Integer, ConfigConverter> CONFIG_CONVERTER_MAP = new HashMap<>();
|
|
|
|
|
|
|
|
public static void addConfigConverter(ConfigConverter configConverter) {
|
|
|
|
CONFIG_CONVERTER_MAP.putIfAbsent(configConverter.version(), configConverter);
|
|
|
|
}
|
|
|
|
|
2021-04-29 10:25:20 +02:00
|
|
|
@EventHandler
|
|
|
|
public void onPlayerJoin(PlayerJoinEvent event) {
|
2021-04-30 17:37:23 +02:00
|
|
|
get(event.getPlayer());
|
2021-04-29 10:25:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@EventHandler
|
|
|
|
public void onPlayerQuit(PlayerQuitEvent event) {
|
2021-04-30 17:37:23 +02:00
|
|
|
save(event.getPlayer());
|
|
|
|
playerConfigurations.remove(event.getPlayer().getUniqueId());
|
2021-04-29 10:25:20 +02:00
|
|
|
}
|
|
|
|
|
2021-04-30 17:37:23 +02:00
|
|
|
/**
|
|
|
|
* Get a PlayerConfig, optionally loads it from the DataBase and migrates it if necessary.
|
|
|
|
*
|
|
|
|
* @param player the player from whom to get the config.
|
|
|
|
* @return the config object
|
|
|
|
*/
|
|
|
|
public YAPIONObject get(Player player) {
|
2021-04-30 21:02:58 +02:00
|
|
|
UUID uuid = player.getUniqueId();
|
|
|
|
if (!playerConfigurations.containsKey(uuid)) {
|
2021-05-14 16:33:06 +02:00
|
|
|
String s = UserConfig.getConfig(uuid, "bausystem");
|
2021-04-30 21:02:58 +02:00
|
|
|
YAPIONObject yapionObject;
|
|
|
|
if (s == null) {
|
|
|
|
yapionObject = ConfigCreator.createDefaultConfig();
|
|
|
|
} else {
|
|
|
|
yapionObject = YAPIONParser.parse(s);
|
|
|
|
}
|
2021-05-14 16:33:06 +02:00
|
|
|
yapionObject = update(yapionObject);
|
2021-04-30 21:02:58 +02:00
|
|
|
playerConfigurations.put(uuid, yapionObject);
|
|
|
|
return yapionObject;
|
2021-04-29 10:25:20 +02:00
|
|
|
}
|
2021-04-30 21:02:58 +02:00
|
|
|
return playerConfigurations.get(uuid);
|
2021-04-29 10:25:20 +02:00
|
|
|
}
|
|
|
|
|
2021-05-24 16:07:32 +02:00
|
|
|
public void saveAll() {
|
|
|
|
playerConfigurations.forEach((uuid, yapionObject) -> {
|
|
|
|
String string = yapionObject.toYAPION(new StringOutput()).getResult();
|
|
|
|
UserConfig.updatePlayerConfig(uuid, "bausystem", string);
|
|
|
|
});
|
|
|
|
playerConfigurations.clear();
|
|
|
|
}
|
|
|
|
|
2021-04-30 17:37:23 +02:00
|
|
|
/**
|
|
|
|
* Save a PlayerConfig, this does not remove the key value mapping from the map.
|
|
|
|
*
|
|
|
|
* @param player the player to save the config.
|
|
|
|
*/
|
2021-04-29 10:25:20 +02:00
|
|
|
public void save(Player player) {
|
2021-05-14 16:33:06 +02:00
|
|
|
UUID uuid = player.getUniqueId();
|
|
|
|
if (playerConfigurations.containsKey(uuid)) {
|
|
|
|
YAPIONObject yapionObject = playerConfigurations.get(uuid);
|
|
|
|
String string = yapionObject.toYAPION(new StringOutput()).getResult();
|
|
|
|
UserConfig.updatePlayerConfig(uuid, "bausystem", string);
|
|
|
|
}
|
2021-04-29 10:25:20 +02:00
|
|
|
}
|
2021-04-29 10:30:32 +02:00
|
|
|
|
|
|
|
private YAPIONObject update(YAPIONObject yapionObject) {
|
|
|
|
int version = yapionObject.getPlainValue("@version");
|
|
|
|
while (version < ConfigCreator.currentVersion) {
|
|
|
|
ConfigConverter configConverter = CONFIG_CONVERTER_MAP.getOrDefault(version, null);
|
|
|
|
if (configConverter == null) {
|
2021-04-29 10:33:23 +02:00
|
|
|
Bukkit.getLogger().log(Level.SEVERE, "No updater found for version " + version);
|
2021-04-29 10:30:32 +02:00
|
|
|
return ConfigCreator.createDefaultConfig();
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
configConverter.update(yapionObject);
|
|
|
|
} catch (Exception e) {
|
2021-04-29 10:33:23 +02:00
|
|
|
Bukkit.getLogger().log(Level.SEVERE, e.getMessage(), e);
|
|
|
|
return ConfigCreator.createDefaultConfig();
|
|
|
|
}
|
|
|
|
int newVersion = yapionObject.getPlainValue("@version");
|
|
|
|
if (version == newVersion) {
|
|
|
|
Bukkit.getLogger().log(Level.SEVERE, "Version Tag was the same after conversion");
|
2021-04-29 10:30:32 +02:00
|
|
|
return ConfigCreator.createDefaultConfig();
|
|
|
|
}
|
2021-04-30 17:00:43 +02:00
|
|
|
if (newVersion < version) {
|
|
|
|
Bukkit.getLogger().log(Level.SEVERE, "Version Tag was earlier after conversion");
|
|
|
|
return ConfigCreator.createDefaultConfig();
|
|
|
|
}
|
2021-04-29 10:33:23 +02:00
|
|
|
version = newVersion;
|
2021-04-29 10:30:32 +02:00
|
|
|
}
|
|
|
|
return yapionObject;
|
|
|
|
}
|
2021-04-29 10:16:28 +02:00
|
|
|
}
|