|
@@ -10,7 +10,6 @@ import java.io.IOException;
|
|
|
import java.io.ObjectInputStream;
|
|
|
import java.io.ObjectStreamException;
|
|
|
|
|
|
-import javax.swing.JFileChooser;
|
|
|
import javax.swing.JOptionPane;
|
|
|
|
|
|
import eu.tankernn.accounts.util.encryption.EncryptedComplex;
|
|
@@ -18,18 +17,7 @@ import eu.tankernn.accounts.util.encryption.Encryption;
|
|
|
import eu.tankernn.accounts.util.encryption.InvalidPasswordException;
|
|
|
|
|
|
public class FileManager {
|
|
|
- public static final JFileChooser FILE_CHOOSER = new JFileChooser("data/");
|
|
|
-
|
|
|
- private static final File lastFilenameCache = new File(
|
|
|
- System.getProperty("user.home") + File.separator + "accountmanager" + File.separator + "lastFile.txt");
|
|
|
-
|
|
|
- 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.
|
|
@@ -37,8 +25,7 @@ public class FileManager {
|
|
|
* @return A JSON-string containing the account information.
|
|
|
* @throws InvalidPasswordException
|
|
|
*/
|
|
|
- public static String openFile(char[] password) throws IOException, InvalidPasswordException {
|
|
|
- File file = getLastFileFromCache();
|
|
|
+ public static String openFile(File file, char[] password) throws IOException, InvalidPasswordException {
|
|
|
Object data = null;
|
|
|
try {
|
|
|
// Try to read the file as a byte[][]
|
|
@@ -62,54 +49,11 @@ public class FileManager {
|
|
|
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);
|
|
|
+ public static void saveFile(File file, String data, char[] password) {
|
|
|
+ saveFile(file, Encryption.encryptEncoded(data, password));
|
|
|
}
|
|
|
|
|
|
- private static File getLastFileFromCache() {
|
|
|
- // Open last file
|
|
|
- try {
|
|
|
- // Create file to cache last filename
|
|
|
- if (!lastFilenameCache.exists()) {
|
|
|
- lastFilenameCache.getParentFile().mkdirs();
|
|
|
- lastFilenameCache.createNewFile();
|
|
|
- return null;
|
|
|
- }
|
|
|
- String lastFilePath = readFileAsString(lastFilenameCache);
|
|
|
- File f = new File(lastFilePath);
|
|
|
- FILE_CHOOSER.setSelectedFile(f);
|
|
|
- return f;
|
|
|
- } catch (IOException e) {
|
|
|
- e.printStackTrace();
|
|
|
- }
|
|
|
- return null;
|
|
|
- }
|
|
|
-
|
|
|
- static void writeLastFileToCache(File file) {
|
|
|
- if (file == null)
|
|
|
- lastFilenameCache.delete();
|
|
|
- // Remember this filename
|
|
|
- if (!file.equals(lastFilenameCache)) { // Don't remember the cache file
|
|
|
- writeStringToFile(lastFilenameCache, file.getAbsolutePath());
|
|
|
- FILE_CHOOSER.setSelectedFile(file);
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- private static String readFileAsString(File file) throws IOException {
|
|
|
- writeLastFileToCache(file);
|
|
|
-
|
|
|
+ static String readFileAsString(File file) throws IOException {
|
|
|
BufferedReader reader = new BufferedReader(new FileReader(file));
|
|
|
StringBuilder builder = new StringBuilder();
|
|
|
|
|
@@ -120,8 +64,11 @@ public class FileManager {
|
|
|
|
|
|
return builder.toString();
|
|
|
}
|
|
|
-
|
|
|
- private static void writeStringToFile(File file, String contents) {
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Writes a string to a file.
|
|
|
+ */
|
|
|
+ public static void saveFile(File file, String contents) {
|
|
|
writeBytesToFile(file, contents.getBytes());
|
|
|
}
|
|
|
|
|
@@ -141,14 +88,9 @@ public class FileManager {
|
|
|
|
|
|
public static <T> T readObjectFromFile(File file, Class<T> class1)
|
|
|
throws ClassNotFoundException, FileNotFoundException, IOException {
|
|
|
- if (file == null) {
|
|
|
- FILE_CHOOSER.showOpenDialog(null);
|
|
|
- file = FILE_CHOOSER.getSelectedFile();
|
|
|
- }
|
|
|
ObjectInputStream in = new ObjectInputStream(new FileInputStream(file));
|
|
|
T obj = class1.cast(in.readObject());
|
|
|
in.close();
|
|
|
- writeLastFileToCache(file);
|
|
|
return obj;
|
|
|
}
|
|
|
}
|