AccountManager.java 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. package eu.tankernn.accounts;
  2. import java.io.IOException;
  3. import java.util.ArrayList;
  4. import java.util.List;
  5. import java.util.Optional;
  6. import java.util.concurrent.CancellationException;
  7. import java.util.stream.Collectors;
  8. import javax.swing.JOptionPane;
  9. import com.google.gson.Gson;
  10. import com.google.gson.reflect.TypeToken;
  11. import eu.tankernn.accounts.frame.PasswordDialog;
  12. import eu.tankernn.accounts.util.encryption.InvalidPasswordException;
  13. public class AccountManager {
  14. public static final String CURRENCY = "SEK";
  15. public static final Gson GSON = new Gson();
  16. private static String lastJSONString = "[]";
  17. private static boolean saveWithEncryption = true;
  18. private static char[] lastPassword;
  19. private static List<Account> accounts = new ArrayList<Account>();
  20. /**
  21. * Called when account list changes.
  22. */
  23. private static Runnable refresh;
  24. /**
  25. * Initializes the account list using the last file opened, if available.
  26. * Otherwise creates an empty list.
  27. *
  28. * @param refresh
  29. * A runnable that gets called when the account list changes.
  30. */
  31. public static void init(Runnable refresh, boolean openLast) {
  32. AccountManager.refresh = refresh;
  33. if (openLast)
  34. openFile();
  35. else
  36. newFile();
  37. }
  38. /**
  39. * Loads the accounts in the file specified.
  40. */
  41. public static void openFile() {
  42. String jsonString;
  43. lastPassword = null;
  44. while (true)
  45. try {
  46. jsonString = FileManager.openFile(lastPassword);
  47. lastPassword = PasswordDialog
  48. .showPasswordDialog("The data is encrypted, please enter the password to decrypt it.");
  49. break;
  50. } catch (InvalidPasswordException e) {
  51. continue;
  52. } catch (IOException e) {
  53. newFile();
  54. return;
  55. }
  56. accounts = parseJSON(jsonString);
  57. lastJSONString = jsonString;
  58. refresh.run();
  59. }
  60. /**
  61. * Clears the account list and creates a new file to write the new accounts
  62. * to.
  63. */
  64. public static void newFile() {
  65. if (!closeFile())
  66. return;
  67. FileManager.writeLastFileToCache(null);
  68. lastPassword = null;
  69. accounts.clear();
  70. lastJSONString = exportJSON();
  71. refresh.run();
  72. }
  73. /**
  74. * Saves the current list of accounts to a file.
  75. *
  76. * @param saveAs
  77. * Determines whether the user should be prompted to specify a
  78. * new filename, or if the last filename should be used.
  79. */
  80. public static void saveFile(boolean saveAs) {
  81. String data = exportJSON();
  82. if (saveWithEncryption) {
  83. while (lastPassword == null || lastPassword.length < 5) {
  84. try {
  85. lastPassword = PasswordDialog.showPasswordDialog(
  86. "Select a password to encrypt the account file with. (At least 5 characters, preferrably longer)");
  87. } catch (CancellationException ex) {
  88. return;
  89. }
  90. }
  91. FileManager.saveFile(data, saveAs, lastPassword);
  92. } else {
  93. FileManager.saveFile(data, saveAs);
  94. }
  95. lastJSONString = data;
  96. }
  97. /**
  98. * Asks the user to save the current file if any changes have been made.
  99. *
  100. * @return <code>false</code> if the user clicked cancel. <code>true</code>
  101. * otherwise.
  102. */
  103. public static boolean closeFile() {
  104. if (AccountManager.hasUnsavedChanges()) {
  105. int option = JOptionPane.showOptionDialog(null, "Would you like to save changes before exit?",
  106. "Save changes", JOptionPane.YES_NO_CANCEL_OPTION, JOptionPane.QUESTION_MESSAGE, null, null, 0);
  107. switch (option) {
  108. case JOptionPane.YES_OPTION:
  109. saveFile(false);
  110. break;
  111. case JOptionPane.NO_OPTION:
  112. break;
  113. default:
  114. return false;
  115. }
  116. }
  117. accounts.clear();
  118. refresh.run();
  119. return true;
  120. }
  121. private static List<Account> parseJSON(String jsonString) {
  122. return GSON.fromJson(jsonString, new TypeToken<ArrayList<Account>>() {
  123. }.getType());
  124. }
  125. /**
  126. * Encodes the current list of accounts into JSON.
  127. *
  128. * @return The string containing the JSON-encoded string representing the
  129. * current list of accounts.
  130. */
  131. public static String exportJSON() {
  132. return GSON.toJson(accounts);
  133. }
  134. public static boolean hasUnsavedChanges() {
  135. return !exportJSON().equals(lastJSONString);
  136. }
  137. /**
  138. * Adds the specified account to the list and refreshes the window instance.
  139. *
  140. * @param account
  141. * The <code>Account</code> to be added to the list
  142. */
  143. public static void addAccount(Account account) {
  144. accounts.add(account);
  145. refresh.run();
  146. }
  147. /**
  148. * Searches the list of accounts for ones matching the search string by name
  149. * or account number.
  150. *
  151. * @param s
  152. * The search string
  153. * @return The list of matching accounts
  154. */
  155. public static List<Account> search(String s) {
  156. return accounts.stream().filter(a -> a.getAccountNumber().toLowerCase().contains(s.toLowerCase())
  157. || a.toString().toLowerCase().contains(s.toLowerCase())).collect(Collectors.toList());
  158. }
  159. public static List<Account> getAccounts() {
  160. return accounts;
  161. }
  162. /**
  163. * Searches the list of accounts for one with the specified account number.
  164. *
  165. * @param accountNumber
  166. * @return The account, if it was found
  167. */
  168. public static Optional<Account> getAccountByNumber(String accountNumber) {
  169. return accounts.stream().filter(a -> a.getAccountNumber().equals(accountNumber)).findFirst();
  170. }
  171. public static boolean isSavingWithEncryption() {
  172. return saveWithEncryption;
  173. }
  174. public static void setSaveWithEncryption(boolean saveWithEncryption) {
  175. AccountManager.saveWithEncryption = saveWithEncryption;
  176. }
  177. }