summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/api/Economy.java
blob: c694d63fd30436244ee3387ac6eeb22666e8d418 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
package com.earth2me.essentials.api;

import com.earth2me.essentials.EssentialsConf;
import com.earth2me.essentials.EssentialsUserConf;
import static com.earth2me.essentials.I18n.tl;
import com.earth2me.essentials.Trade;
import com.earth2me.essentials.User;
import static com.earth2me.essentials.api.Economy.add;
import static com.earth2me.essentials.api.Economy.divide;
import static com.earth2me.essentials.api.Economy.format;
import static com.earth2me.essentials.api.Economy.getMoneyExact;
import static com.earth2me.essentials.api.Economy.hasEnough;
import static com.earth2me.essentials.api.Economy.hasLess;
import static com.earth2me.essentials.api.Economy.hasMore;
import static com.earth2me.essentials.api.Economy.multiply;
import static com.earth2me.essentials.api.Economy.setMoney;
import static com.earth2me.essentials.api.Economy.substract;
import com.earth2me.essentials.utils.NumberUtil;
import com.earth2me.essentials.utils.StringUtil;
import com.google.common.base.Charsets;
import java.io.File;
import java.math.BigDecimal;
import java.math.MathContext;
import java.util.UUID;
import java.util.logging.Level;
import java.util.logging.Logger;
import net.ess3.api.IEssentials;
import net.ess3.api.MaxMoneyException;


/**
 * Instead of using this api directly, we recommend to use the register plugin: http://bit.ly/RegisterMethod
 */
public class Economy
{
	public Economy()
	{
	}
	private static final Logger logger = Logger.getLogger("Essentials");
	private static IEssentials ess;
	private static final String noCallBeforeLoad = "Essentials API is called before Essentials is loaded.";
	public static final MathContext MATH_CONTEXT = MathContext.DECIMAL128;

	/**
	 * @param aEss the ess to set
	 */
	public static void setEss(IEssentials aEss)
	{
		ess = aEss;
	}

	private static void createNPCFile(String name)
	{
		File folder = new File(ess.getDataFolder(), "userdata");
		name = StringUtil.safeString(name);
		if (!folder.exists())
		{
			folder.mkdirs();
		}
		UUID npcUUID = UUID.nameUUIDFromBytes(("NPC:" + name).getBytes(Charsets.UTF_8));
		EssentialsUserConf npcConfig = new EssentialsUserConf(name, npcUUID, new File(folder, npcUUID.toString() + ".yml"));
		npcConfig.load();
		npcConfig.setProperty("npc", true);
		npcConfig.setProperty("lastAccountName", name);
		npcConfig.setProperty("money", ess.getSettings().getStartingBalance());
		npcConfig.forceSave();
		ess.getUserMap().trackUUID(npcUUID, name, true);
	}

	private static void deleteNPC(String name)
	{
		User user = ess.getUser(name);
		user.reset();
	}

	private static User getUserByName(String name)
	{
		if (ess == null)
		{
			throw new RuntimeException(noCallBeforeLoad);
		}
		return ess.getUser(name);
	}

	/**
	 * Returns the balance of a user
	 *
	 * @param name Name of the user
	 * @return balance
	 * @throws UserDoesNotExistException
	 */
	@Deprecated
	public static double getMoney(String name) throws UserDoesNotExistException
	{
		return getMoneyExact(name).doubleValue();
	}

	public static BigDecimal getMoneyExact(String name) throws UserDoesNotExistException
	{
		User user = getUserByName(name);
		if (user == null)
		{
			throw new UserDoesNotExistException(name);
		}
		return user.getMoney();
	}

	/**
	 * Sets the balance of a user
	 *
	 * @param name Name of the user
	 * @param balance The balance you want to set
	 * @throws UserDoesNotExistException If a user by that name does not exists
	 * @throws NoLoanPermittedException If the user is not allowed to have a negative balance
	 */
	@Deprecated
	public static void setMoney(String name, double balance) throws UserDoesNotExistException, NoLoanPermittedException
	{
		try
		{
			setMoney(name, BigDecimal.valueOf(balance));
		}
		catch (ArithmeticException e)
		{
			logger.log(Level.WARNING, "Failed to set balance of " + name + " to " + balance + ": " + e.getMessage(), e);
		}
	}

	public static void setMoney(String name, BigDecimal balance) throws UserDoesNotExistException, NoLoanPermittedException
	{
		User user = getUserByName(name);
		if (user == null)
		{
			throw new UserDoesNotExistException(name);
		}
		if (balance.compareTo(ess.getSettings().getMinMoney()) < 0)
		{
			throw new NoLoanPermittedException();
		}
		if (balance.signum() < 0 && !user.isAuthorized("essentials.eco.loan"))
		{
			throw new NoLoanPermittedException();
		}
		try
		{
			user.setMoney(balance);
		}
		catch (MaxMoneyException ex)
		{
			//TODO: Update API to show max balance errors
		}
		Trade.log("API", "Set", "API", name, new Trade(balance, ess), null, null, null, ess);
	}

