mirror of
https://github.com/funkemunky/AntiVPN.git
synced 2026-05-31 09:31:54 +00:00
be93dec2a4
- Almost everything.
73 lines
1.9 KiB
Java
73 lines
1.9 KiB
Java
package dev.brighten.pl;
|
|
|
|
import cc.funkemunky.api.Atlas;
|
|
import cc.funkemunky.api.utils.MiscUtils;
|
|
import dev.brighten.pl.handlers.AlertsHandler;
|
|
import dev.brighten.pl.handlers.VPNHandler;
|
|
import dev.brighten.pl.vpn.VPNAPI;
|
|
import org.bukkit.Bukkit;
|
|
import org.bukkit.event.HandlerList;
|
|
import org.bukkit.plugin.java.JavaPlugin;
|
|
|
|
public class AntiVPN extends JavaPlugin {
|
|
|
|
public static AntiVPN INSTANCE;
|
|
|
|
public VPNAPI vpnAPI;
|
|
|
|
public VPNHandler vpnHandler;
|
|
public AlertsHandler alertsHandler;
|
|
|
|
public void onEnable() {
|
|
INSTANCE = this;
|
|
enable();
|
|
}
|
|
|
|
public void onDisable() {
|
|
disable();
|
|
}
|
|
|
|
public void enable() {
|
|
print(true, "scanner");
|
|
Atlas.getInstance().initializeScanner(this, true, true);
|
|
|
|
print(true, "vpn api and handlers");
|
|
vpnAPI = new VPNAPI();
|
|
vpnHandler = new VPNHandler();
|
|
|
|
print(true, "alerts handler");
|
|
alertsHandler = new AlertsHandler();
|
|
|
|
MiscUtils.printToConsole("&aCompleted startup.");
|
|
}
|
|
|
|
public void disable() {
|
|
print(false, "listeners");
|
|
HandlerList.unregisterAll(this);
|
|
|
|
print(false, "tasks");
|
|
Bukkit.getScheduler().cancelTasks(this);
|
|
|
|
print("Save", "database");
|
|
AntiVPN.INSTANCE.vpnAPI.database.saveDatabase();
|
|
|
|
print(false, "threads");
|
|
AntiVPN.INSTANCE.vpnAPI.vpnThread.shutdown();
|
|
|
|
print(false, "handlers");
|
|
AntiVPN.INSTANCE.vpnAPI.vpnThread = null;
|
|
AntiVPN.INSTANCE.vpnHandler = null;
|
|
AntiVPN.INSTANCE.alertsHandler = null;
|
|
|
|
MiscUtils.printToConsole("&aCompleted shutdown.");
|
|
}
|
|
|
|
private void print(boolean enable, String task) {
|
|
MiscUtils.printToConsole((enable ? "&7Enabling " : "&7Disabling ") + task + "...");
|
|
}
|
|
|
|
private void print(String custom, String task) {
|
|
MiscUtils.printToConsole("&7" + custom + "ing " + task + "...");
|
|
}
|
|
}
|