2015-10-19 17:43:46 +00:00
|
|
|
package me.totalfreedom.totalfreedommod.util;
|
2011-10-13 23:07:52 +00:00
|
|
|
|
2015-10-19 17:43:46 +00:00
|
|
|
import me.totalfreedom.totalfreedommod.util.FLog;
|
|
|
|
import me.totalfreedom.totalfreedommod.util.DepreciationAggregator;
|
2014-08-23 18:19:25 +00:00
|
|
|
import java.io.File;
|
|
|
|
import java.io.FileFilter;
|
|
|
|
import java.io.FileInputStream;
|
|
|
|
import java.io.FileOutputStream;
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.io.InputStream;
|
|
|
|
import java.io.ObjectInputStream;
|
|
|
|
import java.io.ObjectOutputStream;
|
|
|
|
import java.io.OutputStream;
|
2013-04-10 02:05:24 +00:00
|
|
|
import java.lang.reflect.Field;
|
2012-12-02 17:05:54 +00:00
|
|
|
import java.net.URL;
|
|
|
|
import java.nio.channels.Channels;
|
|
|
|
import java.nio.channels.ReadableByteChannel;
|
2012-11-13 01:42:30 +00:00
|
|
|
import java.text.ParseException;
|
|
|
|
import java.text.SimpleDateFormat;
|
2014-08-23 18:19:25 +00:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.Arrays;
|
|
|
|
import java.util.Calendar;
|
|
|
|
import java.util.Date;
|
|
|
|
import java.util.GregorianCalendar;
|
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.Locale;
|
|
|
|
import java.util.Map;
|
|
|
|
import java.util.Random;
|
|
|
|
import java.util.Set;
|
|
|
|
import java.util.UUID;
|
2012-09-16 21:18:30 +00:00
|
|
|
import java.util.regex.Matcher;
|
|
|
|
import java.util.regex.Pattern;
|
2015-10-19 17:43:46 +00:00
|
|
|
import me.totalfreedom.totalfreedommod.TotalFreedomMod;
|
2015-11-15 23:32:04 +00:00
|
|
|
import me.totalfreedom.totalfreedommod.banning.Ban;
|
2015-10-19 17:43:46 +00:00
|
|
|
import me.totalfreedom.totalfreedommod.config.FConfig;
|
|
|
|
import me.totalfreedom.totalfreedommod.config.ConfigEntry;
|
|
|
|
import net.pravian.aero.util.Ips;
|
2014-11-29 19:16:00 +00:00
|
|
|
import org.apache.commons.io.FileUtils;
|
|
|
|
import org.apache.commons.lang3.StringUtils;
|
2013-11-30 15:32:00 +00:00
|
|
|
import org.bukkit.Bukkit;
|
|
|
|
import org.bukkit.ChatColor;
|
|
|
|
import org.bukkit.GameMode;
|
|
|
|
import org.bukkit.Location;
|
|
|
|
import org.bukkit.Material;
|
|
|
|
import org.bukkit.OfflinePlayer;
|
|
|
|
import org.bukkit.World;
|
2011-10-13 23:07:52 +00:00
|
|
|
import org.bukkit.block.Block;
|
|
|
|
import org.bukkit.command.CommandSender;
|
2013-11-30 15:32:00 +00:00
|
|
|
import org.bukkit.entity.Creature;
|
|
|
|
import org.bukkit.entity.EntityType;
|
|
|
|
import org.bukkit.entity.Player;
|
2014-04-11 15:24:44 +00:00
|
|
|
import org.bukkit.plugin.Plugin;
|
2015-11-15 23:32:04 +00:00
|
|
|
import org.bukkit.scheduler.BukkitTask;
|
2014-05-11 16:15:04 +00:00
|
|
|
import org.bukkit.util.FileUtil;
|
2011-10-13 23:07:52 +00:00
|
|
|
|
2015-10-19 17:43:46 +00:00
|
|
|
public class FUtil
|
2011-10-13 23:07:52 +00:00
|
|
|
{
|
2015-10-19 17:43:46 +00:00
|
|
|
|
2013-08-25 16:32:01 +00:00
|
|
|
private static final Map<String, Integer> ejectTracker = new HashMap<String, Integer>();
|
2012-03-03 04:29:54 +00:00
|
|
|
public static final Map<String, EntityType> mobtypes = new HashMap<String, EntityType>();
|
2014-08-02 15:10:54 +00:00
|
|
|
// See https://github.com/TotalFreedom/License - None of the listed names may be removed.
|
2015-01-19 21:51:02 +00:00
|
|
|
public static final List<String> DEVELOPERS = Arrays.asList("Madgeek1450", "Prozza", "DarthSalmon", "AcidicCyanide", "Wild1145", "WickedGamingUK");
|
2013-09-24 12:05:48 +00:00
|
|
|
private static final Random RANDOM = new Random();
|
|
|
|
public static String DATE_STORAGE_FORMAT = "EEE, d MMM yyyy HH:mm:ss Z";
|
2013-09-24 14:13:38 +00:00
|
|
|
public static final Map<String, ChatColor> CHAT_COLOR_NAMES = new HashMap<String, ChatColor>();
|
|
|
|
public static final List<ChatColor> CHAT_COLOR_POOL = Arrays.asList(
|
2013-09-24 12:05:48 +00:00
|
|
|
ChatColor.DARK_BLUE,
|
|
|
|
ChatColor.DARK_GREEN,
|
|
|
|
ChatColor.DARK_AQUA,
|
|
|
|
ChatColor.DARK_RED,
|
|
|
|
ChatColor.DARK_PURPLE,
|
|
|
|
ChatColor.GOLD,
|
|
|
|
ChatColor.BLUE,
|
|
|
|
ChatColor.GREEN,
|
|
|
|
ChatColor.AQUA,
|
|
|
|
ChatColor.RED,
|
|
|
|
ChatColor.LIGHT_PURPLE,
|
|
|
|
ChatColor.YELLOW);
|
2011-11-08 00:29:33 +00:00
|
|
|
|
|
|
|
static
|
|
|
|
{
|
2013-08-25 16:32:01 +00:00
|
|
|
for (EntityType type : EntityType.values())
|
2012-11-18 03:57:24 +00:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2015-10-19 17:43:46 +00:00
|
|
|
if (DepreciationAggregator.getName_EntityType(type) != null)
|
2012-11-18 03:57:24 +00:00
|
|
|
{
|
2013-08-25 16:32:01 +00:00
|
|
|
if (Creature.class.isAssignableFrom(type.getEntityClass()))
|
2012-11-18 03:57:24 +00:00
|
|
|
{
|
2015-10-19 17:43:46 +00:00
|
|
|
mobtypes.put(DepreciationAggregator.getName_EntityType(type).toLowerCase(), type);
|
2012-11-18 03:57:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-08-14 13:28:19 +00:00
|
|
|
catch (Exception ex)
|
2012-11-18 03:57:24 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
2013-09-24 14:13:38 +00:00
|
|
|
|
|
|
|
for (ChatColor chatColor : CHAT_COLOR_POOL)
|
|
|
|
{
|
|
|
|
CHAT_COLOR_NAMES.put(chatColor.name().toLowerCase().replace("_", ""), chatColor);
|
|
|
|
}
|
2011-11-08 00:29:33 +00:00
|
|
|
}
|
2011-10-24 02:43:52 +00:00
|
|
|
|
2015-10-19 17:43:46 +00:00
|
|
|
private FUtil()
|
2011-10-24 02:43:52 +00:00
|
|
|
{
|
|
|
|
throw new AssertionError();
|
|
|
|
}
|
|
|
|
|
2015-11-15 23:32:04 +00:00
|
|
|
public static void cancel(BukkitTask task)
|
|
|
|
{
|
|
|
|
if (task == null)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
task.cancel();
|
|
|
|
}
|
|
|
|
catch (Exception ex)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-24 02:43:52 +00:00
|
|
|
public static void bcastMsg(String message, ChatColor color)
|
2011-10-13 23:07:52 +00:00
|
|
|
{
|
2015-10-19 17:43:46 +00:00
|
|
|
FLog.info(message, true);
|
2011-10-13 23:07:52 +00:00
|
|
|
|
2013-08-14 14:01:42 +00:00
|
|
|
for (Player player : Bukkit.getOnlinePlayers())
|
2011-10-13 23:07:52 +00:00
|
|
|
{
|
2013-08-14 14:01:42 +00:00
|
|
|
player.sendMessage((color == null ? "" : color) + message);
|
2011-10-13 23:07:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-24 02:43:52 +00:00
|
|
|
public static void bcastMsg(String message)
|
2011-10-13 23:07:52 +00:00
|
|
|
{
|
2015-10-19 17:43:46 +00:00
|
|
|
FUtil.bcastMsg(message, null);
|
2011-10-13 23:07:52 +00:00
|
|
|
}
|
|
|
|
|
2013-01-21 18:58:42 +00:00
|
|
|
// Still in use by listeners
|
2012-09-14 22:49:44 +00:00
|
|
|
public static void playerMsg(CommandSender sender, String message, ChatColor color)
|
|
|
|
{
|
|
|
|
sender.sendMessage(color + message);
|
|
|
|
}
|
2012-09-16 01:19:55 +00:00
|
|
|
|
2013-01-21 18:58:42 +00:00
|
|
|
// Still in use by listeners
|
2012-09-14 22:49:44 +00:00
|
|
|
public static void playerMsg(CommandSender sender, String message)
|
|
|
|
{
|
2015-10-19 17:43:46 +00:00
|
|
|
FUtil.playerMsg(sender, message, ChatColor.GRAY);
|
2012-09-14 22:49:44 +00:00
|
|
|
}
|
|
|
|
|
2015-05-13 12:52:01 +00:00
|
|
|
public static void setFlying(Player player, boolean flying)
|
|
|
|
{
|
2015-05-12 18:17:38 +00:00
|
|
|
player.setAllowFlight(true);
|
|
|
|
player.setFlying(flying);
|
|
|
|
}
|
|
|
|
|
2012-09-14 22:49:44 +00:00
|
|
|
public static void adminAction(String adminName, String action, boolean isRed)
|
|
|
|
{
|
2015-10-19 17:43:46 +00:00
|
|
|
FUtil.bcastMsg(adminName + " - " + action, (isRed ? ChatColor.RED : ChatColor.AQUA));
|
2015-02-16 16:00:38 +00:00
|
|
|
}
|
2014-04-21 15:45:32 +00:00
|
|
|
|
2015-02-16 16:00:38 +00:00
|
|
|
public static boolean isUniqueId(String uuid)
|
|
|
|
{
|
|
|
|
try
|
2014-04-21 15:45:32 +00:00
|
|
|
{
|
2015-02-16 16:00:38 +00:00
|
|
|
UUID.fromString(uuid);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
catch (IllegalArgumentException ex)
|
|
|
|
{
|
|
|
|
return false;
|
2014-04-21 15:45:32 +00:00
|
|
|
}
|
2014-04-04 14:48:39 +00:00
|
|
|
}
|
|
|
|
|
2013-08-25 16:32:01 +00:00
|
|
|
public static String formatLocation(Location location)
|
2011-10-13 23:07:52 +00:00
|
|
|
{
|
|
|
|
return String.format("%s: (%d, %d, %d)",
|
2013-08-25 16:32:01 +00:00
|
|
|
location.getWorld().getName(),
|
|
|
|
Math.round(location.getX()),
|
|
|
|
Math.round(location.getY()),
|
|
|
|
Math.round(location.getZ()));
|
2011-10-13 23:07:52 +00:00
|
|
|
}
|
|
|
|
|
2015-10-19 17:43:46 +00:00
|
|
|
public static String formatPlayer(Player player)
|
2014-04-08 18:31:04 +00:00
|
|
|
{
|
2015-10-19 17:43:46 +00:00
|
|
|
return player.getName() + " (" + Ips.getIp(player) + ")";
|
2014-04-08 18:31:04 +00:00
|
|
|
}
|
|
|
|
|
2014-04-14 19:11:41 +00:00
|
|
|
/**
|
|
|
|
* Escapes an IP-address to a config-friendly version.
|
|
|
|
*
|
2015-10-19 17:43:46 +00:00
|
|
|
* <p>
|
|
|
|
* Example:
|
2014-04-14 19:11:41 +00:00
|
|
|
* <pre>
|
|
|
|
* IpUtils.toEscapedString("192.168.1.192"); // 192_168_1_192
|
|
|
|
* </pre></p>
|
|
|
|
*
|
|
|
|
* @param ip The IP-address to escape.
|
|
|
|
* @return The config-friendly IP address.
|
|
|
|
* @see #fromEscapedString(String)
|
|
|
|
*/
|
2014-05-11 16:15:04 +00:00
|
|
|
public static String toEscapedString(String ip) // BukkitLib @ https://github.com/Pravian/BukkitLib
|
2014-04-14 19:11:41 +00:00
|
|
|
{
|
|
|
|
return ip.trim().replaceAll("\\.", "_");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Un-escapes a config-friendly Ipv4-address.
|
|
|
|
*
|
2015-10-19 17:43:46 +00:00
|
|
|
* <p>
|
|
|
|
* Example:
|
2014-04-14 19:11:41 +00:00
|
|
|
* <pre>
|
|
|
|
* IpUtils.fromEscapedString("192_168_1_192"); // 192.168.1.192
|
|
|
|
* </pre></p>
|
|
|
|
*
|
|
|
|
* @param escapedIp The IP-address to un-escape.
|
|
|
|
* @return The config-friendly IP address.
|
|
|
|
* @see #toEscapedString(String)
|
|
|
|
*/
|
2014-05-11 16:15:04 +00:00
|
|
|
public static String fromEscapedString(String escapedIp) // BukkitLib @ https://github.com/Pravian/BukkitLib
|
2014-04-14 19:11:41 +00:00
|
|
|
{
|
|
|
|
return escapedIp.trim().replaceAll("_", "\\.");
|
|
|
|
}
|
|
|
|
|
2014-08-23 18:19:25 +00:00
|
|
|
public static void gotoWorld(Player player, String targetWorld)
|
2011-10-13 23:07:52 +00:00
|
|
|
{
|
2014-08-23 18:19:25 +00:00
|
|
|
if (player == null)
|
2011-10-13 23:07:52 +00:00
|
|
|
{
|
2014-08-23 18:19:25 +00:00
|
|
|
return;
|
|
|
|
}
|
2011-10-13 23:07:52 +00:00
|
|
|
|
2014-08-23 18:19:25 +00:00
|
|
|
if (player.getWorld().getName().equalsIgnoreCase(targetWorld))
|
|
|
|
{
|
|
|
|
playerMsg(player, "Going to main world.", ChatColor.GRAY);
|
|
|
|
player.teleport(Bukkit.getWorlds().get(0).getSpawnLocation());
|
|
|
|
return;
|
|
|
|
}
|
2011-10-13 23:07:52 +00:00
|
|
|
|
2014-08-23 18:19:25 +00:00
|
|
|
for (World world : Bukkit.getWorlds())
|
|
|
|
{
|
|
|
|
if (world.getName().equalsIgnoreCase(targetWorld))
|
2011-10-13 23:07:52 +00:00
|
|
|
{
|
2014-08-23 18:19:25 +00:00
|
|
|
playerMsg(player, "Going to world: " + targetWorld, ChatColor.GRAY);
|
|
|
|
player.teleport(world.getSpawnLocation());
|
|
|
|
return;
|
2011-10-13 23:07:52 +00:00
|
|
|
}
|
|
|
|
}
|
2014-08-23 18:19:25 +00:00
|
|
|
|
|
|
|
playerMsg(player, "World " + targetWorld + " not found.", ChatColor.GRAY);
|
2011-10-13 23:07:52 +00:00
|
|
|
}
|
|
|
|
|
2014-04-15 13:43:07 +00:00
|
|
|
public static String decolorize(String string)
|
|
|
|
{
|
|
|
|
return string.replaceAll("\\u00A7(?=[0-9a-fk-or])", "&");
|
|
|
|
}
|
|
|
|
|
2011-10-13 23:07:52 +00:00
|
|
|
public static void setWorldTime(World world, long ticks)
|
|
|
|
{
|
|
|
|
long time = world.getTime();
|
|
|
|
time -= time % 24000;
|
|
|
|
world.setTime(time + 24000 + ticks);
|
|
|
|
}
|
2011-10-14 05:31:21 +00:00
|
|
|
|
2013-09-24 12:05:48 +00:00
|
|
|
public static void createDefaultConfiguration(final String configFileName)
|
2012-09-14 22:49:44 +00:00
|
|
|
{
|
2013-09-24 12:05:48 +00:00
|
|
|
final File targetFile = new File(TotalFreedomMod.plugin.getDataFolder(), configFileName);
|
2012-09-14 22:49:44 +00:00
|
|
|
|
2013-09-24 12:05:48 +00:00
|
|
|
if (targetFile.exists())
|
2011-10-13 23:07:52 +00:00
|
|
|
{
|
2013-09-24 12:05:48 +00:00
|
|
|
return;
|
2011-10-13 23:07:52 +00:00
|
|
|
}
|
2013-08-12 02:02:18 +00:00
|
|
|
|
2015-10-19 17:43:46 +00:00
|
|
|
FLog.info("Installing default configuration file template: " + targetFile.getPath());
|
2013-08-12 02:02:18 +00:00
|
|
|
|
2013-09-24 12:05:48 +00:00
|
|
|
try
|
2011-10-13 23:07:52 +00:00
|
|
|
{
|
2013-09-24 12:05:48 +00:00
|
|
|
final InputStream configFileStream = TotalFreedomMod.plugin.getResource(configFileName);
|
|
|
|
FileUtils.copyInputStreamToFile(configFileStream, targetFile);
|
|
|
|
configFileStream.close();
|
2013-08-12 02:02:18 +00:00
|
|
|
}
|
2013-09-24 12:05:48 +00:00
|
|
|
catch (IOException ex)
|
2013-08-12 02:02:18 +00:00
|
|
|
{
|
2015-10-19 17:43:46 +00:00
|
|
|
FLog.severe(ex);
|
2011-10-13 23:07:52 +00:00
|
|
|
}
|
|
|
|
}
|
2011-10-14 05:31:21 +00:00
|
|
|
|
2013-09-24 12:05:48 +00:00
|
|
|
public static boolean deleteFolder(final File file)
|
2011-10-14 05:31:21 +00:00
|
|
|
{
|
2013-09-24 12:05:48 +00:00
|
|
|
if (file.exists() && file.isDirectory())
|
2011-10-14 05:31:21 +00:00
|
|
|
{
|
2013-09-24 12:05:48 +00:00
|
|
|
return FileUtils.deleteQuietly(file);
|
2011-10-14 05:31:21 +00:00
|
|
|
}
|
2013-09-24 12:05:48 +00:00
|
|
|
return false;
|
2011-10-14 05:31:21 +00:00
|
|
|
}
|
2011-10-24 02:43:52 +00:00
|
|
|
|
2014-05-04 22:01:57 +00:00
|
|
|
public static void deleteCoreDumps()
|
|
|
|
{
|
|
|
|
final File[] coreDumps = new File(".").listFiles(new FileFilter()
|
|
|
|
{
|
|
|
|
@Override
|
|
|
|
public boolean accept(File file)
|
|
|
|
{
|
|
|
|
return file.getName().startsWith("java.core");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
for (File dump : coreDumps)
|
|
|
|
{
|
2015-10-19 17:43:46 +00:00
|
|
|
FLog.info("Removing core dump file: " + dump.getName());
|
2014-05-04 22:01:57 +00:00
|
|
|
dump.delete();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-03 04:29:54 +00:00
|
|
|
public static EntityType getEntityType(String mobname) throws Exception
|
2011-10-24 02:43:52 +00:00
|
|
|
{
|
2011-11-28 22:44:51 +00:00
|
|
|
mobname = mobname.toLowerCase().trim();
|
2012-07-22 18:06:01 +00:00
|
|
|
|
2015-10-19 17:43:46 +00:00
|
|
|
if (!FUtil.mobtypes.containsKey(mobname))
|
2011-11-28 22:44:51 +00:00
|
|
|
{
|
|
|
|
throw new Exception();
|
|
|
|
}
|
2012-07-22 18:06:01 +00:00
|
|
|
|
2015-10-19 17:43:46 +00:00
|
|
|
return FUtil.mobtypes.get(mobname);
|
2011-10-24 02:43:52 +00:00
|
|
|
}
|
2011-11-04 23:14:17 +00:00
|
|
|
|
2014-04-11 15:24:44 +00:00
|
|
|
/**
|
|
|
|
* Write the specified InputStream to a file.
|
|
|
|
*
|
|
|
|
* @param in The InputStream from which to read.
|
|
|
|
* @param file The File to write to.
|
|
|
|
* @throws IOException
|
|
|
|
*/
|
|
|
|
public static void copy(InputStream in, File file) throws IOException // BukkitLib @ https://github.com/Pravian/BukkitLib
|
2011-11-04 23:14:17 +00:00
|
|
|
{
|
2014-04-11 15:24:44 +00:00
|
|
|
if (!file.exists())
|
2011-11-04 23:14:17 +00:00
|
|
|
{
|
2014-04-11 15:24:44 +00:00
|
|
|
file.getParentFile().mkdirs();
|
|
|
|
}
|
|
|
|
|
|
|
|
final OutputStream out = new FileOutputStream(file);
|
|
|
|
byte[] buf = new byte[1024];
|
|
|
|
int len;
|
|
|
|
while ((len = in.read(buf)) > 0)
|
|
|
|
{
|
|
|
|
out.write(buf, 0, len);
|
2011-11-04 23:14:17 +00:00
|
|
|
}
|
2014-04-11 15:24:44 +00:00
|
|
|
out.close();
|
|
|
|
in.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a file at located at the Plugins Data folder.
|
|
|
|
*
|
|
|
|
* @param plugin The plugin to use
|
|
|
|
* @param name The name of the file.
|
|
|
|
* @return The requested file.
|
|
|
|
*/
|
2015-10-19 17:43:46 +00:00
|
|
|
public static File getPluginFile(Plugin plugin, String name) // BukkitLib @ https://github.com/Pravian/BukkitLib
|
2014-04-11 15:24:44 +00:00
|
|
|
{
|
|
|
|
return new File(plugin.getDataFolder(), name);
|
2011-11-04 23:14:17 +00:00
|
|
|
}
|
|
|
|
|
2013-08-14 14:01:42 +00:00
|
|
|
public static void autoEject(Player player, String kickMessage)
|
2011-11-07 13:11:13 +00:00
|
|
|
{
|
2011-11-08 00:29:33 +00:00
|
|
|
EjectMethod method = EjectMethod.STRIKE_ONE;
|
2015-10-19 17:43:46 +00:00
|
|
|
final String ip = Ips.getIp(player);
|
2012-07-22 18:06:01 +00:00
|
|
|
|
2015-10-19 17:43:46 +00:00
|
|
|
if (!FUtil.ejectTracker.containsKey(ip))
|
2011-11-08 00:29:33 +00:00
|
|
|
{
|
2015-10-19 17:43:46 +00:00
|
|
|
FUtil.ejectTracker.put(ip, 0);
|
2014-04-14 19:11:41 +00:00
|
|
|
}
|
2011-11-08 00:29:33 +00:00
|
|
|
|
2015-10-19 17:43:46 +00:00
|
|
|
int kicks = FUtil.ejectTracker.get(ip);
|
2014-04-14 19:11:41 +00:00
|
|
|
kicks += 1;
|
2012-07-22 18:06:01 +00:00
|
|
|
|
2015-10-19 17:43:46 +00:00
|
|
|
FUtil.ejectTracker.put(ip, kicks);
|
2011-11-08 00:29:33 +00:00
|
|
|
|
2014-04-14 19:11:41 +00:00
|
|
|
if (kicks <= 1)
|
|
|
|
{
|
|
|
|
method = EjectMethod.STRIKE_ONE;
|
2011-11-08 00:29:33 +00:00
|
|
|
}
|
2014-04-14 19:11:41 +00:00
|
|
|
else if (kicks == 2)
|
2011-11-08 00:29:33 +00:00
|
|
|
{
|
2014-04-14 19:11:41 +00:00
|
|
|
method = EjectMethod.STRIKE_TWO;
|
|
|
|
}
|
|
|
|
else if (kicks >= 3)
|
|
|
|
{
|
|
|
|
method = EjectMethod.STRIKE_THREE;
|
2011-11-08 00:29:33 +00:00
|
|
|
}
|
2012-07-22 18:06:01 +00:00
|
|
|
|
2015-10-19 17:43:46 +00:00
|
|
|
FLog.info("AutoEject -> name: " + player.getName() + " - player ip: " + ip + " - method: " + method.toString());
|
2011-11-08 00:29:33 +00:00
|
|
|
|
2013-08-14 14:01:42 +00:00
|
|
|
player.setOp(false);
|
|
|
|
player.setGameMode(GameMode.SURVIVAL);
|
|
|
|
player.getInventory().clear();
|
2011-11-08 00:29:33 +00:00
|
|
|
|
|
|
|
switch (method)
|
|
|
|
{
|
|
|
|
case STRIKE_ONE:
|
|
|
|
{
|
2014-04-14 19:11:41 +00:00
|
|
|
final Calendar cal = new GregorianCalendar();
|
|
|
|
cal.add(Calendar.MINUTE, 1);
|
|
|
|
final Date expires = cal.getTime();
|
2012-09-16 01:19:55 +00:00
|
|
|
|
2015-10-19 17:43:46 +00:00
|
|
|
FUtil.bcastMsg(ChatColor.RED + player.getName() + " has been banned for 1 minute.");
|
2012-09-16 01:19:55 +00:00
|
|
|
|
2015-11-15 23:32:04 +00:00
|
|
|
TotalFreedomMod.plugin.bm.addBan(Ban.forPlayer(player, Bukkit.getConsoleSender(), expires, kickMessage));
|
2013-08-14 14:01:42 +00:00
|
|
|
player.kickPlayer(kickMessage);
|
2012-09-16 01:19:55 +00:00
|
|
|
|
2011-11-08 00:29:33 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case STRIKE_TWO:
|
|
|
|
{
|
2014-04-14 19:11:41 +00:00
|
|
|
final Calendar c = new GregorianCalendar();
|
2012-09-16 21:25:34 +00:00
|
|
|
c.add(Calendar.MINUTE, 3);
|
2014-04-14 19:11:41 +00:00
|
|
|
final Date expires = c.getTime();
|
2012-09-16 01:19:55 +00:00
|
|
|
|
2015-10-19 17:43:46 +00:00
|
|
|
FUtil.bcastMsg(ChatColor.RED + player.getName() + " has been banned for 3 minutes.");
|
2012-09-16 01:19:55 +00:00
|
|
|
|
2015-11-15 23:32:04 +00:00
|
|
|
TotalFreedomMod.plugin.bm.addBan(Ban.forPlayer(player, Bukkit.getConsoleSender(), expires, kickMessage));
|
2014-04-14 19:11:41 +00:00
|
|
|
player.kickPlayer(kickMessage);
|
2011-11-08 00:29:33 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case STRIKE_THREE:
|
|
|
|
{
|
2015-11-15 23:32:04 +00:00
|
|
|
TotalFreedomMod.plugin.bm.addBan(Ban.forPlayerFuzzy(player, Bukkit.getConsoleSender(), null, kickMessage));
|
2012-07-22 18:06:01 +00:00
|
|
|
|
2015-10-19 17:43:46 +00:00
|
|
|
FUtil.bcastMsg(ChatColor.RED + player.getName() + " has been banned.");
|
2012-07-22 18:06:01 +00:00
|
|
|
|
2013-08-14 14:01:42 +00:00
|
|
|
player.kickPlayer(kickMessage);
|
2011-11-08 00:29:33 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2011-11-07 13:11:13 +00:00
|
|
|
}
|
2012-07-22 18:06:01 +00:00
|
|
|
|
2012-09-16 21:18:30 +00:00
|
|
|
public static Date parseDateOffset(String time)
|
|
|
|
{
|
|
|
|
Pattern timePattern = Pattern.compile(
|
|
|
|
"(?:([0-9]+)\\s*y[a-z]*[,\\s]*)?"
|
|
|
|
+ "(?:([0-9]+)\\s*mo[a-z]*[,\\s]*)?"
|
|
|
|
+ "(?:([0-9]+)\\s*w[a-z]*[,\\s]*)?"
|
|
|
|
+ "(?:([0-9]+)\\s*d[a-z]*[,\\s]*)?"
|
|
|
|
+ "(?:([0-9]+)\\s*h[a-z]*[,\\s]*)?"
|
|
|
|
+ "(?:([0-9]+)\\s*m[a-z]*[,\\s]*)?"
|
|
|
|
+ "(?:([0-9]+)\\s*(?:s[a-z]*)?)?", Pattern.CASE_INSENSITIVE);
|
|
|
|
Matcher m = timePattern.matcher(time);
|
|
|
|
int years = 0;
|
|
|
|
int months = 0;
|
|
|
|
int weeks = 0;
|
|
|
|
int days = 0;
|
|
|
|
int hours = 0;
|
|
|
|
int minutes = 0;
|
|
|
|
int seconds = 0;
|
|
|
|
boolean found = false;
|
|
|
|
while (m.find())
|
|
|
|
{
|
|
|
|
if (m.group() == null || m.group().isEmpty())
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
for (int i = 0; i < m.groupCount(); i++)
|
|
|
|
{
|
|
|
|
if (m.group(i) != null && !m.group(i).isEmpty())
|
|
|
|
{
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (found)
|
|
|
|
{
|
|
|
|
if (m.group(1) != null && !m.group(1).isEmpty())
|
|
|
|
{
|
|
|
|
years = Integer.parseInt(m.group(1));
|
|
|
|
}
|
|
|
|
if (m.group(2) != null && !m.group(2).isEmpty())
|
|
|
|
{
|
|
|
|
months = Integer.parseInt(m.group(2));
|
|
|
|
}
|
|
|
|
if (m.group(3) != null && !m.group(3).isEmpty())
|
|
|
|
{
|
|
|
|
weeks = Integer.parseInt(m.group(3));
|
|
|
|
}
|
|
|
|
if (m.group(4) != null && !m.group(4).isEmpty())
|
|
|
|
{
|
|
|
|
days = Integer.parseInt(m.group(4));
|
|
|
|
}
|
|
|
|
if (m.group(5) != null && !m.group(5).isEmpty())
|
|
|
|
{
|
|
|
|
hours = Integer.parseInt(m.group(5));
|
|
|
|
}
|
|
|
|
if (m.group(6) != null && !m.group(6).isEmpty())
|
|
|
|
{
|
|
|
|
minutes = Integer.parseInt(m.group(6));
|
|
|
|
}
|
|
|
|
if (m.group(7) != null && !m.group(7).isEmpty())
|
|
|
|
{
|
|
|
|
seconds = Integer.parseInt(m.group(7));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!found)
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
Calendar c = new GregorianCalendar();
|
|
|
|
|
|
|
|
if (years > 0)
|
|
|
|
{
|
|
|
|
c.add(Calendar.YEAR, years);
|
|
|
|
}
|
|
|
|
if (months > 0)
|
|
|
|
{
|
|
|
|
c.add(Calendar.MONTH, months);
|
|
|
|
}
|
|
|
|
if (weeks > 0)
|
|
|
|
{
|
|
|
|
c.add(Calendar.WEEK_OF_YEAR, weeks);
|
|
|
|
}
|
|
|
|
if (days > 0)
|
|
|
|
{
|
|
|
|
c.add(Calendar.DAY_OF_MONTH, days);
|
|
|
|
}
|
|
|
|
if (hours > 0)
|
|
|
|
{
|
|
|
|
c.add(Calendar.HOUR_OF_DAY, hours);
|
|
|
|
}
|
|
|
|
if (minutes > 0)
|
|
|
|
{
|
|
|
|
c.add(Calendar.MINUTE, minutes);
|
|
|
|
}
|
|
|
|
if (seconds > 0)
|
|
|
|
{
|
|
|
|
c.add(Calendar.SECOND, seconds);
|
|
|
|
}
|
|
|
|
|
|
|
|
return c.getTime();
|
|
|
|
}
|
2012-09-17 23:46:59 +00:00
|
|
|
|
2012-09-18 00:13:13 +00:00
|
|
|
public static String playerListToNames(Set<OfflinePlayer> players)
|
2012-09-17 16:29:43 +00:00
|
|
|
{
|
2013-08-25 16:32:01 +00:00
|
|
|
List<String> names = new ArrayList<String>();
|
2013-08-14 14:01:42 +00:00
|
|
|
for (OfflinePlayer player : players)
|
2012-09-17 16:29:43 +00:00
|
|
|
{
|
2013-08-25 16:32:01 +00:00
|
|
|
names.add(player.getName());
|
2012-09-17 16:29:43 +00:00
|
|
|
}
|
2013-08-25 16:32:01 +00:00
|
|
|
return StringUtils.join(names, ", ");
|
2012-09-17 16:29:43 +00:00
|
|
|
}
|
2012-11-05 03:44:24 +00:00
|
|
|
|
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
public static Map<String, Boolean> getSavedFlags()
|
|
|
|
{
|
2013-08-25 16:32:01 +00:00
|
|
|
Map<String, Boolean> flags = null;
|
2012-11-05 03:44:24 +00:00
|
|
|
|
2014-08-27 08:58:26 +00:00
|
|
|
File input = new File(TotalFreedomMod.plugin.getDataFolder(), TotalFreedomMod.SAVED_FLAGS_FILENAME);
|
2013-08-25 16:32:01 +00:00
|
|
|
if (input.exists())
|
2012-11-05 03:44:24 +00:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2013-08-25 16:32:01 +00:00
|
|
|
FileInputStream fis = new FileInputStream(input);
|
2012-11-05 03:44:24 +00:00
|
|
|
ObjectInputStream ois = new ObjectInputStream(fis);
|
2013-08-25 16:32:01 +00:00
|
|
|
flags = (HashMap<String, Boolean>) ois.readObject();
|
2012-11-05 03:44:24 +00:00
|
|
|
ois.close();
|
|
|
|
fis.close();
|
|
|
|
}
|
2013-08-14 13:28:19 +00:00
|
|
|
catch (Exception ex)
|
2012-11-05 03:44:24 +00:00
|
|
|
{
|
2015-10-19 17:43:46 +00:00
|
|
|
FLog.severe(ex);
|
2012-11-05 03:44:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-25 16:32:01 +00:00
|
|
|
return flags;
|
2012-11-05 03:44:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public static boolean getSavedFlag(String flag) throws Exception
|
|
|
|
{
|
2013-08-25 16:32:01 +00:00
|
|
|
Boolean flagValue = null;
|
2012-11-05 03:44:24 +00:00
|
|
|
|
2015-10-19 17:43:46 +00:00
|
|
|
Map<String, Boolean> flags = FUtil.getSavedFlags();
|
2012-11-05 03:44:24 +00:00
|
|
|
|
2013-08-25 16:32:01 +00:00
|
|
|
if (flags != null)
|
2012-11-05 03:44:24 +00:00
|
|
|
{
|
2013-08-25 16:32:01 +00:00
|
|
|
if (flags.containsKey(flag))
|
2012-11-05 03:44:24 +00:00
|
|
|
{
|
2013-08-25 16:32:01 +00:00
|
|
|
flagValue = flags.get(flag);
|
2012-11-05 03:44:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-25 16:32:01 +00:00
|
|
|
if (flagValue != null)
|
2012-11-05 03:44:24 +00:00
|
|
|
{
|
2013-08-25 16:32:01 +00:00
|
|
|
return flagValue.booleanValue();
|
2012-11-05 03:44:24 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw new Exception();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setSavedFlag(String flag, boolean value)
|
|
|
|
{
|
2015-10-19 17:43:46 +00:00
|
|
|
Map<String, Boolean> flags = FUtil.getSavedFlags();
|
2012-11-05 03:44:24 +00:00
|
|
|
|
2013-08-25 16:32:01 +00:00
|
|
|
if (flags == null)
|
2012-11-05 03:44:24 +00:00
|
|
|
{
|
2013-08-25 16:32:01 +00:00
|
|
|
flags = new HashMap<String, Boolean>();
|
2012-11-05 03:44:24 +00:00
|
|
|
}
|
|
|
|
|
2013-08-25 16:32:01 +00:00
|
|
|
flags.put(flag, value);
|
2012-11-05 03:44:24 +00:00
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2014-08-27 08:58:26 +00:00
|
|
|
final FileOutputStream fos = new FileOutputStream(new File(TotalFreedomMod.plugin.getDataFolder(), TotalFreedomMod.SAVED_FLAGS_FILENAME));
|
2014-05-11 16:41:58 +00:00
|
|
|
final ObjectOutputStream oos = new ObjectOutputStream(fos);
|
2013-08-25 16:32:01 +00:00
|
|
|
oos.writeObject(flags);
|
2012-11-05 03:44:24 +00:00
|
|
|
oos.close();
|
|
|
|
fos.close();
|
|
|
|
}
|
2013-08-14 13:28:19 +00:00
|
|
|
catch (Exception ex)
|
2012-11-05 03:44:24 +00:00
|
|
|
{
|
2015-10-19 17:43:46 +00:00
|
|
|
FLog.severe(ex);
|
2012-11-05 03:44:24 +00:00
|
|
|
}
|
|
|
|
}
|
2012-11-13 01:42:30 +00:00
|
|
|
|
2014-05-11 16:41:58 +00:00
|
|
|
public static void createBackups(String file)
|
2014-08-27 08:58:26 +00:00
|
|
|
{
|
|
|
|
createBackups(file, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void createBackups(String file, boolean onlyWeekly)
|
2014-05-11 16:15:04 +00:00
|
|
|
{
|
2014-05-11 16:41:58 +00:00
|
|
|
final String save = file.split("\\.")[0];
|
2015-10-19 17:43:46 +00:00
|
|
|
final FConfig config = new FConfig(TotalFreedomMod.plugin, "backup/backup.yml", false);
|
2014-05-11 16:41:58 +00:00
|
|
|
config.load();
|
|
|
|
|
2014-08-27 08:58:26 +00:00
|
|
|
// Weekly
|
|
|
|
if (!config.isInt(save + ".weekly"))
|
2014-05-11 16:41:58 +00:00
|
|
|
{
|
2014-08-27 08:58:26 +00:00
|
|
|
performBackup(file, "weekly");
|
2015-10-19 17:43:46 +00:00
|
|
|
config.set(save + ".weekly", FUtil.getUnixTime());
|
2014-05-11 16:41:58 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-08-27 08:58:26 +00:00
|
|
|
int lastBackupWeekly = config.getInt(save + ".weekly");
|
2014-05-11 16:41:58 +00:00
|
|
|
|
2015-10-19 17:43:46 +00:00
|
|
|
if (lastBackupWeekly + 3600 * 24 * 7 < FUtil.getUnixTime())
|
2014-05-11 16:41:58 +00:00
|
|
|
{
|
2014-08-27 08:58:26 +00:00
|
|
|
performBackup(file, "weekly");
|
2015-10-19 17:43:46 +00:00
|
|
|
config.set(save + ".weekly", FUtil.getUnixTime());
|
2014-05-11 16:41:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-27 08:58:26 +00:00
|
|
|
if (onlyWeekly)
|
2014-05-11 16:41:58 +00:00
|
|
|
{
|
2014-08-27 08:58:26 +00:00
|
|
|
config.save();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Daily
|
|
|
|
if (!config.isInt(save + ".daily"))
|
|
|
|
{
|
|
|
|
performBackup(file, "daily");
|
2015-10-19 17:43:46 +00:00
|
|
|
config.set(save + ".daily", FUtil.getUnixTime());
|
2014-05-11 16:41:58 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-08-27 08:58:26 +00:00
|
|
|
int lastBackupDaily = config.getInt(save + ".daily");
|
2014-05-11 16:41:58 +00:00
|
|
|
|
2015-10-19 17:43:46 +00:00
|
|
|
if (lastBackupDaily + 3600 * 24 < FUtil.getUnixTime())
|
2014-05-11 16:41:58 +00:00
|
|
|
{
|
2014-08-27 08:58:26 +00:00
|
|
|
performBackup(file, "daily");
|
2015-10-19 17:43:46 +00:00
|
|
|
config.set(save + ".daily", FUtil.getUnixTime());
|
2014-05-11 16:41:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
config.save();
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void performBackup(String file, String type)
|
|
|
|
{
|
2015-10-19 17:43:46 +00:00
|
|
|
FLog.info("Backing up " + file + " to " + file + "." + type + ".bak");
|
2014-08-27 08:58:26 +00:00
|
|
|
final File backupFolder = new File(TotalFreedomMod.plugin.getDataFolder(), "backup");
|
|
|
|
|
|
|
|
if (!backupFolder.exists())
|
|
|
|
{
|
|
|
|
backupFolder.mkdirs();
|
|
|
|
}
|
|
|
|
|
2014-05-11 16:15:04 +00:00
|
|
|
final File oldYaml = new File(TotalFreedomMod.plugin.getDataFolder(), file);
|
2014-08-27 08:58:26 +00:00
|
|
|
final File newYaml = new File(backupFolder, file + "." + type + ".bak");
|
2014-05-11 16:15:04 +00:00
|
|
|
FileUtil.copy(oldYaml, newYaml);
|
|
|
|
}
|
|
|
|
|
2012-11-13 01:42:30 +00:00
|
|
|
public static String dateToString(Date date)
|
|
|
|
{
|
|
|
|
return new SimpleDateFormat(DATE_STORAGE_FORMAT, Locale.ENGLISH).format(date);
|
|
|
|
}
|
|
|
|
|
2013-08-25 16:32:01 +00:00
|
|
|
public static Date stringToDate(String dateString)
|
2012-11-13 01:42:30 +00:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2013-08-25 16:32:01 +00:00
|
|
|
return new SimpleDateFormat(DATE_STORAGE_FORMAT, Locale.ENGLISH).parse(dateString);
|
2012-11-13 01:42:30 +00:00
|
|
|
}
|
2013-08-25 16:32:01 +00:00
|
|
|
catch (ParseException pex)
|
2012-11-13 01:42:30 +00:00
|
|
|
{
|
|
|
|
return new Date(0L);
|
|
|
|
}
|
|
|
|
}
|
2012-11-18 03:57:24 +00:00
|
|
|
|
2013-08-28 15:26:08 +00:00
|
|
|
@SuppressWarnings("unchecked")
|
2013-08-25 16:32:01 +00:00
|
|
|
public static boolean isFromHostConsole(String senderName)
|
2012-11-18 03:57:24 +00:00
|
|
|
{
|
2015-10-19 17:43:46 +00:00
|
|
|
return ((List<String>) ConfigEntry.HOST_SENDER_NAMES.getList()).contains(senderName.toLowerCase());
|
2012-11-18 03:57:24 +00:00
|
|
|
}
|
2012-11-21 01:29:57 +00:00
|
|
|
|
2013-08-25 16:32:01 +00:00
|
|
|
public static List<String> removeDuplicates(List<String> oldList)
|
2012-11-21 01:29:57 +00:00
|
|
|
{
|
2013-08-25 16:32:01 +00:00
|
|
|
List<String> newList = new ArrayList<String>();
|
|
|
|
for (String entry : oldList)
|
2012-11-23 02:32:55 +00:00
|
|
|
{
|
2013-08-25 16:32:01 +00:00
|
|
|
if (!newList.contains(entry))
|
2012-11-23 02:32:55 +00:00
|
|
|
{
|
2013-08-25 16:32:01 +00:00
|
|
|
newList.add(entry);
|
2012-11-23 02:32:55 +00:00
|
|
|
}
|
|
|
|
}
|
2013-08-25 16:32:01 +00:00
|
|
|
return newList;
|
2012-11-23 02:32:55 +00:00
|
|
|
}
|
|
|
|
|
2013-08-25 16:32:01 +00:00
|
|
|
public static boolean fuzzyIpMatch(String a, String b, int octets)
|
2012-11-23 02:32:55 +00:00
|
|
|
{
|
2013-08-25 16:32:01 +00:00
|
|
|
boolean match = true;
|
2012-11-23 02:32:55 +00:00
|
|
|
|
2013-08-25 16:32:01 +00:00
|
|
|
String[] aParts = a.split("\\.");
|
|
|
|
String[] bParts = b.split("\\.");
|
2012-11-23 02:32:55 +00:00
|
|
|
|
2013-08-25 16:32:01 +00:00
|
|
|
if (aParts.length != 4 || bParts.length != 4)
|
2012-11-23 02:32:55 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-08-25 16:32:01 +00:00
|
|
|
if (octets > 4)
|
2012-11-23 02:32:55 +00:00
|
|
|
{
|
2013-08-25 16:32:01 +00:00
|
|
|
octets = 4;
|
2012-11-23 02:32:55 +00:00
|
|
|
}
|
2013-08-25 16:32:01 +00:00
|
|
|
else if (octets < 1)
|
2012-11-23 02:32:55 +00:00
|
|
|
{
|
2013-08-25 16:32:01 +00:00
|
|
|
octets = 1;
|
2012-11-23 02:32:55 +00:00
|
|
|
}
|
|
|
|
|
2013-08-25 16:32:01 +00:00
|
|
|
for (int i = 0; i < octets && i < 4; i++)
|
2012-11-23 02:32:55 +00:00
|
|
|
{
|
2013-08-25 16:32:01 +00:00
|
|
|
if (aParts[i].equals("*") || bParts[i].equals("*"))
|
2012-11-23 02:32:55 +00:00
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2013-08-25 16:32:01 +00:00
|
|
|
if (!aParts[i].equals(bParts[i]))
|
2012-11-23 02:32:55 +00:00
|
|
|
{
|
2013-08-25 16:32:01 +00:00
|
|
|
match = false;
|
2012-11-23 02:32:55 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-25 16:32:01 +00:00
|
|
|
return match;
|
2012-11-21 01:29:57 +00:00
|
|
|
}
|
2012-12-01 20:11:00 +00:00
|
|
|
|
2014-05-16 13:39:40 +00:00
|
|
|
public static String getFuzzyIp(String ip)
|
|
|
|
{
|
|
|
|
final String[] ipParts = ip.split("\\.");
|
|
|
|
if (ipParts.length == 4)
|
|
|
|
{
|
|
|
|
return String.format("%s.%s.*.*", ipParts[0], ipParts[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ip;
|
|
|
|
}
|
|
|
|
|
2013-08-25 16:32:01 +00:00
|
|
|
public static int replaceBlocks(Location center, Material fromMaterial, Material toMaterial, int radius)
|
2012-12-01 20:11:00 +00:00
|
|
|
{
|
|
|
|
int affected = 0;
|
|
|
|
|
2013-08-25 16:32:01 +00:00
|
|
|
Block centerBlock = center.getBlock();
|
|
|
|
for (int xOffset = -radius; xOffset <= radius; xOffset++)
|
2012-12-01 20:11:00 +00:00
|
|
|
{
|
2013-08-25 16:32:01 +00:00
|
|
|
for (int yOffset = -radius; yOffset <= radius; yOffset++)
|
2012-12-01 20:11:00 +00:00
|
|
|
{
|
2013-08-25 16:32:01 +00:00
|
|
|
for (int zOffset = -radius; zOffset <= radius; zOffset++)
|
2012-12-01 20:11:00 +00:00
|
|
|
{
|
2013-08-25 16:32:01 +00:00
|
|
|
Block block = centerBlock.getRelative(xOffset, yOffset, zOffset);
|
2012-12-01 20:11:00 +00:00
|
|
|
|
2013-08-25 16:32:01 +00:00
|
|
|
if (block.getType().equals(fromMaterial))
|
2012-12-01 20:11:00 +00:00
|
|
|
{
|
2013-08-25 16:32:01 +00:00
|
|
|
if (block.getLocation().distanceSquared(center) < (radius * radius))
|
2012-12-01 20:11:00 +00:00
|
|
|
{
|
2013-08-25 16:32:01 +00:00
|
|
|
block.setType(toMaterial);
|
2012-12-01 20:11:00 +00:00
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return affected;
|
|
|
|
}
|
2012-12-02 17:05:54 +00:00
|
|
|
|
2013-08-25 16:32:01 +00:00
|
|
|
public static void downloadFile(String url, File output) throws java.lang.Exception
|
2012-12-22 03:22:08 +00:00
|
|
|
{
|
2013-08-25 16:32:01 +00:00
|
|
|
downloadFile(url, output, false);
|
2012-12-22 03:22:08 +00:00
|
|
|
}
|
|
|
|
|
2013-08-25 16:32:01 +00:00
|
|
|
public static void downloadFile(String url, File output, boolean verbose) throws java.lang.Exception
|
2012-12-02 17:05:54 +00:00
|
|
|
{
|
2013-12-01 14:18:05 +00:00
|
|
|
final URL website = new URL(url);
|
2012-12-02 17:05:54 +00:00
|
|
|
ReadableByteChannel rbc = Channels.newChannel(website.openStream());
|
2013-08-25 16:32:01 +00:00
|
|
|
FileOutputStream fos = new FileOutputStream(output);
|
2012-12-02 17:05:54 +00:00
|
|
|
fos.getChannel().transferFrom(rbc, 0, 1 << 24);
|
|
|
|
fos.close();
|
2012-12-22 03:22:08 +00:00
|
|
|
|
|
|
|
if (verbose)
|
|
|
|
{
|
2015-10-19 17:43:46 +00:00
|
|
|
FLog.info("Downloaded " + url + " to " + output.toString() + ".");
|
2012-12-22 03:22:08 +00:00
|
|
|
}
|
2012-12-02 17:05:54 +00:00
|
|
|
}
|
2012-12-02 17:27:10 +00:00
|
|
|
|
|
|
|
public static void adminChatMessage(CommandSender sender, String message, boolean senderIsConsole)
|
2012-11-28 18:31:01 +00:00
|
|
|
{
|
2015-10-19 17:43:46 +00:00
|
|
|
String name = sender.getName() + " " + TotalFreedomMod.plugin.rm.getDisplayRank(sender).getColoredTag() + ChatColor.WHITE;
|
|
|
|
FLog.info("[ADMIN] " + name + ": " + message);
|
2012-12-02 17:27:10 +00:00
|
|
|
|
2013-08-14 14:01:42 +00:00
|
|
|
for (Player player : Bukkit.getOnlinePlayers())
|
2012-11-28 18:31:01 +00:00
|
|
|
{
|
2015-10-19 17:43:46 +00:00
|
|
|
if (TotalFreedomMod.plugin.al.isAdmin(player))
|
2012-11-28 18:31:01 +00:00
|
|
|
{
|
2013-08-14 14:01:42 +00:00
|
|
|
player.sendMessage("[" + ChatColor.AQUA + "ADMIN" + ChatColor.WHITE + "] " + ChatColor.DARK_RED + name + ": " + ChatColor.AQUA + message);
|
2012-11-28 18:31:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-07-02 18:31:22 +00:00
|
|
|
|
2013-04-10 02:05:24 +00:00
|
|
|
//getField: Borrowed from WorldEdit
|
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
public static <T> T getField(Object from, String name)
|
|
|
|
{
|
|
|
|
Class<?> checkClass = from.getClass();
|
|
|
|
do
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
Field field = checkClass.getDeclaredField(name);
|
|
|
|
field.setAccessible(true);
|
|
|
|
return (T) field.get(from);
|
2014-05-11 16:41:58 +00:00
|
|
|
|
2013-04-10 02:05:24 +00:00
|
|
|
}
|
2013-08-14 13:28:19 +00:00
|
|
|
catch (NoSuchFieldException ex)
|
2013-04-10 02:05:24 +00:00
|
|
|
{
|
|
|
|
}
|
2013-08-14 13:28:19 +00:00
|
|
|
catch (IllegalAccessException ex)
|
2013-04-10 02:05:24 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
2014-05-11 16:41:58 +00:00
|
|
|
while (checkClass.getSuperclass() != Object.class
|
|
|
|
&& ((checkClass = checkClass.getSuperclass()) != null));
|
|
|
|
|
2013-04-10 02:05:24 +00:00
|
|
|
return null;
|
|
|
|
}
|
2013-07-11 01:46:29 +00:00
|
|
|
|
2013-07-04 16:10:08 +00:00
|
|
|
public static ChatColor randomChatColor()
|
|
|
|
{
|
2013-09-24 14:13:38 +00:00
|
|
|
return CHAT_COLOR_POOL.get(RANDOM.nextInt(CHAT_COLOR_POOL.size()));
|
2013-07-04 16:10:08 +00:00
|
|
|
}
|
2013-08-12 10:26:49 +00:00
|
|
|
|
2013-09-21 17:58:16 +00:00
|
|
|
public static String colorize(String string)
|
2013-08-12 10:26:49 +00:00
|
|
|
{
|
|
|
|
return ChatColor.translateAlternateColorCodes('&', string);
|
|
|
|
}
|
2013-09-24 12:05:48 +00:00
|
|
|
|
2014-04-04 14:48:39 +00:00
|
|
|
public static long getUnixTime()
|
|
|
|
{
|
|
|
|
return System.currentTimeMillis() / 1000L;
|
|
|
|
}
|
|
|
|
|
2014-04-14 19:11:41 +00:00
|
|
|
public static Date getUnixDate(long unix)
|
|
|
|
{
|
|
|
|
return new Date(unix * 1000);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static long getUnixTime(Date date)
|
|
|
|
{
|
|
|
|
if (date == null)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return date.getTime() / 1000L;
|
|
|
|
}
|
|
|
|
|
2014-05-04 22:01:57 +00:00
|
|
|
public static String getNmsVersion()
|
|
|
|
{
|
|
|
|
String packageName = Bukkit.getServer().getClass().getPackage().getName();
|
|
|
|
return packageName.substring(packageName.lastIndexOf('.') + 1);
|
2014-05-11 16:41:58 +00:00
|
|
|
|
2014-05-04 22:01:57 +00:00
|
|
|
}
|
|
|
|
|
2014-10-27 11:23:08 +00:00
|
|
|
public static void reportAction(Player reporter, Player reported, String report)
|
|
|
|
{
|
|
|
|
for (Player player : Bukkit.getOnlinePlayers())
|
|
|
|
{
|
2015-10-19 17:43:46 +00:00
|
|
|
if (TotalFreedomMod.plugin.al.isAdmin(player))
|
2014-10-27 11:23:08 +00:00
|
|
|
{
|
|
|
|
playerMsg(player, ChatColor.RED + "[REPORTS] " + ChatColor.GOLD + reporter.getName() + " has reported " + reported.getName() + " for " + report);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-04 14:48:39 +00:00
|
|
|
public static enum EjectMethod
|
2013-09-24 12:05:48 +00:00
|
|
|
{
|
2015-10-19 17:43:46 +00:00
|
|
|
|
2013-09-24 12:05:48 +00:00
|
|
|
STRIKE_ONE, STRIKE_TWO, STRIKE_THREE;
|
|
|
|
}
|
2014-07-30 02:38:08 +00:00
|
|
|
|
2014-08-02 14:27:43 +00:00
|
|
|
public static class MethodTimer
|
2014-07-30 02:38:08 +00:00
|
|
|
{
|
2015-10-19 17:43:46 +00:00
|
|
|
|
2014-07-30 02:38:08 +00:00
|
|
|
private long lastStart;
|
|
|
|
private long total = 0;
|
|
|
|
|
2014-08-02 14:27:43 +00:00
|
|
|
public MethodTimer()
|
2014-07-30 02:38:08 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public void start()
|
|
|
|
{
|
|
|
|
this.lastStart = System.currentTimeMillis();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void update()
|
|
|
|
{
|
|
|
|
this.total += (System.currentTimeMillis() - this.lastStart);
|
|
|
|
}
|
|
|
|
|
|
|
|
public long getTotal()
|
|
|
|
{
|
|
|
|
return this.total;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void printTotalToLog(String timerName)
|
|
|
|
{
|
2015-10-19 17:43:46 +00:00
|
|
|
FLog.info("DEBUG: " + timerName + " used " + this.getTotal() + " ms.");
|
2014-07-30 02:38:08 +00:00
|
|
|
}
|
|
|
|
}
|
2015-10-19 17:43:46 +00:00
|
|
|
|
2011-10-13 23:07:52 +00:00
|
|
|
}
|