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.
121 lines
3.8 KiB
Matlab
121 lines
3.8 KiB
Matlab
5 years ago
|
//
|
||
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import "ContactsUpdater.h"
|
||
|
#import "OWSError.h"
|
||
|
#import "OWSPrimaryStorage.h"
|
||
|
#import "OWSRequestFactory.h"
|
||
|
#import "PhoneNumber.h"
|
||
|
#import "SSKEnvironment.h"
|
||
|
#import "TSNetworkManager.h"
|
||
|
#import <SessionProtocolKit/Cryptography.h>
|
||
|
#import <SessionProtocolKit/Threading.h>
|
||
|
#import <SignalUtilitiesKit/SignalUtilitiesKit-Swift.h>
|
||
|
#import <YapDatabase/YapDatabase.h>
|
||
|
#import "SSKAsserts.h"
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface ContactsUpdater ()
|
||
|
|
||
|
@property (nonatomic, readonly) NSOperationQueue *contactIntersectionQueue;
|
||
|
|
||
|
@end
|
||
|
|
||
|
#pragma mark -
|
||
|
|
||
|
@implementation ContactsUpdater
|
||
|
|
||
|
+ (instancetype)sharedUpdater {
|
||
|
OWSAssertDebug(SSKEnvironment.shared.contactsUpdater);
|
||
|
|
||
|
return SSKEnvironment.shared.contactsUpdater;
|
||
|
}
|
||
|
|
||
|
- (instancetype)init
|
||
|
{
|
||
|
self = [super init];
|
||
|
if (!self) {
|
||
|
return self;
|
||
|
}
|
||
|
|
||
|
_contactIntersectionQueue = [NSOperationQueue new];
|
||
|
_contactIntersectionQueue.maxConcurrentOperationCount = 1;
|
||
|
_contactIntersectionQueue.name = self.logTag;
|
||
|
|
||
|
OWSSingletonAssert();
|
||
|
|
||
|
return self;
|
||
|
}
|
||
|
|
||
|
- (void)lookupIdentifiers:(NSArray<NSString *> *)identifiers
|
||
|
success:(void (^)(NSArray<SignalRecipient *> *recipients))success
|
||
|
failure:(void (^)(NSError *error))failure
|
||
|
{
|
||
|
if (identifiers.count < 1) {
|
||
|
OWSFailDebug(@"Cannot lookup zero identifiers");
|
||
|
DispatchMainThreadSafe(^{
|
||
|
failure(
|
||
|
OWSErrorWithCodeDescription(OWSErrorCodeInvalidMethodParameters, @"Cannot lookup zero identifiers"));
|
||
|
});
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
[self contactIntersectionWithSet:[NSSet setWithArray:identifiers]
|
||
|
success:^(NSSet<SignalRecipient *> *recipients) {
|
||
|
if (recipients.count == 0) {
|
||
|
OWSLogInfo(@"no contacts are Signal users");
|
||
|
}
|
||
|
DispatchMainThreadSafe(^{
|
||
|
success(recipients.allObjects);
|
||
|
});
|
||
|
}
|
||
|
failure:^(NSError *error) {
|
||
|
DispatchMainThreadSafe(^{
|
||
|
failure(error);
|
||
|
});
|
||
|
}];
|
||
|
}
|
||
|
|
||
|
- (void)contactIntersectionWithSet:(NSSet<NSString *> *)recipientIdsToLookup
|
||
|
success:(void (^)(NSSet<SignalRecipient *> *recipients))success
|
||
|
failure:(void (^)(NSError *error))failure
|
||
|
{
|
||
|
OWSLegacyContactDiscoveryOperation *operation =
|
||
|
[[OWSLegacyContactDiscoveryOperation alloc] initWithRecipientIdsToLookup:recipientIdsToLookup.allObjects];
|
||
|
|
||
|
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
|
||
|
NSArray<NSOperation *> *operationAndDependencies = [operation.dependencies arrayByAddingObject:operation];
|
||
|
[self.contactIntersectionQueue addOperations:operationAndDependencies waitUntilFinished:YES];
|
||
|
|
||
|
if (operation.failingError != nil) {
|
||
|
failure(operation.failingError);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
NSSet<NSString *> *registeredRecipientIds = operation.registeredRecipientIds;
|
||
|
|
||
|
NSMutableSet<SignalRecipient *> *recipients = [NSMutableSet new];
|
||
|
[LKStorage writeSyncWithBlock:^(YapDatabaseReadWriteTransaction *transaction) {
|
||
|
for (NSString *recipientId in recipientIdsToLookup) {
|
||
|
if ([registeredRecipientIds containsObject:recipientId]) {
|
||
|
SignalRecipient *recipient =
|
||
|
[SignalRecipient markRecipientAsRegisteredAndGet:recipientId transaction:transaction];
|
||
|
[recipients addObject:recipient];
|
||
|
} else {
|
||
|
[SignalRecipient markRecipientAsUnregistered:recipientId transaction:transaction];
|
||
|
}
|
||
|
}
|
||
|
}];
|
||
|
|
||
|
dispatch_async(dispatch_get_main_queue(), ^{
|
||
|
success([recipients copy]);
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|