diff --git a/Sources/ElixxirDAppsSDK/ContactPubkeyProvider.swift b/Sources/ElixxirDAppsSDK/ContactPubkeyProvider.swift new file mode 100644 index 0000000000000000000000000000000000000000..4f97eed0d5fc5c6a80dd7810eac225621930a36b --- /dev/null +++ b/Sources/ElixxirDAppsSDK/ContactPubkeyProvider.swift @@ -0,0 +1,32 @@ +import Bindings + +public struct ContactPubkeyProvider { + public var get: (Data) throws -> Data + + public func callAsFunction(contact: Data) throws -> Data { + try get(contact) + } +} + +extension ContactPubkeyProvider { + public static let live = ContactPubkeyProvider { contact in + var error: NSError? + let pubkey = BindingsGetPubkeyFromContact(contact, &error) + if let error = error { + throw error + } + guard let pubkey = pubkey else { + fatalError("BindingsGetPubkeyFromContact returned `nil` without providing error") + } + return pubkey + } +} + +#if DEBUG +extension ContactPubkeyProvider { + public static let failing = ContactPubkeyProvider { _ in + struct NotImplemented: Error {} + throw NotImplemented() + } +} +#endif