mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
5671fd2520
This reverts commit ebae75af00
.
86 lines
3.2 KiB
Objective-C
86 lines
3.2 KiB
Objective-C
//
|
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class OWSPrimaryStorage;
|
|
@class SSKProtoSyncMessageRead;
|
|
@class TSIncomingMessage;
|
|
@class TSOutgoingMessage;
|
|
@class TSThread;
|
|
@class YapDatabaseReadTransaction;
|
|
@class YapDatabaseReadWriteTransaction;
|
|
|
|
extern NSString *const kIncomingMessageMarkedAsReadNotification;
|
|
|
|
// There are four kinds of read receipts:
|
|
//
|
|
// * Read receipts that this client sends to linked
|
|
// devices to inform them that a message has been read.
|
|
// * Read receipts that this client receives from linked
|
|
// devices that inform this client that a message has been read.
|
|
// * These read receipts are saved so that they can be applied
|
|
// if they arrive before the corresponding message.
|
|
// * Read receipts that this client sends to other users
|
|
// to inform them that a message has been read.
|
|
// * Read receipts that this client receives from other users
|
|
// that inform this client that a message has been read.
|
|
// * These read receipts are saved so that they can be applied
|
|
// if they arrive before the corresponding message.
|
|
//
|
|
// This manager is responsible for handling and emitting all four kinds.
|
|
@interface OWSReadReceiptManager : NSObject
|
|
|
|
- (instancetype)init NS_UNAVAILABLE;
|
|
- (instancetype)initWithPrimaryStorage:(OWSPrimaryStorage *)primaryStorage NS_DESIGNATED_INITIALIZER;
|
|
+ (instancetype)sharedManager;
|
|
|
|
#pragma mark - Sender/Recipient Read Receipts
|
|
|
|
// This method should be called when we receive a read receipt
|
|
// from a user to whom we have sent a message.
|
|
//
|
|
// This method can be called from any thread.
|
|
- (void)processReadReceiptsFromRecipientId:(NSString *)recipientId
|
|
sentTimestamps:(NSArray<NSNumber *> *)sentTimestamps
|
|
readTimestamp:(uint64_t)readTimestamp;
|
|
|
|
- (void)applyEarlyReadReceiptsForOutgoingMessageFromLinkedDevice:(TSOutgoingMessage *)message
|
|
transaction:(YapDatabaseReadWriteTransaction *)transaction;
|
|
|
|
#pragma mark - Linked Device Read Receipts
|
|
|
|
- (void)processReadReceiptsFromLinkedDevice:(NSArray<SSKProtoSyncMessageRead *> *)readReceiptProtos
|
|
readTimestamp:(uint64_t)readTimestamp
|
|
transaction:(YapDatabaseReadWriteTransaction *)transaction;
|
|
|
|
- (void)applyEarlyReadReceiptsForIncomingMessage:(TSIncomingMessage *)message
|
|
transaction:(YapDatabaseReadWriteTransaction *)transaction;
|
|
|
|
#pragma mark - Locally Read
|
|
|
|
// This method cues this manager:
|
|
//
|
|
// * ...to inform the sender that this message was read (if read receipts
|
|
// are enabled).
|
|
// * ...to inform the local user's other devices that this message was read.
|
|
//
|
|
// Both types of messages are deduplicated.
|
|
//
|
|
// This method can be called from any thread.
|
|
- (void)messageWasReadLocally:(TSIncomingMessage *)message;
|
|
|
|
- (void)markAsReadLocallyBeforeSortId:(uint64_t)sortId thread:(TSThread *)thread;
|
|
|
|
#pragma mark - Settings
|
|
|
|
- (void)prepareCachedValues;
|
|
|
|
- (BOOL)areReadReceiptsEnabled;
|
|
- (BOOL)areReadReceiptsEnabledWithTransaction:(YapDatabaseReadTransaction *)transaction;
|
|
- (void)setAreReadReceiptsEnabled:(BOOL)value;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|