2020-11-25 06:15:16 +01:00
|
|
|
import SessionProtocolKit
|
|
|
|
import SignalCoreKit
|
2020-11-18 05:53:45 +01:00
|
|
|
|
2020-11-25 06:15:16 +01:00
|
|
|
extension MessageReceiver {
|
2020-11-18 05:53:45 +01:00
|
|
|
|
2020-11-25 06:15:16 +01:00
|
|
|
internal static func isBlocked(_ publicKey: String) -> Bool {
|
2020-11-18 05:53:45 +01:00
|
|
|
return SSKEnvironment.shared.blockingManager.isRecipientIdBlocked(publicKey)
|
|
|
|
}
|
|
|
|
|
2020-12-07 01:21:24 +01:00
|
|
|
public static func handle(_ message: Message, associatedWithProto proto: SNProtoContent, openGroupID: String?, isBackgroundPoll: Bool, using transaction: Any) throws {
|
2020-11-25 06:15:16 +01:00
|
|
|
switch message {
|
|
|
|
case let message as ReadReceipt: handleReadReceipt(message, using: transaction)
|
|
|
|
case let message as TypingIndicator: handleTypingIndicator(message, using: transaction)
|
2021-01-04 05:30:13 +01:00
|
|
|
case let message as ClosedGroupUpdateV2: handleClosedGroupUpdateV2(message, using: transaction)
|
2020-11-25 06:15:16 +01:00
|
|
|
case let message as ExpirationTimerUpdate: handleExpirationTimerUpdate(message, using: transaction)
|
2020-12-07 01:21:24 +01:00
|
|
|
case let message as VisibleMessage: try handleVisibleMessage(message, associatedWithProto: proto, openGroupID: openGroupID, isBackgroundPoll: isBackgroundPoll, using: transaction)
|
2020-11-25 06:15:16 +01:00
|
|
|
default: fatalError()
|
2020-11-18 05:53:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-25 06:15:16 +01:00
|
|
|
private static func handleReadReceipt(_ message: ReadReceipt, using transaction: Any) {
|
|
|
|
SSKEnvironment.shared.readReceiptManager.processReadReceipts(fromRecipientId: message.sender!, sentTimestamps: message.timestamps!.map { NSNumber(value: $0) }, readTimestamp: message.receivedTimestamp!)
|
|
|
|
}
|
2020-11-18 05:53:45 +01:00
|
|
|
|
2020-11-25 06:15:16 +01:00
|
|
|
private static func handleTypingIndicator(_ message: TypingIndicator, using transaction: Any) {
|
|
|
|
switch message.kind! {
|
|
|
|
case .started: showTypingIndicatorIfNeeded(for: message.sender!)
|
|
|
|
case .stopped: hideTypingIndicatorIfNeeded(for: message.sender!)
|
|
|
|
}
|
|
|
|
}
|
2020-11-18 05:53:45 +01:00
|
|
|
|
2020-11-25 06:15:16 +01:00
|
|
|
public static func showTypingIndicatorIfNeeded(for senderPublicKey: String) {
|
2020-11-18 05:53:45 +01:00
|
|
|
var threadOrNil: TSContactThread?
|
|
|
|
Storage.read { transaction in
|
|
|
|
threadOrNil = TSContactThread.getWithContactId(senderPublicKey, transaction: transaction)
|
|
|
|
}
|
|
|
|
guard let thread = threadOrNil else { return }
|
|
|
|
func showTypingIndicatorsIfNeeded() {
|
|
|
|
SSKEnvironment.shared.typingIndicators.didReceiveTypingStartedMessage(inThread: thread, recipientId: senderPublicKey, deviceId: 1)
|
|
|
|
}
|
|
|
|
if Thread.current.isMainThread {
|
|
|
|
showTypingIndicatorsIfNeeded()
|
|
|
|
} else {
|
|
|
|
DispatchQueue.main.async {
|
|
|
|
showTypingIndicatorsIfNeeded()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-25 06:15:16 +01:00
|
|
|
public static func hideTypingIndicatorIfNeeded(for senderPublicKey: String) {
|
2020-11-18 05:53:45 +01:00
|
|
|
var threadOrNil: TSContactThread?
|
|
|
|
Storage.read { transaction in
|
|
|
|
threadOrNil = TSContactThread.getWithContactId(senderPublicKey, transaction: transaction)
|
|
|
|
}
|
|
|
|
guard let thread = threadOrNil else { return }
|
|
|
|
func hideTypingIndicatorsIfNeeded() {
|
|
|
|
SSKEnvironment.shared.typingIndicators.didReceiveTypingStoppedMessage(inThread: thread, recipientId: senderPublicKey, deviceId: 1)
|
|
|
|
}
|
|
|
|
if Thread.current.isMainThread {
|
|
|
|
hideTypingIndicatorsIfNeeded()
|
|
|
|
} else {
|
|
|
|
DispatchQueue.main.async {
|
|
|
|
hideTypingIndicatorsIfNeeded()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-25 06:15:16 +01:00
|
|
|
public static func cancelTypingIndicatorsIfNeeded(for senderPublicKey: String) {
|
2020-11-18 05:53:45 +01:00
|
|
|
var threadOrNil: TSContactThread?
|
|
|
|
Storage.read { transaction in
|
|
|
|
threadOrNil = TSContactThread.getWithContactId(senderPublicKey, transaction: transaction)
|
|
|
|
}
|
|
|
|
guard let thread = threadOrNil else { return }
|
|
|
|
func cancelTypingIndicatorsIfNeeded() {
|
|
|
|
SSKEnvironment.shared.typingIndicators.didReceiveIncomingMessage(inThread: thread, recipientId: senderPublicKey, deviceId: 1)
|
|
|
|
}
|
|
|
|
if Thread.current.isMainThread {
|
|
|
|
cancelTypingIndicatorsIfNeeded()
|
|
|
|
} else {
|
|
|
|
DispatchQueue.main.async {
|
|
|
|
cancelTypingIndicatorsIfNeeded()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-25 06:15:16 +01:00
|
|
|
private static func handleExpirationTimerUpdate(_ message: ExpirationTimerUpdate, using transaction: Any) {
|
|
|
|
if message.duration! > 0 {
|
|
|
|
setExpirationTimer(to: message.duration!, for: message.sender!, groupPublicKey: message.groupPublicKey, using: transaction)
|
|
|
|
} else {
|
|
|
|
disableExpirationTimer(for: message.sender!, groupPublicKey: message.groupPublicKey, using: transaction)
|
2020-11-18 05:53:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-25 06:15:16 +01:00
|
|
|
public static func setExpirationTimer(to duration: UInt32, for senderPublicKey: String, groupPublicKey: String?, using transaction: Any) {
|
2020-11-18 05:53:45 +01:00
|
|
|
let transaction = transaction as! YapDatabaseReadWriteTransaction
|
2020-11-26 05:51:12 +01:00
|
|
|
var isGroup = false
|
2020-11-18 05:53:45 +01:00
|
|
|
var threadOrNil: TSThread?
|
2020-11-26 05:51:12 +01:00
|
|
|
if let groupPublicKey = groupPublicKey {
|
|
|
|
guard Storage.shared.isClosedGroup(groupPublicKey) else { return }
|
|
|
|
let groupID = LKGroupUtilities.getEncodedClosedGroupIDAsData(groupPublicKey)
|
|
|
|
threadOrNil = TSGroupThread.fetch(uniqueId: TSGroupThread.threadId(fromGroupId: groupID), transaction: transaction)
|
|
|
|
isGroup = true
|
|
|
|
} else {
|
|
|
|
threadOrNil = TSContactThread.getWithContactId(senderPublicKey, transaction: transaction)
|
2020-11-18 05:53:45 +01:00
|
|
|
}
|
|
|
|
guard let thread = threadOrNil else { return }
|
|
|
|
let configuration = OWSDisappearingMessagesConfiguration(threadId: thread.uniqueId!, enabled: true, durationSeconds: duration)
|
|
|
|
configuration.save(with: transaction)
|
2020-11-26 05:51:12 +01:00
|
|
|
let senderDisplayName = SSKEnvironment.shared.profileManager.profileNameForRecipient(withID: senderPublicKey, transaction: transaction) ?? senderPublicKey
|
2020-11-18 05:53:45 +01:00
|
|
|
let message = OWSDisappearingConfigurationUpdateInfoMessage(timestamp: NSDate.millisecondTimestamp(), thread: thread,
|
2020-11-26 05:51:12 +01:00
|
|
|
configuration: configuration, createdByRemoteName: senderDisplayName, createdInExistingGroup: isGroup)
|
2020-11-18 05:53:45 +01:00
|
|
|
message.save(with: transaction)
|
|
|
|
SSKEnvironment.shared.disappearingMessagesJob.startIfNecessary()
|
|
|
|
}
|
|
|
|
|
2020-11-25 06:15:16 +01:00
|
|
|
public static func disableExpirationTimer(for senderPublicKey: String, groupPublicKey: String?, using transaction: Any) {
|
2020-11-18 05:53:45 +01:00
|
|
|
let transaction = transaction as! YapDatabaseReadWriteTransaction
|
2020-11-26 05:51:12 +01:00
|
|
|
var isGroup = false
|
2020-11-18 05:53:45 +01:00
|
|
|
var threadOrNil: TSThread?
|
2020-11-26 05:51:12 +01:00
|
|
|
if let groupPublicKey = groupPublicKey {
|
|
|
|
guard Storage.shared.isClosedGroup(groupPublicKey) else { return }
|
|
|
|
let groupID = LKGroupUtilities.getEncodedClosedGroupIDAsData(groupPublicKey)
|
|
|
|
threadOrNil = TSGroupThread.fetch(uniqueId: TSGroupThread.threadId(fromGroupId: groupID), transaction: transaction)
|
|
|
|
isGroup = true
|
|
|
|
} else {
|
|
|
|
threadOrNil = TSContactThread.getWithContactId(senderPublicKey, transaction: transaction)
|
2020-11-18 05:53:45 +01:00
|
|
|
}
|
|
|
|
guard let thread = threadOrNil else { return }
|
|
|
|
let configuration = OWSDisappearingMessagesConfiguration(threadId: thread.uniqueId!, enabled: false, durationSeconds: 24 * 60 * 60)
|
|
|
|
configuration.save(with: transaction)
|
2020-11-26 05:51:12 +01:00
|
|
|
let senderDisplayName = SSKEnvironment.shared.profileManager.profileNameForRecipient(withID: senderPublicKey, transaction: transaction) ?? senderPublicKey
|
2020-11-18 05:53:45 +01:00
|
|
|
let message = OWSDisappearingConfigurationUpdateInfoMessage(timestamp: NSDate.millisecondTimestamp(), thread: thread,
|
2020-11-26 05:51:12 +01:00
|
|
|
configuration: configuration, createdByRemoteName: senderDisplayName, createdInExistingGroup: isGroup)
|
2020-11-18 05:53:45 +01:00
|
|
|
message.save(with: transaction)
|
|
|
|
SSKEnvironment.shared.disappearingMessagesJob.startIfNecessary()
|
|
|
|
}
|
|
|
|
|
2020-12-01 09:45:42 +01:00
|
|
|
@discardableResult
|
2020-12-07 01:21:24 +01:00
|
|
|
public static func handleVisibleMessage(_ message: VisibleMessage, associatedWithProto proto: SNProtoContent, openGroupID: String?, isBackgroundPoll: Bool, using transaction: Any) throws -> String {
|
2020-12-02 06:25:16 +01:00
|
|
|
let storage = SNMessagingKitConfiguration.shared.storage
|
2020-11-25 06:15:16 +01:00
|
|
|
let transaction = transaction as! YapDatabaseReadWriteTransaction
|
2020-12-03 00:12:29 +01:00
|
|
|
var isMainAppAndActive = false
|
|
|
|
if let sharedUserDefaults = UserDefaults(suiteName: "group.com.loki-project.loki-messenger") {
|
|
|
|
isMainAppAndActive = sharedUserDefaults.bool(forKey: "isMainAppActive")
|
|
|
|
}
|
2020-11-25 06:15:16 +01:00
|
|
|
// Parse & persist attachments
|
|
|
|
let attachments: [VisibleMessage.Attachment] = proto.dataMessage!.attachments.compactMap { proto in
|
|
|
|
guard let attachment = VisibleMessage.Attachment.fromProto(proto) else { return nil }
|
|
|
|
return attachment.isValid ? attachment : nil
|
|
|
|
}
|
2020-11-28 03:57:03 +01:00
|
|
|
let attachmentIDs = storage.persist(attachments, using: transaction)
|
2020-11-25 06:15:16 +01:00
|
|
|
message.attachmentIDs = attachmentIDs
|
2020-11-28 03:57:03 +01:00
|
|
|
var attachmentsToDownload = attachmentIDs
|
2020-11-25 06:15:16 +01:00
|
|
|
// Update profile if needed
|
2020-11-26 05:16:35 +01:00
|
|
|
if let newProfile = message.profile {
|
2020-11-25 06:15:16 +01:00
|
|
|
let profileManager = SSKEnvironment.shared.profileManager
|
2020-12-18 00:35:16 +01:00
|
|
|
let sessionID = message.sender!
|
|
|
|
let oldProfile = OWSUserProfile.fetch(uniqueId: sessionID, transaction: transaction)
|
|
|
|
let contact = Storage.shared.getContact(with: sessionID) ?? Contact(sessionID: sessionID)
|
2020-11-26 05:16:35 +01:00
|
|
|
if let displayName = newProfile.displayName, displayName != oldProfile?.profileName {
|
2020-12-18 00:35:16 +01:00
|
|
|
profileManager.updateProfileForContact(withID: sessionID, displayName: displayName, with: transaction)
|
|
|
|
contact.displayName = displayName
|
2020-11-25 06:15:16 +01:00
|
|
|
}
|
2020-11-26 05:16:35 +01:00
|
|
|
if let profileKey = newProfile.profileKey, let profilePictureURL = newProfile.profilePictureURL, profileKey.count == kAES256_KeyByteLength,
|
|
|
|
profileKey != oldProfile?.profileKey?.keyData {
|
2020-12-18 00:35:16 +01:00
|
|
|
profileManager.setProfileKeyData(profileKey, forRecipientId: sessionID, avatarURL: profilePictureURL)
|
|
|
|
contact.profilePictureURL = profilePictureURL
|
|
|
|
contact.profilePictureEncryptionKey = OWSAES256Key(data: profileKey)
|
2020-11-25 06:15:16 +01:00
|
|
|
}
|
2020-11-30 05:44:07 +01:00
|
|
|
if let rawDisplayName = newProfile.displayName, let openGroupID = openGroupID {
|
2020-12-18 00:35:16 +01:00
|
|
|
let endIndex = sessionID.endIndex
|
|
|
|
let cutoffIndex = sessionID.index(endIndex, offsetBy: -8)
|
|
|
|
let displayName = "\(rawDisplayName) (...\(sessionID[cutoffIndex..<endIndex]))"
|
|
|
|
Storage.shared.setOpenGroupDisplayName(to: displayName, for: sessionID, inOpenGroupWithID: openGroupID, using: transaction)
|
2020-11-30 05:44:07 +01:00
|
|
|
}
|
2020-11-25 06:15:16 +01:00
|
|
|
}
|
2020-11-27 06:22:15 +01:00
|
|
|
// Get or create thread
|
2020-11-30 01:00:28 +01:00
|
|
|
guard let threadID = storage.getOrCreateThread(for: message.sender!, groupPublicKey: message.groupPublicKey, openGroupID: openGroupID, using: transaction) else { throw Error.noThread }
|
2020-11-27 06:22:15 +01:00
|
|
|
// Parse quote if needed
|
|
|
|
var tsQuotedMessage: TSQuotedMessage? = nil
|
2020-11-27 05:13:42 +01:00
|
|
|
if message.quote != nil && proto.dataMessage?.quote != nil, let thread = TSThread.fetch(uniqueId: threadID, transaction: transaction) {
|
2020-11-27 06:22:15 +01:00
|
|
|
tsQuotedMessage = TSQuotedMessage(for: proto.dataMessage!, thread: thread, transaction: transaction)
|
2020-11-27 07:13:37 +01:00
|
|
|
if let id = tsQuotedMessage?.thumbnailAttachmentStreamId() ?? tsQuotedMessage?.thumbnailAttachmentPointerId() {
|
2020-11-28 03:57:03 +01:00
|
|
|
attachmentsToDownload.append(id)
|
2020-11-27 07:13:37 +01:00
|
|
|
}
|
2020-11-27 05:13:42 +01:00
|
|
|
}
|
2020-11-28 01:48:08 +01:00
|
|
|
// Parse link preview if needed
|
|
|
|
var owsLinkPreview: OWSLinkPreview?
|
|
|
|
if message.linkPreview != nil && proto.dataMessage?.preview.isEmpty == false {
|
|
|
|
owsLinkPreview = try? OWSLinkPreview.buildValidatedLinkPreview(dataMessage: proto.dataMessage!, body: message.text, transaction: transaction)
|
|
|
|
if let id = owsLinkPreview?.imageAttachmentId {
|
2020-11-28 03:57:03 +01:00
|
|
|
attachmentsToDownload.append(id)
|
2020-11-28 01:48:08 +01:00
|
|
|
}
|
|
|
|
}
|
2020-11-27 06:22:15 +01:00
|
|
|
// Persist the message
|
2020-11-28 01:48:08 +01:00
|
|
|
guard let tsIncomingMessageID = storage.persist(message, quotedMessage: tsQuotedMessage, linkPreview: owsLinkPreview,
|
2020-11-30 01:00:28 +01:00
|
|
|
groupPublicKey: message.groupPublicKey, openGroupID: openGroupID, using: transaction) else { throw Error.noThread }
|
2020-11-27 06:22:15 +01:00
|
|
|
message.threadID = threadID
|
2020-11-25 06:15:16 +01:00
|
|
|
// Start attachment downloads if needed
|
2020-12-01 09:45:42 +01:00
|
|
|
attachmentsToDownload.forEach { attachmentID in
|
|
|
|
let downloadJob = AttachmentDownloadJob(attachmentID: attachmentID, tsIncomingMessageID: tsIncomingMessageID)
|
2020-12-03 00:12:29 +01:00
|
|
|
if isMainAppAndActive {
|
2020-12-01 09:45:42 +01:00
|
|
|
JobQueue.shared.add(downloadJob, using: transaction)
|
|
|
|
} else {
|
|
|
|
JobQueue.shared.addWithoutExecuting(downloadJob, using: transaction)
|
2020-11-25 06:15:16 +01:00
|
|
|
}
|
2020-12-01 09:45:42 +01:00
|
|
|
}
|
|
|
|
// Cancel any typing indicators if needed
|
2020-12-03 00:12:29 +01:00
|
|
|
if isMainAppAndActive {
|
2020-12-01 09:45:42 +01:00
|
|
|
cancelTypingIndicatorsIfNeeded(for: message.sender!)
|
|
|
|
}
|
2020-11-25 06:15:16 +01:00
|
|
|
// Notify the user if needed
|
2020-12-07 01:21:24 +01:00
|
|
|
guard (isMainAppAndActive || isBackgroundPoll), let tsIncomingMessage = TSIncomingMessage.fetch(uniqueId: tsIncomingMessageID, transaction: transaction),
|
2020-12-01 09:45:42 +01:00
|
|
|
let thread = TSThread.fetch(uniqueId: threadID, transaction: transaction) else { return tsIncomingMessageID }
|
2020-11-30 22:35:13 +01:00
|
|
|
SSKEnvironment.shared.notificationsManager!.notifyUser(for: tsIncomingMessage, in: thread, transaction: transaction)
|
2020-12-01 09:45:42 +01:00
|
|
|
return tsIncomingMessageID
|
2020-11-25 06:15:16 +01:00
|
|
|
}
|
2020-11-18 05:53:45 +01:00
|
|
|
|
2021-01-04 05:30:13 +01:00
|
|
|
private static func handleClosedGroupUpdateV2(_ message: ClosedGroupUpdateV2, using transaction: Any) {
|
|
|
|
switch message.kind! {
|
|
|
|
case .new: handleNewGroupV2(message, using: transaction)
|
|
|
|
case .update: handleGroupUpdateV2(message, using: transaction)
|
|
|
|
case .encryptionKeyPair: handleGroupEncryptionKeyPair(message, using: transaction)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static func handleNewGroupV2(_ message: ClosedGroupUpdateV2, using transaction: Any) {
|
|
|
|
// Prepare
|
|
|
|
guard case let .new(publicKeyAsData, name, encryptionKeyPair, membersAsData, adminsAsData) = message.kind else { return }
|
|
|
|
let transaction = transaction as! YapDatabaseReadWriteTransaction
|
|
|
|
// Unwrap the message
|
|
|
|
let groupPublicKey = publicKeyAsData.toHexString()
|
|
|
|
let members = membersAsData.map { $0.toHexString() }
|
|
|
|
let admins = adminsAsData.map { $0.toHexString() }
|
|
|
|
// Create the group
|
|
|
|
let groupID = LKGroupUtilities.getEncodedClosedGroupIDAsData(groupPublicKey)
|
|
|
|
let group = TSGroupModel(title: name, memberIds: members, image: nil, groupId: groupID, groupType: .closedGroup, adminIds: admins)
|
|
|
|
let thread: TSGroupThread
|
|
|
|
if let t = TSGroupThread.fetch(uniqueId: TSGroupThread.threadId(fromGroupId: groupID), transaction: transaction) {
|
|
|
|
thread = t
|
|
|
|
thread.setGroupModel(group, with: transaction)
|
|
|
|
} else {
|
|
|
|
thread = TSGroupThread.getOrCreateThread(with: group, transaction: transaction)
|
|
|
|
thread.save(with: transaction)
|
|
|
|
}
|
|
|
|
// Add the group to the user's set of public keys to poll for
|
|
|
|
Storage.shared.addClosedGroupPublicKey(groupPublicKey, using: transaction)
|
2021-01-08 00:32:54 +01:00
|
|
|
// Store the key pair
|
2021-01-04 05:30:13 +01:00
|
|
|
Storage.shared.addClosedGroupEncryptionKeyPair(encryptionKeyPair, for: groupPublicKey, using: transaction)
|
|
|
|
// Notify the PN server
|
|
|
|
let _ = PushNotificationAPI.performOperation(.subscribe, for: groupPublicKey, publicKey: getUserHexEncodedPublicKey())
|
|
|
|
// Notify the user
|
|
|
|
let infoMessage = TSInfoMessage(timestamp: NSDate.ows_millisecondTimeStamp(), in: thread, messageType: .typeGroupUpdate)
|
|
|
|
infoMessage.save(with: transaction)
|
|
|
|
}
|
|
|
|
|
|
|
|
private static func handleGroupUpdateV2(_ message: ClosedGroupUpdateV2, using transaction: Any) {
|
|
|
|
// Prepare
|
|
|
|
guard case let .update(name, membersAsData) = message.kind else { return }
|
|
|
|
let transaction = transaction as! YapDatabaseReadWriteTransaction
|
|
|
|
// Unwrap the message
|
|
|
|
guard let groupPublicKey = message.groupPublicKey else { return }
|
|
|
|
let members = membersAsData.map { $0.toHexString() }
|
|
|
|
// Get the group
|
|
|
|
let groupID = LKGroupUtilities.getEncodedClosedGroupIDAsData(groupPublicKey)
|
|
|
|
let threadID = TSGroupThread.threadId(fromGroupId: groupID)
|
|
|
|
guard let thread = TSGroupThread.fetch(uniqueId: threadID, transaction: transaction) else {
|
|
|
|
return SNLog("Ignoring closed group update message for nonexistent group.")
|
|
|
|
}
|
|
|
|
let group = thread.groupModel
|
|
|
|
let oldMembers = group.groupMemberIds
|
|
|
|
// Check that the sender is a member of the group (before the update)
|
|
|
|
guard Set(group.groupMemberIds).contains(message.sender!) else {
|
|
|
|
return SNLog("Ignoring closed group update message from non-member.")
|
|
|
|
}
|
2021-01-08 04:54:27 +01:00
|
|
|
// Check that the admin wasn't removed unless the group was destroyed entirely
|
|
|
|
if !members.contains(group.groupAdminIds.first!) && !members.isEmpty {
|
2021-01-08 03:31:46 +01:00
|
|
|
return SNLog("Ignoring invalid closed group update message.")
|
|
|
|
}
|
2021-01-04 05:30:13 +01:00
|
|
|
// Remove the group from the user's set of public keys to poll for if the current user was removed
|
|
|
|
let userPublicKey = getUserHexEncodedPublicKey()
|
|
|
|
let wasCurrentUserRemoved = !members.contains(userPublicKey)
|
|
|
|
if wasCurrentUserRemoved {
|
2021-01-07 04:39:07 +01:00
|
|
|
Storage.shared.removeClosedGroupPublicKey(groupPublicKey, using: transaction)
|
2021-01-08 00:32:54 +01:00
|
|
|
// Remove the key pairs
|
|
|
|
Storage.shared.removeAllClosedGroupEncryptionKeyPairs(for: groupPublicKey, using: transaction)
|
2021-01-04 05:30:13 +01:00
|
|
|
// Notify the PN server
|
|
|
|
let _ = PushNotificationAPI.performOperation(.unsubscribe, for: groupPublicKey, publicKey: userPublicKey)
|
|
|
|
}
|
|
|
|
// Generate and distribute a new encryption key pair if needed
|
|
|
|
let wasAnyUserRemoved = (Set(members).intersection(oldMembers) != Set(oldMembers))
|
|
|
|
let isCurrentUserAdmin = group.groupAdminIds.contains(getUserHexEncodedPublicKey())
|
|
|
|
if wasAnyUserRemoved && isCurrentUserAdmin {
|
|
|
|
do {
|
|
|
|
try MessageSender.generateAndSendNewEncryptionKeyPair(for: groupPublicKey, to: Set(members), using: transaction)
|
|
|
|
} catch {
|
|
|
|
SNLog("Couldn't distribute new encryption key pair.")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Update the group
|
|
|
|
let newGroupModel = TSGroupModel(title: name, memberIds: members, image: nil, groupId: groupID, groupType: .closedGroup, adminIds: group.groupAdminIds)
|
|
|
|
thread.setGroupModel(newGroupModel, with: transaction)
|
|
|
|
// Notify the user if needed
|
|
|
|
if Set(members) != Set(oldMembers) || name != group.groupName {
|
|
|
|
let infoMessageType: TSInfoMessageType = wasCurrentUserRemoved ? .typeGroupQuit : .typeGroupUpdate
|
|
|
|
let updateInfo = group.getInfoStringAboutUpdate(to: newGroupModel)
|
|
|
|
let infoMessage = TSInfoMessage(timestamp: NSDate.ows_millisecondTimeStamp(), in: thread, messageType: infoMessageType, customMessage: updateInfo)
|
|
|
|
infoMessage.save(with: transaction)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static func handleGroupEncryptionKeyPair(_ message: ClosedGroupUpdateV2, using transaction: Any) {
|
|
|
|
// Prepare
|
|
|
|
guard case let .encryptionKeyPair(wrappers) = message.kind, let groupPublicKey = message.groupPublicKey else { return }
|
|
|
|
let transaction = transaction as! YapDatabaseReadWriteTransaction
|
|
|
|
let userPublicKey = getUserHexEncodedPublicKey()
|
|
|
|
guard let userKeyPair = SNMessagingKitConfiguration.shared.storage.getUserKeyPair() else {
|
|
|
|
return SNLog("Couldn't find user X25519 key pair.")
|
|
|
|
}
|
|
|
|
let groupID = LKGroupUtilities.getEncodedClosedGroupIDAsData(groupPublicKey)
|
|
|
|
let threadID = TSGroupThread.threadId(fromGroupId: groupID)
|
|
|
|
guard let thread = TSGroupThread.fetch(uniqueId: threadID, transaction: transaction) else {
|
|
|
|
return SNLog("Ignoring closed group encryption key pair for nonexistent group.")
|
|
|
|
}
|
|
|
|
guard thread.groupModel.groupAdminIds.contains(message.sender!) else {
|
|
|
|
return SNLog("Ignoring closed group encryption key pair from non-admin.")
|
|
|
|
}
|
|
|
|
// Find our wrapper and decrypt it if possible
|
|
|
|
guard let wrapper = wrappers.first(where: { $0.publicKey == userPublicKey }), let encryptedKeyPair = wrapper.encryptedKeyPair else { return }
|
|
|
|
let plaintext: Data
|
|
|
|
do {
|
|
|
|
plaintext = try MessageReceiver.decryptWithSessionProtocol(ciphertext: encryptedKeyPair, using: userKeyPair).plaintext
|
|
|
|
} catch {
|
|
|
|
return SNLog("Couldn't decrypt closed group encryption key pair.")
|
|
|
|
}
|
|
|
|
// Parse it
|
|
|
|
let proto: SNProtoDataMessageClosedGroupUpdateV2KeyPair
|
|
|
|
do {
|
|
|
|
proto = try SNProtoDataMessageClosedGroupUpdateV2KeyPair.parseData(plaintext)
|
|
|
|
} catch {
|
|
|
|
return SNLog("Couldn't parse closed group encryption key pair.")
|
|
|
|
}
|
|
|
|
let keyPair: ECKeyPair
|
|
|
|
do {
|
2021-01-08 00:32:54 +01:00
|
|
|
keyPair = try ECKeyPair(publicKeyData: proto.publicKey.removing05PrefixIfNeeded(), privateKeyData: proto.privateKey)
|
2021-01-04 05:30:13 +01:00
|
|
|
} catch {
|
|
|
|
return SNLog("Couldn't parse closed group encryption key pair.")
|
|
|
|
}
|
|
|
|
// Store it
|
|
|
|
Storage.shared.addClosedGroupEncryptionKeyPair(keyPair, for: groupPublicKey, using: transaction)
|
|
|
|
SNLog("Received a new closed group encryption key pair.")
|
|
|
|
}
|
2020-11-18 05:53:45 +01:00
|
|
|
}
|