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.
45 lines
1.4 KiB
Objective-C
45 lines
1.4 KiB
Objective-C
//
|
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import "TSAttachment.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class SSKProtoAttachmentPointer;
|
|
|
|
typedef NS_ENUM(NSUInteger, TSAttachmentPointerState) {
|
|
TSAttachmentPointerStateEnqueued = 0,
|
|
TSAttachmentPointerStateDownloading = 1,
|
|
TSAttachmentPointerStateFailed = 2,
|
|
};
|
|
|
|
/**
|
|
* A TSAttachmentPointer is a yet-to-be-downloaded attachment.
|
|
*/
|
|
@interface TSAttachmentPointer : TSAttachment
|
|
|
|
- (nullable instancetype)initWithCoder:(NSCoder *)coder NS_DESIGNATED_INITIALIZER;
|
|
|
|
- (instancetype)initWithServerId:(UInt64)serverId
|
|
key:(NSData *)key
|
|
digest:(nullable NSData *)digest
|
|
byteCount:(UInt32)byteCount
|
|
contentType:(NSString *)contentType
|
|
sourceFilename:(nullable NSString *)sourceFilename
|
|
caption:(nullable NSString *)caption
|
|
attachmentType:(TSAttachmentType)attachmentType NS_DESIGNATED_INITIALIZER;
|
|
|
|
+ (nullable TSAttachmentPointer *)attachmentPointerFromProto:(SSKProtoAttachmentPointer *)attachmentProto;
|
|
|
|
@property (atomic) TSAttachmentPointerState state;
|
|
@property (nullable, atomic) NSString *mostRecentFailureLocalizedText;
|
|
|
|
// Though now required, `digest` may be null for pre-existing records or from
|
|
// messages received from other clients
|
|
@property (nullable, nonatomic, readonly) NSData *digest;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|