@ -14,6 +14,9 @@ public final class PublicChatMessage : NSObject {
public var attachments : [ Attachment ] = [ ]
public let signature : Signature ?
// MARK: S e r v e r T i m e s t a m p ( u s e f o r s o r t i n g )
public let serverTimestamp : UInt64
@objc ( serverID )
public var objc_serverID : UInt64 { return serverID ? ? 0 }
@ -72,7 +75,7 @@ public final class PublicChatMessage : NSObject {
}
// MARK: I n i t i a l i z a t i o n
public init ( serverID : UInt64 ? , senderPublicKey : String , displayName : String , profilePicture : ProfilePicture ? , body : String , type : String , timestamp : UInt64 , quote : Quote ? , attachments : [ Attachment ] , signature : Signature ? ) {
public init ( serverID : UInt64 ? , senderPublicKey : String , displayName : String , profilePicture : ProfilePicture ? , body : String , type : String , timestamp : UInt64 , quote : Quote ? , attachments : [ Attachment ] , signature : Signature ? , serverTimestamp : UInt64 ) {
self . serverID = serverID
self . senderPublicKey = senderPublicKey
self . displayName = displayName
@ -83,10 +86,11 @@ public final class PublicChatMessage : NSObject {
self . quote = quote
self . attachments = attachments
self . signature = signature
self . serverTimestamp = serverTimestamp
super . init ( )
}
@objc public convenience init ( senderPublicKey : String , displayName : String , body : String , type : String , timestamp : UInt64 , quotedMessageTimestamp : UInt64 , quoteePublicKey : String ? , quotedMessageBody : String ? , quotedMessageServerID : UInt64 , signatureData : Data ? , signatureVersion : UInt64 ) {
@objc public convenience init ( senderPublicKey : String , displayName : String , body : String , type : String , timestamp : UInt64 , quotedMessageTimestamp : UInt64 , quoteePublicKey : String ? , quotedMessageBody : String ? , quotedMessageServerID : UInt64 , signatureData : Data ? , signatureVersion : UInt64 , serverTimestamp : UInt64 ) {
let quote : Quote ?
if quotedMessageTimestamp != 0 , let quoteeHexEncodedPublicKey = quoteePublicKey , let quotedMessageBody = quotedMessageBody {
let quotedMessageServerID = ( quotedMessageServerID != 0 ) ? quotedMessageServerID : nil
@ -100,7 +104,7 @@ public final class PublicChatMessage : NSObject {
} else {
signature = nil
}
self . init ( serverID : nil , senderPublicKey : senderPublicKey , displayName : displayName , profilePicture : nil , body : body , type : type , timestamp : timestamp , quote : quote , attachments : [ ] , signature : signature )
self . init ( serverID : nil , senderPublicKey : senderPublicKey , displayName : displayName , profilePicture : nil , body : body , type : type , timestamp : timestamp , quote : quote , attachments : [ ] , signature : signature , serverTimestamp : serverTimestamp )
}
// MARK: C r y p t o
@ -115,7 +119,7 @@ public final class PublicChatMessage : NSObject {
return nil
}
let signature = Signature ( data : signatureData , version : signatureVersion )
return PublicChatMessage ( serverID : serverID , senderPublicKey : senderPublicKey , displayName : displayName , profilePicture : profilePicture , body : body , type : type , timestamp : timestamp , quote : quote , attachments : attachments , signature : signature )
return PublicChatMessage ( serverID : serverID , senderPublicKey : senderPublicKey , displayName : displayName , profilePicture : profilePicture , body : body , type : type , timestamp : timestamp , quote : quote , attachments : attachments , signature : signature , serverTimestamp : serverTimestamp )
}
internal func hasValidSignature ( ) -> Bool {