diff --git a/Sources/ElixxirDAppsSDK/CmixManager/CMixManager.swift b/Sources/ElixxirDAppsSDK/CmixManager/CMixManager.swift index 1763bb3e5e2d4e184add186d67a69ac6c93124f1..1e1b38e59f92927b6c34fe97ea8f9a9246ff82cc 100644 --- a/Sources/ElixxirDAppsSDK/CmixManager/CMixManager.swift +++ b/Sources/ElixxirDAppsSDK/CmixManager/CMixManager.swift @@ -3,6 +3,7 @@ import Bindings public struct CMixManager { public var hasStorage: CMixManagerHasStorage public var create: CMixManagerCreate + public var restore: CMixManagerRestore public var load: CMixManagerLoad public var remove: CMixManagerRemove } @@ -21,7 +22,8 @@ extension CMixManager { passwordStorage: PasswordStorage, newCMix: NewCMix = .live, getCMixParams: GetCMixParams = .liveDefault, - loadCMix: LoadCMix = .live + loadCMix: LoadCMix = .live, + newCMixFromBackup: NewCMixFromBackup = .live ) -> CMixManager { CMixManager( hasStorage: .live( @@ -39,6 +41,15 @@ extension CMixManager { getCMixParams: getCMixParams, loadCMix: loadCMix ), + restore: .live( + environment: environment, + downloadNDF: downloadNDF, + generateSecret: generateSecret, + passwordStorage: passwordStorage, + directoryPath: directoryPath, + fileManager: fileManager, + newCMixFromBackup: newCMixFromBackup + ), load: .live( directoryPath: directoryPath, passwordStorage: passwordStorage, @@ -57,6 +68,7 @@ extension CMixManager { public static let unimplemented = CMixManager( hasStorage: .unimplemented, create: .unimplemented, + restore: .unimplemented, load: .unimplemented, remove: .unimplemented ) diff --git a/Sources/ElixxirDAppsSDK/CmixManager/Functors/CMixManagerRestore.swift b/Sources/ElixxirDAppsSDK/CmixManager/Functors/CMixManagerRestore.swift new file mode 100644 index 0000000000000000000000000000000000000000..466684b8c0c901b3613511ccfdd8307eb8e40677 --- /dev/null +++ b/Sources/ElixxirDAppsSDK/CmixManager/Functors/CMixManagerRestore.swift @@ -0,0 +1,46 @@ +import Foundation +import XCTestDynamicOverlay + +public struct CMixManagerRestore { + public var run: (Data, String) throws -> BackupReport + + public func callAsFunction( + backup: Data, + passphrase: String + ) throws -> BackupReport { + try run(backup, passphrase) + } +} + +extension CMixManagerRestore { + public static func live( + environment: Environment, + downloadNDF: DownloadAndVerifySignedNdf, + generateSecret: GenerateSecret, + passwordStorage: PasswordStorage, + directoryPath: String, + fileManager: FileManager, + newCMixFromBackup: NewCMixFromBackup + ) -> CMixManagerRestore { + CMixManagerRestore { backup, passphrase in + let ndfData = try downloadNDF(environment) + let password = generateSecret() + try passwordStorage.save(password) + try? fileManager.removeItem(atPath: directoryPath) + try? fileManager.createDirectory(atPath: directoryPath, withIntermediateDirectories: true) + return try newCMixFromBackup( + ndfJSON: String(data: ndfData, encoding: .utf8)!, + storageDir: directoryPath, + backupPassphrase: passphrase, + sessionPassword: password, + backupFileContents: backup + ) + } + } +} + +extension CMixManagerRestore { + public static let unimplemented = CMixManagerRestore( + run: XCTUnimplemented("\(Self.self)") + ) +}