Skip to content
Snippets Groups Projects
Commit c6042614 authored by Dariusz Rybicki's avatar Dariusz Rybicki
Browse files

Update ConnectionMaker to accept Identity model

parent fd86cea6
No related branches found
No related tags found
1 merge request!12Use codable models in API
import Bindings import Bindings
public struct ConnectionMaker { public struct ConnectionMaker {
public var connect: (Bool, Data, Data) throws -> Connection public var connect: (Bool, Data, Identity) throws -> Connection
public func callAsFunction( public func callAsFunction(
withAuthentication: Bool, withAuthentication: Bool,
recipientContact: Data, recipientContact: Data,
myIdentity: Data myIdentity: Identity
) throws -> Connection { ) throws -> Connection {
try connect(withAuthentication, recipientContact, myIdentity) try connect(withAuthentication, recipientContact, myIdentity)
} }
...@@ -15,18 +15,20 @@ public struct ConnectionMaker { ...@@ -15,18 +15,20 @@ public struct ConnectionMaker {
extension ConnectionMaker { extension ConnectionMaker {
public static func live(bindingsClient: BindingsClient) -> ConnectionMaker { public static func live(bindingsClient: BindingsClient) -> ConnectionMaker {
ConnectionMaker { withAuthentication, recipientContact, myIdentity in ConnectionMaker { withAuthentication, recipientContact, myIdentity in
let encoder = JSONEncoder()
let myIdentityData = try encoder.encode(myIdentity)
if withAuthentication { if withAuthentication {
return Connection.live( return Connection.live(
bindingsAuthenticatedConnection: try bindingsClient.connect( bindingsAuthenticatedConnection: try bindingsClient.connect(
withAuthentication: recipientContact, withAuthentication: recipientContact,
myIdentity: myIdentity myIdentity: myIdentityData
) )
) )
} else { } else {
return Connection.live( return Connection.live(
bindingsConnection: try bindingsClient.connect( bindingsConnection: try bindingsClient.connect(
recipientContact, recipientContact,
myIdentity: myIdentity myIdentity: myIdentityData
) )
) )
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment