Plan/Plan/bukkit/src/main/java/com/djrapitops/plan/BukkitServerShutdownSave.java

95 lines
4.0 KiB
Java

/*
* This file is part of Player Analytics (Plan).
*
* Plan is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License v3 as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Plan 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 Plan. If not, see <https://www.gnu.org/licenses/>.
*/
package com.djrapitops.plan;
import com.djrapitops.plan.gathering.ServerShutdownSave;
import com.djrapitops.plan.settings.locale.Locale;
import com.djrapitops.plan.storage.database.DBSystem;
import com.djrapitops.plan.utilities.java.Reflection;
import com.djrapitops.plan.utilities.logging.ErrorLogger;
import net.playeranalytics.plugin.server.PluginLogger;
import org.bukkit.Bukkit;
import javax.inject.Inject;
import javax.inject.Singleton;
/**
* ServerShutdownSave implementation for Bukkit based servers.
*
* @author AuroraLS3
*/
@Singleton
public class BukkitServerShutdownSave extends ServerShutdownSave {
private static final String IS_STOPPED = "isStopped";
@Inject
public BukkitServerShutdownSave(
Locale locale,
DBSystem dbSystem,
PluginLogger logger,
ErrorLogger errorLogger
) {
super(locale, dbSystem, logger, errorLogger);
}
@Override
protected boolean checkServerShuttingDownStatus() {
return isStoppedBefore1p17() || isStoppedV1p17() || isStoppedAfterV1p17();
}
private boolean isStoppedBefore1p17() {
try {
// Special thanks to Fuzzlemann for figuring out the methods required for this check.
// https://github.com/plan-player-analytics/Plan/issues/769#issuecomment-433898242
Class<?> minecraftServerClass = Reflection.getMinecraftClass("MinecraftServer");
Object minecraftServer = Reflection.getField(minecraftServerClass, "SERVER", minecraftServerClass).get(null);
return Reflection.getField(minecraftServerClass, IS_STOPPED, boolean.class).get(minecraftServer);
} catch (Exception | NoClassDefFoundError | NoSuchFieldError e) {
return false;
}
}
private boolean isStoppedV1p17() {
try {
// Special thanks to Fuzzlemann for figuring out the methods required for this check.
// https://github.com/plan-player-analytics/Plan/issues/769#issuecomment-433898242
Class<?> minecraftServerClass = Class.forName("net.minecraft.server.MinecraftServer");
Class<?> craftServerClass = Reflection.getCraftBukkitClass("CraftServer");
Object minecraftServer = Reflection.getField(craftServerClass, "console", minecraftServerClass).get(Bukkit.getServer());
return (Boolean) minecraftServerClass.getMethod(IS_STOPPED).invoke(minecraftServer);
} catch (Exception | NoClassDefFoundError | NoSuchFieldError | NoSuchMethodError e) {
return false;
}
}
private boolean isStoppedAfterV1p17() {
try {
// Special thanks to Fuzzlemann for figuring out the methods required for this check.
// https://github.com/plan-player-analytics/Plan/issues/769#issuecomment-433898242
Class<?> minecraftServerClass = Reflection.getMinecraftClass("MinecraftServer");
Class<?> craftServerClass = Reflection.getCraftBukkitClass("CraftServer");
Object minecraftServer = Reflection.getField(craftServerClass, "console", minecraftServerClass).get(Bukkit.getServer());
return (Boolean) minecraftServerClass.getMethod(IS_STOPPED).invoke(minecraftServer);
} catch (Exception | NoClassDefFoundError | NoSuchFieldError | NoSuchMethodError e) {
return false;
}
}
}