Account.java 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. package eu.tankernn.accounts;
  2. import java.math.BigInteger;
  3. import java.security.SecureRandom;
  4. import java.util.ArrayList;
  5. import java.util.List;
  6. import org.json.JSONArray;
  7. import org.json.JSONException;
  8. import org.json.JSONObject;
  9. public class Account {
  10. private List<AccountEvent> history;
  11. private String firstName, lastName, accountNumber;
  12. public Account(String firstName, String lastName) {
  13. do {
  14. accountNumber = new BigInteger(20, new SecureRandom()).toString();
  15. } while (AccountManager.getAccountByNumber(accountNumber).isPresent());
  16. this.firstName = firstName;
  17. this.lastName = lastName;
  18. this.history = new ArrayList<AccountEvent>();
  19. }
  20. private Account(String accountNumber, String firstName, String lastName, List<AccountEvent> history) {
  21. this(firstName, lastName);
  22. this.accountNumber = accountNumber;
  23. this.history = history;
  24. calculateBalance();
  25. }
  26. public static Account fromJSON(JSONObject obj) throws JSONException {
  27. List<AccountEvent> history = new ArrayList<AccountEvent>();
  28. JSONArray arr = obj.getJSONArray("history");
  29. for (int i = 0; i < arr.length(); i++) {
  30. history.add(AccountEvent.fromJSON(arr.getJSONObject(i)));
  31. }
  32. return new Account(obj.getString("accountNumber"), obj.getString("firstName"), obj.getString("lastName"), history);
  33. }
  34. public String getFirstName() {
  35. return firstName;
  36. }
  37. public String getLastName() {
  38. return lastName;
  39. }
  40. public List<AccountEvent> getHistory() {
  41. return history;
  42. }
  43. public String getAccountNumber() {
  44. return accountNumber;
  45. }
  46. public String toString() {
  47. return firstName + " " + lastName;
  48. }
  49. public double calculateBalance() {
  50. double newBalance = 0;
  51. for (AccountEvent e : history) {
  52. newBalance += e.getBalanceChange();
  53. }
  54. return newBalance;
  55. }
  56. }