use of com.iCo6.system.Account in project Core by iConomy.
the class Status method perform.
@Override
public boolean perform(CommandSender sender, LinkedHashMap<String, Argument> arguments) throws InvalidUsage {
if (!hasPermissions(sender, "status"))
throw new InvalidUsage("You do not have permission to do that.");
String name = arguments.get("name").getStringValue();
String tag = template.color(Template.Node.TAG_MONEY);
boolean self = false;
if (!isConsole(sender))
if (((Player) sender).getName().equalsIgnoreCase(name))
self = true;
if (name.equals("0"))
throw new InvalidUsage("Missing <white>name<rose>: /money status <name> (new status)");
if (!Accounts.exists(name)) {
template.set(Template.Node.ERROR_ACCOUNT);
template.add("name", name);
Messaging.send(sender, tag + template.parse());
return false;
}
Account account = new Account(name);
if (arguments.get("status").getStringValue().equalsIgnoreCase("empty")) {
int current = account.getStatus();
if (self)
template.set(Template.Node.PERSONAL_STATUS);
else {
template.set(Template.Node.PLAYER_STATUS);
template.add("name", name);
}
template.add("status", current);
Messaging.send(sender, tag + template.parse());
} else {
if (!hasPermissions(sender, "status+"))
throw new InvalidUsage("You do not have permission to do that.");
int status = arguments.get("status").getIntegerValue();
account.setStatus(status);
template.set(Template.Node.ACCOUNTS_STATUS);
template.add("status", status);
Messaging.send(sender, tag + template.parse());
}
return false;
}
use of com.iCo6.system.Account in project Core by iConomy.
the class Top method perform.
@Override
public boolean perform(CommandSender sender, LinkedHashMap<String, Argument> arguments) throws InvalidUsage {
if (!hasPermissions(sender, "top"))
throw new InvalidUsage("You do not have permission to do that.");
template.set(Template.Node.TOP_OPENING);
Messaging.send(sender, template.parse());
template.set(Template.Node.TOP_ITEM);
List<Account> top = Accounts.getTopAccounts(5);
for (int i = 0; i < top.size(); i++) {
Account account = top.get(i);
template.add("i", i + 1);
template.add("name", account.name);
template.add("amount", account.getHoldings().toString());
Messaging.send(sender, template.parse());
}
return false;
}
use of com.iCo6.system.Account in project Core by iConomy.
the class iConomy method onEnable.
public void onEnable() {
final long startTime = System.nanoTime();
final long endTime;
try {
// Localize locale to prevent issues.
Locale.setDefault(Locale.US);
// Server & Terminal Support
Server = getServer();
if (getServer().getServerName().equalsIgnoreCase("craftbukkit")) {
TerminalSupport = ((CraftServer) getServer()).getReader().getTerminal().isANSISupported();
}
// Get general plugin information
info = getDescription();
// Plugin directory setup
directory = getDataFolder();
if (!directory.exists())
directory.mkdir();
// Extract Files
Common.extract("Config.yml", "Template.yml");
// Setup Configuration
Constants.load(new File(directory, "Config.yml"));
// Setup Template
Template = new Template(directory.getPath(), "Template.yml");
// Upgrade Template to 6.0.9b
LinkedHashMap<String, String> nodes = new LinkedHashMap<String, String>();
nodes.put("top.opening", "<green>-----[ <white>Wealthiest Accounts <green>]-----");
nodes.put("top.item", "<gray>+i. <green>+name <gray>- <white>+amount");
try {
Template.update(nodes);
} catch (IOException ex) {
System.out.println(ex.getMessage());
}
// Check Drivers if needed
Type type = Database.getType(Constants.Nodes.DatabaseType.toString());
if (!(type.equals(Type.InventoryDB) || type.equals(Type.MiniDB))) {
Drivers driver = null;
switch(type) {
case H2DB:
driver = Constants.Drivers.H2;
break;
case MySQL:
driver = Constants.Drivers.MySQL;
break;
case SQLite:
driver = Constants.Drivers.SQLite;
break;
case Postgre:
driver = Constants.Drivers.Postgre;
break;
}
if (driver != null)
if (!(new File("lib", driver.getFilename()).exists())) {
System.out.println("[iConomy] Downloading " + driver.getFilename() + "...");
wget.fetch(driver.getUrl(), driver.getFilename());
System.out.println("[iConomy] Finished Downloading.");
}
}
// Setup Commands
Commands.add("/money +name", new Money(this));
Commands.setPermission("money", "iConomy.holdings");
Commands.setPermission("money+", "iConomy.holdings.others");
Commands.setHelp("money", new String[] { "", "Check your balance." });
Commands.setHelp("money+", new String[] { " [name]", "Check others balance." });
Commands.add("/money -h|?|help +command", new Help(this));
Commands.setPermission("help", "iConomy.help");
Commands.setHelp("help", new String[] { " (command)", "For Help & Information." });
Commands.add("/money -t|top", new Top(this));
Commands.setPermission("top", "iConomy.top");
Commands.setHelp("top", new String[] { "", "View top economical accounts." });
Commands.add("/money -p|pay +name +amount:empty", new Payment(this));
Commands.setPermission("pay", "iConomy.payment");
Commands.setHelp("pay", new String[] { " [name] [amount]", "Send money to others." });
Commands.add("/money -c|create +name", new Create(this));
Commands.setPermission("create", "iConomy.accounts.create");
Commands.setHelp("create", new String[] { " [name]", "Create an account." });
Commands.add("/money -r|remove +name", new Remove(this));
Commands.setPermission("remove", "iConomy.accounts.remove");
Commands.setHelp("remove", new String[] { " [name]", "Remove an account." });
Commands.add("/money -g|give +name +amount:empty", new Give(this));
Commands.setPermission("give", "iConomy.accounts.give");
Commands.setHelp("give", new String[] { " [name] [amount]", "Give money." });
Commands.add("/money -t|take +name +amount:empty", new Take(this));
Commands.setPermission("take", "iConomy.accounts.take");
Commands.setHelp("take", new String[] { " [name] [amount]", "Take money." });
Commands.add("/money -s|set +name +amount:empty", new Set(this));
Commands.setPermission("set", "iConomy.accounts.set");
Commands.setHelp("set", new String[] { " [name] [amount]", "Set account balance." });
Commands.add("/money -u|status +name +status:empty", new Status(this));
Commands.setPermission("status", "iConomy.accounts.status");
Commands.setPermission("status+", "iConomy.accounts.status.set");
Commands.setHelp("status", new String[] { " [name] (status)", "Check/Set account status." });
Commands.add("/money -x|purge", new Purge(this));
Commands.setPermission("purge", "iConomy.accounts.purge");
Commands.setHelp("purge", new String[] { "", "Purge all accounts with initial holdings." });
Commands.add("/money -e|empty", new Empty(this));
Commands.setPermission("empty", "iConomy.accounts.empty");
Commands.setHelp("empty", new String[] { "", "Empty database of accounts." });
// Setup Database.
try {
Database = new Database(Constants.Nodes.DatabaseType.toString(), Constants.Nodes.DatabaseUrl.toString(), Constants.Nodes.DatabaseUsername.toString(), Constants.Nodes.DatabasePassword.toString());
// If it doesn't exist, Create one.
if (Database.isSQL()) {
if (!Database.tableExists(Constants.Nodes.DatabaseTable.toString())) {
String SQL = Common.resourceToString("SQL/Core/Create-Table-" + Database.getType().toString().toLowerCase() + ".sql");
SQL = String.format(SQL, Constants.Nodes.DatabaseTable.getValue());
try {
QueryRunner run = new QueryRunner();
Connection c = iConomy.Database.getConnection();
try {
run.update(c, SQL);
} catch (SQLException ex) {
System.out.println("[iConomy] Error creating database: " + ex);
} finally {
DbUtils.close(c);
}
} catch (SQLException ex) {
System.out.println("[iConomy] Database Error: " + ex);
}
}
} else {
this.onConversion();
}
} catch (MissingDriver ex) {
System.out.println(ex.getMessage());
}
getServer().getPluginManager().registerEvents(new players(), this);
} finally {
endTime = System.nanoTime();
}
// Setup Interest
if (Constants.Nodes.Interest.getBoolean()) {
Thrun.init(new Runnable() {
public void run() {
long time = Constants.Nodes.InterestTime.getLong() * 1000L;
Interest = new Timer();
Interest.scheduleAtFixedRate(new Interest(getDataFolder().getPath()), time, time);
}
});
}
if (Constants.Nodes.Purging.getBoolean()) {
Thrun.init(new Runnable() {
public void run() {
Queried.purgeDatabase();
System.out.println("[" + info.getName() + " - " + Constants.Nodes.CodeName.toString() + "] Purged accounts with default balance.");
}
});
}
final long duration = endTime - startTime;
// Finish
System.out.println("[" + info.getName() + " - " + Constants.Nodes.CodeName.toString() + "] Enabled (" + Common.readableProfile(duration) + ")");
}
use of com.iCo6.system.Account in project Core by iConomy.
the class iConomy method onConversion.
public boolean onConversion() {
if (!Constants.Nodes.Convert.getBoolean())
return false;
Thrun.init(new Runnable() {
public void run() {
String from = Constants.Nodes.ConvertFrom.toString();
String table = Constants.Nodes.ConvertTable.toString();
String username = Constants.Nodes.ConvertUsername.toString();
String password = Constants.Nodes.ConvertPassword.toString();
String url = Constants.Nodes.ConvertURL.toString();
if (!Common.matches(from, "h2", "h2db", "h2sql", "mysql", "mysqldb"))
return;
String driver = "", dsn = "";
if (Common.matches(from, "sqlite", "h2", "h2sql", "h2db")) {
driver = "org.h2.Driver";
dsn = "jdbc:h2:" + directory + File.separator + table + ";AUTO_RECONNECT=TRUE";
username = "sa";
password = "sa";
} else if (Common.matches(from, "mysql", "mysqldb")) {
driver = "com.mysql.jdbc.Driver";
dsn = url + "/" + table;
}
if (!DbUtils.loadDriver(driver)) {
System.out.println("Please make sure the " + from + " driver library jar exists.");
return;
}
Connection old = null;
try {
old = (username.isEmpty() && password.isEmpty()) ? DriverManager.getConnection(url) : DriverManager.getConnection(url, username, password);
} catch (SQLException ex) {
System.out.println(ex);
return;
}
QueryRunner run = new QueryRunner();
try {
try {
run.query(old, "SELECT * FROM " + table, new ResultSetHandler() {
public Object handle(ResultSet rs) throws SQLException {
Account current = null;
Boolean next = rs.next();
if (next)
if (iConomy.Accounts.exists(rs.getString("username")))
current = iConomy.Accounts.get(rs.getString("username"));
else
iConomy.Accounts.create(rs.getString("username"), rs.getDouble("balance"));
if (current != null)
current.getHoldings().setBalance(rs.getDouble("balance"));
if (next)
if (iConomy.Accounts.exists(rs.getString("username")))
if (rs.getBoolean("hidden"))
iConomy.Accounts.get(rs.getString("username")).setStatus(1);
return true;
}
});
} catch (SQLException ex) {
System.out.println("[iConomy] Error issueing SQL query: " + ex);
} finally {
DbUtils.close(old);
}
} catch (SQLException ex) {
System.out.println("[iConomy] Database Error: " + ex);
}
System.out.println("[iConomy] Conversion complete. Please update your configuration, change convert to false!");
}
});
return false;
}
use of com.iCo6.system.Account in project Core by iConomy.
the class Give method perform.
@Override
public boolean perform(CommandSender sender, LinkedHashMap<String, Argument> arguments) throws InvalidUsage {
if (!hasPermissions(sender, "give"))
throw new InvalidUsage("You do not have permission to do that.");
String name = arguments.get("name").getStringValue();
String tag = template.color(Template.Node.TAG_MONEY);
Double amount;
if (name.equals("0"))
throw new InvalidUsage("Missing <white>name<rose>: /money give <name> <amount>");
if (arguments.get("amount").getStringValue().equals("empty"))
throw new InvalidUsage("Missing <white>amount<rose>: /money give <name> <amount>");
try {
amount = arguments.get("amount").getDoubleValue();
} catch (NumberFormatException e) {
throw new InvalidUsage("Invalid <white>amount<rose>, must be double.");
}
if (Double.isInfinite(amount) || Double.isNaN(amount))
throw new InvalidUsage("Invalid <white>amount<rose>, must be double.");
if (!Accounts.exists(name)) {
template.set(Template.Node.ERROR_ACCOUNT);
template.add("name", name);
Messaging.send(sender, tag + template.parse());
return false;
}
Account account = new Account(name);
account.getHoldings().add(amount);
template.set(Template.Node.PLAYER_CREDIT);
template.add("name", name);
template.add("amount", iConomy.format(amount));
Messaging.send(sender, tag + template.parse());
return false;
}
Aggregations