	/**
	 * Adds money to the balance of a user
	 *
	 * @param name Name of the user
	 * @param amount The money you want to add
	 * @throws UserDoesNotExistException If a user by that name does not exists
	 * @throws NoLoanPermittedException If the user is not allowed to have a negative balance
	 */
	@Deprecated
	public static void add(String name, double amount) throws UserDoesNotExistException, NoLoanPermittedException
	{
		try
		{
			add(name, BigDecimal.valueOf(amount));
		}
		catch (ArithmeticException e)
		{
			logger.log(Level.WARNING, "Failed to add " + amount + " to balance of " + name + ": " + e.getMessage(), e);
		}
	}

	public static void add(String name, BigDecimal amount) throws UserDoesNotExistException, NoLoanPermittedException, ArithmeticException
	{
		BigDecimal result = getMoneyExact(name).add(amount, MATH_CONTEXT);
		setMoney(name, result);
		Trade.log("API", "Add", "API", name, new Trade(amount, ess), null, null, null, ess);
	}

	/**
	 * Substracts money from the balance of a user
	 *
	 * @param name Name of the user
	 * @param amount The money you want to substract
	 * @throws UserDoesNotExistException If a user by that name does not exists
	 * @throws NoLoanPermittedException If the user is not allowed to have a negative balance
	 */
	@Deprecated
	public static void subtract(String name, double amount) throws UserDoesNotExistException, NoLoanPermittedException
	{
		try
		{
			substract(name, BigDecimal.valueOf(amount));
		}
		catch (ArithmeticException e)
		{
			logger.log(Level.WARNING, "Failed to substract " + amount + " of balance of " + name + ": " + e.getMessage(), e);
		}
	}

	public static void substract(String name, BigDecimal amount) throws UserDoesNotExistException, NoLoanPermittedException, ArithmeticException
	{
		BigDecimal result = getMoneyExact(name).subtract(amount, MATH_CONTEXT);
		setMoney(name, result);
		Trade.log("API", "Subtract", "API", name, new Trade(amount, ess), null, null, null, ess);
	}

	/**
	 * Divides the balance of a user by a value
	 *
	 * @param name Name of the user
	 * @param value The balance is divided by this value
	 * @throws UserDoesNotExistException If a user by that name does not exists
	 * @throws NoLoanPermittedException If the user is not allowed to have a negative balance
	 */
	@Deprecated
	public static void divide(String name, double amount) throws UserDoesNotExistException, NoLoanPermittedException
	{
		try
		{
			divide(name, BigDecimal.valueOf(amount));
		}
		catch (ArithmeticException e)
		{
			logger.log(Level.WARNING, "Failed to divide balance of " + name + " by " + amount + ": " + e.getMessage(), e);
		}
	}

	public static void divide(String name, BigDecimal amount) throws UserDoesNotExistException, NoLoanPermittedException, ArithmeticException
	{
		BigDecimal result = getMoneyExact(name).divide(amount, MATH_CONTEXT);
		setMoney(name, result);
		Trade.log("API", "Divide", "API", name, new Trade(amount, ess), null, null, null, ess);
	}

	/**
	 * Multiplies the balance of a user by a value
	 *
	 * @param name Name of the user
	 * @param value The balance is multiplied by this value
	 * @throws UserDoesNotExistException If a user by that name does not exists
	 * @throws NoLoanPermittedException If the user is not allowed to have a negative balance
	 */
	@Deprecated
	public static void multiply(String name, double amount) throws UserDoesNotExistException, NoLoanPermittedException
	{
		try
		{
			multiply(name, BigDecimal.valueOf(amount));
		}
		catch (ArithmeticException e)
		{
			logger.log(Level.WARNING, "Failed to multiply balance of " + name + " by " + amount + ": " + e.getMessage(), e);
		}
	}

	public static void multiply(String name, BigDecimal amount) throws UserDoesNotExistException, NoLoanPermittedException, ArithmeticException
	{
		BigDecimal result = getMoneyExact(name).multiply(amount, MATH_CONTEXT);
		setMoney(name, result);
		Trade.log("API", "Multiply", "API", name, new Trade(amount, ess), null, null, null, ess);
	}

	/**
	 * Resets the balance of a user to the starting balance
	 *
	 * @param name Name of the user
	 * @throws UserDoesNotExistException If a user by that name does not exists
	 * @throws NoLoanPermittedException If the user is not allowed to have a negative balance
	 */
	public static void resetBalance(String name) throws UserDoesNotExistException, NoLoanPermittedException
	{
		if (ess == null)
		{
			throw new RuntimeException(noCallBeforeLoad);
		}
		setMoney(name, ess.getSettings().getStartingBalance());
		Trade.log("API", "Reset", "API", name, new Trade(BigDecimal.ZERO, ess), null, null, null, ess);
	}

