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.
		
		
		
		
		
			
		
			
				
	
	
		
			59 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Objective-C
		
	
			
		
		
	
	
			59 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Objective-C
		
	
| //
 | |
| //  Copyright (c) 2018 Open Whisper Systems. All rights reserved.
 | |
| //
 | |
| 
 | |
| #import <SignalServiceKit/TSQuotedMessage.h>
 | |
| 
 | |
| NS_ASSUME_NONNULL_BEGIN
 | |
| 
 | |
| @protocol ConversationViewItem;
 | |
| 
 | |
| @class TSAttachmentPointer;
 | |
| @class TSAttachmentStream;
 | |
| @class TSMessage;
 | |
| @class YapDatabaseReadTransaction;
 | |
| 
 | |
| // View model which has already fetched any attachments.
 | |
| @interface OWSQuotedReplyModel : NSObject
 | |
| 
 | |
| @property (nonatomic, readonly) uint64_t timestamp;
 | |
| @property (nonatomic, readonly) NSString *authorId;
 | |
| @property (nonatomic, readonly, nullable) TSAttachmentStream *attachmentStream;
 | |
| @property (nonatomic, readonly, nullable) TSAttachmentPointer *thumbnailAttachmentPointer;
 | |
| @property (nonatomic, readonly) BOOL thumbnailDownloadFailed;
 | |
| 
 | |
| // This property should be set IFF we are quoting a text message
 | |
| // or attachment with caption.
 | |
| @property (nullable, nonatomic, readonly) NSString *body;
 | |
| @property (nonatomic, readonly) BOOL isRemotelySourced;
 | |
| 
 | |
| #pragma mark - Attachments
 | |
| 
 | |
| // This is a MIME type.
 | |
| //
 | |
| // This property should be set IFF we are quoting an attachment message.
 | |
| @property (nonatomic, readonly, nullable) NSString *contentType;
 | |
| @property (nonatomic, readonly, nullable) NSString *sourceFilename;
 | |
| @property (nonatomic, readonly, nullable) UIImage *thumbnailImage;
 | |
| 
 | |
| - (instancetype)init NS_UNAVAILABLE;
 | |
| 
 | |
| // Used for persisted quoted replies, both incoming and outgoing.
 | |
| + (instancetype)quotedReplyWithQuotedMessage:(TSQuotedMessage *)quotedMessage
 | |
|                                     threadId:(NSString *)threadId
 | |
|                                  transaction:(YapDatabaseReadTransaction *)transaction;
 | |
| 
 | |
| // Builds a not-yet-sent QuotedReplyModel
 | |
| + (nullable instancetype)quotedReplyForSendingWithConversationViewItem:(id<ConversationViewItem>)conversationItem
 | |
|                                                               threadId:(NSString *)threadId
 | |
|                                                            transaction:(YapDatabaseReadTransaction *)transaction;
 | |
| 
 | |
| - (TSQuotedMessage *)buildQuotedMessageForSending;
 | |
| 
 | |
| // Loki
 | |
| @property (nonatomic, readonly) NSString *threadId;
 | |
| 
 | |
| @end
 | |
| 
 | |
| NS_ASSUME_NONNULL_END
 |