2015-09-02 13:06:48 +02:00
|
|
|
package de.epiceric.shopchest;
|
|
|
|
|
|
|
|
import java.io.File;
|
|
|
|
import java.io.FileOutputStream;
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.io.InputStream;
|
|
|
|
import java.io.OutputStream;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.logging.Logger;
|
|
|
|
|
|
|
|
import org.bukkit.Bukkit;
|
|
|
|
import org.bukkit.ChatColor;
|
|
|
|
import org.bukkit.Location;
|
|
|
|
import org.bukkit.OfflinePlayer;
|
|
|
|
import org.bukkit.World;
|
|
|
|
import org.bukkit.configuration.file.YamlConfiguration;
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
import org.bukkit.inventory.ItemStack;
|
|
|
|
import org.bukkit.plugin.RegisteredServiceProvider;
|
|
|
|
import org.bukkit.plugin.java.JavaPlugin;
|
|
|
|
|
|
|
|
import de.epiceric.shopchest.config.Config;
|
|
|
|
import de.epiceric.shopchest.event.InteractShop;
|
|
|
|
import de.epiceric.shopchest.event.NotifyUpdate;
|
|
|
|
import de.epiceric.shopchest.event.ProtectChest;
|
|
|
|
import de.epiceric.shopchest.event.RegenerateShopItem;
|
2015-09-02 16:18:32 +02:00
|
|
|
import de.epiceric.shopchest.event.RegenerateShopItemAfterRemove;
|
2015-09-02 13:06:48 +02:00
|
|
|
import de.epiceric.shopchest.event.UpdateHolograms;
|
2015-09-03 20:51:30 +02:00
|
|
|
import de.epiceric.shopchest.interfaces.Utils;
|
|
|
|
import de.epiceric.shopchest.interfaces.utils.Utils_R1;
|
|
|
|
import de.epiceric.shopchest.interfaces.utils.Utils_R2;
|
|
|
|
import de.epiceric.shopchest.interfaces.utils.Utils_R3;
|
2015-09-02 13:06:48 +02:00
|
|
|
import de.epiceric.shopchest.shop.Shop;
|
2015-09-03 20:51:30 +02:00
|
|
|
import de.epiceric.shopchest.interfaces.JsonBuilder;
|
|
|
|
import de.epiceric.shopchest.interfaces.JsonBuilder.ClickAction;
|
|
|
|
import de.epiceric.shopchest.interfaces.JsonBuilder.HoverAction;
|
|
|
|
import de.epiceric.shopchest.interfaces.jsonbuilder.JsonBuilder_R1;
|
|
|
|
import de.epiceric.shopchest.interfaces.jsonbuilder.JsonBuilder_R2;
|
|
|
|
import de.epiceric.shopchest.interfaces.jsonbuilder.JsonBuilder_R3;
|
2015-09-02 13:06:48 +02:00
|
|
|
import de.epiceric.shopchest.utils.Metrics;
|
|
|
|
import de.epiceric.shopchest.utils.ShopUtils;
|
|
|
|
import de.epiceric.shopchest.utils.UpdateChecker;
|
|
|
|
import net.milkbowl.vault.economy.Economy;
|
|
|
|
import net.milkbowl.vault.permission.Permission;
|
|
|
|
|
|
|
|
public class ShopChest extends JavaPlugin{
|
|
|
|
|
|
|
|
private static ShopChest instance;
|
|
|
|
|
|
|
|
public File shopChestsFile;
|
|
|
|
public YamlConfiguration shopChests;
|
|
|
|
|
|
|
|
public static Logger logger = Logger.getLogger("Minecraft");
|
|
|
|
public static Economy econ = null;
|
|
|
|
public static Permission perm = null;
|
|
|
|
|
|
|
|
public static boolean isUpdateNeeded = false;
|
|
|
|
public static String latestVersion = "";
|
|
|
|
public static String downloadLink = "";
|
|
|
|
|
2015-09-03 20:51:30 +02:00
|
|
|
public static Utils utils;
|
|
|
|
|
2015-09-02 13:06:48 +02:00
|
|
|
public static ShopChest getInstance() {
|
|
|
|
return instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private boolean setupEconomy() {
|
|
|
|
|
|
|
|
RegisteredServiceProvider<Economy> rsp = getServer().getServicesManager().getRegistration(Economy.class);
|
|
|
|
if (rsp == null) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
econ = rsp.getProvider();
|
|
|
|
return econ != null;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private boolean setupPermissions() {
|
|
|
|
RegisteredServiceProvider<Permission> rsp = getServer().getServicesManager().getRegistration(Permission.class);
|
|
|
|
perm = rsp.getProvider();
|
|
|
|
return perm != null;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onEnable() {
|
|
|
|
|
|
|
|
if (getServer().getPluginManager().getPlugin("Vault") == null) {
|
|
|
|
logger.severe("[ShopChest] Could not find plugin 'Vault'!");
|
|
|
|
getServer().getPluginManager().disablePlugin(this);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!setupEconomy() ) {
|
|
|
|
logger.severe("[ShopChest] Could not find any Vault dependency!");
|
|
|
|
getServer().getPluginManager().disablePlugin(this);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
Metrics metrics = new Metrics(this);
|
|
|
|
metrics.start();
|
|
|
|
} catch (IOException e) {
|
|
|
|
logger.severe("[ShopChest] [PluginMetrics] Could not submit stats.");
|
|
|
|
}
|
|
|
|
|
2015-09-03 20:51:30 +02:00
|
|
|
switch (Utils.getVersion(getServer())) {
|
|
|
|
|
|
|
|
case "v1_8_R1": utils = new Utils_R1(); break;
|
|
|
|
case "v1_8_R2": utils = new Utils_R2(); break;
|
|
|
|
case "v1_8_R3": utils = new Utils_R3(); break;
|
|
|
|
default:
|
|
|
|
logger.severe("[ShopChest] Incompatible Server Version!");
|
|
|
|
getServer().getPluginManager().disablePlugin(this);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-09-02 13:06:48 +02:00
|
|
|
setupPermissions();
|
|
|
|
|
|
|
|
instance = this;
|
|
|
|
reloadConfig();
|
|
|
|
saveDefaultConfig();
|
|
|
|
|
|
|
|
UpdateChecker uc = new UpdateChecker(this, getDescription().getWebsite());
|
|
|
|
logger.info("[ShopChest] Checking for Updates");
|
|
|
|
if(uc.updateNeeded()) {
|
|
|
|
latestVersion = uc.getVersion();
|
|
|
|
downloadLink = uc.getLink();
|
|
|
|
isUpdateNeeded = true;
|
|
|
|
Bukkit.getConsoleSender().sendMessage("[ShopChest] " + ChatColor.GOLD + "New version available: " + ChatColor.RED + latestVersion);
|
|
|
|
} else {
|
|
|
|
logger.info("[ShopChest] No new version available");
|
|
|
|
isUpdateNeeded = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isUpdateNeeded) {
|
|
|
|
for (Player p : getServer().getOnlinePlayers()) {
|
|
|
|
if (p.isOp() || perm.has(p, "shopchest.notification.update")) {
|
2015-09-03 20:51:30 +02:00
|
|
|
JsonBuilder jb;
|
|
|
|
switch (Utils.getVersion(getServer())) {
|
|
|
|
case "v1_8_R1": jb = new JsonBuilder_R1(Config.update_available(latestVersion)).withHoverEvent(HoverAction.SHOW_TEXT, Config.click_to_download()).withClickEvent(ClickAction.OPEN_URL, downloadLink); break;
|
|
|
|
case "v1_8_R2": jb = new JsonBuilder_R2(Config.update_available(latestVersion)).withHoverEvent(HoverAction.SHOW_TEXT, Config.click_to_download()).withClickEvent(ClickAction.OPEN_URL, downloadLink); break;
|
|
|
|
case "v1_8_R3": jb = new JsonBuilder_R3(Config.update_available(latestVersion)).withHoverEvent(HoverAction.SHOW_TEXT, Config.click_to_download()).withClickEvent(ClickAction.OPEN_URL, downloadLink); break;
|
|
|
|
default: return;
|
|
|
|
}
|
2015-09-02 13:06:48 +02:00
|
|
|
jb.sendJson(p);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
File shopChestDataFolder = new File(getDataFolder(), "data");
|
|
|
|
shopChestDataFolder.mkdirs();
|
|
|
|
|
|
|
|
shopChestsFile = new File(getDataFolder(), "/data/shops.yml");
|
|
|
|
if (!shopChestsFile.exists())
|
|
|
|
try {shopChestsFile.createNewFile();} catch (IOException e) {e.printStackTrace();}
|
|
|
|
|
|
|
|
File itemNamesFile = new File(getDataFolder(), "item_names.txt");
|
|
|
|
|
|
|
|
if (!itemNamesFile.exists())
|
|
|
|
try {itemNamesFile.createNewFile();} catch (IOException e) {e.printStackTrace();}
|
|
|
|
|
|
|
|
copy(getResource("item_names"), itemNamesFile);
|
|
|
|
|
|
|
|
shopChests = YamlConfiguration.loadConfiguration(shopChestsFile);
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
Commands.registerCommand(new Commands(this, Config.main_command_name(), "Manage Shops.", "", new ArrayList<String>()), this);
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
|
|
|
|
initializeShops();
|
|
|
|
|
|
|
|
getServer().getPluginManager().registerEvents(new UpdateHolograms(), this);
|
|
|
|
getServer().getPluginManager().registerEvents(new RegenerateShopItem(), this);
|
|
|
|
getServer().getPluginManager().registerEvents(new InteractShop(this), this);
|
|
|
|
getServer().getPluginManager().registerEvents(new NotifyUpdate(), this);
|
|
|
|
getServer().getPluginManager().registerEvents(new ProtectChest(), this);
|
2015-09-02 16:18:32 +02:00
|
|
|
if (getServer().getPluginManager().getPlugin("ClearLag") != null) getServer().getPluginManager().registerEvents(new RegenerateShopItemAfterRemove(), this);
|
2015-09-02 13:06:48 +02:00
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onDisable() {
|
|
|
|
|
2015-09-03 20:51:30 +02:00
|
|
|
utils.removeShops();
|
2015-09-02 13:06:48 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
private void initializeShops() {
|
|
|
|
|
|
|
|
Bukkit.getConsoleSender().sendMessage("[ShopChest] Found " + String.valueOf(shopChests.getKeys(false).size()) + " Shops");
|
|
|
|
|
|
|
|
for (String key : shopChests.getKeys(false)) {
|
|
|
|
|
|
|
|
OfflinePlayer vendor = shopChests.getOfflinePlayer(key + ".vendor");
|
|
|
|
int locationX = shopChests.getInt(key + ".location.x");
|
|
|
|
int locationY = shopChests.getInt(key + ".location.y");
|
|
|
|
int locationZ = shopChests.getInt(key + ".location.z");
|
|
|
|
World locationWorld = getServer().getWorld(shopChests.getString(key + ".location.world"));
|
|
|
|
Location location = new Location(locationWorld, locationX, locationY, locationZ);
|
|
|
|
ItemStack product = shopChests.getItemStack(key + ".product");
|
|
|
|
double buyPrice = shopChests.getDouble(key + ".price.buy");
|
|
|
|
double sellPrice = shopChests.getDouble(key + ".price.sell");
|
|
|
|
boolean infinite = shopChests.getBoolean(key + ".infinite");
|
|
|
|
|
|
|
|
ShopUtils.addShop(new Shop(this, vendor, product, location, buyPrice, sellPrice, infinite));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void copy(InputStream in, File file) {
|
|
|
|
try {
|
|
|
|
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();
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|