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.
90 lines
3.1 KiB
Objective-C
90 lines
3.1 KiB
Objective-C
//
|
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import "DataSource.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
extern const NSUInteger kOversizeTextMessageSizeThreshold;
|
|
|
|
@class ContactsUpdater;
|
|
@class OWSBlockingManager;
|
|
@class OWSPrimaryStorage;
|
|
@class OWSUploadingService;
|
|
@class SignalRecipient;
|
|
@class TSInvalidIdentityKeySendingErrorMessage;
|
|
@class TSNetworkManager;
|
|
@class TSOutgoingMessage;
|
|
@class TSThread;
|
|
@class YapDatabaseReadWriteTransaction;
|
|
|
|
@protocol ContactsManagerProtocol;
|
|
|
|
/**
|
|
* Useful for when you *sometimes* want to retry before giving up and calling the failure handler
|
|
* but *sometimes* we don't want to retry when we know it's a terminal failure, so we allow the
|
|
* caller to indicate this with isRetryable=NO.
|
|
*/
|
|
typedef void (^RetryableFailureHandler)(NSError *_Nonnull error);
|
|
|
|
// Message send error handling is slightly different for contact and group messages.
|
|
//
|
|
// For example, If one member of a group deletes their account, the group should
|
|
// ignore errors when trying to send messages to this ex-member.
|
|
|
|
#pragma mark -
|
|
|
|
NS_SWIFT_NAME(MessageSender)
|
|
@interface OWSMessageSender : NSObject {
|
|
|
|
@protected
|
|
|
|
// For subclassing in tests
|
|
OWSUploadingService *_uploadingService;
|
|
ContactsUpdater *_contactsUpdater;
|
|
}
|
|
|
|
- (instancetype)init NS_UNAVAILABLE;
|
|
|
|
- (instancetype)initWithNetworkManager:(TSNetworkManager *)networkManager
|
|
primaryStorage:(OWSPrimaryStorage *)primaryStorage
|
|
contactsManager:(id<ContactsManagerProtocol>)contactsManager
|
|
contactsUpdater:(ContactsUpdater *)contactsUpdater;
|
|
|
|
- (void)setBlockingManager:(OWSBlockingManager *)blockingManager;
|
|
|
|
/**
|
|
* Send and resend text messages or resend messages with existing attachments.
|
|
* If you haven't yet created the attachment, see the ` enqueueAttachment:` variants.
|
|
*/
|
|
// TODO: make transaction nonnull and remove `sendMessage:success:failure`
|
|
- (void)enqueueMessage:(TSOutgoingMessage *)message
|
|
success:(void (^)(void))successHandler
|
|
failure:(void (^)(NSError *error))failureHandler;
|
|
|
|
/**
|
|
* Takes care of allocating and uploading the attachment, then sends the message.
|
|
* Only necessary to call once. If sending fails, retry with `sendMessage:`.
|
|
*/
|
|
- (void)enqueueAttachment:(DataSource *)dataSource
|
|
contentType:(NSString *)contentType
|
|
sourceFilename:(nullable NSString *)sourceFilename
|
|
inMessage:(TSOutgoingMessage *)outgoingMessage
|
|
success:(void (^)(void))successHandler
|
|
failure:(void (^)(NSError *error))failureHandler;
|
|
|
|
/**
|
|
* Same as ` enqueueAttachment:`, but deletes the local copy of the attachment after sending.
|
|
* Used for sending sync request data, not for user visible attachments.
|
|
*/
|
|
- (void)enqueueTemporaryAttachment:(DataSource *)dataSource
|
|
contentType:(NSString *)contentType
|
|
inMessage:(TSOutgoingMessage *)outgoingMessage
|
|
success:(void (^)(void))successHandler
|
|
failure:(void (^)(NSError *error))failureHandler;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|