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.
		
		
		
		
		
			
		
			
				
	
	
		
			36 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Swift
		
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Swift
		
	
| // Copyright © 2022 Rangeproof Pty Ltd. All rights reserved.
 | |
| 
 | |
| import Foundation
 | |
| import GRDB
 | |
| 
 | |
| extension MessageReceiver {
 | |
|     internal static func handleReadReceipt(
 | |
|         _ db: Database,
 | |
|         message: ReadReceipt,
 | |
|         serverExpirationTimestamp: TimeInterval?
 | |
|     ) throws {
 | |
|         guard let sender: String = message.sender else { return }
 | |
|         guard let timestampMsValues: [Int64] = message.timestamps?.map({ Int64($0) }) else { return }
 | |
|         guard let readTimestampMs: Int64 = message.receivedTimestamp.map({ Int64($0) }) else { return }
 | |
|         
 | |
|         let pendingTimestampMs: Set<Int64> = try Interaction.markAsRead(
 | |
|             db,
 | |
|             recipientId: sender,
 | |
|             timestampMsValues: timestampMsValues,
 | |
|             readTimestampMs: readTimestampMs
 | |
|         )
 | |
|         
 | |
|         guard !pendingTimestampMs.isEmpty else { return }
 | |
|         
 | |
|         // We have some pending read receipts so store them in the database
 | |
|         try pendingTimestampMs.forEach { timestampMs in
 | |
|             try PendingReadReceipt(
 | |
|                 threadId: sender,
 | |
|                 interactionTimestampMs: timestampMs,
 | |
|                 readTimestampMs: readTimestampMs,
 | |
|                 serverExpirationTimestamp: (serverExpirationTimestamp ?? 0)
 | |
|             ).save(db)
 | |
|         }
 | |
|     }
 | |
| }
 |