/src/com/mciseries/imonies/api/Vault.java

https://bitbucket.org/iseries/imonies · Java · 232 lines · 183 code · 49 blank · 0 comment · 26 complexity · 0438a31eb15672ef27c2e3a8acc94adc MD5 · raw file

  1. package com.mciseries.imonies.api;
  2. import java.util.ArrayList;
  3. import java.util.List;
  4. import java.util.logging.Logger;
  5. import net.milkbowl.vault.economy.Economy;
  6. import net.milkbowl.vault.economy.EconomyResponse;
  7. import net.milkbowl.vault.economy.EconomyResponse.ResponseType;
  8. import org.bukkit.Bukkit;
  9. import org.bukkit.Server;
  10. import org.bukkit.event.EventHandler;
  11. import org.bukkit.event.EventPriority;
  12. import org.bukkit.event.Listener;
  13. import org.bukkit.event.server.PluginDisableEvent;
  14. import org.bukkit.event.server.PluginEnableEvent;
  15. import org.bukkit.plugin.Plugin;
  16. import com.mciseries.imonies.Main;
  17. import com.mciseries.imonies.system.Utils;
  18. import com.mciseries.imonies.system.files.ConfigFile;
  19. public class Vault implements Economy {
  20. private final String name = "iMonies";
  21. private Plugin plugin = null;
  22. private Server serv = null;
  23. private Main imonies = null;
  24. private static final Logger log = Logger.getLogger("Minecraft");
  25. public Vault(Plugin plugin) {
  26. this.plugin = plugin;
  27. this.serv = Bukkit.getServer();
  28. serv.getPluginManager().registerEvents(new EconomyServerListener(this), plugin);
  29. if(imonies == null) {
  30. Plugin imon = plugin.getServer().getPluginManager().getPlugin("iMonies");
  31. if(imon != null && imon.isEnabled()) {
  32. imonies = (Main) imon;
  33. log.info(String.format("[Vault][Economy] %s hooked.", plugin.getDescription().getName(), name));
  34. }
  35. }
  36. }
  37. public boolean isEnabled() {
  38. if(plugin == null)
  39. return false;
  40. return plugin.isEnabled();
  41. }
  42. public String getName() {
  43. return name;
  44. }
  45. public boolean has(String name, String world, double amount) {
  46. return has(name, amount);
  47. }
  48. public double getBalance(String name) {
  49. if(hasAccount(name))
  50. return APi.getBalance(name);
  51. createPlayerAccount(name);
  52. return APi.getBalance(name);
  53. }
  54. public boolean createPlayerAccount(String name) {
  55. if(hasAccount(name))
  56. return false;
  57. APi.createAccount(name);
  58. return true;
  59. }
  60. public EconomyResponse withdrawPlayer(String name, double amount) {
  61. double newBalance = getBalance(name) - amount;
  62. Main.debug("Withdrawing " + amount + " from " + name + " (" + getBalance(name) + " - " + amount + " = " + newBalance + ")");
  63. if(amount < 0)
  64. return new EconomyResponse(0, 0, ResponseType.FAILURE, "Cannot withdraw negative funds.");
  65. if(hasAccount(name)) {
  66. if(has(name, amount)) {
  67. APi.setBalance(name, newBalance);
  68. return new EconomyResponse(amount, getBalance(name), ResponseType.SUCCESS, null);
  69. }
  70. else {
  71. return new EconomyResponse(0, 0, ResponseType.FAILURE, "Player does not have enough money.");
  72. }
  73. }
  74. else {
  75. return new EconomyResponse(0, 0, ResponseType.FAILURE, "Player does not have an account.");
  76. }
  77. }
  78. public EconomyResponse depositPlayer(String name, double amount) {
  79. double newBalance = getBalance(name) + amount;
  80. Main.debug("Depositing " + amount + " into " + name + " (" + getBalance(name) + " + " + amount + " = " + newBalance + ")");
  81. if(amount < 0)
  82. return new EconomyResponse(0, 0, ResponseType.FAILURE, "Cannot deposit negative funds.");
  83. if(hasAccount(name)) {
  84. if(newBalance > ConfigFile.moneyLimit)
  85. return new EconomyResponse(0, 0, ResponseType.FAILURE, "Money limit reached (" + Utils.format(ConfigFile.moneyLimit) + ".)");
  86. APi.setBalance(name, newBalance);
  87. return new EconomyResponse(amount, getBalance(name), ResponseType.SUCCESS, null);
  88. }
  89. else {
  90. return new EconomyResponse(0, 0, ResponseType.FAILURE, "Player does not have an account.");
  91. }
  92. }
  93. public String format(double amount) {
  94. return "" + amount;
  95. }
  96. public String currencyNameSingular() {
  97. return "";
  98. }
  99. public String currencyNamePlural() {
  100. return "";
  101. }
  102. public boolean has(String name, double amount) {
  103. if(!APi.hasAccount(name))
  104. return false;
  105. return (getBalance(name) >= amount);
  106. }
  107. public EconomyResponse createBank(String name, String player) {
  108. return new EconomyResponse(0, 0, ResponseType.NOT_IMPLEMENTED, "iMonies 4.0 does not yet support banks.");
  109. }
  110. public EconomyResponse deleteBank(String name) {
  111. return new EconomyResponse(0, 0, ResponseType.NOT_IMPLEMENTED, "iMonies 4.0 does not yet support banks.");
  112. }
  113. public EconomyResponse bankHas(String name, double amount) {
  114. return new EconomyResponse(0, 0, ResponseType.NOT_IMPLEMENTED, "iMonies 4.0 does not yet support banks.");
  115. }
  116. public EconomyResponse bankWithdraw(String name, double amount) {
  117. return new EconomyResponse(0, 0, ResponseType.NOT_IMPLEMENTED, "iMonies 4.0 does not yet support banks.");
  118. }
  119. public EconomyResponse bankDeposit(String name, double amount) {
  120. return new EconomyResponse(0, 0, ResponseType.NOT_IMPLEMENTED, "iMonies 4.0 does not yet support banks.");
  121. }
  122. public EconomyResponse isBankOwner(String name, String player) {
  123. return new EconomyResponse(0, 0, ResponseType.NOT_IMPLEMENTED, "iMonies 4.0 does not yet support banks.");
  124. }
  125. public EconomyResponse isBankMember(String name, String player) {
  126. return new EconomyResponse(0, 0, ResponseType.NOT_IMPLEMENTED, "iMonies 4.0 does not yet support banks.");
  127. }
  128. public EconomyResponse bankBalance(String name) {
  129. return new EconomyResponse(0, 0, ResponseType.NOT_IMPLEMENTED, "iMonies 4.0 does not yet support banks.");
  130. }
  131. public List<String> getBanks() {
  132. return new ArrayList<String>();
  133. }
  134. public boolean hasBankSupport() {
  135. return false;
  136. }
  137. public boolean hasAccount(String name) {
  138. return APi.hasAccount(name);
  139. }
  140. public boolean hasAccount(String name, String world) {
  141. return hasAccount(name);
  142. }
  143. public int fractionalDigits() {
  144. return 2;
  145. }
  146. public double getBalance(String name, String world) {
  147. return getBalance(name);
  148. }
  149. public EconomyResponse withdrawPlayer(String name, String world, double amount) {
  150. return withdrawPlayer(name, amount);
  151. }
  152. public EconomyResponse depositPlayer(String name, String world, double amount) {
  153. return depositPlayer(name, amount);
  154. }
  155. public boolean createPlayerAccount(String name, String world) {
  156. return createPlayerAccount(name);
  157. }
  158. public class EconomyServerListener implements Listener {
  159. Vault v = null;
  160. public EconomyServerListener(Vault v) {
  161. this.v = v;
  162. }
  163. @EventHandler(priority = EventPriority.MONITOR)
  164. public void onPluginEnable(PluginEnableEvent e) {
  165. if(v.imonies == null) {
  166. Plugin imon = plugin.getServer().getPluginManager().getPlugin("iMonies");
  167. if(imon != null) {
  168. v.imonies = (Main) imon;
  169. log.info(String.format("[Vault][Economy] %s hooked.", plugin.getDescription().getName(), v.name));
  170. }
  171. }
  172. }
  173. @EventHandler(priority = EventPriority.MONITOR)
  174. public void onPluginDisable(PluginDisableEvent e) {
  175. if(v.imonies != null) {
  176. if(e.getPlugin().getDescription().getName().equals("iMonies")) {
  177. v.imonies = null;
  178. log.info(String.format("[Vault][Economy] %s unhooked.", plugin.getDescription().getName(), v.name));
  179. }
  180. }
  181. }
  182. }
  183. }