|
@@ -17,9 +17,7 @@ import org.cryptomator.cryptofs.CryptoFileSystem;
|
|
|
import org.cryptomator.cryptofs.CryptoFileSystemProperties;
|
|
|
import org.cryptomator.cryptofs.CryptoFileSystemProperties.FileSystemFlags;
|
|
|
import org.cryptomator.cryptofs.CryptoFileSystemProvider;
|
|
|
-import org.cryptomator.cryptofs.VaultConfig;
|
|
|
import org.cryptomator.cryptofs.VaultConfig.UnverifiedVaultConfig;
|
|
|
-import org.cryptomator.cryptofs.VaultConfigLoadException;
|
|
|
import org.cryptomator.cryptofs.common.FileSystemCapabilityChecker;
|
|
|
import org.cryptomator.cryptolib.api.CryptoException;
|
|
|
import org.cryptomator.cryptolib.api.MasterkeyLoader;
|
|
@@ -38,8 +36,6 @@ import javafx.beans.property.BooleanProperty;
|
|
|
import javafx.beans.property.ObjectProperty;
|
|
|
import javafx.beans.property.SimpleBooleanProperty;
|
|
|
import java.io.IOException;
|
|
|
-import java.nio.charset.StandardCharsets;
|
|
|
-import java.nio.file.Files;
|
|
|
import java.nio.file.Path;
|
|
|
import java.nio.file.Paths;
|
|
|
import java.util.EnumSet;
|
|
@@ -62,6 +58,7 @@ public class Vault {
|
|
|
private final AtomicReference<CryptoFileSystem> cryptoFileSystem;
|
|
|
private final VaultState state;
|
|
|
private final ObjectProperty<Exception> lastKnownException;
|
|
|
+ private final VaultConfigWrapper configWrapper;
|
|
|
private final VaultStats stats;
|
|
|
private final StringBinding displayName;
|
|
|
private final StringBinding displayablePath;
|
|
@@ -78,8 +75,9 @@ public class Vault {
|
|
|
private volatile Volume volume;
|
|
|
|
|
|
@Inject
|
|
|
- Vault(VaultSettings vaultSettings, Provider<Volume> volumeProvider, @DefaultMountFlags StringBinding defaultMountFlags, AtomicReference<CryptoFileSystem> cryptoFileSystem, VaultState state, @Named("lastKnownException") ObjectProperty<Exception> lastKnownException, VaultStats stats) {
|
|
|
+ Vault(VaultSettings vaultSettings, VaultConfigWrapper configWrapper, Provider<Volume> volumeProvider, @DefaultMountFlags StringBinding defaultMountFlags, AtomicReference<CryptoFileSystem> cryptoFileSystem, VaultState state, @Named("lastKnownException") ObjectProperty<Exception> lastKnownException, VaultStats stats) {
|
|
|
this.vaultSettings = vaultSettings;
|
|
|
+ this.configWrapper = configWrapper;
|
|
|
this.volumeProvider = volumeProvider;
|
|
|
this.defaultMountFlags = defaultMountFlags;
|
|
|
this.cryptoFileSystem = cryptoFileSystem;
|
|
@@ -195,6 +193,10 @@ public class Vault {
|
|
|
volume.reveal(vaultRevealer);
|
|
|
}
|
|
|
|
|
|
+ public void reloadConfig() throws IOException {
|
|
|
+ configWrapper.reloadConfig();
|
|
|
+ }
|
|
|
+
|
|
|
// ******************************************************************************
|
|
|
// Observable Properties
|
|
|
// *******************************************************************************
|
|
@@ -328,19 +330,6 @@ public class Vault {
|
|
|
return stats;
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * Attempts to read the vault config file and parse it without verifying its integrity.
|
|
|
- *
|
|
|
- * @return an unverified vault config
|
|
|
- * @throws VaultConfigLoadException if the read file cannot be properly parsed
|
|
|
- * @throws IOException if reading the file fails
|
|
|
- *
|
|
|
- */
|
|
|
- public UnverifiedVaultConfig getUnverifiedVaultConfig() throws IOException {
|
|
|
- Path configPath = getPath().resolve(org.cryptomator.common.Constants.VAULTCONFIG_FILENAME);
|
|
|
- String token = Files.readString(configPath, StandardCharsets.US_ASCII);
|
|
|
- return VaultConfig.decode(token);
|
|
|
- }
|
|
|
|
|
|
public Observable[] observables() {
|
|
|
return new Observable[]{state};
|
|
@@ -375,6 +364,15 @@ public class Vault {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ public UnverifiedVaultConfig getUnverifiedVaultConfig() {
|
|
|
+ try {
|
|
|
+ return configWrapper.getConfig();
|
|
|
+ } catch (IOException e) {
|
|
|
+ throw new IllegalStateException("One should not accquire the config if thee is not present.");
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
public void setCustomMountFlags(String mountFlags) {
|
|
|
vaultSettings.mountFlags().set(mountFlags);
|
|
|
}
|