mirror of
https://github.com/permissionlesstech/bitchat.git
synced 2026-07-25 23:05:20 +00:00
36 lines
1.2 KiB
Swift
36 lines
1.2 KiB
Swift
import Foundation
|
|
|
|
enum BLENoisePayloadFactory {
|
|
static func privateMessage(content: String, messageID: String) -> Data? {
|
|
guard let payload = PrivateMessagePacket(messageID: messageID, content: content).encode() else {
|
|
return nil
|
|
}
|
|
|
|
return typedPayload(.privateMessage, payload: payload)
|
|
}
|
|
|
|
static func readReceipt(originalMessageID: String) -> Data {
|
|
typedPayload(.readReceipt, payload: Data(originalMessageID.utf8))
|
|
}
|
|
|
|
static func delivered(messageID: String) -> Data {
|
|
typedPayload(.delivered, payload: Data(messageID.utf8))
|
|
}
|
|
|
|
static func privateFile(_ filePacket: BitchatFilePacket) -> Data? {
|
|
guard let payload = filePacket.encode() else { return nil }
|
|
return typedPayload(.privateFile, payload: payload)
|
|
}
|
|
|
|
static func authenticatedPeerState(_ state: AuthenticatedPeerStatePacket) -> Data? {
|
|
guard let payload = state.encode() else { return nil }
|
|
return typedPayload(.authenticatedPeerState, payload: payload)
|
|
}
|
|
|
|
static func typedPayload(_ type: NoisePayloadType, payload: Data) -> Data {
|
|
var typed = Data([type.rawValue])
|
|
typed.append(payload)
|
|
return typed
|
|
}
|
|
}
|