|
@@ -1,7 +1,7 @@
|
|
|
package org.cryptomator.ui.unlock;
|
|
|
|
|
|
import dagger.Lazy;
|
|
|
-import org.cryptomator.common.mount.FuseRestartRequiredException;
|
|
|
+import org.cryptomator.common.mount.ConflictingMountServiceException;
|
|
|
import org.cryptomator.common.mount.IllegalMountPointException;
|
|
|
import org.cryptomator.common.vaults.Vault;
|
|
|
import org.cryptomator.common.vaults.VaultState;
|
|
@@ -38,7 +38,7 @@ public class UnlockWorkflow extends Task<Void> {
|
|
|
private final VaultService vaultService;
|
|
|
private final Lazy<Scene> successScene;
|
|
|
private final Lazy<Scene> invalidMountPointScene;
|
|
|
- private final Lazy<Scene> fuseRestartRequiredScene;
|
|
|
+ private final Lazy<Scene> restartRequiredScene;
|
|
|
private final FxApplicationWindows appWindows;
|
|
|
private final KeyLoadingStrategy keyLoadingStrategy;
|
|
|
private final ObjectProperty<IllegalMountPointException> illegalMountPointException;
|
|
@@ -49,7 +49,7 @@ public class UnlockWorkflow extends Task<Void> {
|
|
|
VaultService vaultService, //
|
|
|
@FxmlScene(FxmlFile.UNLOCK_SUCCESS) Lazy<Scene> successScene, //
|
|
|
@FxmlScene(FxmlFile.UNLOCK_INVALID_MOUNT_POINT) Lazy<Scene> invalidMountPointScene, //
|
|
|
- @FxmlScene(FxmlFile.UNLOCK_FUSE_RESTART_REQUIRED) Lazy<Scene> fuseRestartRequiredScene, //
|
|
|
+ @FxmlScene(FxmlFile.UNLOCK_REQUIRES_RESTART) Lazy<Scene> restartRequiredScene, //
|
|
|
FxApplicationWindows appWindows, //
|
|
|
@UnlockWindow KeyLoadingStrategy keyLoadingStrategy, //
|
|
|
@UnlockWindow ObjectProperty<IllegalMountPointException> illegalMountPointException) {
|
|
@@ -58,7 +58,7 @@ public class UnlockWorkflow extends Task<Void> {
|
|
|
this.vaultService = vaultService;
|
|
|
this.successScene = successScene;
|
|
|
this.invalidMountPointScene = invalidMountPointScene;
|
|
|
- this.fuseRestartRequiredScene = fuseRestartRequiredScene;
|
|
|
+ this.restartRequiredScene = restartRequiredScene;
|
|
|
this.appWindows = appWindows;
|
|
|
this.keyLoadingStrategy = keyLoadingStrategy;
|
|
|
this.illegalMountPointException = illegalMountPointException;
|
|
@@ -87,9 +87,9 @@ public class UnlockWorkflow extends Task<Void> {
|
|
|
});
|
|
|
}
|
|
|
|
|
|
- private void handleFuseRestartRequiredError() {
|
|
|
+ private void handleConflictingMountServiceException() {
|
|
|
Platform.runLater(() -> {
|
|
|
- window.setScene(fuseRestartRequiredScene.get());
|
|
|
+ window.setScene(restartRequiredScene.get());
|
|
|
window.show();
|
|
|
});
|
|
|
}
|
|
@@ -122,12 +122,10 @@ public class UnlockWorkflow extends Task<Void> {
|
|
|
protected void failed() {
|
|
|
LOG.info("Unlock of '{}' failed.", vault.getDisplayName());
|
|
|
Throwable throwable = super.getException();
|
|
|
- if(throwable instanceof IllegalMountPointException impe) {
|
|
|
- handleIllegalMountPointError(impe);
|
|
|
- } else if (throwable instanceof FuseRestartRequiredException _) {
|
|
|
- handleFuseRestartRequiredError();
|
|
|
- } else {
|
|
|
- handleGenericError(throwable);
|
|
|
+ switch (throwable) {
|
|
|
+ case IllegalMountPointException e -> handleIllegalMountPointError(e);
|
|
|
+ case ConflictingMountServiceException _ -> handleConflictingMountServiceException();
|
|
|
+ default -> handleGenericError(throwable);
|
|
|
}
|
|
|
vault.stateProperty().transition(VaultState.Value.PROCESSING, VaultState.Value.LOCKED);
|
|
|
}
|