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.
		
		
		
		
		
			
		
			
	
	
		
			57 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Matlab
		
	
		
		
			
		
	
	
			57 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Matlab
		
	
| 
											5 years ago
										 | // | ||
|  | //  Copyright (c) 2018 Open Whisper Systems. All rights reserved. | ||
|  | // | ||
|  | 
 | ||
|  | #import "OWSAddToContactsOfferMessage.h" | ||
|  | 
 | ||
|  | NS_ASSUME_NONNULL_BEGIN | ||
|  | 
 | ||
|  | @interface OWSAddToContactsOfferMessage () | ||
|  | 
 | ||
|  | @property (nonatomic) NSString *contactId; | ||
|  | 
 | ||
|  | @end | ||
|  | 
 | ||
|  | #pragma mark - | ||
|  | 
 | ||
|  | // This is a deprecated class, we're keeping it around to avoid YapDB serialization errors | ||
|  | // TODO - remove this class, clean up existing instances, ensure any missed ones don't explode (UnknownDBObject) | ||
|  | #pragma clang diagnostic push | ||
|  | #pragma clang diagnostic ignored "-Wdeprecated-implementations" | ||
|  | @implementation OWSAddToContactsOfferMessage | ||
|  | #pragma clang diagnostic pop | ||
|  | 
 | ||
|  | + (instancetype)addToContactsOfferMessageWithTimestamp:(uint64_t)timestamp | ||
|  |                                                 thread:(TSThread *)thread | ||
|  |                                              contactId:(NSString *)contactId | ||
|  | { | ||
|  |     return [[OWSAddToContactsOfferMessage alloc] initWithTimestamp:timestamp thread:thread contactId:contactId]; | ||
|  | } | ||
|  | 
 | ||
|  | - (instancetype)initWithTimestamp:(uint64_t)timestamp thread:(TSThread *)thread contactId:(NSString *)contactId | ||
|  | { | ||
|  |     self = [super initWithTimestamp:timestamp inThread:thread messageType:TSInfoMessageAddToContactsOffer]; | ||
|  | 
 | ||
|  |     if (self) { | ||
|  |         _contactId = contactId; | ||
|  |     } | ||
|  | 
 | ||
|  |     return self; | ||
|  | } | ||
|  | 
 | ||
|  | - (BOOL)shouldUseReceiptDateForSorting | ||
|  | { | ||
|  |     // Use the timestamp, not the "received at" timestamp to sort, | ||
|  |     // since we're creating these interactions after the fact and back-dating them. | ||
|  |     return NO; | ||
|  | } | ||
|  | 
 | ||
|  | - (BOOL)isDynamicInteraction | ||
|  | { | ||
|  |     return YES; | ||
|  | } | ||
|  | 
 | ||
|  | @end | ||
|  | 
 | ||
|  | NS_ASSUME_NONNULL_END |