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.
		
		
		
		
		
			
		
			
				
	
	
		
			74 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Objective-C
		
	
			
		
		
	
	
			74 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Objective-C
		
	
//
 | 
						|
//  Copyright (c) 2018 Open Whisper Systems. All rights reserved.
 | 
						|
//
 | 
						|
 | 
						|
#import "OWSContactOffersInteraction.h"
 | 
						|
 | 
						|
NS_ASSUME_NONNULL_BEGIN
 | 
						|
 | 
						|
@interface OWSContactOffersInteraction ()
 | 
						|
 | 
						|
@property (nonatomic) BOOL hasBlockOffer;
 | 
						|
@property (nonatomic) BOOL hasAddToContactsOffer;
 | 
						|
@property (nonatomic) BOOL hasAddToProfileWhitelistOffer;
 | 
						|
 | 
						|
@end
 | 
						|
 | 
						|
@implementation OWSContactOffersInteraction
 | 
						|
 | 
						|
- (instancetype)initWithCoder:(NSCoder *)coder
 | 
						|
{
 | 
						|
    return [super initWithCoder:coder];
 | 
						|
}
 | 
						|
 | 
						|
- (instancetype)initInteractionWithUniqueId:(NSString *)uniqueId
 | 
						|
                                  timestamp:(uint64_t)timestamp
 | 
						|
                                     thread:(TSThread *)thread
 | 
						|
                              hasBlockOffer:(BOOL)hasBlockOffer
 | 
						|
                      hasAddToContactsOffer:(BOOL)hasAddToContactsOffer
 | 
						|
              hasAddToProfileWhitelistOffer:(BOOL)hasAddToProfileWhitelistOffer
 | 
						|
                                recipientId:(NSString *)recipientId
 | 
						|
                        beforeInteractionId:(NSString *)beforeInteractionId
 | 
						|
{
 | 
						|
    self = [super initInteractionWithUniqueId:uniqueId timestamp:timestamp inThread:thread];
 | 
						|
 | 
						|
    if (!self) {
 | 
						|
        return self;
 | 
						|
    }
 | 
						|
 | 
						|
    _hasBlockOffer = hasBlockOffer;
 | 
						|
    _hasAddToContactsOffer = hasAddToContactsOffer;
 | 
						|
    _hasAddToProfileWhitelistOffer = hasAddToProfileWhitelistOffer;
 | 
						|
    OWSAssertDebug(recipientId.length > 0);
 | 
						|
    _recipientId = recipientId;
 | 
						|
    _beforeInteractionId = beforeInteractionId;
 | 
						|
 | 
						|
    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;
 | 
						|
}
 | 
						|
 | 
						|
- (OWSInteractionType)interactionType
 | 
						|
{
 | 
						|
    return OWSInteractionType_Offer;
 | 
						|
}
 | 
						|
 | 
						|
- (void)saveWithTransaction:(YapDatabaseReadWriteTransaction *)transaction
 | 
						|
{
 | 
						|
    OWSFailDebug(@"This interaction should never be saved to the database.");
 | 
						|
}
 | 
						|
 | 
						|
@end
 | 
						|
 | 
						|
NS_ASSUME_NONNULL_END
 |