mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
1.0 KiB
Swift
25 lines
1.0 KiB
Swift
|
|
public extension Message {
|
|
|
|
enum Destination {
|
|
case contact(publicKey: String)
|
|
case closedGroup(groupPublicKey: String)
|
|
case openGroup(channel: UInt64, server: String)
|
|
|
|
static func from(_ thread: TSThread) -> Message.Destination {
|
|
if let thread = thread as? TSContactThread {
|
|
return .contact(publicKey: thread.contactIdentifier())
|
|
} else if let thread = thread as? TSGroupThread, thread.isClosedGroup {
|
|
let groupID = thread.groupModel.groupId
|
|
let groupPublicKey = LKGroupUtilities.getDecodedGroupID(groupID)
|
|
return .closedGroup(groupPublicKey: groupPublicKey)
|
|
} else if let thread = thread as? TSGroupThread, thread.isOpenGroup {
|
|
let openGroup = Storage.shared.getOpenGroup(for: thread.uniqueId!)!
|
|
return .openGroup(channel: openGroup.channel, server: openGroup.server)
|
|
} else {
|
|
preconditionFailure("TODO: Handle legacy closed groups.")
|
|
}
|
|
}
|
|
}
|
|
}
|