mirror of
https://github.com/TotalFreedomMC/BukkitTelnet.git
synced 2024-12-28 11:04:22 +00:00
Beginning rewrite
This commit is contained in:
parent
c068edca3b
commit
a8a429817c
11 changed files with 515 additions and 189 deletions
|
@ -1,15 +1,15 @@
|
|||
# BukkitTelnet v3.0 Configuration File
|
||||
# BukkitTelnet v4.0 Configuration File
|
||||
|
||||
# Address to listen on, leave blank for all
|
||||
address: ''
|
||||
|
||||
# Port to bind to:
|
||||
port: 8765
|
||||
|
||||
# Address to listen on, leave blank for all:
|
||||
address: ''
|
||||
# Main connection password, must be defined
|
||||
password: 'walrus'
|
||||
|
||||
# Main connection password, must be defined:
|
||||
password: ''
|
||||
|
||||
# List of admins / IPs that don't have to use the password:
|
||||
# List of admins / IPs that don't have to use the password
|
||||
admins:
|
||||
madgeek1450:
|
||||
- 74.131.135.3
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
package me.StevenLawson.BukkitTelnet;
|
||||
|
||||
import me.StevenLawson.BukkitTelnet.api.TelnetPreLoginEvent;
|
||||
import me.StevenLawson.BukkitTelnet.api.TelnetCommandEvent;
|
||||
import java.io.BufferedReader;
|
||||
import java.io.BufferedWriter;
|
||||
import java.io.IOException;
|
||||
|
@ -68,7 +70,7 @@ public final class BT_ClientSession extends Thread
|
|||
|
||||
if (this.sessionLogHandler != null)
|
||||
{
|
||||
BT_Log.getLogger().removeHandler(this.sessionLogHandler);
|
||||
BT_Log.getLogger(true).removeHandler(this.sessionLogHandler);
|
||||
}
|
||||
|
||||
synchronized (this.clientSocket)
|
||||
|
@ -157,7 +159,7 @@ public final class BT_ClientSession extends Thread
|
|||
server.dispatchCommand(sender, command);
|
||||
}
|
||||
}
|
||||
}.runTask(BukkitTelnet.getPlugin());
|
||||
}.runTask(BukkitTelnet.plugin);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
|
@ -350,7 +352,7 @@ public final class BT_ClientSession extends Thread
|
|||
writeOutFormatted("Logged in as " + this.userName + ".", true);
|
||||
BT_Log.info(this.clientAddress + " logged in as \"" + this.userName + "\".");
|
||||
|
||||
BT_Log.getLogger().addHandler(this.sessionLogHandler = new SessionLogHandler(this));
|
||||
BT_Log.getLogger(true).addHandler(this.sessionLogHandler = new SessionLogHandler(this));
|
||||
|
||||
while (this.isConnected())
|
||||
{
|
||||
|
|
|
@ -1,135 +1,54 @@
|
|||
package me.StevenLawson.BukkitTelnet;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.FileOutputStream;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.io.OutputStream;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
import org.bukkit.configuration.file.YamlConfiguration;
|
||||
import net.pravian.bukkitlib.YamlConfig;
|
||||
|
||||
public class BT_Config
|
||||
{
|
||||
public static final String CONFIG_FILENAME = "config.yml";
|
||||
private final SimpleConfigEntries configEntries = new SimpleConfigEntries();
|
||||
private YamlConfig config = null;
|
||||
private final SimpleConfigEntries configEntries;
|
||||
|
||||
private BT_Config()
|
||||
{
|
||||
try
|
||||
{
|
||||
final File configFile = getConfigFile();
|
||||
if (configFile != null)
|
||||
{
|
||||
copyDefaultConfig(configFile);
|
||||
}
|
||||
|
||||
load();
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
BT_Log.severe(ex);
|
||||
}
|
||||
configEntries = new SimpleConfigEntries();
|
||||
}
|
||||
|
||||
public final void load()
|
||||
public void loadConfig()
|
||||
{
|
||||
try
|
||||
if (config == null)
|
||||
{
|
||||
final YamlConfiguration config = new YamlConfiguration();
|
||||
config = new YamlConfig(BukkitTelnet.plugin, "config.yml", true);
|
||||
}
|
||||
|
||||
final File configFile = getConfigFile();
|
||||
if (configFile == null)
|
||||
config.load();
|
||||
|
||||
configEntries.setAddress(config.getString("address"));
|
||||
configEntries.setPort(config.getInt("port"));
|
||||
configEntries.setPassword(config.getString("password"));
|
||||
configEntries.getAdmins().clear();
|
||||
|
||||
if (config.isConfigurationSection("admins"))
|
||||
{
|
||||
for (String admin : config.getConfigurationSection("admins").getKeys(false))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
config.load(configFile);
|
||||
if (!config.isList("admins." + admin))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
this.configEntries.setPort(config.getInt("port", this.configEntries.getPort()));
|
||||
this.configEntries.setAddress(config.getString("address", this.configEntries.getAddress()));
|
||||
this.configEntries.setPassword(config.getString("password", this.configEntries.getPassword()));
|
||||
|
||||
final Map<String, List<String>> adminMap = this.configEntries.getAdmins();
|
||||
adminMap.clear();
|
||||
|
||||
final Set<String> adminEntries = config.getConfigurationSection("admins").getKeys(false);
|
||||
for (String adminName : adminEntries)
|
||||
{
|
||||
adminMap.put(adminName, config.getStringList("admins." + adminName));
|
||||
configEntries.getAdmins().put(admin, config.getStringList("admins." + admin));
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
BT_Log.severe(ex);
|
||||
}
|
||||
}
|
||||
|
||||
private static void copyDefaultConfig(final File targetFile)
|
||||
{
|
||||
if (targetFile.exists())
|
||||
if (configEntries.getPassword().equals(""))
|
||||
{
|
||||
return;
|
||||
configEntries.setPassword(config.getDefaultConfig().getString("password"));
|
||||
BT_Log.warning("Password set to blank in config!");
|
||||
BT_Log.warning("Defaulting to " + configEntries.getPassword());
|
||||
}
|
||||
|
||||
BT_Log.info("Installing default configuration file template: " + targetFile.getPath());
|
||||
|
||||
try
|
||||
{
|
||||
final InputStream defaultConfig = getDefaultConfig();
|
||||
copy(defaultConfig, targetFile);
|
||||
defaultConfig.close();
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
BT_Log.severe(ex);
|
||||
}
|
||||
}
|
||||
|
||||
private File getConfigFile()
|
||||
{
|
||||
try
|
||||
{
|
||||
return new File(BukkitTelnet.getPlugin().getDataFolder(), CONFIG_FILENAME);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
BT_Log.severe(ex);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
private static InputStream getDefaultConfig() throws IOException
|
||||
{
|
||||
try
|
||||
{
|
||||
return BukkitTelnet.getPlugin().getResource(CONFIG_FILENAME);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
BT_Log.severe(ex);
|
||||
}
|
||||
throw new IOException();
|
||||
}
|
||||
|
||||
private static void copy(InputStream in, File file) throws IOException
|
||||
{
|
||||
if (!file.exists())
|
||||
{
|
||||
file.getParentFile().mkdirs();
|
||||
}
|
||||
|
||||
OutputStream out = new FileOutputStream(file);
|
||||
byte[] buf = new byte[1024];
|
||||
int len;
|
||||
while ((len = in.read(buf)) > 0)
|
||||
{
|
||||
out.write(buf, 0, len);
|
||||
}
|
||||
out.close();
|
||||
in.close();
|
||||
}
|
||||
|
||||
public SimpleConfigEntries getConfigEntries()
|
||||
|
@ -137,58 +56,51 @@ public class BT_Config
|
|||
return configEntries;
|
||||
}
|
||||
|
||||
public static class SimpleConfigEntries
|
||||
public static final class SimpleConfigEntries
|
||||
{
|
||||
private int _port = 8765;
|
||||
private String _address = null;
|
||||
private String _password = null;
|
||||
private final Map<String, List<String>> _admins = new HashMap<String, List<String>>();
|
||||
private int port;
|
||||
private String address;
|
||||
private String password;
|
||||
private final Map<String, List<String>> admins;
|
||||
|
||||
private SimpleConfigEntries()
|
||||
{
|
||||
admins = new HashMap<String, List<String>>();
|
||||
}
|
||||
|
||||
public int getPort()
|
||||
{
|
||||
return _port;
|
||||
return port;
|
||||
}
|
||||
|
||||
public void setPort(final int port)
|
||||
public void setPort(int port)
|
||||
{
|
||||
this._port = port;
|
||||
this.port = port;
|
||||
}
|
||||
|
||||
public String getAddress()
|
||||
{
|
||||
return _address;
|
||||
return address;
|
||||
}
|
||||
|
||||
public void setAddress(String address)
|
||||
{
|
||||
if (address == null || (address = address.trim()).isEmpty())
|
||||
{
|
||||
address = null;
|
||||
}
|
||||
this._address = address;
|
||||
this.address = address;
|
||||
}
|
||||
|
||||
public String getPassword()
|
||||
{
|
||||
return _password;
|
||||
return password;
|
||||
}
|
||||
|
||||
public void setPassword(String password)
|
||||
{
|
||||
if (password == null || (password = password.trim()).isEmpty())
|
||||
{
|
||||
password = null;
|
||||
}
|
||||
this._password = password;
|
||||
this.password = password;
|
||||
}
|
||||
|
||||
public Map<String, List<String>> getAdmins()
|
||||
{
|
||||
return _admins;
|
||||
return admins;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -6,7 +6,9 @@ import org.bukkit.Bukkit;
|
|||
|
||||
public final class BT_Log
|
||||
{
|
||||
private static final Logger LOGGER = Bukkit.getLogger();
|
||||
private static final Logger FALLBACK_LOGGER = Bukkit.getLogger();
|
||||
private static Logger serverLogger = null;
|
||||
private static Logger pluginLogger = null;
|
||||
|
||||
private BT_Log()
|
||||
{
|
||||
|
@ -64,21 +66,33 @@ public final class BT_Log
|
|||
// Utility
|
||||
private static void log(Level level, String message, boolean raw)
|
||||
{
|
||||
if (!raw)
|
||||
{
|
||||
message = "[BukkitTelnet] " + message;
|
||||
}
|
||||
|
||||
getLogger().log(level, message);
|
||||
getLogger(raw).log(level, message);
|
||||
}
|
||||
|
||||
private static void log(Level level, Throwable throwable)
|
||||
{
|
||||
getLogger().log(level, null, throwable);
|
||||
getLogger(false).log(level, null, throwable);
|
||||
}
|
||||
|
||||
public static Logger getLogger()
|
||||
public static void setServerLogger(Logger logger)
|
||||
{
|
||||
return LOGGER;
|
||||
serverLogger = logger;
|
||||
}
|
||||
|
||||
public static void setPluginLogger(Logger logger)
|
||||
{
|
||||
pluginLogger = logger;
|
||||
}
|
||||
|
||||
public static Logger getLogger(boolean raw)
|
||||
{
|
||||
if (raw || pluginLogger == null)
|
||||
{
|
||||
return (serverLogger != null ? serverLogger : FALLBACK_LOGGER);
|
||||
}
|
||||
else
|
||||
{
|
||||
return pluginLogger;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ public class BT_TelnetServer
|
|||
|
||||
public void startServer()
|
||||
{
|
||||
this.stopServer();
|
||||
stopServer();
|
||||
|
||||
final BT_Config.SimpleConfigEntries configEntries = BT_Config.getInstance().getConfigEntries();
|
||||
|
||||
|
|
|
@ -1,21 +1,27 @@
|
|||
package me.StevenLawson.BukkitTelnet;
|
||||
|
||||
import org.bukkit.Server;
|
||||
import org.bukkit.plugin.java.JavaPlugin;
|
||||
|
||||
public class BukkitTelnet extends JavaPlugin
|
||||
{
|
||||
private static BukkitTelnet plugin = null;
|
||||
public static BukkitTelnet plugin;
|
||||
public static Server server;
|
||||
|
||||
@Override
|
||||
public void onLoad()
|
||||
{
|
||||
plugin = this;
|
||||
server = plugin.getServer();
|
||||
|
||||
BT_Log.setPluginLogger(plugin.getLogger());
|
||||
BT_Log.setServerLogger(server.getLogger());
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onEnable()
|
||||
{
|
||||
BT_Config.getInstance().load();
|
||||
BT_Config.getInstance().loadConfig();
|
||||
|
||||
BT_TelnetServer.getInstance().startServer();
|
||||
|
||||
|
@ -30,21 +36,4 @@ public class BukkitTelnet extends JavaPlugin
|
|||
|
||||
BT_Log.info("Plugin disabled");
|
||||
}
|
||||
|
||||
public static BukkitTelnet getPlugin() throws PluginNotLoadedException
|
||||
{
|
||||
if (plugin == null)
|
||||
{
|
||||
throw new PluginNotLoadedException();
|
||||
}
|
||||
|
||||
return plugin;
|
||||
}
|
||||
|
||||
public static class PluginNotLoadedException extends Exception
|
||||
{
|
||||
public PluginNotLoadedException()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
64
src/me/StevenLawson/BukkitTelnet/api/TelnetCommandEvent.java
Normal file
64
src/me/StevenLawson/BukkitTelnet/api/TelnetCommandEvent.java
Normal file
|
@ -0,0 +1,64 @@
|
|||
package me.StevenLawson.BukkitTelnet.api;
|
||||
|
||||
import org.bukkit.command.CommandSender;
|
||||
import org.bukkit.event.Cancellable;
|
||||
import org.bukkit.event.Event;
|
||||
import org.bukkit.event.HandlerList;
|
||||
|
||||
public class TelnetCommandEvent extends Event implements Cancellable
|
||||
{
|
||||
private static final HandlerList handlers = new HandlerList();
|
||||
private boolean cancelled = false;
|
||||
//
|
||||
private CommandSender sender;
|
||||
private String command;
|
||||
|
||||
public TelnetCommandEvent(CommandSender sender, String command)
|
||||
{
|
||||
this.sender = sender;
|
||||
this.command = command;
|
||||
}
|
||||
|
||||
@Override
|
||||
public HandlerList getHandlers()
|
||||
{
|
||||
return handlers;
|
||||
}
|
||||
|
||||
public static HandlerList getHandlerList()
|
||||
{
|
||||
return handlers;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isCancelled()
|
||||
{
|
||||
return cancelled;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setCancelled(boolean cancel)
|
||||
{
|
||||
cancelled = cancel;
|
||||
}
|
||||
|
||||
public CommandSender getSender()
|
||||
{
|
||||
return sender;
|
||||
}
|
||||
|
||||
public void setSender(CommandSender sender)
|
||||
{
|
||||
this.sender = sender;
|
||||
}
|
||||
|
||||
public String getCommand()
|
||||
{
|
||||
return command;
|
||||
}
|
||||
|
||||
public void setCommand(String command)
|
||||
{
|
||||
this.command = command;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,70 @@
|
|||
package me.StevenLawson.BukkitTelnet.api;
|
||||
|
||||
import org.bukkit.event.Cancellable;
|
||||
import org.bukkit.event.Event;
|
||||
import org.bukkit.event.HandlerList;
|
||||
|
||||
public class TelnetPreLoginEvent extends Event implements Cancellable
|
||||
{
|
||||
private static final HandlerList handlers = new HandlerList();
|
||||
private boolean cancelled = false;
|
||||
//
|
||||
private String name = null;
|
||||
private final String ip;
|
||||
private boolean bypassPassword;
|
||||
|
||||
public TelnetPreLoginEvent(String ip, String name, boolean bypassPassword)
|
||||
{
|
||||
this.ip = ip;
|
||||
this.name = name;
|
||||
this.bypassPassword = bypassPassword;
|
||||
}
|
||||
|
||||
@Override
|
||||
public HandlerList getHandlers()
|
||||
{
|
||||
return handlers;
|
||||
}
|
||||
|
||||
public static HandlerList getHandlerList()
|
||||
{
|
||||
return handlers;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isCancelled()
|
||||
{
|
||||
return cancelled;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setCancelled(boolean cancel)
|
||||
{
|
||||
cancelled = cancel;
|
||||
}
|
||||
|
||||
public String getIp()
|
||||
{
|
||||
return ip;
|
||||
}
|
||||
|
||||
public String getName()
|
||||
{
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name)
|
||||
{
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public boolean canBypassPassword()
|
||||
{
|
||||
return bypassPassword;
|
||||
}
|
||||
|
||||
public void setBypassPassword(boolean bypassPassword)
|
||||
{
|
||||
this.bypassPassword = bypassPassword;
|
||||
}
|
||||
}
|
149
src/net/pravian/bukkitlib/FileUtils.java
Normal file
149
src/net/pravian/bukkitlib/FileUtils.java
Normal file
|
@ -0,0 +1,149 @@
|
|||
package net.pravian.bukkitlib;
|
||||
|
||||
import java.io.File;
|
||||
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;
|
||||
import java.net.MalformedURLException;
|
||||
import java.net.URL;
|
||||
import java.nio.channels.Channels;
|
||||
import java.nio.channels.ReadableByteChannel;
|
||||
import org.bukkit.plugin.Plugin;
|
||||
|
||||
/**
|
||||
* Represents all File-related utilities.
|
||||
*/
|
||||
public class FileUtils {
|
||||
|
||||
/**
|
||||
* Downloads a file from the specified URIL and saves it at the specified location.
|
||||
*
|
||||
* @param url The URL from where to download the file from.
|
||||
* @param output The file where the file will be stored.
|
||||
* @throws MalformedURLException
|
||||
* @throws IOException
|
||||
*/
|
||||
public static void downloadFile(String url, File output) throws MalformedURLException, IOException {
|
||||
final URL website = new URL(url);
|
||||
final ReadableByteChannel rbc = Channels.newChannel(website.openStream());
|
||||
final FileOutputStream fos = new FileOutputStream(output);
|
||||
fos.getChannel().transferFrom(rbc, 0, 1 << 24);
|
||||
fos.close();
|
||||
}
|
||||
|
||||
/**
|
||||
* Saves a raw Object to a file.
|
||||
*
|
||||
* @param object The object to save.
|
||||
* @param file The file where the object will be stored.
|
||||
* @throws IOException
|
||||
*/
|
||||
public static void saveObject(Object object, File file) throws IOException {
|
||||
if (!file.exists()) {
|
||||
file.getParentFile().mkdirs();
|
||||
}
|
||||
|
||||
final ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream(file));
|
||||
oos.writeObject(object);
|
||||
oos.close();
|
||||
}
|
||||
|
||||
/**
|
||||
* Attempts to load a raw Object from a file.
|
||||
*
|
||||
* @param file The file where the object is stored.
|
||||
* @throws IOException
|
||||
*/
|
||||
public static Object loadObject(File file) throws IOException, ClassNotFoundException {
|
||||
if (!file.exists()) {
|
||||
throw new IllegalStateException();
|
||||
}
|
||||
|
||||
final ObjectInputStream oos = new ObjectInputStream(new FileInputStream(file));
|
||||
final Object object = oos.readObject();
|
||||
oos.close();
|
||||
|
||||
return object;
|
||||
}
|
||||
|
||||
/**
|
||||
* 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.
|
||||
*/
|
||||
public static File getPluginFile(Plugin plugin, String name) {
|
||||
return new File(plugin.getDataFolder(), name);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the root location of the CraftBukkit server.
|
||||
*
|
||||
* @return The current working directory.
|
||||
*/
|
||||
public static File getRoot() {
|
||||
return new File(".");
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the folder where all plugins are stored.
|
||||
*
|
||||
* @return The plugins folder.
|
||||
*/
|
||||
public static File getPluginsFolder() {
|
||||
return new File(getRoot(), "plugins");
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a file at the root of the CraftBukkit server.
|
||||
*
|
||||
* @param name The name of the file.
|
||||
* @return The requested file.
|
||||
*/
|
||||
public static File getRootFile(String name) {
|
||||
return new File(getRoot(), name);
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete a specified folder and all contents quietly.
|
||||
*
|
||||
* <p><b>Warning</b>: This method will delete files, only folders!</p>
|
||||
*
|
||||
* @param file The folder to delete.
|
||||
* @return true if the delete was successful.
|
||||
* @deprecated Not in use; Relies on CraftBukkit source
|
||||
*/
|
||||
public static boolean deleteFolder(File file) {
|
||||
if (file.exists() && file.isDirectory()) {
|
||||
//return net.minecraft.util.org.apache.commons.io.FileUtils.deleteQuietly(file);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* 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 {
|
||||
if (!file.exists()) {
|
||||
file.getParentFile().mkdirs();
|
||||
}
|
||||
|
||||
OutputStream out = new FileOutputStream(file);
|
||||
byte[] buf = new byte[1024];
|
||||
int len;
|
||||
while ((len = in.read(buf)) > 0) {
|
||||
out.write(buf, 0, len);
|
||||
}
|
||||
out.close();
|
||||
in.close();
|
||||
}
|
||||
}
|
126
src/net/pravian/bukkitlib/YamlConfig.java
Normal file
126
src/net/pravian/bukkitlib/YamlConfig.java
Normal file
|
@ -0,0 +1,126 @@
|
|||
package net.pravian.bukkitlib;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import org.apache.commons.lang.exception.ExceptionUtils;
|
||||
import org.bukkit.configuration.file.YamlConfiguration;
|
||||
import org.bukkit.plugin.Plugin;
|
||||
|
||||
/**
|
||||
* Represents a definable YAML configuration.
|
||||
*
|
||||
* @see YamlConfiguration
|
||||
*/
|
||||
public class YamlConfig extends YamlConfiguration {
|
||||
|
||||
private final Plugin PLUGIN;
|
||||
private final File CONFIG_FILE;
|
||||
private final boolean COPY_DEFAULTS;
|
||||
|
||||
/**
|
||||
* Creates a new YamlConfig instance.
|
||||
*
|
||||
* <p>Example:
|
||||
* <pre>
|
||||
* YamlConfig config = new YamlConfig(this, "config.yml", true);
|
||||
* config.load();
|
||||
* </pre></p>
|
||||
*
|
||||
* @param plugin The plugin to which the config belongs.
|
||||
* @param fileName The filename of the config file.
|
||||
* @param copyDefaults If the defaults should be copied and/loaded from a config in the plugin jar-file.
|
||||
*/
|
||||
public YamlConfig(Plugin plugin, String fileName, boolean copyDefaults) {
|
||||
this(plugin, FileUtils.getPluginFile(plugin, fileName), copyDefaults);
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a new YamlConfig instance.
|
||||
*
|
||||
* <p>Example:
|
||||
* <pre>
|
||||
* YamlConfig config = new YamlConfig(this, new File(plugin.getDataFolder() + "/players", "DarthSalamon.yml"), false);
|
||||
* config.load();
|
||||
* </pre></p>
|
||||
*
|
||||
* @param plugin The plugin to which the config belongs.
|
||||
* @param file The file of the config file.
|
||||
* @param copyDefaults If the defaults should be copied and/loaded from a config in the plugin jar-file.
|
||||
*/
|
||||
public YamlConfig(Plugin plugin, File file, boolean copyDefaults) {
|
||||
this.PLUGIN = plugin;
|
||||
this.CONFIG_FILE = file;
|
||||
this.COPY_DEFAULTS = copyDefaults;
|
||||
}
|
||||
|
||||
/**
|
||||
* Saves the configuration to the predefined file.
|
||||
*
|
||||
* @see #YamlConfig(Plugin, String, boolean)
|
||||
*/
|
||||
public void save() {
|
||||
try {
|
||||
super.save(CONFIG_FILE);
|
||||
} catch (Exception ex) {
|
||||
PLUGIN.getLogger().severe("Could not save configuration file: " + CONFIG_FILE.getName());
|
||||
PLUGIN.getLogger().severe(ExceptionUtils.getStackTrace(ex));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Loads the configuration from the predefined file.
|
||||
*
|
||||
* <p>Optionally, if loadDefaults has been set to true, the file will be copied over from the default inside the jar-file of the owning plugin.</p>
|
||||
*
|
||||
* @see #YamlConfig(Plugin, String, boolean)
|
||||
*/
|
||||
public void load() {
|
||||
try {
|
||||
if (COPY_DEFAULTS) {
|
||||
if (!CONFIG_FILE.exists()) {
|
||||
CONFIG_FILE.getParentFile().mkdirs();
|
||||
try {
|
||||
FileUtils.copy(PLUGIN.getResource(CONFIG_FILE.getName()), CONFIG_FILE);
|
||||
} catch (IOException ex) {
|
||||
PLUGIN.getLogger().severe("Could not write default configuration file: " + CONFIG_FILE.getName());
|
||||
PLUGIN.getLogger().severe(ExceptionUtils.getStackTrace(ex));
|
||||
}
|
||||
PLUGIN.getLogger().info("Installed default configuration " + CONFIG_FILE.getName());
|
||||
}
|
||||
|
||||
super.addDefaults(getDefaultConfig());
|
||||
}
|
||||
|
||||
super.load(CONFIG_FILE);
|
||||
} catch (Exception ex) {
|
||||
PLUGIN.getLogger().severe("Could not load configuration file: " + CONFIG_FILE.getName());
|
||||
PLUGIN.getLogger().severe(ExceptionUtils.getStackTrace(ex));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the raw YamlConfiguration this config is based on.
|
||||
*
|
||||
* @return The YamlConfiguration.
|
||||
* @see YamlConfiguration
|
||||
*/
|
||||
public YamlConfiguration getConfig() {
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the default configuration as been stored in the jar-file of the owning plugin.
|
||||
* @return The default configuration.
|
||||
*/
|
||||
public YamlConfiguration getDefaultConfig() {
|
||||
final YamlConfiguration DEFAULT_CONFIG = new YamlConfiguration();
|
||||
try {
|
||||
DEFAULT_CONFIG.load(PLUGIN.getResource(CONFIG_FILE.getName()));
|
||||
} catch (Throwable ex) {
|
||||
PLUGIN.getLogger().severe("Could not load default configuration: " + CONFIG_FILE.getName());
|
||||
PLUGIN.getLogger().severe(ExceptionUtils.getStackTrace(ex));
|
||||
return null;
|
||||
}
|
||||
return DEFAULT_CONFIG;
|
||||
}
|
||||
}
|
|
@ -1,5 +1,5 @@
|
|||
name: BukkitTelnet
|
||||
main: me.StevenLawson.BukkitTelnet.BukkitTelnet
|
||||
version: 3.0
|
||||
version: 4.0
|
||||
description: Telnet console access plugin.
|
||||
authors: [bekvon, Madgeek1450]
|
||||
authors: [bekvon, Madgeek1450, DarthSalamon]
|
||||
|
|
Loading…
Reference in a new issue