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.
249 lines
8.2 KiB
Objective-C
249 lines
8.2 KiB
Objective-C
//
|
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import "OWSDeliveryReceiptManager.h"
|
|
#import "AppReadiness.h"
|
|
#import "OWSMessageSender.h"
|
|
#import "OWSPrimaryStorage.h"
|
|
#import "OWSReceiptsForSenderMessage.h"
|
|
#import "SSKEnvironment.h"
|
|
#import "TSContactThread.h"
|
|
#import "TSYapDatabaseObject.h"
|
|
#import <Reachability/Reachability.h>
|
|
#import <SignalServiceKit/SignalServiceKit-Swift.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
NSString *const kDeliveryReceiptManagerCollection = @"kDeliveryReceiptManagerCollection";
|
|
|
|
@interface OWSDeliveryReceiptManager ()
|
|
|
|
@property (nonatomic, readonly) YapDatabaseConnection *dbConnection;
|
|
|
|
@property (nonatomic) Reachability *reachability;
|
|
|
|
// Should only be accessed on the serialQueue.
|
|
@property (nonatomic) BOOL isProcessing;
|
|
|
|
@end
|
|
|
|
#pragma mark -
|
|
|
|
@implementation OWSDeliveryReceiptManager
|
|
|
|
+ (instancetype)sharedManager {
|
|
OWSAssert(SSKEnvironment.shared.deliveryReceiptManager);
|
|
|
|
return SSKEnvironment.shared.deliveryReceiptManager;
|
|
}
|
|
|
|
- (instancetype)initWithPrimaryStorage:(OWSPrimaryStorage *)primaryStorage {
|
|
self = [super init];
|
|
|
|
if (!self) {
|
|
return self;
|
|
}
|
|
|
|
self.reachability = [Reachability reachabilityForInternetConnection];
|
|
|
|
_dbConnection = primaryStorage.newDatabaseConnection;
|
|
|
|
OWSSingletonAssert();
|
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self
|
|
selector:@selector(reachabilityChanged)
|
|
name:kReachabilityChangedNotification
|
|
object:nil];
|
|
|
|
// Start processing.
|
|
[AppReadiness runNowOrWhenAppIsReady:^{
|
|
[self scheduleProcessing];
|
|
}];
|
|
|
|
return self;
|
|
}
|
|
|
|
- (void)dealloc {
|
|
[[NSNotificationCenter defaultCenter] removeObserver:self];
|
|
}
|
|
|
|
#pragma mark - Dependencies
|
|
|
|
- (OWSMessageSender *)messageSender {
|
|
OWSAssertDebug(SSKEnvironment.shared.messageSender);
|
|
|
|
return SSKEnvironment.shared.messageSender;
|
|
}
|
|
|
|
#pragma mark -
|
|
|
|
- (dispatch_queue_t)serialQueue {
|
|
static dispatch_queue_t _serialQueue;
|
|
static dispatch_once_t onceToken;
|
|
dispatch_once(&onceToken, ^{
|
|
_serialQueue = dispatch_queue_create("org.whispersystems.deliveryReceipts", DISPATCH_QUEUE_SERIAL);
|
|
});
|
|
|
|
return _serialQueue;
|
|
}
|
|
|
|
// Schedules a processing pass, unless one is already scheduled.
|
|
- (void)scheduleProcessing {
|
|
OWSAssertDebug(AppReadiness.isAppReady);
|
|
|
|
dispatch_async(self.serialQueue, ^{
|
|
if (self.isProcessing) {
|
|
return;
|
|
}
|
|
|
|
self.isProcessing = YES;
|
|
|
|
[self process];
|
|
});
|
|
}
|
|
|
|
- (void)process {
|
|
OWSLogVerbose(@"Processing outbound delivery receipts.");
|
|
|
|
if (!self.reachability.isReachable) {
|
|
// No network availability; abort.
|
|
self.isProcessing = NO;
|
|
return;
|
|
}
|
|
|
|
NSMutableDictionary<NSString *, NSSet<NSNumber *> *> *deliveryReceiptMap = [NSMutableDictionary new];
|
|
[self.dbConnection readWithBlock:^(YapDatabaseReadTransaction *transaction) {
|
|
[transaction enumerateKeysAndObjectsInCollection:kDeliveryReceiptManagerCollection
|
|
usingBlock:^(NSString *key, id object, BOOL *stop) {
|
|
NSString *recipientId = key;
|
|
NSSet<NSNumber *> *timestamps = object;
|
|
deliveryReceiptMap[recipientId] = [timestamps copy];
|
|
}];
|
|
}];
|
|
|
|
NSMutableArray<AnyPromise *> *sendPromises = [NSMutableArray array];
|
|
|
|
for (NSString *recipientId in deliveryReceiptMap) {
|
|
NSSet<NSNumber *> *timestamps = deliveryReceiptMap[recipientId];
|
|
if (timestamps.count < 1) {
|
|
OWSFailDebug(@"Missing timestamps.");
|
|
continue;
|
|
}
|
|
|
|
TSThread *thread = [TSContactThread getOrCreateThreadWithContactId:recipientId];
|
|
OWSReceiptsForSenderMessage *message =
|
|
[OWSReceiptsForSenderMessage deliveryReceiptsForSenderMessageWithThread:thread
|
|
messageTimestamps:timestamps.allObjects];
|
|
|
|
AnyPromise *sendPromise = [AnyPromise promiseWithResolverBlock:^(PMKResolver resolve) {
|
|
[self.messageSender enqueueMessage:message
|
|
success:^{
|
|
OWSLogInfo(@"Successfully sent %lu delivery receipts to sender.", (unsigned long)timestamps.count);
|
|
|
|
[self dequeueDeliveryReceiptsWithRecipientId:recipientId timestamps:timestamps];
|
|
|
|
// The value doesn't matter, we just need any non-NSError value.
|
|
resolve(@(1));
|
|
}
|
|
failure:^(NSError *error) {
|
|
OWSLogError(@"Failed to send delivery receipts to sender with error: %@", error);
|
|
|
|
resolve(error);
|
|
}];
|
|
}];
|
|
[sendPromises addObject:sendPromise];
|
|
}
|
|
|
|
if (sendPromises.count < 1) {
|
|
// No work to do; abort.
|
|
self.isProcessing = NO;
|
|
return;
|
|
}
|
|
|
|
AnyPromise *completionPromise = PMKJoin(sendPromises);
|
|
completionPromise.always(^() {
|
|
// Wait N seconds before processing delivery receipts again.
|
|
// This allows time for a batch to accumulate.
|
|
//
|
|
// We want a value high enough to allow us to effectively de-duplicate,
|
|
// delivery receipts without being so high that we risk not sending delivery
|
|
// receipts due to app exit.
|
|
const CGFloat kProcessingFrequencySeconds = 3.f;
|
|
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(kProcessingFrequencySeconds * NSEC_PER_SEC)),
|
|
self.serialQueue,
|
|
^{
|
|
[self process];
|
|
});
|
|
});
|
|
[completionPromise retainUntilComplete];
|
|
}
|
|
|
|
- (void)envelopeWasReceived:(SSKProtoEnvelope *)envelope {
|
|
OWSLogVerbose(@"");
|
|
|
|
[self enqueueDeliveryReceiptWithRecipientId:envelope.source timestamp:envelope.timestamp];
|
|
}
|
|
|
|
- (void)enqueueDeliveryReceiptWithRecipientId:(NSString *)recipientId timestamp:(uint64_t)timestamp {
|
|
OWSLogVerbose(@"");
|
|
|
|
if (recipientId.length < 1) {
|
|
OWSFailDebug(@"Invalid recipient id.");
|
|
return;
|
|
}
|
|
if (timestamp < 1) {
|
|
OWSFailDebug(@"Invalid timestamp.");
|
|
return;
|
|
}
|
|
dispatch_async(self.serialQueue, ^{
|
|
[self.dbConnection readWriteWithBlock:^(YapDatabaseReadWriteTransaction *transaction) {
|
|
NSSet<NSNumber *> *_Nullable oldTimestamps = [transaction objectForKey:recipientId
|
|
inCollection:kDeliveryReceiptManagerCollection];
|
|
NSMutableSet<NSNumber *> *newTimestamps
|
|
= (oldTimestamps ? [oldTimestamps mutableCopy] : [NSMutableSet new]);
|
|
[newTimestamps addObject:@(timestamp)];
|
|
|
|
[transaction setObject:newTimestamps forKey:recipientId inCollection:kDeliveryReceiptManagerCollection];
|
|
}];
|
|
|
|
[self scheduleProcessing];
|
|
});
|
|
}
|
|
|
|
- (void)dequeueDeliveryReceiptsWithRecipientId:(NSString *)recipientId timestamps:(NSSet<NSNumber *> *)timestamps {
|
|
if (recipientId.length < 1) {
|
|
OWSFailDebug(@"Invalid recipient id.");
|
|
return;
|
|
}
|
|
if (timestamps.count < 1) {
|
|
OWSFailDebug(@"Invalid timestamps.");
|
|
return;
|
|
}
|
|
dispatch_async(self.serialQueue, ^{
|
|
[self.dbConnection readWriteWithBlock:^(YapDatabaseReadWriteTransaction *transaction) {
|
|
NSSet<NSNumber *> *_Nullable oldTimestamps = [transaction objectForKey:recipientId
|
|
inCollection:kDeliveryReceiptManagerCollection];
|
|
NSMutableSet<NSNumber *> *newTimestamps
|
|
= (oldTimestamps ? [oldTimestamps mutableCopy] : [NSMutableSet new]);
|
|
[newTimestamps minusSet:timestamps];
|
|
|
|
if (newTimestamps.count > 0) {
|
|
[transaction setObject:newTimestamps forKey:recipientId inCollection:kDeliveryReceiptManagerCollection];
|
|
} else {
|
|
[transaction removeObjectForKey:recipientId inCollection:kDeliveryReceiptManagerCollection];
|
|
}
|
|
}];
|
|
});
|
|
}
|
|
|
|
- (void)reachabilityChanged {
|
|
OWSAssertIsOnMainThread();
|
|
|
|
[self scheduleProcessing];
|
|
}
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|