package de.Linus122.TimeIsMoney; import static de.Linus122.TimeIsMoney.tools.Utils.CC; import java.io.File; import java.io.FileOutputStream; import java.io.FileReader; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.sql.Timestamp; import java.util.ArrayList; import java.util.Calendar; import java.util.Date; import java.util.HashMap; import java.util.HashSet; import java.util.List; import java.util.Random; import java.util.Set; import java.util.UUID; import java.util.stream.Collectors; import org.bukkit.Bukkit; import org.bukkit.Location; import org.bukkit.Server; import org.bukkit.command.ConsoleCommandSender; import org.bukkit.configuration.file.FileConfiguration; import org.bukkit.configuration.file.YamlConfiguration; import org.bukkit.entity.Player; import org.bukkit.plugin.RegisteredServiceProvider; import org.bukkit.plugin.java.JavaPlugin; import org.bukkit.scheduler.BukkitTask; import com.earth2me.essentials.Essentials; import net.md_5.bungee.api.ChatMessageType; import net.md_5.bungee.api.chat.TextComponent; import net.milkbowl.vault.economy.EconomyResponse; import net.milkbowl.vault.economy.EconomyResponse.ResponseType; import xyz.spaceio.spacegui.GUIProvider; import xyz.spaceio.spacegui.SpaceGUI; /** * The main class for TimeIsMoney * * @author Linus122 * @since 1.9.6.1 */ public class Main extends JavaPlugin { /** * The economy being used by vault. */ static net.milkbowl.vault.economy.Economy economy = null; /** * The config version number. */ private static final int CFG_VERSION = 12; /** * The TimeIsMoney version. */ static String PL_VERSION; /** * The TimeIsMoney config. */ static FileConfiguration finalconfig; /** * The list of worlds where the payout feature will be disabled. */ private static List disabledWorlds; /** * The payouts listed in the config. */ private final List payouts = new ArrayList<>(); /** * Players that have already reached the payout limit for today */ private Set payoutLimitReached = new HashSet<>(); /** * The time online in seconds of each player by UUID. */ private final HashMap onlineSeconds = new HashMap<>(); /** * The last location of each player by UUID. */ private final HashMap lastLocation = new HashMap<>(); /** * The console logger. */ private final ConsoleCommandSender clogger = this.getServer().getConsoleSender(); /** * Main task for keeping track of player's online time */ private BukkitTask playtimeWatcherTask; /** * {@inheritDoc} */ @SuppressWarnings({"deprecation"}) @Override public void onEnable() { this.getCommand("timeismoney").setExecutor(new Cmd(this)); PL_VERSION = this.getDescription().getVersion(); GUIProvider.registerPlugin(this); //this.reloadConfig(); File config = new File("plugins/TimeIsMoney/config.yml"); if (config.exists()) { YamlConfiguration cfg = YamlConfiguration.loadConfiguration(config); String old_config = "config_old " + cfg.getInt("configuration-version") + ".yml"; if (cfg.contains("configuration-version")) { if (cfg.getInt("configuration-version") < CFG_VERSION) { clogger.sendMessage(CC("[TimeIsMoney] &cYOU ARE USING AN OLD CONFIG-VERSION. The plugin CANT work with this.")); clogger.sendMessage(CC("[TimeIsMoney] &cI have created an new config for you. The old one is saved as config_old.yml.")); config.renameTo(new File("plugins/TimeIsMoney/" + old_config)); } } this.saveDefaultConfig(); for (String key : cfg.getConfigurationSection("").getKeys(true)) { if (!this.getConfig().contains(key)) { this.getConfig().set(key, cfg.get(key)); } } } else { this.saveDefaultConfig(); } finalconfig = this.getConfig(); disabledWorlds = getConfig().getStringList("disabled_in_worlds"); if (getConfig().getBoolean("enable_atm")) new ATM(this); startPlaytimeWatcher(); // Placeholder API if(Bukkit.getPluginManager().getPlugin("PlaceholderAPI") != null) { new NamePlaceholder(this).register(); } Bukkit.getScheduler().scheduleSyncRepeatingTask(this, () -> { if (PluginData.getLastRefreshDay() != new Date().getDay() && PluginData.getPayedMoney().size() > 0) { //Next day, clear payouts! log("Cleared all payouts for last day"); PluginData.getPayedMoney().clear(); PluginData.setLastRefreshDay(new Date().getDay()); } }, 20L * 60, 20L * 60 * 15); setupEconomy(); PluginData.loadData(); loadPayouts(); if (Bukkit.getPluginManager().isPluginEnabled("Essentials") && this.getConfig().getBoolean("afk_use_essentials")) { clogger.sendMessage("Time is Money: Essentials found. Hook in it -> Will use Essentials's AFK feature if afk is enabled."); } new Metrics(this); clogger.sendMessage(CC("&aTime is Money &2v" + PL_VERSION + " &astarted.")); } public void startPlaytimeWatcher() { playtimeWatcherTask = Bukkit.getScheduler().runTaskTimer(this, () -> { try { for (Player p : Bukkit.getOnlinePlayers()) { if (disabledWorlds.contains(p.getWorld().getName())) continue; if (onlineSeconds.containsKey(p.getUniqueId())) { onlineSeconds.put(p.getUniqueId(), onlineSeconds.get(p.getUniqueId()) + 1); } else { onlineSeconds.put(p.getUniqueId(), 1); } if (onlineSeconds.get(p.getUniqueId()) >= getConfig().getInt("give_money_every_second")) { pay(p); onlineSeconds.remove(p.getUniqueId()); } } } catch (NullPointerException ignored) { } }, 20L, 20L); } /** * {@inheritDoc} */ @Override public void onDisable() { playtimeWatcherTask.cancel(); PluginData.saveData(); } /** * Reloads TimeIsMoney. */ void reload() { this.reloadConfig(); finalconfig = this.getConfig(); if (getConfig().getBoolean("enable_atm")) new ATM(this); loadPayouts(); } /** * Loads the payouts. */ private void loadPayouts() { try { payouts.clear(); for (String key : finalconfig.getConfigurationSection("payouts").getKeys(false)) { Payout payout = new Payout(); payout.max_payout_per_day = finalconfig.getDouble("payouts." + key + ".max_payout_per_day"); payout.payout_amount = finalconfig.getDouble("payouts." + key + ".payout_amount"); if (finalconfig.isSet("payouts." + key + ".permission")) { payout.permission = finalconfig.getString("payouts." + key + ".permission"); } if (finalconfig.isSet("payouts." + key + ".commands")) { payout.commands = finalconfig.getStringList("payouts." + key + ".commands"); } if (finalconfig.isSet("payouts." + key + ".commands_if_afk")) { payout.commands_if_afk = finalconfig.getStringList("payouts." + key + ".commands_if_afk"); } if (finalconfig.isSet("payouts." + key + ".chance")) { payout.chance = finalconfig.getInt("payouts." + key + ".chance"); } payouts.add(payout); } clogger.sendMessage(CC("[TimeIsMoney] &aLoaded " + finalconfig.getConfigurationSection("payouts").getKeys(false).size() + " Payouts!")); } catch (Exception e) { clogger.sendMessage(CC("[TimeIsMoney] &aFailed to load Payouts! (May made a mistake in config.yml?)")); } } /** * Sets up the vault economy. * * @return True if the economy was set up, false otherwise. */ private boolean setupEconomy() { RegisteredServiceProvider economyProvider = getServer().getServicesManager().getRegistration(net.milkbowl.vault.economy.Economy.class); if (economyProvider != null) { economy = economyProvider.getProvider(); } return economy != null; } /** * Gets a list of applicable payouts for a player. Only returns one payout when using chance. * * @param player The player to get the payouts of. * @return A list of payouts */ private List getApplicablePayoutsForPlayer(Player player){ if (!this.getConfig().getBoolean("choose-payout-by-chance")) { // Choose applicable payouts by permission return payouts.stream().filter(payout -> player.hasPermission(payout.permission) || payout.permission.length() == 0).collect(Collectors.toList()); }else { // Get a random payout Random rnd = new Random(); List list = new ArrayList<>(); for (Payout payout : payouts) { for (int i = 0; i < payout.chance; i++) list.add(payout); } List returnlist = new ArrayList<>(); returnlist.add(list.get(rnd.nextInt(list.size() - 1))); return returnlist; } } /** * Pays the specified player. * * @param p The player to pay. */ private void pay(Player p) { if (p == null) return; //REACHED MAX PAYOUT CHECK double payed = 0; if (PluginData.getPayedMoney().containsKey(p.getName())) { payed = PluginData.getPayedMoney().get(p.getName()); } List applicablePayouts = this.getApplicablePayoutsForPlayer(p); if (applicablePayouts.size() == 0) { return; } Payout payout = new Payout(); if(this.getConfig().getBoolean("merge-payouts")) { // Mering multiple payouts to one for (Payout payout_ : applicablePayouts) { payout.commands.addAll(payout_.commands); payout.commands_if_afk.addAll(payout_.commands_if_afk); payout.payout_amount += payout_.payout_amount; payout.max_payout_per_day += payout_.max_payout_per_day; } }else { payout = applicablePayouts.get(applicablePayouts.size() - 1); } if (payout.max_payout_per_day != -1) { if (payed >= payout.max_payout_per_day) { //Reached max payout if(finalconfig.getBoolean("display-payout-limit-reached-message-once") && payoutLimitReached.contains(p.getUniqueId())) { return; } if (finalconfig.getBoolean("display-messages-in-chat")) { sendMessage(p, finalconfig.getString("message_payoutlimit_reached")); } if (finalconfig.getBoolean("display-messages-in-actionbar")) { sendActionbar(p, finalconfig.getString("message_payoutlimit_reached_actionbar")); } if(finalconfig.getBoolean("display-payout-limit-reached-message-once")) payoutLimitReached.add(p.getUniqueId()); return; } } if (!finalconfig.getBoolean("allow-multiple-accounts") && !p.hasPermission("tim.multipleaccountsbypass")) { int same_address_count = (int) Bukkit.getOnlinePlayers().stream().filter(player -> player.getAddress().getHostString().equals(p.getAddress().getHostString())).count(); if (same_address_count > finalconfig.getInt("max-multiple-accounts")) { sendMessage(p, finalconfig.getString("message_multiple_ips")); return; } } //AFK CHECK boolean afk = false; double afkPercent = 0.0D; if (!p.hasPermission("tim.afkbypass")) { //ESENTIALS_AFK_FEATURE if (Bukkit.getServer().getPluginManager().isPluginEnabled("Essentials") && this.getConfig().getBoolean("afk_use_essentials")) { Essentials essentials = (com.earth2me.essentials.Essentials) Bukkit.getServer().getPluginManager().getPlugin("Essentials"); if (essentials.getUser(p).isAfk()) { afk = true; } } else { //PLUGIN_AFK_FEATURE if (lastLocation.containsKey(p.getUniqueId())) { //AntiAFK if (lastLocation.get(p.getUniqueId()).getX() == p.getLocation().getX() && lastLocation.get(p.getUniqueId()).getY() == p.getLocation().getY() && lastLocation.get(p.getUniqueId()).getZ() == p.getLocation().getZ() || lastLocation.get(p.getUniqueId()).getYaw() == p.getLocation().getYaw()) { afk = true; } } } if (afk) { if (!finalconfig.getBoolean("afk_payout")) { // Payout is disabled if (finalconfig.getBoolean("display-messages-in-chat")) { sendMessage(p, finalconfig.getString("message_afk")); } if (finalconfig.getBoolean("display-messages-in-actionbar")) { sendActionbar(p, finalconfig.getString("message_afk_actionbar")); } return; } else { // Payout is enabled if (!finalconfig.isSet("afk_payout_percent")) { afkPercent = 100; // Payout % isn't set (older config), so assume 100% as before } else { afkPercent = finalconfig.getDouble("afk_payout_percent"); } } } } //DEPOSIT double payout_amt = afk ? payout.payout_amount * (afkPercent / 100) : payout.payout_amount; // Take money from bank if (finalconfig.getString("bank-account").length() > 0) { EconomyResponse response = economy.bankWithdraw(finalconfig.getString("bank-account"), payout_amt); if(response.type == ResponseType.FAILURE) { System.out.println("§cFailed to take money from bank account: " + finalconfig.getString("bank-account") + " amount " + payout_amt); return; } } if (finalconfig.getBoolean("store-money-in-bank")) { ATM.depositBank(p, payout_amt); } else { double before = 0; if (economy.hasAccount(p)) { before = economy.getBalance(p); } economy.depositPlayer(p, payout_amt); log(p.getName() + ": Deposited: " + payout_amt + " Balance-before: " + before + " Balance-now: " + economy.getBalance(p)); } if (!afk) { if (finalconfig.getBoolean("display-messages-in-chat")) { sendMessage(p, CC(finalconfig.getString("message")).replace("%money%", economy.format(payout_amt))); } if (finalconfig.getBoolean("display-messages-in-actionbar")) { sendActionbar(p, CC(finalconfig.getString("message_actionbar")).replace("%money%", economy.format(payout_amt))); } for (String cmd : payout.commands) { dispatchCommandSync(cmd.replace("/", "").replaceAll("%player%", p.getName())); } } else { if (finalconfig.getBoolean("display-messages-in-chat") && finalconfig.isSet("message_afk_payout")) { sendMessage(p, CC(finalconfig.getString("message_afk_payout").replace("%money%", economy.format(payout_amt)).replace("%percent%", "" + afkPercent))); } if (finalconfig.getBoolean("display-messages-in-actionbar") && finalconfig.isSet("message_afk_actionbar_payout")) { sendActionbar(p, CC(finalconfig.getString("message_afk_actionbar_payout").replace("%money%", economy.format(payout_amt)).replace("%percent%", "" + afkPercent))); } for (String cmd : payout.commands_if_afk) { dispatchCommandSync(cmd.replace("/", "").replaceAll("%player%", p.getName())); } } //ADD PAYED MONEY if (PluginData.getPayedMoney().containsKey(p.getName())) { PluginData.getPayedMoney().put(p.getName(), PluginData.getPayedMoney().get(p.getName()) + payout_amt); } else { PluginData.getPayedMoney().put(p.getName(), payout_amt); } lastLocation.put(p.getUniqueId(), p.getLocation()); // clear payout limit reached message if(finalconfig.getBoolean("display-payout-limit-reached-message-once")) payoutLimitReached.remove(p.getUniqueId()); } /** * Dispatches a command as sync. * * @param cmd The command to dispatch sync. */ private void dispatchCommandSync(final String cmd) { final Server server = this.getServer(); this.getServer().getScheduler().runTask(this, () -> server.dispatchCommand(server.getConsoleSender(), cmd)); } /** * Logs debug information if enabled in the config. * * @param msg The debug message to log. */ @SuppressWarnings("deprecation") private void log(String msg) { if (!this.getConfig().getBoolean("debug-log")) { return; } Timestamp currentTimestamp = new Timestamp(Calendar.getInstance().getTime().getTime()); File file = new File("plugins/TimeIsMoney/log.txt"); try { if (!file.exists()) { file.createNewFile(); } FileReader pr = new FileReader(file); int number; StringBuffer text = new StringBuffer(); while ((number = pr.read()) != -1) { text.append((char) number); } text.append(currentTimestamp.toGMTString()).append(":").append(msg).append("\n"); PrintWriter pw = new PrintWriter(file); pw.print(text); pw.close(); } catch (IOException e) { e.printStackTrace(); } } /** * Sends a chat message that supports color codes to the specified player. * * @param p The player to send the chat message to. * @param msg The message the chat should give the player. */ private void sendMessage(Player p, String msg) { if (msg == null) return; if (msg.length() == 0) return; p.sendMessage(CC(msg)); } /** * Sends an actionbar message to the specified player. * * @param player The player to send the actionbar message to. * @param message The message the actionbar should give to the player. */ private void sendActionbar(final Player player, final String message) { if (message.length() == 0) return; int times = finalconfig.getInt("display-messages-in-actionbar-time"); if (times == 1) { sendSingleActionbarMessage(player, CC(message)); } else if (times > 1) { sendSingleActionbarMessage(player, CC(message)); times--; for (int i = 0; i < times; i++) { Bukkit.getScheduler().scheduleSyncDelayedTask(this, () -> sendSingleActionbarMessage(player, CC(message)), 20L * i); } } } private void sendSingleActionbarMessage(final Player player, final String message) { String packageName = this.getServer().getClass().getPackage().getName(); int version = Integer.parseInt(packageName.substring(packageName.lastIndexOf('.') + 1).split("_")[1]); if(version == 8 || version == 9) { // 1_8 -> 1_9 sendActionbarReflect(player, message); return; } else if (version < 8) { // no action bar support return; } player.spigot().sendMessage(ChatMessageType.ACTION_BAR, new TextComponent(message)); } private void sendActionbarReflect(final Player player, final String message) { String packageName = this.getServer().getClass().getPackage().getName(); String version = packageName.substring(packageName.lastIndexOf('.') + 1); try { Object ichatbasecomponent = Class.forName("net.minecraft.server." + version + ".IChatBaseComponent$ChatSerializer").getDeclaredMethod("a", String.class).invoke(null, "{\"text\": \"" + CC(message) + "\"}"); Object packet = Class.forName("net.minecraft.server." + version + ".PacketPlayOutChat").getConstructor(Class.forName("net.minecraft.server." + version + ".IChatBaseComponent"), byte.class).newInstance(ichatbasecomponent, (byte) 2); Object craftPlayer = Class.forName("org.bukkit.craftbukkit." + version + ".entity.CraftPlayer").cast(player); Object nmsPlayer = Class.forName("org.bukkit.craftbukkit." + version + ".entity.CraftPlayer").getMethod("getHandle").invoke(craftPlayer); Object pCon = Class.forName("net.minecraft.server." + version + ".EntityPlayer").getField("playerConnection").get(nmsPlayer); Class.forName("net.minecraft.server." + version + ".PlayerConnection").getMethod("sendPacket", Class.forName("net.minecraft.server." + version + ".Packet")).invoke(pCon, packet); } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); } } }