2011-10-13 23:07:52 +00:00
|
|
|
package me.StevenLawson.TotalFreedomMod;
|
|
|
|
|
2012-03-09 19:01:04 +00:00
|
|
|
import java.io.*;
|
2011-11-04 23:14:17 +00:00
|
|
|
import java.net.URI;
|
2012-11-13 01:42:30 +00:00
|
|
|
import java.text.ParseException;
|
|
|
|
import java.text.SimpleDateFormat;
|
2012-03-09 19:01:04 +00:00
|
|
|
import java.util.*;
|
2011-10-13 23:07:52 +00:00
|
|
|
import java.util.jar.JarFile;
|
2012-09-16 21:18:30 +00:00
|
|
|
import java.util.regex.Matcher;
|
|
|
|
import java.util.regex.Pattern;
|
2011-10-13 23:07:52 +00:00
|
|
|
import java.util.zip.ZipEntry;
|
2011-11-04 23:14:17 +00:00
|
|
|
import java.util.zip.ZipFile;
|
|
|
|
import java.util.zip.ZipOutputStream;
|
2012-09-16 01:19:55 +00:00
|
|
|
import net.minecraft.server.BanEntry;
|
|
|
|
import net.minecraft.server.BanList;
|
|
|
|
import net.minecraft.server.MinecraftServer;
|
2012-09-17 23:46:59 +00:00
|
|
|
import org.apache.commons.lang.StringUtils;
|
2012-09-15 17:01:43 +00:00
|
|
|
import org.apache.commons.lang.exception.ExceptionUtils;
|
2012-03-09 19:01:04 +00:00
|
|
|
import org.bukkit.*;
|
2011-10-13 23:07:52 +00:00
|
|
|
import org.bukkit.block.Block;
|
|
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
import org.bukkit.entity.*;
|
|
|
|
|
|
|
|
public class TFM_Util
|
|
|
|
{
|
2012-11-18 03:57:24 +00:00
|
|
|
private static final Map<String, Integer> eject_tracker = new HashMap<String, Integer>();
|
2012-03-03 04:29:54 +00:00
|
|
|
public static final Map<String, EntityType> mobtypes = new HashMap<String, EntityType>();
|
2012-11-18 03:57:24 +00:00
|
|
|
public static final List<String> stop_commands = Arrays.asList("stop", "off", "end", "halt", "die");
|
|
|
|
public static final List<String> restricted_senders = Arrays.asList("rcon, remotebukkit");
|
2011-11-08 00:29:33 +00:00
|
|
|
|
|
|
|
static
|
|
|
|
{
|
2012-11-18 03:57:24 +00:00
|
|
|
for (EntityType entity_type : EntityType.values())
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if (entity_type.getName() != null)
|
|
|
|
{
|
|
|
|
if (Creature.class.isAssignableFrom(entity_type.getEntityClass()))
|
|
|
|
{
|
|
|
|
mobtypes.put(entity_type.getName().toLowerCase(), entity_type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (Exception ex)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
2011-11-08 00:29:33 +00:00
|
|
|
}
|
2011-10-24 02:43:52 +00:00
|
|
|
|
|
|
|
private TFM_Util()
|
|
|
|
{
|
|
|
|
throw new AssertionError();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void bcastMsg(String message, ChatColor color)
|
2011-10-13 23:07:52 +00:00
|
|
|
{
|
2012-09-23 23:00:45 +00:00
|
|
|
TFM_Log.info(message, true);
|
2011-10-13 23:07:52 +00:00
|
|
|
|
|
|
|
for (Player p : Bukkit.getOnlinePlayers())
|
|
|
|
{
|
2012-09-23 23:00:45 +00:00
|
|
|
p.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
|
|
|
{
|
2012-09-23 23:00:45 +00:00
|
|
|
TFM_Util.bcastMsg(message, null);
|
2011-10-13 23:07:52 +00:00
|
|
|
}
|
|
|
|
|
2012-09-14 22:49:44 +00:00
|
|
|
//JeromSar
|
|
|
|
public static void playerMsg(CommandSender sender, String message, ChatColor color)
|
|
|
|
{
|
|
|
|
sender.sendMessage(color + message);
|
|
|
|
}
|
2012-09-16 01:19:55 +00:00
|
|
|
|
2012-09-14 22:49:44 +00:00
|
|
|
//JeromSar
|
|
|
|
public static void playerMsg(CommandSender sender, String message)
|
|
|
|
{
|
|
|
|
TFM_Util.playerMsg(sender, message, ChatColor.GRAY);
|
|
|
|
}
|
|
|
|
|
|
|
|
//JeromSar
|
|
|
|
public static void adminAction(String adminName, String action, boolean isRed)
|
|
|
|
{
|
2012-09-15 18:05:48 +00:00
|
|
|
TFM_Util.bcastMsg(adminName + " - " + action, (isRed ? ChatColor.RED : ChatColor.AQUA));
|
2012-09-14 22:49:44 +00:00
|
|
|
}
|
|
|
|
|
2011-10-13 23:07:52 +00:00
|
|
|
public static String implodeStringList(String glue, List<String> pieces)
|
|
|
|
{
|
2012-09-17 23:46:59 +00:00
|
|
|
return StringUtils.join(pieces, glue);
|
2011-10-13 23:07:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public static String formatLocation(Location in_loc)
|
|
|
|
{
|
|
|
|
return String.format("%s: (%d, %d, %d)",
|
|
|
|
in_loc.getWorld().getName(),
|
|
|
|
Math.round(in_loc.getX()),
|
|
|
|
Math.round(in_loc.getY()),
|
|
|
|
Math.round(in_loc.getZ()));
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void gotoWorld(CommandSender sender, String targetworld)
|
|
|
|
{
|
|
|
|
if (sender instanceof Player)
|
|
|
|
{
|
|
|
|
Player sender_p = (Player) sender;
|
|
|
|
|
|
|
|
if (sender_p.getWorld().getName().equalsIgnoreCase(targetworld))
|
|
|
|
{
|
|
|
|
sender.sendMessage(ChatColor.GRAY + "Going to main world.");
|
2012-07-22 18:06:01 +00:00
|
|
|
sender_p.teleport(Bukkit.getWorlds().get(0).getSpawnLocation());
|
2011-10-13 23:07:52 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (World world : Bukkit.getWorlds())
|
|
|
|
{
|
|
|
|
if (world.getName().equalsIgnoreCase(targetworld))
|
|
|
|
{
|
|
|
|
sender.sendMessage(ChatColor.GRAY + "Going to world: " + targetworld);
|
2011-11-28 22:44:51 +00:00
|
|
|
sender_p.teleport(world.getSpawnLocation());
|
2011-10-13 23:07:52 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2012-07-22 18:06:01 +00:00
|
|
|
|
2011-11-28 22:44:51 +00:00
|
|
|
sender.sendMessage(ChatColor.GRAY + "World " + targetworld + " not found.");
|
2011-10-13 23:07:52 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-10-16 06:00:37 +00:00
|
|
|
sender.sendMessage(TotalFreedomMod.NOT_FROM_CONSOLE);
|
2011-10-13 23:07:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void buildHistory(Location location, int length, TFM_UserInfo playerdata)
|
|
|
|
{
|
|
|
|
Block center_block = location.getBlock();
|
|
|
|
for (int x_offset = -length; x_offset <= length; x_offset++)
|
|
|
|
{
|
|
|
|
for (int y_offset = -length; y_offset <= length; y_offset++)
|
|
|
|
{
|
|
|
|
for (int z_offset = -length; z_offset <= length; z_offset++)
|
|
|
|
{
|
|
|
|
Block block = center_block.getRelative(x_offset, y_offset, z_offset);
|
|
|
|
playerdata.insertHistoryBlock(block.getLocation(), block.getType());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void generateCube(Location location, int length, Material material)
|
|
|
|
{
|
|
|
|
Block center_block = location.getBlock();
|
|
|
|
for (int x_offset = -length; x_offset <= length; x_offset++)
|
|
|
|
{
|
|
|
|
for (int y_offset = -length; y_offset <= length; y_offset++)
|
|
|
|
{
|
|
|
|
for (int z_offset = -length; z_offset <= length; z_offset++)
|
|
|
|
{
|
|
|
|
center_block.getRelative(x_offset, y_offset, z_offset).setType(material);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-10-14 05:31:21 +00:00
|
|
|
|
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
|
|
|
|
2012-09-14 22:49:44 +00:00
|
|
|
public static void createDefaultConfiguration(String name, File plugin_file)
|
|
|
|
{
|
|
|
|
TotalFreedomMod tfm = TotalFreedomMod.plugin;
|
|
|
|
|
2011-10-13 23:07:52 +00:00
|
|
|
File actual = new File(tfm.getDataFolder(), name);
|
|
|
|
if (!actual.exists())
|
|
|
|
{
|
2012-09-15 17:01:43 +00:00
|
|
|
TFM_Log.info("Installing default configuration file template: " + actual.getPath());
|
2011-10-13 23:07:52 +00:00
|
|
|
InputStream input = null;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
JarFile file = new JarFile(plugin_file);
|
|
|
|
ZipEntry copy = file.getEntry(name);
|
|
|
|
if (copy == null)
|
|
|
|
{
|
2012-09-15 17:01:43 +00:00
|
|
|
TFM_Log.severe("Unable to read default configuration: " + actual.getPath());
|
2011-10-13 23:07:52 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
input = file.getInputStream(copy);
|
|
|
|
}
|
|
|
|
catch (IOException ioex)
|
|
|
|
{
|
2012-09-15 17:01:43 +00:00
|
|
|
TFM_Log.severe("Unable to read default configuration: " + actual.getPath());
|
2011-10-13 23:07:52 +00:00
|
|
|
}
|
|
|
|
if (input != null)
|
|
|
|
{
|
|
|
|
FileOutputStream output = null;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
tfm.getDataFolder().mkdirs();
|
|
|
|
output = new FileOutputStream(actual);
|
|
|
|
byte[] buf = new byte[8192];
|
2012-03-09 19:01:04 +00:00
|
|
|
int length;
|
2011-10-13 23:07:52 +00:00
|
|
|
while ((length = input.read(buf)) > 0)
|
|
|
|
{
|
|
|
|
output.write(buf, 0, length);
|
|
|
|
}
|
|
|
|
|
2012-09-15 17:01:43 +00:00
|
|
|
TFM_Log.info("Default configuration file written: " + actual.getPath());
|
2011-10-13 23:07:52 +00:00
|
|
|
}
|
|
|
|
catch (IOException ioex)
|
|
|
|
{
|
2012-09-15 17:01:43 +00:00
|
|
|
TFM_Log.severe("Unable to write default configuration: " + actual.getPath() + "\n" + ExceptionUtils.getStackTrace(ioex));
|
2011-10-13 23:07:52 +00:00
|
|
|
}
|
|
|
|
finally
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if (input != null)
|
|
|
|
{
|
|
|
|
input.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (IOException ioex)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if (output != null)
|
|
|
|
{
|
|
|
|
output.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (IOException ioex)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-10-14 05:31:21 +00:00
|
|
|
|
2012-11-13 01:42:30 +00:00
|
|
|
@Deprecated
|
2012-07-28 23:08:44 +00:00
|
|
|
public static boolean isUserSuperadmin(CommandSender user)
|
2011-10-13 23:07:52 +00:00
|
|
|
{
|
2012-11-13 01:42:30 +00:00
|
|
|
return TFM_SuperadminList.isUserSuperadmin(user);
|
2011-10-13 23:07:52 +00:00
|
|
|
}
|
|
|
|
|
2012-11-13 01:42:30 +00:00
|
|
|
@Deprecated
|
2012-09-14 22:49:44 +00:00
|
|
|
public static boolean checkPartialSuperadminIP(String user_ip)
|
2011-10-24 02:43:52 +00:00
|
|
|
{
|
2012-11-13 01:42:30 +00:00
|
|
|
return TFM_SuperadminList.checkPartialSuperadminIP(user_ip);
|
2011-10-24 02:43:52 +00:00
|
|
|
}
|
|
|
|
|
2012-07-22 18:06:01 +00:00
|
|
|
public static int wipeEntities(boolean wipe_explosives, boolean wipe_carts)
|
2011-10-13 23:07:52 +00:00
|
|
|
{
|
|
|
|
int removed = 0;
|
|
|
|
for (World world : Bukkit.getWorlds())
|
|
|
|
{
|
|
|
|
for (Entity ent : world.getEntities())
|
|
|
|
{
|
2012-07-22 18:06:01 +00:00
|
|
|
if (ent instanceof Projectile
|
|
|
|
|| ent instanceof Item
|
|
|
|
|| ent instanceof ExperienceOrb
|
|
|
|
|| (ent instanceof Explosive && wipe_explosives)
|
|
|
|
|| (ent instanceof Minecart && wipe_carts))
|
2011-10-13 23:07:52 +00:00
|
|
|
{
|
|
|
|
ent.remove();
|
|
|
|
removed++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return removed;
|
|
|
|
}
|
2011-10-14 05:31:21 +00:00
|
|
|
|
|
|
|
public static boolean deleteFolder(File file)
|
|
|
|
{
|
|
|
|
if (file.exists())
|
|
|
|
{
|
|
|
|
if (file.isDirectory())
|
|
|
|
{
|
|
|
|
for (File f : file.listFiles())
|
|
|
|
{
|
|
|
|
if (!TFM_Util.deleteFolder(f))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file.delete();
|
|
|
|
return !file.exists();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2011-10-24 02:43:52 +00:00
|
|
|
|
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
|
|
|
|
2011-11-28 22:44:51 +00:00
|
|
|
if (!TFM_Util.mobtypes.containsKey(mobname))
|
|
|
|
{
|
|
|
|
throw new Exception();
|
|
|
|
}
|
2012-07-22 18:06:01 +00:00
|
|
|
|
2011-11-28 22:44:51 +00:00
|
|
|
return TFM_Util.mobtypes.get(mobname);
|
2011-10-24 02:43:52 +00:00
|
|
|
}
|
2011-11-04 23:14:17 +00:00
|
|
|
|
|
|
|
public static void zip(File directory, File zipfile, boolean verbose, CommandSender sender) throws IOException
|
|
|
|
{
|
|
|
|
URI base = directory.toURI();
|
|
|
|
Deque<File> queue = new LinkedList<File>();
|
|
|
|
queue.push(directory);
|
|
|
|
OutputStream out = new FileOutputStream(zipfile);
|
|
|
|
Closeable res = out;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
ZipOutputStream zout = new ZipOutputStream(out);
|
|
|
|
res = zout;
|
|
|
|
while (!queue.isEmpty())
|
|
|
|
{
|
|
|
|
directory = queue.pop();
|
|
|
|
for (File kid : directory.listFiles())
|
|
|
|
{
|
|
|
|
String name = base.relativize(kid.toURI()).getPath();
|
|
|
|
if (kid.isDirectory())
|
|
|
|
{
|
|
|
|
queue.push(kid);
|
|
|
|
name = name.endsWith("/") ? name : name + "/";
|
|
|
|
zout.putNextEntry(new ZipEntry(name));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
zout.putNextEntry(new ZipEntry(name));
|
|
|
|
copy(kid, zout);
|
|
|
|
zout.closeEntry();
|
|
|
|
}
|
2011-11-08 00:29:33 +00:00
|
|
|
|
2011-11-04 23:14:17 +00:00
|
|
|
if (verbose)
|
|
|
|
{
|
|
|
|
sender.sendMessage("Zipping: " + name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
finally
|
|
|
|
{
|
|
|
|
res.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void unzip(File zipfile, File directory) throws IOException
|
2011-11-08 00:29:33 +00:00
|
|
|
{
|
2011-11-04 23:14:17 +00:00
|
|
|
ZipFile zfile = new ZipFile(zipfile);
|
|
|
|
Enumeration<? extends ZipEntry> entries = zfile.entries();
|
|
|
|
while (entries.hasMoreElements())
|
|
|
|
{
|
|
|
|
ZipEntry entry = entries.nextElement();
|
|
|
|
File file = new File(directory, entry.getName());
|
|
|
|
if (entry.isDirectory())
|
|
|
|
{
|
|
|
|
file.mkdirs();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
file.getParentFile().mkdirs();
|
|
|
|
InputStream in = zfile.getInputStream(entry);
|
|
|
|
try
|
|
|
|
{
|
|
|
|
copy(in, file);
|
|
|
|
}
|
|
|
|
finally
|
|
|
|
{
|
|
|
|
in.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void copy(InputStream in, OutputStream out) throws IOException
|
|
|
|
{
|
|
|
|
byte[] buffer = new byte[1024];
|
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
int readCount = in.read(buffer);
|
|
|
|
if (readCount < 0)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
out.write(buffer, 0, readCount);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void copy(File file, OutputStream out) throws IOException
|
|
|
|
{
|
|
|
|
InputStream in = new FileInputStream(file);
|
|
|
|
try
|
|
|
|
{
|
|
|
|
copy(in, out);
|
|
|
|
}
|
|
|
|
finally
|
|
|
|
{
|
|
|
|
in.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void copy(InputStream in, File file) throws IOException
|
|
|
|
{
|
|
|
|
OutputStream out = new FileOutputStream(file);
|
|
|
|
try
|
|
|
|
{
|
|
|
|
copy(in, out);
|
|
|
|
}
|
|
|
|
finally
|
|
|
|
{
|
|
|
|
out.close();
|
|
|
|
}
|
|
|
|
}
|
2011-11-08 00:29:33 +00:00
|
|
|
|
|
|
|
public static boolean isStopCommand(String command)
|
2011-11-07 13:11:13 +00:00
|
|
|
{
|
2011-11-08 00:29:33 +00:00
|
|
|
return stop_commands.contains(command.toLowerCase());
|
2011-11-07 13:11:13 +00:00
|
|
|
}
|
2011-11-08 00:29:33 +00:00
|
|
|
|
|
|
|
enum EjectMethod
|
|
|
|
{
|
|
|
|
STRIKE_ONE, STRIKE_TWO, STRIKE_THREE;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void autoEject(Player p, String kickMessage)
|
2011-11-07 13:11:13 +00:00
|
|
|
{
|
2011-11-08 00:29:33 +00:00
|
|
|
EjectMethod method = EjectMethod.STRIKE_ONE;
|
|
|
|
String player_ip = null;
|
2012-07-22 18:06:01 +00:00
|
|
|
|
2011-11-08 00:29:33 +00:00
|
|
|
try
|
|
|
|
{
|
2012-03-09 19:01:04 +00:00
|
|
|
player_ip = p.getAddress().getAddress().getHostAddress();
|
2012-07-22 18:06:01 +00:00
|
|
|
|
2012-03-03 04:29:54 +00:00
|
|
|
Integer num_kicks = TFM_Util.eject_tracker.get(player_ip);
|
2011-11-08 00:29:33 +00:00
|
|
|
if (num_kicks == null)
|
|
|
|
{
|
|
|
|
num_kicks = new Integer(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
num_kicks = new Integer(num_kicks.intValue() + 1);
|
2012-07-22 18:06:01 +00:00
|
|
|
|
2012-03-03 04:29:54 +00:00
|
|
|
TFM_Util.eject_tracker.put(player_ip, num_kicks);
|
2011-11-08 00:29:33 +00:00
|
|
|
|
2012-03-03 04:29:54 +00:00
|
|
|
if (num_kicks.intValue() <= 1)
|
2011-11-08 00:29:33 +00:00
|
|
|
{
|
|
|
|
method = EjectMethod.STRIKE_ONE;
|
|
|
|
}
|
2012-03-03 04:29:54 +00:00
|
|
|
else if (num_kicks.intValue() == 2)
|
2011-11-08 00:29:33 +00:00
|
|
|
{
|
|
|
|
method = EjectMethod.STRIKE_TWO;
|
|
|
|
}
|
2012-03-03 04:29:54 +00:00
|
|
|
else if (num_kicks.intValue() >= 3)
|
2011-11-08 00:29:33 +00:00
|
|
|
{
|
|
|
|
method = EjectMethod.STRIKE_THREE;
|
|
|
|
}
|
|
|
|
}
|
2012-03-03 04:29:54 +00:00
|
|
|
catch (Exception ex)
|
2011-11-08 00:29:33 +00:00
|
|
|
{
|
|
|
|
}
|
2012-07-22 18:06:01 +00:00
|
|
|
|
2012-09-15 17:01:43 +00:00
|
|
|
TFM_Log.info("autoEject -> name: " + p.getName() + " - player_ip: " + player_ip + " - method: " + method.toString());
|
2011-11-08 00:29:33 +00:00
|
|
|
|
|
|
|
p.setOp(false);
|
|
|
|
p.setGameMode(GameMode.SURVIVAL);
|
|
|
|
p.getInventory().clear();
|
|
|
|
|
|
|
|
switch (method)
|
|
|
|
{
|
|
|
|
case STRIKE_ONE:
|
|
|
|
{
|
2012-09-16 21:25:34 +00:00
|
|
|
Calendar c = new GregorianCalendar();
|
|
|
|
c.add(Calendar.MINUTE, 1);
|
|
|
|
Date expires = c.getTime();
|
2012-09-16 01:19:55 +00:00
|
|
|
|
|
|
|
TFM_Util.bcastMsg(ChatColor.RED + p.getName() + " has been banned for 1 minute.");
|
|
|
|
|
2012-09-16 21:25:34 +00:00
|
|
|
TFM_Util.banIP(player_ip, kickMessage, "AutoEject", expires);
|
|
|
|
TFM_Util.banUsername(p.getName(), kickMessage, "AutoEject", expires);
|
2012-07-22 18:06:01 +00:00
|
|
|
p.kickPlayer(kickMessage);
|
2012-09-16 01:19:55 +00:00
|
|
|
|
2011-11-08 00:29:33 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case STRIKE_TWO:
|
|
|
|
{
|
2012-09-16 21:25:34 +00:00
|
|
|
Calendar c = new GregorianCalendar();
|
|
|
|
c.add(Calendar.MINUTE, 3);
|
|
|
|
Date expires = c.getTime();
|
2012-09-16 01:19:55 +00:00
|
|
|
|
|
|
|
TFM_Util.bcastMsg(ChatColor.RED + p.getName() + " has been banned for 3 minutes.");
|
|
|
|
|
2012-09-16 21:25:34 +00:00
|
|
|
TFM_Util.banIP(player_ip, kickMessage, "AutoEject", expires);
|
|
|
|
TFM_Util.banUsername(p.getName(), kickMessage, "AutoEject", expires);
|
2012-07-22 18:06:01 +00:00
|
|
|
p.kickPlayer(kickMessage);
|
2012-09-16 01:19:55 +00:00
|
|
|
|
2011-11-08 00:29:33 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case STRIKE_THREE:
|
|
|
|
{
|
2012-09-16 01:19:55 +00:00
|
|
|
//Bukkit.banIP(player_ip);
|
2012-09-16 21:25:34 +00:00
|
|
|
TFM_Util.banIP(player_ip, kickMessage, "AutoEject", null);
|
2012-07-22 18:06:01 +00:00
|
|
|
String[] ip_address_parts = player_ip.split("\\.");
|
2012-09-16 01:19:55 +00:00
|
|
|
//Bukkit.banIP();
|
2012-09-16 21:25:34 +00:00
|
|
|
TFM_Util.banIP(ip_address_parts[0] + "." + ip_address_parts[1] + ".*.*", kickMessage, "AutoEject", null);
|
2012-09-16 01:19:55 +00:00
|
|
|
|
|
|
|
//p.setBanned(true);
|
2012-09-16 21:25:34 +00:00
|
|
|
TFM_Util.banUsername(p.getName(), kickMessage, "AutoEject", null);
|
2012-07-22 18:06:01 +00:00
|
|
|
|
2012-09-16 01:19:55 +00:00
|
|
|
TFM_Util.bcastMsg(ChatColor.RED + p.getName() + " has been banned permanently.");
|
2012-07-22 18:06:01 +00:00
|
|
|
|
|
|
|
p.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-03-06 19:25:22 +00:00
|
|
|
public static void generateFlatlands()
|
|
|
|
{
|
|
|
|
generateFlatlands(TotalFreedomMod.flatlandsGenerationParams);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void generateFlatlands(String genParams)
|
|
|
|
{
|
|
|
|
WorldCreator flatlands = new WorldCreator("flatlands");
|
|
|
|
flatlands.generateStructures(false);
|
|
|
|
flatlands.type(WorldType.NORMAL);
|
|
|
|
flatlands.environment(World.Environment.NORMAL);
|
|
|
|
flatlands.generator(new CleanroomChunkGenerator(genParams));
|
|
|
|
Bukkit.getServer().createWorld(flatlands);
|
|
|
|
}
|
2012-09-14 22:49:44 +00:00
|
|
|
|
2012-11-13 01:42:30 +00:00
|
|
|
@Deprecated
|
2012-09-15 18:05:48 +00:00
|
|
|
public static boolean isSuperadminImpostor(CommandSender user)
|
|
|
|
{
|
2012-11-13 01:42:30 +00:00
|
|
|
return TFM_SuperadminList.isSuperadminImpostor(user);
|
2012-09-15 18:05:48 +00:00
|
|
|
}
|
|
|
|
|
2012-09-14 22:49:44 +00:00
|
|
|
//JeromSar
|
|
|
|
public static String getRank(CommandSender sender)
|
|
|
|
{
|
2012-09-15 18:05:48 +00:00
|
|
|
if (TFM_Util.isSuperadminImpostor(sender))
|
2012-09-14 22:49:44 +00:00
|
|
|
{
|
2012-09-15 18:05:48 +00:00
|
|
|
return "an " + ChatColor.YELLOW + ChatColor.UNDERLINE + "impostor" + ChatColor.RESET + ChatColor.AQUA + "!";
|
2012-09-14 22:49:44 +00:00
|
|
|
}
|
|
|
|
|
2012-11-13 01:42:30 +00:00
|
|
|
TFM_Superadmin admin_entry = TFM_SuperadminList.getAdminEntry(sender.getName());
|
2012-09-18 21:45:10 +00:00
|
|
|
|
2012-11-13 01:42:30 +00:00
|
|
|
if (admin_entry != null)
|
2012-09-17 16:29:43 +00:00
|
|
|
{
|
2012-11-13 01:42:30 +00:00
|
|
|
String custom_login_message = admin_entry.getCustomLoginMessage();
|
|
|
|
|
|
|
|
if (custom_login_message != null)
|
|
|
|
{
|
|
|
|
if (!custom_login_message.isEmpty())
|
|
|
|
{
|
|
|
|
return ChatColor.translateAlternateColorCodes('&', custom_login_message);
|
|
|
|
}
|
|
|
|
}
|
2012-09-14 22:49:44 +00:00
|
|
|
|
2012-09-15 18:05:48 +00:00
|
|
|
return "an " + ChatColor.RED + "admin" + ChatColor.AQUA + ".";
|
2012-09-14 22:49:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (sender.isOp())
|
|
|
|
{
|
|
|
|
return "an " + ChatColor.DARK_GREEN + "OP" + ChatColor.AQUA + ".";
|
|
|
|
}
|
|
|
|
|
2012-09-17 16:29:43 +00:00
|
|
|
return "a " + ChatColor.GREEN + "non-OP" + ChatColor.AQUA + ".";
|
2012-09-14 22:49:44 +00:00
|
|
|
}
|
|
|
|
|
2012-09-16 01:19:55 +00:00
|
|
|
public static void banUsername(String name, String reason, String source, Date expire_date)
|
|
|
|
{
|
|
|
|
name = name.toLowerCase().trim();
|
|
|
|
|
|
|
|
BanEntry ban_entry = new BanEntry(name);
|
|
|
|
|
|
|
|
if (expire_date != null)
|
|
|
|
{
|
|
|
|
ban_entry.setExpires(expire_date);
|
|
|
|
}
|
|
|
|
if (reason != null)
|
|
|
|
{
|
|
|
|
ban_entry.setReason(reason);
|
|
|
|
}
|
|
|
|
if (source != null)
|
|
|
|
{
|
|
|
|
ban_entry.setSource(source);
|
|
|
|
}
|
|
|
|
|
|
|
|
BanList nameBans = MinecraftServer.getServer().getServerConfigurationManager().getNameBans();
|
|
|
|
|
|
|
|
nameBans.add(ban_entry);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void unbanUsername(String name)
|
|
|
|
{
|
|
|
|
name = name.toLowerCase().trim();
|
|
|
|
|
|
|
|
BanList nameBans = MinecraftServer.getServer().getServerConfigurationManager().getNameBans();
|
|
|
|
|
|
|
|
nameBans.remove(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static boolean isNameBanned(String name)
|
|
|
|
{
|
|
|
|
name = name.toLowerCase().trim();
|
|
|
|
BanList nameBans = MinecraftServer.getServer().getServerConfigurationManager().getNameBans();
|
|
|
|
nameBans.removeExpired();
|
|
|
|
return nameBans.getEntries().containsKey(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void banIP(String ip, String reason, String source, Date expire_date)
|
|
|
|
{
|
|
|
|
ip = ip.toLowerCase().trim();
|
|
|
|
|
|
|
|
BanEntry ban_entry = new BanEntry(ip);
|
|
|
|
|
|
|
|
if (expire_date != null)
|
|
|
|
{
|
|
|
|
ban_entry.setExpires(expire_date);
|
|
|
|
}
|
|
|
|
if (reason != null)
|
|
|
|
{
|
|
|
|
ban_entry.setReason(reason);
|
|
|
|
}
|
|
|
|
if (source != null)
|
|
|
|
{
|
|
|
|
ban_entry.setSource(source);
|
|
|
|
}
|
|
|
|
|
|
|
|
BanList ipBans = MinecraftServer.getServer().getServerConfigurationManager().getIPBans();
|
|
|
|
|
|
|
|
ipBans.add(ban_entry);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void unbanIP(String ip)
|
|
|
|
{
|
|
|
|
ip = ip.toLowerCase().trim();
|
|
|
|
BanList ipBans = MinecraftServer.getServer().getServerConfigurationManager().getIPBans();
|
|
|
|
ipBans.remove(ip);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static boolean isIPBanned(String ip)
|
|
|
|
{
|
|
|
|
ip = ip.toLowerCase().trim();
|
|
|
|
BanList ipBans = MinecraftServer.getServer().getServerConfigurationManager().getIPBans();
|
|
|
|
ipBans.removeExpired();
|
|
|
|
return ipBans.getEntries().containsKey(ip);
|
|
|
|
}
|
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
|
|
|
{
|
2012-09-18 00:13:13 +00:00
|
|
|
List<String> player_names = new ArrayList<String>();
|
|
|
|
for (OfflinePlayer p : players)
|
2012-09-17 16:29:43 +00:00
|
|
|
{
|
2012-09-18 00:13:13 +00:00
|
|
|
player_names.add(p.getName());
|
2012-09-17 16:29:43 +00:00
|
|
|
}
|
2012-09-18 00:13:13 +00:00
|
|
|
return StringUtils.join(player_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()
|
|
|
|
{
|
|
|
|
Map<String, Boolean> saved_flags = null;
|
|
|
|
|
|
|
|
File input_file = new File(TotalFreedomMod.plugin.getDataFolder(), TotalFreedomMod.SAVED_FLAGS_FILE);
|
|
|
|
if (input_file.exists())
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
FileInputStream fis = new FileInputStream(input_file);
|
|
|
|
ObjectInputStream ois = new ObjectInputStream(fis);
|
|
|
|
saved_flags = (HashMap<String, Boolean>) ois.readObject();
|
|
|
|
ois.close();
|
|
|
|
fis.close();
|
|
|
|
}
|
|
|
|
catch (Exception ex)
|
|
|
|
{
|
|
|
|
TFM_Log.severe(ex);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return saved_flags;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static boolean getSavedFlag(String flag) throws Exception
|
|
|
|
{
|
|
|
|
Boolean flag_value = null;
|
|
|
|
|
|
|
|
Map<String, Boolean> saved_flags = TFM_Util.getSavedFlags();
|
|
|
|
|
|
|
|
if (saved_flags != null)
|
|
|
|
{
|
|
|
|
if (saved_flags.containsKey(flag))
|
|
|
|
{
|
|
|
|
flag_value = saved_flags.get(flag);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flag_value != null)
|
|
|
|
{
|
|
|
|
return flag_value.booleanValue();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw new Exception();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setSavedFlag(String flag, boolean value)
|
|
|
|
{
|
|
|
|
Map<String, Boolean> saved_flags = TFM_Util.getSavedFlags();
|
|
|
|
|
|
|
|
if (saved_flags == null)
|
|
|
|
{
|
|
|
|
saved_flags = new HashMap<String, Boolean>();
|
|
|
|
}
|
|
|
|
|
|
|
|
saved_flags.put(flag, value);
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
FileOutputStream fos = new FileOutputStream(new File(TotalFreedomMod.plugin.getDataFolder(), TotalFreedomMod.SAVED_FLAGS_FILE));
|
|
|
|
ObjectOutputStream oos = new ObjectOutputStream(fos);
|
|
|
|
oos.writeObject(saved_flags);
|
|
|
|
oos.close();
|
|
|
|
fos.close();
|
|
|
|
}
|
|
|
|
catch (Exception ex)
|
|
|
|
{
|
|
|
|
TFM_Log.severe(ex);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void wipeFlatlandsIfFlagged()
|
|
|
|
{
|
|
|
|
boolean do_wipe_flatlands = false;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
do_wipe_flatlands = TFM_Util.getSavedFlag("do_wipe_flatlands");
|
|
|
|
}
|
|
|
|
catch (Exception ex)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
if (do_wipe_flatlands)
|
|
|
|
{
|
|
|
|
if (Bukkit.getServer().getWorld("flatlands") == null)
|
|
|
|
{
|
|
|
|
TFM_Log.info("Wiping flaglands.");
|
|
|
|
|
|
|
|
TFM_Util.setSavedFlag("do_wipe_flatlands", false);
|
|
|
|
|
|
|
|
File flatlands_folder = new File("./flatlands");
|
|
|
|
|
|
|
|
if (flatlands_folder.exists())
|
|
|
|
{
|
|
|
|
TFM_Util.deleteFolder(flatlands_folder);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
TFM_Log.severe("Can't wipe flatlands, it is already loaded.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-11-13 01:42:30 +00:00
|
|
|
|
|
|
|
public static String DATE_STORAGE_FORMAT = "EEE, d MMM yyyy HH:mm:ss Z";
|
|
|
|
|
|
|
|
public static String dateToString(Date date)
|
|
|
|
{
|
|
|
|
return new SimpleDateFormat(DATE_STORAGE_FORMAT, Locale.ENGLISH).format(date);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Date stringToDate(String date_str)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
return new SimpleDateFormat(DATE_STORAGE_FORMAT, Locale.ENGLISH).parse(date_str);
|
|
|
|
}
|
|
|
|
catch (ParseException ex)
|
|
|
|
{
|
|
|
|
return new Date(0L);
|
|
|
|
}
|
|
|
|
}
|
2012-11-18 03:57:24 +00:00
|
|
|
|
|
|
|
public static boolean isFromClanforge(String sender_name)
|
|
|
|
{
|
|
|
|
return restricted_senders.contains(sender_name.toLowerCase());
|
|
|
|
}
|
2012-03-12 06:26:13 +00:00
|
|
|
// I wrote all this before i discovered getTargetBlock >.> - might come in handy some day...
|
|
|
|
// public static final double LOOKAT_VIEW_HEIGHT = 1.65;
|
|
|
|
// public static final double LOOKAT_STEP_DISTANCE = 0.2;
|
|
|
|
//
|
|
|
|
// public static Location getLookatLocation(Player player)
|
|
|
|
// {
|
|
|
|
// Location player_loc = player.getLocation();
|
|
|
|
//
|
|
|
|
// Vector player_pos = player_loc.toVector().add(new Vector(0.0, LOOKAT_VIEW_HEIGHT, 0.0));
|
|
|
|
// Vector player_dir = player_loc.getDirection().normalize();
|
|
|
|
//
|
|
|
|
// for (double offset = 0.0; offset <= 300.0; offset += LOOKAT_STEP_DISTANCE)
|
|
|
|
// {
|
|
|
|
// Location check_loc = player_pos.clone().add(player_dir.clone().multiply(offset)).toLocation(player.getWorld());
|
|
|
|
//
|
|
|
|
// if (!check_loc.getBlock().isEmpty())
|
|
|
|
// {
|
|
|
|
// return check_loc;
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// return null;
|
|
|
|
// }
|
2011-10-13 23:07:52 +00:00
|
|
|
}
|