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.
180 lines
6.0 KiB
Objective-C
180 lines
6.0 KiB
Objective-C
//
|
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import "TSIncomingMessage.h"
|
|
#import "NSDate+OWS.h"
|
|
#import "NSNotificationCenter+OWS.h"
|
|
#import "OWSDisappearingMessagesConfiguration.h"
|
|
#import "OWSDisappearingMessagesJob.h"
|
|
#import "OWSReadReceiptManager.h"
|
|
#import "TSAttachmentPointer.h"
|
|
#import "TSContactThread.h"
|
|
#import "TSDatabaseSecondaryIndexes.h"
|
|
#import "TSGroupThread.h"
|
|
#import <YapDatabase/YapDatabaseConnection.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface TSIncomingMessage ()
|
|
|
|
@property (nonatomic, getter=wasRead) BOOL read;
|
|
|
|
@end
|
|
|
|
#pragma mark -
|
|
|
|
@implementation TSIncomingMessage
|
|
|
|
- (instancetype)initWithCoder:(NSCoder *)coder
|
|
{
|
|
self = [super initWithCoder:coder];
|
|
if (!self) {
|
|
return self;
|
|
}
|
|
|
|
return self;
|
|
}
|
|
|
|
- (instancetype)initIncomingMessageWithTimestamp:(uint64_t)timestamp
|
|
inThread:(TSThread *)thread
|
|
authorId:(NSString *)authorId
|
|
sourceDeviceId:(uint32_t)sourceDeviceId
|
|
messageBody:(nullable NSString *)body
|
|
attachmentIds:(NSArray<NSString *> *)attachmentIds
|
|
expiresInSeconds:(uint32_t)expiresInSeconds
|
|
quotedMessage:(nullable TSQuotedMessage *)quotedMessage
|
|
contactShare:(nullable OWSContact *)contactShare
|
|
{
|
|
self = [super initMessageWithTimestamp:timestamp
|
|
inThread:thread
|
|
messageBody:body
|
|
attachmentIds:attachmentIds
|
|
expiresInSeconds:expiresInSeconds
|
|
expireStartedAt:0
|
|
quotedMessage:quotedMessage
|
|
contactShare:contactShare];
|
|
|
|
if (!self) {
|
|
return self;
|
|
}
|
|
|
|
_authorId = authorId;
|
|
_sourceDeviceId = sourceDeviceId;
|
|
_read = NO;
|
|
|
|
return self;
|
|
}
|
|
|
|
+ (nullable instancetype)findMessageWithAuthorId:(NSString *)authorId
|
|
timestamp:(uint64_t)timestamp
|
|
transaction:(YapDatabaseReadWriteTransaction *)transaction
|
|
{
|
|
OWSAssert(transaction);
|
|
|
|
__block TSIncomingMessage *foundMessage;
|
|
// In theory we could build a new secondaryIndex for (authorId,timestamp), but in practice there should
|
|
// be *very* few (millisecond) timestamps with multiple authors.
|
|
[TSDatabaseSecondaryIndexes
|
|
enumerateMessagesWithTimestamp:timestamp
|
|
withBlock:^(NSString *collection, NSString *key, BOOL *stop) {
|
|
TSInteraction *interaction =
|
|
[TSInteraction fetchObjectWithUniqueID:key transaction:transaction];
|
|
if ([interaction isKindOfClass:[TSIncomingMessage class]]) {
|
|
TSIncomingMessage *message = (TSIncomingMessage *)interaction;
|
|
|
|
NSString *messageAuthorId = message.messageAuthorId;
|
|
OWSAssert(messageAuthorId.length > 0);
|
|
|
|
if ([messageAuthorId isEqualToString:authorId]) {
|
|
foundMessage = message;
|
|
}
|
|
}
|
|
}
|
|
usingTransaction:transaction];
|
|
|
|
return foundMessage;
|
|
}
|
|
|
|
// TODO get rid of this method and instead populate authorId in initWithCoder:
|
|
- (NSString *)messageAuthorId
|
|
{
|
|
// authorId isn't set on all legacy messages, so we take
|
|
// extra measures to ensure we obtain a valid value.
|
|
NSString *messageAuthorId;
|
|
if (self.authorId) {
|
|
// Group Thread
|
|
messageAuthorId = self.authorId;
|
|
} else {
|
|
// Contact Thread
|
|
messageAuthorId = [TSContactThread contactIdFromThreadId:self.uniqueThreadId];
|
|
}
|
|
OWSAssert(messageAuthorId.length > 0);
|
|
return messageAuthorId;
|
|
}
|
|
|
|
- (OWSInteractionType)interactionType
|
|
{
|
|
return OWSInteractionType_IncomingMessage;
|
|
}
|
|
|
|
- (BOOL)shouldStartExpireTimer:(YapDatabaseReadTransaction *)transaction
|
|
{
|
|
for (NSString *attachmentId in self.attachmentIds) {
|
|
TSAttachment *_Nullable attachment =
|
|
[TSAttachment fetchObjectWithUniqueID:attachmentId transaction:transaction];
|
|
if ([attachment isKindOfClass:[TSAttachmentPointer class]]) {
|
|
return NO;
|
|
}
|
|
}
|
|
return self.isExpiringMessage;
|
|
}
|
|
|
|
#pragma mark - OWSReadTracking
|
|
|
|
- (BOOL)shouldAffectUnreadCounts
|
|
{
|
|
return YES;
|
|
}
|
|
|
|
- (void)markAsReadNowWithSendReadReceipt:(BOOL)sendReadReceipt
|
|
transaction:(YapDatabaseReadWriteTransaction *)transaction;
|
|
{
|
|
[self markAsReadAtTimestamp:[NSDate ows_millisecondTimeStamp]
|
|
sendReadReceipt:sendReadReceipt
|
|
transaction:transaction];
|
|
}
|
|
|
|
- (void)markAsReadAtTimestamp:(uint64_t)readTimestamp
|
|
sendReadReceipt:(BOOL)sendReadReceipt
|
|
transaction:(YapDatabaseReadWriteTransaction *)transaction;
|
|
{
|
|
OWSAssert(transaction);
|
|
|
|
if (_read && readTimestamp <= self.expireStartedAt) {
|
|
return;
|
|
}
|
|
|
|
NSTimeInterval secondsAgoRead = ([NSDate ows_millisecondTimeStamp] - readTimestamp) / 1000;
|
|
DDLogDebug(@"%@ marking uniqueId: %@ which has timestamp: %llu as read: %f seconds ago",
|
|
self.logTag,
|
|
self.uniqueId,
|
|
self.timestamp,
|
|
secondsAgoRead);
|
|
_read = YES;
|
|
[self saveWithTransaction:transaction];
|
|
[self touchThreadWithTransaction:transaction];
|
|
|
|
[[OWSDisappearingMessagesJob sharedJob] startAnyExpirationForMessage:self
|
|
expirationStartedAt:readTimestamp
|
|
transaction:transaction];
|
|
|
|
if (sendReadReceipt) {
|
|
[OWSReadReceiptManager.sharedManager messageWasReadLocally:self];
|
|
}
|
|
}
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|