|
@@ -8,8 +8,14 @@ import java.io.FileOutputStream;
|
|
import java.io.FileReader;
|
|
import java.io.FileReader;
|
|
import java.io.IOException;
|
|
import java.io.IOException;
|
|
import java.io.ObjectInputStream;
|
|
import java.io.ObjectInputStream;
|
|
|
|
+import java.io.ObjectStreamException;
|
|
|
|
|
|
import javax.swing.JFileChooser;
|
|
import javax.swing.JFileChooser;
|
|
|
|
+import javax.swing.JOptionPane;
|
|
|
|
+
|
|
|
|
+import eu.tankernn.accounts.util.encryption.EncryptedComplex;
|
|
|
|
+import eu.tankernn.accounts.util.encryption.Encryption;
|
|
|
|
+import eu.tankernn.accounts.util.encryption.InvalidPasswordException;
|
|
|
|
|
|
public class FileManager {
|
|
public class FileManager {
|
|
public static final JFileChooser FILE_CHOOSER = new JFileChooser("data/");
|
|
public static final JFileChooser FILE_CHOOSER = new JFileChooser("data/");
|
|
@@ -17,7 +23,61 @@ public class FileManager {
|
|
private static final File lastFilenameCache = new File(
|
|
private static final File lastFilenameCache = new File(
|
|
System.getProperty("user.home") + File.separator + "accountmanager" + File.separator + "lastFile.txt");
|
|
System.getProperty("user.home") + File.separator + "accountmanager" + File.separator + "lastFile.txt");
|
|
|
|
|
|
- public static File getLastFileFromCache() {
|
|
|
|
|
|
+ private static File selectFile(boolean saveAs) {
|
|
|
|
+ if (getLastFileFromCache() == null)
|
|
|
|
+ saveAs = true;
|
|
|
|
+ if (saveAs)
|
|
|
|
+ FILE_CHOOSER.showSaveDialog(null);
|
|
|
|
+ return saveAs ? FILE_CHOOSER.getSelectedFile() : getLastFileFromCache();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Loads the accounts in the file specified.
|
|
|
|
+ *
|
|
|
|
+ * @return A JSON-string containing the account information.
|
|
|
|
+ * @throws InvalidPasswordException
|
|
|
|
+ */
|
|
|
|
+ public static String openFile(char[] password) throws IOException, InvalidPasswordException {
|
|
|
|
+ File file = getLastFileFromCache();
|
|
|
|
+ Object data = null;
|
|
|
|
+ try {
|
|
|
|
+ // Try to read the file as a byte[][]
|
|
|
|
+ data = readObjectFromFile(file, byte[][].class);
|
|
|
|
+ } catch (ObjectStreamException | ClassNotFoundException e1) {
|
|
|
|
+ // Read the file as string
|
|
|
|
+ data = readFileAsString(file);
|
|
|
|
+ }
|
|
|
|
+ String jsonString;
|
|
|
|
+ // If '[' is first, the JSON is *probably* valid
|
|
|
|
+ if (data instanceof String && ((String) data).startsWith("[")) {
|
|
|
|
+ jsonString = new String((String) data);
|
|
|
|
+ } else {
|
|
|
|
+ if (password == null)
|
|
|
|
+ throw new InvalidPasswordException();
|
|
|
|
+ // Try to decrypt the string or byte[][]
|
|
|
|
+ jsonString = data instanceof String ? Encryption.decryptEncoded((String) data, password)
|
|
|
|
+ : Encryption.decrypt(new EncryptedComplex((byte[][]) data), password);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return jsonString;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public static void saveFile(String data, boolean saveAs, char[] password) {
|
|
|
|
+ saveFile(Encryption.encryptEncoded(data, password), saveAs);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 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.
|
|
|
|
+ */
|
|
|
|
+ public static void saveFile(String data, boolean saveAs) {
|
|
|
|
+ writeStringToFile(selectFile(saveAs), data);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private static File getLastFileFromCache() {
|
|
// Open last file
|
|
// Open last file
|
|
try {
|
|
try {
|
|
// Create file to cache last filename
|
|
// Create file to cache last filename
|
|
@@ -26,7 +86,7 @@ public class FileManager {
|
|
lastFilenameCache.createNewFile();
|
|
lastFilenameCache.createNewFile();
|
|
return null;
|
|
return null;
|
|
}
|
|
}
|
|
- String lastFilePath = FileManager.readFileAsString(lastFilenameCache);
|
|
|
|
|
|
+ String lastFilePath = readFileAsString(lastFilenameCache);
|
|
File f = new File(lastFilePath);
|
|
File f = new File(lastFilePath);
|
|
FILE_CHOOSER.setSelectedFile(f);
|
|
FILE_CHOOSER.setSelectedFile(f);
|
|
return f;
|
|
return f;
|
|
@@ -36,31 +96,18 @@ public class FileManager {
|
|
return null;
|
|
return null;
|
|
}
|
|
}
|
|
|
|
|
|
- public static void writeLastFileToCache(File file) {
|
|
|
|
|
|
+ static void writeLastFileToCache(File file) {
|
|
if (file == null)
|
|
if (file == null)
|
|
lastFilenameCache.delete();
|
|
lastFilenameCache.delete();
|
|
// Remember this filename
|
|
// Remember this filename
|
|
if (!file.equals(lastFilenameCache)) { // Don't remember the cache file
|
|
if (!file.equals(lastFilenameCache)) { // Don't remember the cache file
|
|
- try {
|
|
|
|
- writeStringToFile(lastFilenameCache, file.getAbsolutePath());
|
|
|
|
- } catch (FileNotFoundException e) {
|
|
|
|
- e.printStackTrace();
|
|
|
|
- }
|
|
|
|
|
|
+ writeStringToFile(lastFilenameCache, file.getAbsolutePath());
|
|
FILE_CHOOSER.setSelectedFile(file);
|
|
FILE_CHOOSER.setSelectedFile(file);
|
|
}
|
|
}
|
|
-
|
|
|
|
- }
|
|
|
|
|
|
|
|
- public static String readFileAsString(File file) throws IOException {
|
|
|
|
- if (file == null) {
|
|
|
|
- if (FILE_CHOOSER.showOpenDialog(null) == JFileChooser.CANCEL_OPTION)
|
|
|
|
- throw new FileNotFoundException();
|
|
|
|
- else
|
|
|
|
- file = FILE_CHOOSER.getSelectedFile();
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- System.out.println("Opening file " + file.getAbsolutePath());
|
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
+ private static String readFileAsString(File file) throws IOException {
|
|
writeLastFileToCache(file);
|
|
writeLastFileToCache(file);
|
|
|
|
|
|
BufferedReader reader = new BufferedReader(new FileReader(file));
|
|
BufferedReader reader = new BufferedReader(new FileReader(file));
|
|
@@ -74,40 +121,24 @@ public class FileManager {
|
|
return builder.toString();
|
|
return builder.toString();
|
|
}
|
|
}
|
|
|
|
|
|
- public static void writeStringToFile(boolean saveAs, String contents) throws FileNotFoundException {
|
|
|
|
- if (getLastFileFromCache() == null)
|
|
|
|
- saveAs = true;
|
|
|
|
- if (saveAs)
|
|
|
|
- FILE_CHOOSER.showSaveDialog(null);
|
|
|
|
- writeStringToFile(saveAs ? FILE_CHOOSER.getSelectedFile() : getLastFileFromCache(), contents);
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public static void writeStringToFile(File file, String contents) throws FileNotFoundException {
|
|
|
|
|
|
+ private static void writeStringToFile(File file, String contents) {
|
|
writeBytesToFile(file, contents.getBytes());
|
|
writeBytesToFile(file, contents.getBytes());
|
|
}
|
|
}
|
|
|
|
|
|
- public static void writeBytesToFile(File file, byte[] data) throws FileNotFoundException {
|
|
|
|
- if (file == null) {
|
|
|
|
- FILE_CHOOSER.showSaveDialog(null);
|
|
|
|
- file = FILE_CHOOSER.getSelectedFile();
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- FileOutputStream writer = new FileOutputStream(file);
|
|
|
|
-
|
|
|
|
|
|
+ private static void writeBytesToFile(File file, byte[] data) {
|
|
try {
|
|
try {
|
|
|
|
+ FileOutputStream writer = new FileOutputStream(file);
|
|
writer.write(data, 0, data.length);
|
|
writer.write(data, 0, data.length);
|
|
writer.flush();
|
|
writer.flush();
|
|
writer.close();
|
|
writer.close();
|
|
} catch (IOException e) {
|
|
} catch (IOException e) {
|
|
|
|
+ JOptionPane.showOptionDialog(null, "Unable to create or write to file \'" + file.getAbsolutePath() + "\'.",
|
|
|
|
+ "Error writing file", JOptionPane.OK_OPTION, JOptionPane.ERROR_MESSAGE, null, null, null);
|
|
e.printStackTrace();
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
- public static File latestFile() {
|
|
|
|
- return FILE_CHOOSER.getSelectedFile();
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
public static <T> T readObjectFromFile(File file, Class<T> class1)
|
|
public static <T> T readObjectFromFile(File file, Class<T> class1)
|
|
throws ClassNotFoundException, FileNotFoundException, IOException {
|
|
throws ClassNotFoundException, FileNotFoundException, IOException {
|
|
if (file == null) {
|
|
if (file == null) {
|