mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-13 12:38:58 +00:00
813 lines
15 KiB
Java
813 lines
15 KiB
Java
package com.earth2me.essentials;
|
|
|
|
import static com.earth2me.essentials.I18n._;
|
|
import java.io.File;
|
|
import java.util.*;
|
|
import java.util.logging.Logger;
|
|
import org.bukkit.Location;
|
|
import org.bukkit.Material;
|
|
import org.bukkit.entity.Player;
|
|
import org.bukkit.inventory.ItemStack;
|
|
|
|
|
|
public abstract class UserData extends PlayerExtension implements IConf
|
|
{
|
|
protected final transient IEssentials ess;
|
|
private final EssentialsConf config;
|
|
private static final Logger logger = Logger.getLogger("Minecraft");
|
|
|
|
protected UserData(Player base, IEssentials ess)
|
|
{
|
|
super(base);
|
|
this.ess = ess;
|
|
File folder = new File(ess.getDataFolder(), "userdata");
|
|
if (!folder.exists())
|
|
{
|
|
folder.mkdirs();
|
|
}
|
|
config = new EssentialsConf(new File(folder, Util.sanitizeFileName(base.getName()) + ".yml"));
|
|
reloadConfig();
|
|
}
|
|
|
|
@Override
|
|
public final void reloadConfig()
|
|
{
|
|
config.load();
|
|
money = _getMoney();
|
|
unlimited = _getUnlimited();
|
|
powertools = _getPowertools();
|
|
homes = _getHomes();
|
|
lastLocation = _getLastLocation();
|
|
lastTeleportTimestamp = _getLastTeleportTimestamp();
|
|
lastHealTimestamp = _getLastHealTimestamp();
|
|
jail = _getJail();
|
|
mails = _getMails();
|
|
teleportEnabled = getTeleportEnabled();
|
|
ignoredPlayers = getIgnoredPlayers();
|
|
godmode = _getGodModeEnabled();
|
|
muted = getMuted();
|
|
muteTimeout = _getMuteTimeout();
|
|
jailed = getJailed();
|
|
jailTimeout = _getJailTimeout();
|
|
lastLogin = _getLastLogin();
|
|
lastLogout = _getLastLogout();
|
|
lastLoginAddress = _getLastLoginAddress();
|
|
afk = getAfk();
|
|
geolocation = _getGeoLocation();
|
|
isSocialSpyEnabled = _isSocialSpyEnabled();
|
|
isNPC = _isNPC();
|
|
arePowerToolsEnabled = _arePowerToolsEnabled();
|
|
kitTimestamps = _getKitTimestamps();
|
|
nickname = _getNickname();
|
|
}
|
|
private double money;
|
|
|
|
private double _getMoney()
|
|
{
|
|
double money = ess.getSettings().getStartingBalance();
|
|
if (config.hasProperty("money"))
|
|
{
|
|
money = config.getDouble("money", money);
|
|
}
|
|
if (Math.abs(money) > ess.getSettings().getMaxMoney())
|
|
{
|
|
money = money < 0 ? -ess.getSettings().getMaxMoney() : ess.getSettings().getMaxMoney();
|
|
}
|
|
return money;
|
|
}
|
|
|
|
public double getMoney()
|
|
{
|
|
return money;
|
|
}
|
|
|
|
public void setMoney(double value)
|
|
{
|
|
money = value;
|
|
if (Math.abs(money) > ess.getSettings().getMaxMoney())
|
|
{
|
|
money = money < 0 ? -ess.getSettings().getMaxMoney() : ess.getSettings().getMaxMoney();
|
|
}
|
|
config.setProperty("money", value);
|
|
config.save();
|
|
}
|
|
private Map<String, Object> homes;
|
|
|
|
private Map<String, Object> _getHomes()
|
|
{
|
|
if (config.isConfigurationSection("homes"))
|
|
{
|
|
return config.getConfigurationSection("homes").getValues(false);
|
|
}
|
|
return new HashMap<String, Object>();
|
|
}
|
|
|
|
public Location getHome(String name) throws Exception
|
|
{
|
|
Location loc = config.getLocation("homes." + name, getServer());
|
|
if (loc == null)
|
|
{
|
|
try
|
|
{
|
|
loc = config.getLocation("homes." + getHomes().get(Integer.parseInt(name) - 1), getServer());
|
|
}
|
|
catch (IndexOutOfBoundsException e)
|
|
{
|
|
return null;
|
|
}
|
|
catch (NumberFormatException e)
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
return loc;
|
|
}
|
|
|
|
public Location getHome(final Location world)
|
|
{
|
|
try
|
|
{
|
|
Location loc;
|
|
for (String home : getHomes())
|
|
{
|
|
loc = config.getLocation("homes." + home, getServer());
|
|
if (world.getWorld() == loc.getWorld())
|
|
{
|
|
return loc;
|
|
}
|
|
|
|
}
|
|
loc = config.getLocation("homes." + getHomes().get(0), getServer());
|
|
return loc;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
public List<String> getHomes()
|
|
{
|
|
return new ArrayList(homes.keySet());
|
|
}
|
|
|
|
public void setHome(String name, Location loc)
|
|
{
|
|
//Invalid names will corrupt the yaml
|
|
name = Util.sanitizeFileName(name);
|
|
homes.put(name, loc);
|
|
config.setProperty("homes." + name, loc);
|
|
config.save();
|
|
}
|
|
|
|
public void delHome(String name) throws Exception
|
|
{
|
|
String search = name;
|
|
if (!homes.containsKey(search))
|
|
{
|
|
search = Util.sanitizeFileName(name);
|
|
}
|
|
if (homes.containsKey(search))
|
|
{
|
|
homes.remove(name);
|
|
config.removeProperty("homes." + name);
|
|
config.save();
|
|
}
|
|
else
|
|
{
|
|
throw new Exception(_("invalidHome", name));
|
|
}
|
|
}
|
|
|
|
public boolean hasHome()
|
|
{
|
|
if (config.hasProperty("home"))
|
|
{
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
private String nickname;
|
|
|
|
public String _getNickname()
|
|
{
|
|
return config.getString("nickname");
|
|
}
|
|
|
|
public String getNickname()
|
|
{
|
|
return nickname;
|
|
}
|
|
|
|
public void setNickname(String nick)
|
|
{
|
|
nickname = nick;
|
|
config.setProperty("nickname", nick);
|
|
config.save();
|
|
}
|
|
private List<Integer> unlimited;
|
|
|
|
private List<Integer> _getUnlimited()
|
|
{
|
|
return config.getIntegerList("unlimited");
|
|
}
|
|
|
|
public List<Integer> getUnlimited()
|
|
{
|
|
return unlimited;
|
|
}
|
|
|
|
public boolean hasUnlimited(ItemStack stack)
|
|
{
|
|
return unlimited.contains(stack.getTypeId());
|
|
}
|
|
|
|
public void setUnlimited(ItemStack stack, boolean state)
|
|
{
|
|
if (unlimited.contains(stack.getTypeId()))
|
|
{
|
|
unlimited.remove(Integer.valueOf(stack.getTypeId()));
|
|
}
|
|
if (state)
|
|
{
|
|
unlimited.add(stack.getTypeId());
|
|
}
|
|
config.setProperty("unlimited", unlimited);
|
|
config.save();
|
|
}
|
|
private Map<String, Object> powertools;
|
|
|
|
private Map<String, Object> _getPowertools()
|
|
{
|
|
if (config.isConfigurationSection("powertools"))
|
|
{
|
|
return config.getConfigurationSection("powertools").getValues(false);
|
|
}
|
|
return new HashMap<String, Object>();
|
|
}
|
|
|
|
public void clearAllPowertools()
|
|
{
|
|
powertools.clear();
|
|
config.setProperty("powertools", powertools);
|
|
config.save();
|
|
}
|
|
|
|
public List<String> getPowertool(ItemStack stack)
|
|
{
|
|
return (List<String>)powertools.get("" + stack.getTypeId());
|
|
}
|
|
|
|
public List<String> getPowertool(int id)
|
|
{
|
|
return (List<String>)powertools.get("" + id);
|
|
}
|
|
|
|
public void setPowertool(ItemStack stack, List<String> commandList)
|
|
{
|
|
if (commandList == null || commandList.isEmpty())
|
|
{
|
|
powertools.remove("" + stack.getTypeId());
|
|
}
|
|
else
|
|
{
|
|
powertools.put("" + stack.getTypeId(), commandList);
|
|
}
|
|
config.setProperty("powertools", powertools);
|
|
config.save();
|
|
}
|
|
|
|
public boolean hasPowerTools()
|
|
{
|
|
return !powertools.isEmpty();
|
|
}
|
|
private Location lastLocation;
|
|
|
|
private Location _getLastLocation()
|
|
{
|
|
try
|
|
{
|
|
return config.getLocation("lastlocation", getServer());
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
public Location getLastLocation()
|
|
{
|
|
return lastLocation;
|
|
}
|
|
|
|
public void setLastLocation(Location loc)
|
|
{
|
|
if (loc == null || loc.getWorld() == null)
|
|
{
|
|
return;
|
|
}
|
|
lastLocation = loc;
|
|
config.setProperty("lastlocation", loc);
|
|
config.save();
|
|
}
|
|
private long lastTeleportTimestamp;
|
|
|
|
private long _getLastTeleportTimestamp()
|
|
{
|
|
return config.getLong("timestamps.lastteleport", 0);
|
|
}
|
|
|
|
public long getLastTeleportTimestamp()
|
|
{
|
|
return lastTeleportTimestamp;
|
|
}
|
|
|
|
public void setLastTeleportTimestamp(long time)
|
|
{
|
|
lastTeleportTimestamp = time;
|
|
config.setProperty("timestamps.lastteleport", time);
|
|
config.save();
|
|
}
|
|
private long lastHealTimestamp;
|
|
|
|
private long _getLastHealTimestamp()
|
|
{
|
|
return config.getLong("timestamps.lastheal", 0);
|
|
}
|
|
|
|
public long getLastHealTimestamp()
|
|
{
|
|
return lastHealTimestamp;
|
|
}
|
|
|
|
public void setLastHealTimestamp(long time)
|
|
{
|
|
lastHealTimestamp = time;
|
|
config.setProperty("timestamps.lastheal", time);
|
|
config.save();
|
|
}
|
|
private String jail;
|
|
|
|
private String _getJail()
|
|
{
|
|
return config.getString("jail");
|
|
}
|
|
|
|
public String getJail()
|
|
{
|
|
return jail;
|
|
}
|
|
|
|
public void setJail(String jail)
|
|
{
|
|
if (jail == null || jail.isEmpty())
|
|
{
|
|
this.jail = null;
|
|
config.removeProperty("jail");
|
|
}
|
|
else
|
|
{
|
|
this.jail = jail;
|
|
config.setProperty("jail", jail);
|
|
}
|
|
config.save();
|
|
}
|
|
private List<String> mails;
|
|
|
|
private List<String> _getMails()
|
|
{
|
|
return config.getStringList("mail");
|
|
}
|
|
|
|
public List<String> getMails()
|
|
{
|
|
return mails;
|
|
}
|
|
|
|
public void setMails(List<String> mails)
|
|
{
|
|
if (mails == null)
|
|
{
|
|
config.removeProperty("mail");
|
|
mails = _getMails();
|
|
}
|
|
else
|
|
{
|
|
config.setProperty("mail", mails);
|
|
}
|
|
this.mails = mails;
|
|
config.save();
|
|
}
|
|
|
|
public void addMail(String mail)
|
|
{
|
|
mails.add(mail);
|
|
setMails(mails);
|
|
}
|
|
private boolean teleportEnabled;
|
|
|
|
private boolean getTeleportEnabled()
|
|
{
|
|
return config.getBoolean("teleportenabled", true);
|
|
}
|
|
|
|
public boolean isTeleportEnabled()
|
|
{
|
|
return teleportEnabled;
|
|
}
|
|
|
|
public void setTeleportEnabled(boolean set)
|
|
{
|
|
teleportEnabled = set;
|
|
config.setProperty("teleportenabled", set);
|
|
config.save();
|
|
}
|
|
|
|
public boolean toggleTeleportEnabled()
|
|
{
|
|
boolean ret = !isTeleportEnabled();
|
|
setTeleportEnabled(ret);
|
|
return ret;
|
|
}
|
|
|
|
public boolean toggleSocialSpy()
|
|
{
|
|
boolean ret = !isSocialSpyEnabled();
|
|
setSocialSpyEnabled(ret);
|
|
return ret;
|
|
}
|
|
private List<String> ignoredPlayers;
|
|
|
|
public List<String> getIgnoredPlayers()
|
|
{
|
|
return config.getStringList("ignore");
|
|
}
|
|
|
|
public void setIgnoredPlayers(List<String> players)
|
|
{
|
|
if (players == null || players.isEmpty())
|
|
{
|
|
ignoredPlayers = new ArrayList<String>();
|
|
config.removeProperty("ignore");
|
|
}
|
|
else
|
|
{
|
|
ignoredPlayers = players;
|
|
config.setProperty("ignore", players);
|
|
}
|
|
config.save();
|
|
}
|
|
|
|
public boolean isIgnoredPlayer(String name)
|
|
{
|
|
return ignoredPlayers.contains(name.toLowerCase(Locale.ENGLISH));
|
|
}
|
|
|
|
public void setIgnoredPlayer(String name, boolean set)
|
|
{
|
|
if (set)
|
|
{
|
|
ignoredPlayers.add(name.toLowerCase(Locale.ENGLISH));
|
|
}
|
|
else
|
|
{
|
|
ignoredPlayers.remove(name.toLowerCase(Locale.ENGLISH));
|
|
}
|
|
setIgnoredPlayers(ignoredPlayers);
|
|
}
|
|
private boolean godmode;
|
|
|
|
private boolean _getGodModeEnabled()
|
|
{
|
|
return config.getBoolean("godmode", false);
|
|
}
|
|
|
|
public boolean isGodModeEnabled()
|
|
{
|
|
return godmode;
|
|
}
|
|
|
|
public void setGodModeEnabled(boolean set)
|
|
{
|
|
godmode = set;
|
|
config.setProperty("godmode", set);
|
|
config.save();
|
|
}
|
|
|
|
public boolean toggleGodModeEnabled()
|
|
{
|
|
boolean ret = !isGodModeEnabled();
|
|
setGodModeEnabled(ret);
|
|
return ret;
|
|
}
|
|
private boolean muted;
|
|
|
|
private boolean getMuted()
|
|
{
|
|
return config.getBoolean("muted", false);
|
|
}
|
|
|
|
public boolean isMuted()
|
|
{
|
|
return muted;
|
|
}
|
|
|
|
public void setMuted(boolean set)
|
|
{
|
|
muted = set;
|
|
config.setProperty("muted", set);
|
|
config.save();
|
|
}
|
|
|
|
public boolean toggleMuted()
|
|
{
|
|
boolean ret = !isMuted();
|
|
setMuted(ret);
|
|
return ret;
|
|
}
|
|
private long muteTimeout;
|
|
|
|
private long _getMuteTimeout()
|
|
{
|
|
return config.getLong("timestamps.mute", 0);
|
|
}
|
|
|
|
public long getMuteTimeout()
|
|
{
|
|
return muteTimeout;
|
|
}
|
|
|
|
public void setMuteTimeout(long time)
|
|
{
|
|
muteTimeout = time;
|
|
config.setProperty("timestamps.mute", time);
|
|
config.save();
|
|
}
|
|
private boolean jailed;
|
|
|
|
private boolean getJailed()
|
|
{
|
|
return config.getBoolean("jailed", false);
|
|
}
|
|
|
|
public boolean isJailed()
|
|
{
|
|
return jailed;
|
|
}
|
|
|
|
public void setJailed(boolean set)
|
|
{
|
|
jailed = set;
|
|
config.setProperty("jailed", set);
|
|
config.save();
|
|
}
|
|
|
|
public boolean toggleJailed()
|
|
{
|
|
boolean ret = !isJailed();
|
|
setJailed(ret);
|
|
return ret;
|
|
}
|
|
private long jailTimeout;
|
|
|
|
private long _getJailTimeout()
|
|
{
|
|
return config.getLong("timestamps.jail", 0);
|
|
}
|
|
|
|
public long getJailTimeout()
|
|
{
|
|
return jailTimeout;
|
|
}
|
|
|
|
public void setJailTimeout(long time)
|
|
{
|
|
jailTimeout = time;
|
|
config.setProperty("timestamps.jail", time);
|
|
config.save();
|
|
}
|
|
|
|
public String getBanReason()
|
|
{
|
|
return config.getString("ban.reason");
|
|
}
|
|
|
|
public void setBanReason(String reason)
|
|
{
|
|
config.setProperty("ban.reason", reason);
|
|
config.save();
|
|
}
|
|
|
|
public long getBanTimeout()
|
|
{
|
|
return config.getLong("ban.timeout", 0);
|
|
}
|
|
|
|
public void setBanTimeout(long time)
|
|
{
|
|
config.setProperty("ban.timeout", time);
|
|
config.save();
|
|
}
|
|
private long lastLogin;
|
|
|
|
private long _getLastLogin()
|
|
{
|
|
return config.getLong("timestamps.login", 0);
|
|
}
|
|
|
|
public long getLastLogin()
|
|
{
|
|
return lastLogin;
|
|
}
|
|
|
|
private void _setLastLogin(long time)
|
|
{
|
|
lastLogin = time;
|
|
config.setProperty("timestamps.login", time);
|
|
}
|
|
|
|
public void setLastLogin(long time)
|
|
{
|
|
_setLastLogin(time);
|
|
_setLastLoginAddress(base.getAddress().getAddress().getHostAddress());
|
|
config.save();
|
|
}
|
|
private long lastLogout;
|
|
|
|
private long _getLastLogout()
|
|
{
|
|
return config.getLong("timestamps.logout", 0);
|
|
}
|
|
|
|
public long getLastLogout()
|
|
{
|
|
return lastLogout;
|
|
}
|
|
|
|
public void setLastLogout(long time)
|
|
{
|
|
lastLogout = time;
|
|
config.setProperty("timestamps.logout", time);
|
|
config.save();
|
|
}
|
|
private String lastLoginAddress;
|
|
|
|
private String _getLastLoginAddress()
|
|
{
|
|
return config.getString("ipAddress", "");
|
|
}
|
|
|
|
public String getLastLoginAddress()
|
|
{
|
|
return lastLoginAddress;
|
|
}
|
|
|
|
private void _setLastLoginAddress(String address)
|
|
{
|
|
lastLoginAddress = address;
|
|
config.setProperty("ipAddress", address);
|
|
}
|
|
private boolean afk;
|
|
|
|
private boolean getAfk()
|
|
{
|
|
return config.getBoolean("afk", false);
|
|
}
|
|
|
|
public boolean isAfk()
|
|
{
|
|
return afk;
|
|
}
|
|
|
|
public void setAfk(boolean set)
|
|
{
|
|
afk = set;
|
|
config.setProperty("afk", set);
|
|
config.save();
|
|
}
|
|
|
|
public boolean toggleAfk()
|
|
{
|
|
boolean ret = !isAfk();
|
|
setAfk(ret);
|
|
return ret;
|
|
}
|
|
private boolean newplayer;
|
|
private String geolocation;
|
|
|
|
private String _getGeoLocation()
|
|
{
|
|
return config.getString("geolocation");
|
|
}
|
|
|
|
public String getGeoLocation()
|
|
{
|
|
return geolocation;
|
|
}
|
|
|
|
public void setGeoLocation(String geolocation)
|
|
{
|
|
if (geolocation == null || geolocation.isEmpty())
|
|
{
|
|
this.geolocation = null;
|
|
config.removeProperty("geolocation");
|
|
}
|
|
else
|
|
{
|
|
this.geolocation = geolocation;
|
|
config.setProperty("geolocation", geolocation);
|
|
}
|
|
config.save();
|
|
}
|
|
private boolean isSocialSpyEnabled;
|
|
|
|
private boolean _isSocialSpyEnabled()
|
|
{
|
|
return config.getBoolean("socialspy", false);
|
|
}
|
|
|
|
public boolean isSocialSpyEnabled()
|
|
{
|
|
return isSocialSpyEnabled;
|
|
}
|
|
|
|
public void setSocialSpyEnabled(boolean status)
|
|
{
|
|
isSocialSpyEnabled = status;
|
|
config.setProperty("socialspy", status);
|
|
config.save();
|
|
}
|
|
private boolean isNPC;
|
|
|
|
private boolean _isNPC()
|
|
{
|
|
return config.getBoolean("npc", false);
|
|
}
|
|
|
|
public boolean isNPC()
|
|
{
|
|
return isNPC;
|
|
}
|
|
|
|
public void setNPC(boolean set)
|
|
{
|
|
isNPC = set;
|
|
config.setProperty("npc", set);
|
|
config.save();
|
|
}
|
|
private boolean arePowerToolsEnabled;
|
|
|
|
public boolean arePowerToolsEnabled()
|
|
{
|
|
return arePowerToolsEnabled;
|
|
}
|
|
|
|
public void setPowerToolsEnabled(boolean set)
|
|
{
|
|
arePowerToolsEnabled = set;
|
|
config.setProperty("powertoolsenabled", set);
|
|
config.save();
|
|
}
|
|
|
|
public boolean togglePowerToolsEnabled()
|
|
{
|
|
boolean ret = !arePowerToolsEnabled();
|
|
setPowerToolsEnabled(ret);
|
|
return ret;
|
|
}
|
|
|
|
private boolean _arePowerToolsEnabled()
|
|
{
|
|
return config.getBoolean("powertoolsenabled", true);
|
|
}
|
|
private Map<String, Object> kitTimestamps;
|
|
|
|
private Map<String, Object> _getKitTimestamps()
|
|
{
|
|
|
|
if (config.isConfigurationSection("timestamps.kits"))
|
|
{
|
|
return config.getConfigurationSection("timestamps.kits").getValues(false);
|
|
}
|
|
return new HashMap<String, Object>();
|
|
}
|
|
|
|
public Long getKitTimestamp(final String name)
|
|
{
|
|
final Number num = (Number)kitTimestamps.get(name.toLowerCase(Locale.ENGLISH));
|
|
return num == null ? null : num.longValue();
|
|
}
|
|
|
|
public void setKitTimestamp(final String name, final long time)
|
|
{
|
|
kitTimestamps.put(name.toLowerCase(Locale.ENGLISH), time);
|
|
config.setProperty("timestamps.kits", kitTimestamps);
|
|
config.save();
|
|
}
|
|
|
|
public void save()
|
|
{
|
|
config.save();
|
|
}
|
|
}
|