2020-10-27 18:14:34 +00:00
|
|
|
package me.totalfreedom.plex.util;
|
|
|
|
|
2020-11-05 13:40:48 +00:00
|
|
|
import java.io.BufferedReader;
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.io.InputStreamReader;
|
|
|
|
import java.net.HttpURLConnection;
|
|
|
|
import java.net.URL;
|
2020-10-28 03:49:56 +00:00
|
|
|
import java.sql.SQLException;
|
2020-11-03 00:19:26 +00:00
|
|
|
import java.util.ArrayList;
|
2020-10-28 20:47:00 +00:00
|
|
|
import java.util.List;
|
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
2020-10-27 18:14:34 +00:00
|
|
|
import me.totalfreedom.plex.Plex;
|
2020-11-02 00:06:08 +00:00
|
|
|
import me.totalfreedom.plex.config.Config;
|
2020-10-27 18:14:34 +00:00
|
|
|
import me.totalfreedom.plex.storage.StorageType;
|
2020-11-02 00:06:08 +00:00
|
|
|
import org.bukkit.*;
|
2020-10-28 20:47:00 +00:00
|
|
|
import org.bukkit.command.Command;
|
|
|
|
import org.bukkit.command.PluginCommandYamlParser;
|
2020-10-31 15:09:13 +00:00
|
|
|
import org.bukkit.entity.Player;
|
2020-10-28 20:47:00 +00:00
|
|
|
import org.bukkit.plugin.Plugin;
|
2020-11-05 13:40:48 +00:00
|
|
|
import org.json.simple.parser.JSONParser;
|
|
|
|
import org.json.simple.parser.ParseException;
|
2020-10-27 18:14:34 +00:00
|
|
|
|
|
|
|
public class PlexUtils
|
|
|
|
{
|
|
|
|
public static void testConnections()
|
|
|
|
{
|
|
|
|
if (Plex.get().getSqlConnection().getCon() != null)
|
|
|
|
{
|
|
|
|
if (Plex.get().getStorageType() == StorageType.SQL)
|
|
|
|
{
|
|
|
|
PlexLog.log("Successfully enabled MySQL!");
|
2020-10-28 03:49:56 +00:00
|
|
|
}
|
|
|
|
else if (Plex.get().getStorageType() == StorageType.SQLITE)
|
2020-10-27 18:14:34 +00:00
|
|
|
{
|
|
|
|
PlexLog.log("Successfully enabled SQLite!");
|
|
|
|
}
|
2020-10-28 03:49:56 +00:00
|
|
|
try
|
|
|
|
{
|
2020-10-27 18:14:34 +00:00
|
|
|
Plex.get().getSqlConnection().getCon().close();
|
|
|
|
}
|
2020-10-28 03:49:56 +00:00
|
|
|
catch (SQLException ignored)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (Plex.get().getMongoConnection().getDatastore() != null)
|
2020-10-27 18:14:34 +00:00
|
|
|
{
|
|
|
|
PlexLog.log("Successfully enabled MongoDB!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-28 20:47:00 +00:00
|
|
|
public static boolean isPluginCMD(String cmd, String pluginName)
|
|
|
|
{
|
|
|
|
Plugin plugin = Bukkit.getServer().getPluginManager().getPlugin(pluginName);
|
|
|
|
if (plugin == null)
|
|
|
|
{
|
|
|
|
PlexLog.error(pluginName + " can not be found on the server! Make sure it is spelt correctly!");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
List<Command> cmds = PluginCommandYamlParser.parse(plugin);
|
|
|
|
for (Command pluginCmd : cmds)
|
|
|
|
{
|
|
|
|
List<String> cmdAliases = pluginCmd.getAliases().size() > 0 ? pluginCmd.getAliases().stream().map(String::toLowerCase).collect(Collectors.toList()) : null;
|
|
|
|
if (pluginCmd.getName().equalsIgnoreCase(cmd) || (cmdAliases != null && cmdAliases.contains(cmd.toLowerCase())))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-10-31 15:09:13 +00:00
|
|
|
public static String color(String s)
|
|
|
|
{
|
|
|
|
return ChatColor.translateAlternateColorCodes('&', s);
|
|
|
|
}
|
|
|
|
|
2020-11-02 00:06:08 +00:00
|
|
|
// if you think the name of this method is dumb feel free to change it i just thought it'd be cool
|
|
|
|
public static String tl(String s, Object... objects)
|
|
|
|
{
|
|
|
|
Plex plugin = Plex.get();
|
2020-11-02 20:50:51 +00:00
|
|
|
if (s.equals("baseColor") || s.equals("errorColor") || s.equals("broadcastColor"))
|
|
|
|
return getChatColorFromConfig(plugin.messages, ChatColor.WHITE, s).toString();
|
2020-11-02 00:06:08 +00:00
|
|
|
String f = plugin.messages.getString(s);
|
|
|
|
if (f == null)
|
|
|
|
return ChatColor.RED + "No message";
|
|
|
|
for (Object object : objects)
|
2020-11-05 13:40:48 +00:00
|
|
|
f = f.replaceFirst("<v>", String.valueOf(object));
|
2020-11-02 00:06:08 +00:00
|
|
|
ChatColor base = getChatColorFromConfig(plugin.messages, ChatColor.GRAY, "baseColor");
|
2020-11-02 20:50:51 +00:00
|
|
|
ChatColor broadcast = getChatColorFromConfig(plugin.messages, ChatColor.AQUA, "broadcastColor");
|
2020-11-02 00:06:08 +00:00
|
|
|
ChatColor error = getChatColorFromConfig(plugin.messages, ChatColor.RED, "errorColor");
|
|
|
|
f = f.replaceAll("<r>", base.toString());
|
2020-11-02 20:50:51 +00:00
|
|
|
f = f.replaceAll("<b>", broadcast.toString());
|
2020-11-02 00:06:08 +00:00
|
|
|
f = f.replaceAll("<e>", error.toString());
|
2020-11-02 20:50:51 +00:00
|
|
|
f = color(f);
|
2020-11-02 00:06:08 +00:00
|
|
|
return base + f;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static ChatColor getChatColorFromConfig(Config config, ChatColor def, String path)
|
|
|
|
{
|
|
|
|
ChatColor color;
|
|
|
|
if (config.getString(path) == null)
|
|
|
|
color = def;
|
|
|
|
else if (ChatColor.getByChar(config.getString(path)) == null)
|
|
|
|
color = def;
|
|
|
|
else
|
|
|
|
color = ChatColor.getByChar(config.getString(path));
|
|
|
|
return color;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setBlocks(Location c1, Location c2, Material material)
|
|
|
|
{
|
|
|
|
if (!c1.getWorld().getName().equals(c1.getWorld().getName()))
|
|
|
|
return;
|
|
|
|
int sy = Math.min(c1.getBlockY(), c2.getBlockY()),
|
|
|
|
ey = Math.max(c1.getBlockY(), c2.getBlockY()),
|
|
|
|
sx = Math.min(c1.getBlockX(), c2.getBlockX()),
|
|
|
|
ex = Math.max(c1.getBlockX(), c2.getBlockX()),
|
|
|
|
sz = Math.min(c1.getBlockZ(), c2.getBlockZ()),
|
|
|
|
ez = Math.max(c1.getBlockZ(), c2.getBlockZ());
|
|
|
|
World world = c1.getWorld();
|
|
|
|
for (int y = sy; y <= ey; y++)
|
|
|
|
{
|
|
|
|
for (int x = sx; x <= ex; x++)
|
|
|
|
{
|
|
|
|
for (int z = sz; z <= ez; z++)
|
|
|
|
{
|
|
|
|
world.getBlockAt(x, y, z).setType(material);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-11-02 20:50:51 +00:00
|
|
|
|
2020-11-03 00:19:26 +00:00
|
|
|
public static List<String> getPlayerNameList()
|
|
|
|
{
|
|
|
|
List<String> names = new ArrayList<>();
|
|
|
|
for (Player player : Bukkit.getOnlinePlayers())
|
|
|
|
names.add(player.getName());
|
|
|
|
return names;
|
|
|
|
}
|
|
|
|
|
2020-11-02 20:50:51 +00:00
|
|
|
public static void broadcast(String s)
|
|
|
|
{
|
|
|
|
Bukkit.broadcastMessage(s);
|
|
|
|
}
|
2020-11-05 13:40:48 +00:00
|
|
|
|
|
|
|
public static Object simpleGET(String url) throws IOException, ParseException
|
|
|
|
{
|
|
|
|
URL u = new URL(url);
|
|
|
|
HttpURLConnection connection = (HttpURLConnection) u.openConnection();
|
|
|
|
connection.setRequestMethod("GET");
|
|
|
|
BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
|
|
|
|
String line;
|
|
|
|
StringBuilder content = new StringBuilder();
|
|
|
|
while ((line = in.readLine()) != null)
|
|
|
|
content.append(line);
|
|
|
|
in.close();
|
|
|
|
connection.disconnect();
|
|
|
|
return new JSONParser().parse(content.toString());
|
|
|
|
}
|
2020-10-27 18:14:34 +00:00
|
|
|
}
|