	/**
	 * @param name Name of the user
	 * @param amount The amount of money the user should have
	 * @return true, if the user has more or an equal amount of money
	 * @throws UserDoesNotExistException If a user by that name does not exists
	 */
	@Deprecated
	public static boolean hasEnough(String name, double amount) throws UserDoesNotExistException
	{
		try
		{
			return hasEnough(name, BigDecimal.valueOf(amount));
		}
		catch (ArithmeticException e)
		{
			logger.log(Level.WARNING, "Failed to compare balance of " + name + " with " + amount + ": " + e.getMessage(), e);
			return false;
		}
	}

	public static boolean hasEnough(String name, BigDecimal amount) throws UserDoesNotExistException, ArithmeticException
	{
		return amount.compareTo(getMoneyExact(name)) <= 0;
	}

	/**
	 * @param name Name of the user
	 * @param amount The amount of money the user should have
	 * @return true, if the user has more money
	 * @throws UserDoesNotExistException If a user by that name does not exists
	 */
	@Deprecated
	public static boolean hasMore(String name, double amount) throws UserDoesNotExistException
	{
		try
		{
			return hasMore(name, BigDecimal.valueOf(amount));
		}
		catch (ArithmeticException e)
		{
			logger.log(Level.WARNING, "Failed to compare balance of " + name + " with " + amount + ": " + e.getMessage(), e);
			return false;
		}
	}

	public static boolean hasMore(String name, BigDecimal amount) throws UserDoesNotExistException, ArithmeticException
	{
		return amount.compareTo(getMoneyExact(name)) < 0;
	}

	/**
	 * @param name Name of the user
	 * @param amount The amount of money the user should not have
	 * @return true, if the user has less money
	 * @throws UserDoesNotExistException If a user by that name does not exists
	 */
	@Deprecated
	public static boolean hasLess(String name, double amount) throws UserDoesNotExistException
	{
		try
		{
			return hasLess(name, BigDecimal.valueOf(amount));
		}
		catch (ArithmeticException e)
		{
			logger.log(Level.WARNING, "Failed to compare balance of " + name + " with " + amount + ": " + e.getMessage(), e);
			return false;
		}
	}

	public static boolean hasLess(String name, BigDecimal amount) throws UserDoesNotExistException, ArithmeticException
	{
		return amount.compareTo(getMoneyExact(name)) > 0;
	}

	/**
	 * Test if the user has a negative balance
	 *
	 * @param name Name of the user
	 * @return true, if the user has a negative balance
	 * @throws UserDoesNotExistException If a user by that name does not exists
	 */
	public static boolean isNegative(String name) throws UserDoesNotExistException
	{
		return getMoneyExact(name).signum() < 0;
	}

	/**
	 * Formats the amount of money like all other Essentials functions. Example: $100000 or $12345.67
	 *
	 * @param amount The amount of money
	 * @return Formatted money
	 */
	@Deprecated
	public static String format(double amount)
	{
		try
		{
			return format(BigDecimal.valueOf(amount));
		}
		catch (NumberFormatException e)
		{
			logger.log(Level.WARNING, "Failed to display " + amount + ": " + e.getMessage(), e);
			return "NaN";
		}
	}

	public static String format(BigDecimal amount)
	{
		if (ess == null)
		{
			throw new RuntimeException(noCallBeforeLoad);
		}
		return NumberUtil.displayCurrency(amount, ess);
	}

	/**
	 * Test if a player exists to avoid the UserDoesNotExistException
	 *
	 * @param name Name of the user
	 * @return true, if the user exists
	 */
	public static boolean playerExists(String name)
	{
		return getUserByName(name) != null;
	}

	/**
	 * Test if a player is a npc
	 *
	 * @param name Name of the player
	 * @return true, if it's a npc
	 * @throws UserDoesNotExistException
	 */
	public static boolean isNPC(String name) throws UserDoesNotExistException
	{
		User user = getUserByName(name);
		if (user == null)
		{
			throw new UserDoesNotExistException(name);
		}
		return user.isNPC();
	}

	/**
	 * Creates dummy files for a npc, if there is no player yet with that name.
	 *
	 * @param name Name of the player
	 * @return true, if a new npc was created
	 */
	public static boolean createNPC(String name)
	{
		User user = getUserByName(name);
		if (user == null)
		{
			createNPCFile(name);
			return true;
		}
		return false;
	}

	/**
	 * Deletes a user, if it is marked as npc.
	 *
	 * @param name Name of the player
	 * @throws UserDoesNotExistException
	 */
	public static void removeNPC(String name) throws UserDoesNotExistException
	{
		User user = getUserByName(name);
		if (user == null)
		{
			throw new UserDoesNotExistException(name);
		}
		deleteNPC(name);
	}
}