|
@@ -1,5 +1,6 @@
|
|
package eu.tankernn.accounts;
|
|
package eu.tankernn.accounts;
|
|
|
|
|
|
|
|
+import java.io.File;
|
|
import java.io.IOException;
|
|
import java.io.IOException;
|
|
import java.util.ArrayList;
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import java.util.List;
|
|
@@ -34,7 +35,8 @@ public class AccountManager {
|
|
* Initializes the account list using the last file opened, if available.
|
|
* Initializes the account list using the last file opened, if available.
|
|
* Otherwise creates an empty list.
|
|
* Otherwise creates an empty list.
|
|
*
|
|
*
|
|
- * @param refresh A runnable that gets called when the account list changes.
|
|
|
|
|
|
+ * @param refresh
|
|
|
|
+ * A runnable that gets called when the account list changes.
|
|
*/
|
|
*/
|
|
public static void init(Runnable refresh, boolean openLast) {
|
|
public static void init(Runnable refresh, boolean openLast) {
|
|
AccountManager.refresh = refresh;
|
|
AccountManager.refresh = refresh;
|
|
@@ -50,14 +52,17 @@ public class AccountManager {
|
|
public static void openFile() {
|
|
public static void openFile() {
|
|
String jsonString;
|
|
String jsonString;
|
|
lastPassword = null;
|
|
lastPassword = null;
|
|
|
|
+ File f = CachedFileChooser.selectFile(false);
|
|
while (true)
|
|
while (true)
|
|
try {
|
|
try {
|
|
- jsonString = FileManager.openFile(CachedFileChooser.selectFile(false), lastPassword);
|
|
|
|
- lastPassword = PasswordDialog.showPasswordDialog("The data is encrypted, please enter the password to decrypt it.");
|
|
|
|
|
|
+ jsonString = FileManager.openFile(f, lastPassword);
|
|
break;
|
|
break;
|
|
} catch (InvalidPasswordException e) {
|
|
} catch (InvalidPasswordException e) {
|
|
|
|
+ lastPassword = PasswordDialog
|
|
|
|
+ .showPasswordDialog("The data is encrypted, please enter the password to decrypt it.");
|
|
continue;
|
|
continue;
|
|
- } catch (IOException e) {
|
|
|
|
|
|
+ } catch (CancellationException | IOException e) {
|
|
|
|
+ e.printStackTrace();
|
|
newFile();
|
|
newFile();
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
@@ -86,15 +91,17 @@ public class AccountManager {
|
|
/**
|
|
/**
|
|
* Saves the current list of accounts to a file.
|
|
* Saves the current list of accounts to a file.
|
|
*
|
|
*
|
|
- * @param saveAs Determines whether the user should be prompted to specify a
|
|
|
|
- * new filename, or if the last filename should be used.
|
|
|
|
|
|
+ * @param saveAs
|
|
|
|
+ * Determines whether the user should be prompted to specify a
|
|
|
|
+ * new filename, or if the last filename should be used.
|
|
*/
|
|
*/
|
|
public static void saveFile(boolean saveAs) {
|
|
public static void saveFile(boolean saveAs) {
|
|
String data = exportJSON();
|
|
String data = exportJSON();
|
|
if (saveWithEncryption) {
|
|
if (saveWithEncryption) {
|
|
while (lastPassword == null || lastPassword.length < 5) {
|
|
while (lastPassword == null || lastPassword.length < 5) {
|
|
try {
|
|
try {
|
|
- lastPassword = PasswordDialog.showPasswordDialog("Select a password to encrypt the account file with. (At least 5 characters, preferrably longer)");
|
|
|
|
|
|
+ lastPassword = PasswordDialog.showPasswordDialog(
|
|
|
|
+ "Select a password to encrypt the account file with. (At least 5 characters, preferrably longer)");
|
|
} catch (CancellationException ex) {
|
|
} catch (CancellationException ex) {
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
@@ -114,16 +121,17 @@ public class AccountManager {
|
|
*/
|
|
*/
|
|
public static boolean closeFile() {
|
|
public static boolean closeFile() {
|
|
if (AccountManager.hasUnsavedChanges()) {
|
|
if (AccountManager.hasUnsavedChanges()) {
|
|
- int option = JOptionPane.showOptionDialog(null, "Would you like to save changes before exit?", "Save changes", JOptionPane.YES_NO_CANCEL_OPTION, JOptionPane.QUESTION_MESSAGE, null, null, 0);
|
|
|
|
|
|
+ int option = JOptionPane.showOptionDialog(null, "Would you like to save changes before exit?",
|
|
|
|
+ "Save changes", JOptionPane.YES_NO_CANCEL_OPTION, JOptionPane.QUESTION_MESSAGE, null, null, 0);
|
|
|
|
|
|
switch (option) {
|
|
switch (option) {
|
|
- case JOptionPane.YES_OPTION:
|
|
|
|
- saveFile(false);
|
|
|
|
- break;
|
|
|
|
- case JOptionPane.NO_OPTION:
|
|
|
|
- break;
|
|
|
|
- default:
|
|
|
|
- return false;
|
|
|
|
|
|
+ case JOptionPane.YES_OPTION:
|
|
|
|
+ saveFile(false);
|
|
|
|
+ break;
|
|
|
|
+ case JOptionPane.NO_OPTION:
|
|
|
|
+ break;
|
|
|
|
+ default:
|
|
|
|
+ return false;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
accounts.clear();
|
|
accounts.clear();
|
|
@@ -153,7 +161,8 @@ public class AccountManager {
|
|
/**
|
|
/**
|
|
* Adds the specified account to the list and refreshes the window instance.
|
|
* Adds the specified account to the list and refreshes the window instance.
|
|
*
|
|
*
|
|
- * @param account The <code>Account</code> to be added to the list
|
|
|
|
|
|
+ * @param account
|
|
|
|
+ * The <code>Account</code> to be added to the list
|
|
*/
|
|
*/
|
|
public static void addAccount(Account account) {
|
|
public static void addAccount(Account account) {
|
|
accounts.add(account);
|
|
accounts.add(account);
|
|
@@ -164,11 +173,13 @@ public class AccountManager {
|
|
* Searches the list of accounts for ones matching the search string by name
|
|
* Searches the list of accounts for ones matching the search string by name
|
|
* or account number.
|
|
* or account number.
|
|
*
|
|
*
|
|
- * @param s The search string
|
|
|
|
|
|
+ * @param s
|
|
|
|
+ * The search string
|
|
* @return The list of matching accounts
|
|
* @return The list of matching accounts
|
|
*/
|
|
*/
|
|
public static List<Account> search(String s) {
|
|
public static List<Account> search(String s) {
|
|
- return accounts.stream().filter(a -> a.accountNumber.toLowerCase().contains(s.toLowerCase()) || a.toString().toLowerCase().contains(s.toLowerCase())).collect(Collectors.toList());
|
|
|
|
|
|
+ return accounts.stream().filter(a -> a.accountNumber.toLowerCase().contains(s.toLowerCase())
|
|
|
|
+ || a.toString().toLowerCase().contains(s.toLowerCase())).collect(Collectors.toList());
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
@@ -183,7 +194,7 @@ public class AccountManager {
|
|
* @return The account, if it was found
|
|
* @return The account, if it was found
|
|
*/
|
|
*/
|
|
public static Optional<Account> getAccountByNumber(String accountNumber) {
|
|
public static Optional<Account> getAccountByNumber(String accountNumber) {
|
|
- return accounts.stream().filter(accountNumber::equals).findFirst();
|
|
|
|
|
|
+ return accounts.stream().filter(a -> a.accountNumber.equals(accountNumber)).findFirst();
|
|
}
|
|
}
|
|
|
|
|
|
public static boolean isSavingWithEncryption() {
|
|
public static boolean isSavingWithEncryption() {
|