mirror of
https://github.com/essentials/Essentials.git
synced 2025-10-03 17:41:57 +02:00
533 lines
14 KiB
Java
533 lines
14 KiB
Java
/*
|
|
* Essentials - a bukkit plugin
|
|
* Copyright (C) 2011 Essentials Team
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package com.earth2me.essentials;
|
|
|
|
import static com.earth2me.essentials.I18n._;
|
|
import com.earth2me.essentials.api.*;
|
|
import com.earth2me.essentials.backup.Backup;
|
|
import com.earth2me.essentials.commands.EssentialsCommandHandler;
|
|
import com.earth2me.essentials.economy.Economy;
|
|
import com.earth2me.essentials.economy.Trade;
|
|
import com.earth2me.essentials.economy.WorthHolder;
|
|
import com.earth2me.essentials.economy.register.Methods;
|
|
import com.earth2me.essentials.listener.*;
|
|
import com.earth2me.essentials.metrics.Metrics;
|
|
import com.earth2me.essentials.metrics.MetricsListener;
|
|
import com.earth2me.essentials.metrics.MetricsStarter;
|
|
import com.earth2me.essentials.ranks.RanksStorage;
|
|
import com.earth2me.essentials.settings.SettingsHolder;
|
|
import com.earth2me.essentials.settings.SpawnsHolder;
|
|
import com.earth2me.essentials.user.IOfflinePlayer;
|
|
import com.earth2me.essentials.user.User;
|
|
import com.earth2me.essentials.user.UserMap;
|
|
import com.earth2me.essentials.utils.ExecuteTimer;
|
|
import java.io.File;
|
|
import java.io.FileReader;
|
|
import java.io.IOException;
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import java.util.logging.Level;
|
|
import java.util.logging.Logger;
|
|
import java.util.regex.Matcher;
|
|
import java.util.regex.Pattern;
|
|
import lombok.Getter;
|
|
import org.bukkit.Server;
|
|
import org.bukkit.World;
|
|
import org.bukkit.command.Command;
|
|
import org.bukkit.command.CommandSender;
|
|
import org.bukkit.entity.Player;
|
|
import org.bukkit.event.EventHandler;
|
|
import org.bukkit.event.EventPriority;
|
|
import org.bukkit.event.Listener;
|
|
import org.bukkit.event.player.PlayerJoinEvent;
|
|
import org.bukkit.plugin.InvalidDescriptionException;
|
|
import org.bukkit.plugin.Plugin;
|
|
import org.bukkit.plugin.PluginDescriptionFile;
|
|
import org.bukkit.plugin.PluginManager;
|
|
import org.bukkit.plugin.java.JavaPlugin;
|
|
import org.yaml.snakeyaml.error.YAMLException;
|
|
|
|
|
|
public class Essentials extends JavaPlugin implements IEssentials
|
|
{
|
|
public static final int BUKKIT_VERSION = 2149;
|
|
private static final Logger LOGGER = Logger.getLogger("Minecraft");
|
|
private transient ISettings settings;
|
|
private final transient TntExplodeListener tntListener = new TntExplodeListener(this);
|
|
private transient IJails jails;
|
|
private transient IKits kits;
|
|
private transient IWarps warps;
|
|
private transient IWorth worth;
|
|
private transient List<IReload> reloadList;
|
|
private transient IBackup backup;
|
|
private transient IItemDb itemDb;
|
|
private transient IRanks groups;
|
|
private transient SpawnsHolder spawns;
|
|
private transient final Methods paymentMethod = new Methods();
|
|
//private transient PermissionsHandler permissionsHandler;
|
|
private transient IUserMap userMap;
|
|
private transient ExecuteTimer execTimer;
|
|
private transient I18n i18n;
|
|
private transient ICommandHandler commandHandler;
|
|
private transient Economy economy;
|
|
public transient boolean testing;
|
|
private transient Metrics metrics;
|
|
@Getter
|
|
private transient EssentialsTimer timer;
|
|
@Getter
|
|
private transient List<String> vanishedPlayers = new ArrayList<String>();
|
|
|
|
@Override
|
|
public ISettings getSettings()
|
|
{
|
|
return settings;
|
|
}
|
|
|
|
public void setupForTesting(final Server server) throws IOException, InvalidDescriptionException
|
|
{
|
|
testing = true;
|
|
final File dataFolder = File.createTempFile("essentialstest", "");
|
|
if (!dataFolder.delete())
|
|
{
|
|
throw new IOException();
|
|
}
|
|
if (!dataFolder.mkdir())
|
|
{
|
|
throw new IOException();
|
|
}
|
|
i18n = new I18n(this);
|
|
i18n.onEnable();
|
|
LOGGER.log(Level.INFO, _("usingTempFolderForTesting"));
|
|
LOGGER.log(Level.INFO, dataFolder.toString());
|
|
this.initialize(null, server, new PluginDescriptionFile(new FileReader(new File("src" + File.separator + "plugin.yml"))), dataFolder, null, null);
|
|
settings = new SettingsHolder(this);
|
|
i18n.updateLocale("en");
|
|
userMap = new UserMap(this);
|
|
//permissionsHandler = new PermissionsHandler(this);
|
|
economy = new Economy(this);
|
|
}
|
|
|
|
@Override
|
|
public void onEnable()
|
|
{
|
|
execTimer = new ExecuteTimer();
|
|
execTimer.start();
|
|
i18n = new I18n(this);
|
|
i18n.onEnable();
|
|
execTimer.mark("I18n1");
|
|
final PluginManager pm = getServer().getPluginManager();
|
|
for (Plugin plugin : pm.getPlugins())
|
|
{
|
|
if (plugin.getDescription().getName().startsWith("Essentials")
|
|
&& !plugin.getDescription().getVersion().equals(this.getDescription().getVersion())
|
|
&& !plugin.getDescription().getName().equals("EssentialsAntiCheat"))
|
|
{
|
|
LOGGER.log(Level.WARNING, _("versionMismatch", plugin.getDescription().getName()));
|
|
}
|
|
}
|
|
final Matcher versionMatch = Pattern.compile("git-Bukkit-(?:(?:[0-9]+)\\.)+[0-9]+-R[\\.0-9]+-(?:[0-9]+-g[0-9a-f]+-)?b([0-9]+)jnks.*").matcher(getServer().getVersion());
|
|
if (versionMatch.matches())
|
|
{
|
|
final int versionNumber = Integer.parseInt(versionMatch.group(1));
|
|
if (versionNumber < BUKKIT_VERSION && versionNumber > 100)
|
|
{
|
|
LOGGER.log(Level.SEVERE, " * ! * ! * ! * ! * ! * ! * ! * ! * ! * ! * ! * ! *");
|
|
LOGGER.log(Level.SEVERE, _("notRecommendedBukkit"));
|
|
LOGGER.log(Level.SEVERE, _("requiredBukkit", Integer.toString(BUKKIT_VERSION)));
|
|
LOGGER.log(Level.SEVERE, " * ! * ! * ! * ! * ! * ! * ! * ! * ! * ! * ! * ! *");
|
|
this.setEnabled(false);
|
|
return;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
LOGGER.log(Level.INFO, _("bukkitFormatChanged"));
|
|
LOGGER.log(Level.INFO, getServer().getVersion());
|
|
LOGGER.log(Level.INFO, getServer().getBukkitVersion());
|
|
}
|
|
execTimer.mark("BukkitCheck");
|
|
try
|
|
{
|
|
//final EssentialsUpgrade upgrade = new EssentialsUpgrade(this);
|
|
//upgrade.beforeSettings();
|
|
//execTimer.mark("Upgrade");
|
|
reloadList = new ArrayList<IReload>();
|
|
settings = new SettingsHolder(this);
|
|
reloadList.add(settings);
|
|
execTimer.mark("Settings");
|
|
//upgrade.afterSettings();
|
|
//execTimer.mark("Upgrade2");
|
|
i18n.updateLocale(settings.getLocale());
|
|
userMap = new UserMap(this);
|
|
reloadList.add(userMap);
|
|
execTimer.mark("Init(Usermap)");
|
|
groups = new RanksStorage(this);
|
|
reloadList.add((RanksStorage)groups);
|
|
warps = new Warps(this);
|
|
reloadList.add(warps);
|
|
execTimer.mark("Init(Spawn/Warp)");
|
|
worth = new WorthHolder(this);
|
|
reloadList.add(worth);
|
|
itemDb = new ItemDb(this);
|
|
reloadList.add(itemDb);
|
|
execTimer.mark("Init(Worth/ItemDB)");
|
|
kits = new Kits(this);
|
|
reloadList.add(kits);
|
|
commandHandler = new EssentialsCommandHandler(Essentials.class.getClassLoader(), "com.earth2me.essentials.commands.Command", "essentials.", this);
|
|
reloadList.add(commandHandler);
|
|
economy = new Economy(this);
|
|
reloadList.add(economy);
|
|
spawns = new SpawnsHolder(this);
|
|
reloadList.add(spawns);
|
|
reload();
|
|
}
|
|
catch (YAMLException exception)
|
|
{
|
|
if (pm.getPlugin("EssentialsUpdate") != null)
|
|
{
|
|
LOGGER.log(Level.SEVERE, _("essentialsHelp2"));
|
|
}
|
|
else
|
|
{
|
|
LOGGER.log(Level.SEVERE, _("essentialsHelp1"));
|
|
}
|
|
LOGGER.log(Level.SEVERE, exception.toString());
|
|
pm.registerEvents(new Listener()
|
|
{
|
|
@EventHandler(priority = EventPriority.LOW)
|
|
public void onPlayerJoin(final PlayerJoinEvent event)
|
|
{
|
|
event.getPlayer().sendMessage("Essentials failed to load, read the log file.");
|
|
}
|
|
}, this);
|
|
for (Player player : getServer().getOnlinePlayers())
|
|
{
|
|
player.sendMessage("Essentials failed to load, read the log file.");
|
|
}
|
|
this.setEnabled(false);
|
|
return;
|
|
}
|
|
backup = new Backup(this);
|
|
//permissionsHandler = new PermissionsHandler(this);
|
|
final EssentialsPluginListener serverListener = new EssentialsPluginListener(this);
|
|
pm.registerEvents(serverListener, this);
|
|
reloadList.add(serverListener);
|
|
|
|
final EssentialsPlayerListener playerListener = new EssentialsPlayerListener(this);
|
|
pm.registerEvents(playerListener, this);
|
|
|
|
final EssentialsBlockListener blockListener = new EssentialsBlockListener(this);
|
|
pm.registerEvents(blockListener, this);
|
|
|
|
final EssentialsEntityListener entityListener = new EssentialsEntityListener(this);
|
|
pm.registerEvents(entityListener, this);
|
|
|
|
jails = new Jails(this);
|
|
reloadList.add(jails);
|
|
|
|
pm.registerEvents(tntListener, this);
|
|
|
|
|
|
final EssentialsTimer timer = new EssentialsTimer(this);
|
|
getServer().getScheduler().scheduleSyncRepeatingTask(this, timer, 1, 100);
|
|
execTimer.mark("RegListeners");
|
|
|
|
final MetricsStarter metricsStarter = new MetricsStarter(this);
|
|
if (metricsStarter.getStart() != null && metricsStarter.getStart() == true)
|
|
{
|
|
getServer().getScheduler().scheduleAsyncDelayedTask(this, metricsStarter, 1);
|
|
}
|
|
else if (metricsStarter.getStart() != null && metricsStarter.getStart() == false)
|
|
{
|
|
final MetricsListener metricsListener = new MetricsListener(this, metricsStarter);
|
|
pm.registerEvents(metricsListener, this);
|
|
}
|
|
|
|
final String timeroutput = execTimer.end();
|
|
if (getSettings().isDebug())
|
|
{
|
|
LOGGER.log(Level.INFO, "Essentials load {0}", timeroutput);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void onDisable()
|
|
{
|
|
for (Player p : getServer().getOnlinePlayers())
|
|
{
|
|
IUser user = getUser(p);
|
|
if (user.isVanished())
|
|
{
|
|
user.toggleVanished();
|
|
p.sendMessage(_("unvanishedReload"));
|
|
}
|
|
}
|
|
i18n.onDisable();
|
|
Trade.closeLog();
|
|
}
|
|
|
|
@Override
|
|
public void reload()
|
|
{
|
|
Trade.closeLog();
|
|
|
|
for (IReload iReload : reloadList)
|
|
{
|
|
iReload.onReload();
|
|
execTimer.mark("Reload(" + iReload.getClass().getSimpleName() + ")");
|
|
}
|
|
|
|
i18n.updateLocale(settings.getLocale());
|
|
}
|
|
|
|
@Override
|
|
public boolean onCommand(final CommandSender sender, final Command command, final String commandLabel, final String[] args)
|
|
{
|
|
return commandHandler.handleCommand(sender, command, commandLabel, args);
|
|
//return onCommandEssentials(sender, command, commandLabel, args, Essentials.class.getClassLoader(), "com.earth2me.essentials.commands.Command", "essentials.", null);
|
|
}
|
|
|
|
@Override
|
|
public IJails getJails()
|
|
{
|
|
return jails;
|
|
}
|
|
|
|
@Override
|
|
public IKits getKits()
|
|
{
|
|
return kits;
|
|
}
|
|
|
|
@Override
|
|
public IWarps getWarps()
|
|
{
|
|
return warps;
|
|
}
|
|
|
|
@Override
|
|
public IWorth getWorth()
|
|
{
|
|
return worth;
|
|
}
|
|
|
|
@Override
|
|
public IBackup getBackup()
|
|
{
|
|
return backup;
|
|
}
|
|
|
|
public Metrics getMetrics()
|
|
{
|
|
return metrics;
|
|
}
|
|
|
|
public void setMetrics(Metrics metrics)
|
|
{
|
|
this.metrics = metrics;
|
|
}
|
|
|
|
@Override
|
|
public IUser getUser(final Object base)
|
|
{
|
|
if (base instanceof Player)
|
|
{
|
|
return getUser((Player)base);
|
|
}
|
|
if (base instanceof String)
|
|
{
|
|
final IUser user = userMap.getUser((String)base);
|
|
if (user != null && user.getBase() instanceof IOfflinePlayer)
|
|
{
|
|
((IOfflinePlayer)user.getBase()).setName((String)base);
|
|
}
|
|
return user;
|
|
}
|
|
return null;
|
|
}
|
|
|
|
private <T extends Player> IUser getUser(final T base)
|
|
{
|
|
if (base == null)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
if (base instanceof IUser)
|
|
{
|
|
return (IUser)base;
|
|
}
|
|
IUser user = userMap.getUser(base.getName());
|
|
|
|
if (user == null)
|
|
{
|
|
user = new User(base, this);
|
|
}
|
|
else
|
|
{
|
|
//todo - fix this
|
|
user.update(base);
|
|
}
|
|
return user;
|
|
}
|
|
|
|
/*@Override
|
|
public IUser getUser(final Player player)
|
|
{
|
|
return userMap.getUser(player);
|
|
}
|
|
|
|
@Override
|
|
public IUser getUser(final String playerName)
|
|
{
|
|
return userMap.getUser(playerName);
|
|
}
|
|
*/
|
|
@Override
|
|
public World getWorld(final String name)
|
|
{
|
|
if (name.matches("[0-9]+"))
|
|
{
|
|
final int worldId = Integer.parseInt(name);
|
|
if (worldId < getServer().getWorlds().size())
|
|
{
|
|
return getServer().getWorlds().get(worldId);
|
|
}
|
|
}
|
|
return getServer().getWorld(name);
|
|
}
|
|
|
|
@Override
|
|
public void addReloadListener(final IReload listener)
|
|
{
|
|
reloadList.add(listener);
|
|
}
|
|
|
|
@Override
|
|
public Methods getPaymentMethod()
|
|
{
|
|
return paymentMethod;
|
|
}
|
|
|
|
@Override
|
|
public int broadcastMessage(final IUser sender, final String message)
|
|
{
|
|
if (sender == null)
|
|
{
|
|
return getServer().broadcastMessage(message);
|
|
}
|
|
if (sender.isHidden())
|
|
{
|
|
return 0;
|
|
}
|
|
final Player[] players = getServer().getOnlinePlayers();
|
|
|
|
for (Player player : players)
|
|
{
|
|
final IUser user = getUser(player);
|
|
if (!user.isIgnoringPlayer(sender.getName()))
|
|
{
|
|
player.sendMessage(message);
|
|
}
|
|
}
|
|
|
|
return players.length;
|
|
}
|
|
|
|
@Override
|
|
public int scheduleAsyncDelayedTask(final Runnable run)
|
|
{
|
|
return this.getServer().getScheduler().scheduleAsyncDelayedTask(this, run);
|
|
}
|
|
|
|
@Override
|
|
public int scheduleSyncDelayedTask(final Runnable run)
|
|
{
|
|
return this.getServer().getScheduler().scheduleSyncDelayedTask(this, run);
|
|
}
|
|
|
|
@Override
|
|
public int scheduleSyncDelayedTask(final Runnable run, final long delay)
|
|
{
|
|
return this.getServer().getScheduler().scheduleSyncDelayedTask(this, run, delay);
|
|
}
|
|
|
|
@Override
|
|
public int scheduleSyncRepeatingTask(final Runnable run, final long delay, final long period)
|
|
{
|
|
return this.getServer().getScheduler().scheduleSyncRepeatingTask(this, run, delay, period);
|
|
}
|
|
|
|
@Override
|
|
public TntExplodeListener getTNTListener()
|
|
{
|
|
return tntListener;
|
|
}
|
|
|
|
/*
|
|
* @Override public PermissionsHandler getPermissionsHandler() { return permissionsHandler; }
|
|
*/
|
|
@Override
|
|
public IItemDb getItemDb()
|
|
{
|
|
return itemDb;
|
|
}
|
|
|
|
@Override
|
|
public IUserMap getUserMap()
|
|
{
|
|
return userMap;
|
|
}
|
|
|
|
@Override
|
|
public I18n getI18n()
|
|
{
|
|
return i18n;
|
|
}
|
|
|
|
@Override
|
|
public IRanks getRanks()
|
|
{
|
|
return groups;
|
|
}
|
|
|
|
@Override
|
|
public ICommandHandler getCommandHandler()
|
|
{
|
|
return commandHandler;
|
|
}
|
|
|
|
@Override
|
|
public void setRanks(final IRanks groups)
|
|
{
|
|
this.groups = groups;
|
|
}
|
|
|
|
@Override
|
|
public void removeReloadListener(IReload groups)
|
|
{
|
|
this.reloadList.remove(groups);
|
|
}
|
|
|
|
@Override
|
|
public IEconomy getEconomy()
|
|
{
|
|
return economy;
|
|
}
|
|
}
|