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.
31 lines
1.4 KiB
Swift
31 lines
1.4 KiB
Swift
|
|
extension Storage {
|
|
|
|
private static let sessionRequestSentTimestampCollection = "LokiSessionRequestSentTimestampCollection"
|
|
private static let sessionRequestProcessedTimestampCollection = "LokiSessionRequestProcessedTimestampCollection"
|
|
|
|
public func getSessionRequestSentTimestamp(for publicKey: String) -> UInt64 {
|
|
var result: UInt64?
|
|
Storage.read { transaction in
|
|
result = transaction.object(forKey: publicKey, inCollection: Storage.sessionRequestSentTimestampCollection) as? UInt64
|
|
}
|
|
return result ?? 0
|
|
}
|
|
|
|
public func setSessionRequestSentTimestamp(for publicKey: String, to timestamp: UInt64, using transaction: Any) {
|
|
(transaction as! YapDatabaseReadWriteTransaction).setObject(timestamp, forKey: publicKey, inCollection: Storage.sessionRequestSentTimestampCollection)
|
|
}
|
|
|
|
public func getSessionRequestProcessedTimestamp(for publicKey: String) -> UInt64 {
|
|
var result: UInt64?
|
|
Storage.read { transaction in
|
|
result = transaction.object(forKey: publicKey, inCollection: Storage.sessionRequestProcessedTimestampCollection) as? UInt64
|
|
}
|
|
return result ?? 0
|
|
}
|
|
|
|
public func setSessionRequestProcessedTimestamp(for publicKey: String, to timestamp: UInt64, using transaction: Any) {
|
|
(transaction as! YapDatabaseReadWriteTransaction).setObject(timestamp, forKey: publicKey, inCollection: Storage.sessionRequestProcessedTimestampCollection)
|
|
}
|
|
}
|