|
|
|
@ -29,6 +29,8 @@ extension MessageSender {
|
|
|
|
|
let closedGroupControlMessageKind = ClosedGroupControlMessage.Kind.new(publicKey: Data(hex: groupPublicKey), name: name,
|
|
|
|
|
encryptionKeyPair: encryptionKeyPair, members: membersAsData, admins: adminsAsData)
|
|
|
|
|
let closedGroupControlMessage = ClosedGroupControlMessage(kind: closedGroupControlMessageKind)
|
|
|
|
|
// Sending this non-durably is okay because we show a loader to the user. If they close the app while the
|
|
|
|
|
// loader is still showing, it's within expectation that the group creation might be incomplete.
|
|
|
|
|
let promise = MessageSender.sendNonDurably(closedGroupControlMessage, in: thread, using: transaction)
|
|
|
|
|
promises.append(promise)
|
|
|
|
|
}
|
|
|
|
@ -45,34 +47,34 @@ extension MessageSender {
|
|
|
|
|
return when(fulfilled: promises).map2 { thread }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static func generateAndSendNewEncryptionKeyPair(for groupPublicKey: String, to targetMembers: Set<String>, using transaction: Any) throws {
|
|
|
|
|
public static func generateAndSendNewEncryptionKeyPair(for groupPublicKey: String, to targetMembers: Set<String>, using transaction: Any) -> Promise<Void> {
|
|
|
|
|
// Prepare
|
|
|
|
|
let transaction = transaction as! YapDatabaseReadWriteTransaction
|
|
|
|
|
let groupID = LKGroupUtilities.getEncodedClosedGroupIDAsData(groupPublicKey)
|
|
|
|
|
let threadID = TSGroupThread.threadId(fromGroupId: groupID)
|
|
|
|
|
guard let thread = TSGroupThread.fetch(uniqueId: threadID, transaction: transaction) else {
|
|
|
|
|
SNLog("Can't distribute new encryption key pair for nonexistent closed group.")
|
|
|
|
|
throw Error.noThread
|
|
|
|
|
return Promise(error: Error.noThread)
|
|
|
|
|
}
|
|
|
|
|
guard thread.groupModel.groupAdminIds.contains(getUserHexEncodedPublicKey()) else {
|
|
|
|
|
SNLog("Can't distribute new encryption key pair as a non-admin.")
|
|
|
|
|
throw Error.invalidClosedGroupUpdate
|
|
|
|
|
return Promise(error: Error.invalidClosedGroupUpdate)
|
|
|
|
|
}
|
|
|
|
|
// Generate the new encryption key pair
|
|
|
|
|
let newKeyPair = Curve25519.generateKeyPair()
|
|
|
|
|
// Distribute it
|
|
|
|
|
let proto = try SNProtoKeyPair.builder(publicKey: newKeyPair.publicKey,
|
|
|
|
|
let proto = try! SNProtoKeyPair.builder(publicKey: newKeyPair.publicKey,
|
|
|
|
|
privateKey: newKeyPair.privateKey).build()
|
|
|
|
|
let plaintext = try proto.serializedData()
|
|
|
|
|
let wrappers = try targetMembers.compactMap { publicKey -> ClosedGroupControlMessage.KeyPairWrapper in
|
|
|
|
|
let ciphertext = try MessageSender.encryptWithSessionProtocol(plaintext, for: publicKey)
|
|
|
|
|
let plaintext = try! proto.serializedData()
|
|
|
|
|
let wrappers = targetMembers.compactMap { publicKey -> ClosedGroupControlMessage.KeyPairWrapper in
|
|
|
|
|
let ciphertext = try! MessageSender.encryptWithSessionProtocol(plaintext, for: publicKey)
|
|
|
|
|
return ClosedGroupControlMessage.KeyPairWrapper(publicKey: publicKey, encryptedKeyPair: ciphertext)
|
|
|
|
|
}
|
|
|
|
|
let closedGroupControlMessage = ClosedGroupControlMessage(kind: .encryptionKeyPair(publicKey: nil, wrappers: wrappers))
|
|
|
|
|
var distributingKeyPairs = distributingClosedGroupEncryptionKeyPairs[groupPublicKey] ?? []
|
|
|
|
|
distributingKeyPairs.append(newKeyPair)
|
|
|
|
|
distributingClosedGroupEncryptionKeyPairs[groupPublicKey] = distributingKeyPairs
|
|
|
|
|
let _ = MessageSender.sendNonDurably(closedGroupControlMessage, in: thread, using: transaction).done { // FIXME: It'd be great if we could make this a durable operation
|
|
|
|
|
return MessageSender.sendNonDurably(closedGroupControlMessage, in: thread, using: transaction).done {
|
|
|
|
|
// Store it * after * having sent out the message to the group
|
|
|
|
|
SNMessagingKitConfiguration.shared.storage.write { transaction in
|
|
|
|
|
Storage.shared.addClosedGroupEncryptionKeyPair(newKeyPair, for: groupPublicKey, using: transaction)
|
|
|
|
@ -82,39 +84,42 @@ extension MessageSender {
|
|
|
|
|
distributingKeyPairs.remove(at: index)
|
|
|
|
|
}
|
|
|
|
|
distributingClosedGroupEncryptionKeyPairs[groupPublicKey] = distributingKeyPairs
|
|
|
|
|
}
|
|
|
|
|
}.map { _ in }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static func update(_ groupPublicKey: String, with members: Set<String>, name: String, transaction: YapDatabaseReadWriteTransaction) throws {
|
|
|
|
|
public static func update(_ groupPublicKey: String, with members: Set<String>, name: String, transaction: YapDatabaseReadWriteTransaction) -> Promise<Void> {
|
|
|
|
|
// Get the group, check preconditions & prepare
|
|
|
|
|
let groupID = LKGroupUtilities.getEncodedClosedGroupIDAsData(groupPublicKey)
|
|
|
|
|
let threadID = TSGroupThread.threadId(fromGroupId: groupID)
|
|
|
|
|
guard let thread = TSGroupThread.fetch(uniqueId: threadID, transaction: transaction) else {
|
|
|
|
|
SNLog("Can't update nonexistent closed group.")
|
|
|
|
|
throw Error.noThread
|
|
|
|
|
return Promise(error: Error.noThread)
|
|
|
|
|
}
|
|
|
|
|
let group = thread.groupModel
|
|
|
|
|
var promises: [Promise<Void>] = []
|
|
|
|
|
// Update name if needed
|
|
|
|
|
if name != group.groupName { try setName(to: name, for: groupPublicKey, using: transaction) }
|
|
|
|
|
if name != group.groupName { promises.append(setName(to: name, for: groupPublicKey, using: transaction)) }
|
|
|
|
|
// Add members if needed
|
|
|
|
|
let addedMembers = members.subtracting(group.groupMemberIds)
|
|
|
|
|
if !addedMembers.isEmpty { try addMembers(addedMembers, to: groupPublicKey, using: transaction) }
|
|
|
|
|
if !addedMembers.isEmpty { promises.append(addMembers(addedMembers, to: groupPublicKey, using: transaction)) }
|
|
|
|
|
// Remove members if needed
|
|
|
|
|
let removedMembers = Set(group.groupMemberIds).subtracting(members)
|
|
|
|
|
if !removedMembers.isEmpty { try removeMembers(removedMembers, to: groupPublicKey, using: transaction) }
|
|
|
|
|
if !removedMembers.isEmpty { promises.append(removeMembers(removedMembers, to: groupPublicKey, using: transaction)) }
|
|
|
|
|
// Return
|
|
|
|
|
return when(fulfilled: promises).map2 { _ in }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static func setName(to name: String, for groupPublicKey: String, using transaction: YapDatabaseReadWriteTransaction) throws {
|
|
|
|
|
public static func setName(to name: String, for groupPublicKey: String, using transaction: YapDatabaseReadWriteTransaction) -> Promise<Void> {
|
|
|
|
|
// Get the group, check preconditions & prepare
|
|
|
|
|
let groupID = LKGroupUtilities.getEncodedClosedGroupIDAsData(groupPublicKey)
|
|
|
|
|
let threadID = TSGroupThread.threadId(fromGroupId: groupID)
|
|
|
|
|
guard let thread = TSGroupThread.fetch(uniqueId: threadID, transaction: transaction) else {
|
|
|
|
|
SNLog("Can't change name for nonexistent closed group.")
|
|
|
|
|
throw Error.noThread
|
|
|
|
|
return Promise(error: Error.noThread)
|
|
|
|
|
}
|
|
|
|
|
guard !name.isEmpty else {
|
|
|
|
|
SNLog("Can't set closed group name to an empty value.")
|
|
|
|
|
throw Error.invalidClosedGroupUpdate
|
|
|
|
|
return Promise(error: Error.invalidClosedGroupUpdate)
|
|
|
|
|
}
|
|
|
|
|
let group = thread.groupModel
|
|
|
|
|
// Send the update to the group
|
|
|
|
@ -127,19 +132,21 @@ extension MessageSender {
|
|
|
|
|
let updateInfo = group.getInfoStringAboutUpdate(to: newGroupModel)
|
|
|
|
|
let infoMessage = TSInfoMessage(timestamp: NSDate.ows_millisecondTimeStamp(), in: thread, messageType: .groupUpdate, customMessage: updateInfo)
|
|
|
|
|
infoMessage.save(with: transaction)
|
|
|
|
|
// Return
|
|
|
|
|
return Promise.value(())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static func addMembers(_ newMembers: Set<String>, to groupPublicKey: String, using transaction: YapDatabaseReadWriteTransaction) throws {
|
|
|
|
|
public static func addMembers(_ newMembers: Set<String>, to groupPublicKey: String, using transaction: YapDatabaseReadWriteTransaction) -> Promise<Void> {
|
|
|
|
|
// Get the group, check preconditions & prepare
|
|
|
|
|
let groupID = LKGroupUtilities.getEncodedClosedGroupIDAsData(groupPublicKey)
|
|
|
|
|
let threadID = TSGroupThread.threadId(fromGroupId: groupID)
|
|
|
|
|
guard let thread = TSGroupThread.fetch(uniqueId: threadID, transaction: transaction) else {
|
|
|
|
|
SNLog("Can't add members to nonexistent closed group.")
|
|
|
|
|
throw Error.noThread
|
|
|
|
|
return Promise(error: Error.noThread)
|
|
|
|
|
}
|
|
|
|
|
guard !newMembers.isEmpty else {
|
|
|
|
|
SNLog("Invalid closed group update.")
|
|
|
|
|
throw Error.invalidClosedGroupUpdate
|
|
|
|
|
return Promise(error: Error.invalidClosedGroupUpdate)
|
|
|
|
|
}
|
|
|
|
|
let group = thread.groupModel
|
|
|
|
|
let members = [String](Set(group.groupMemberIds).union(newMembers))
|
|
|
|
@ -147,7 +154,7 @@ extension MessageSender {
|
|
|
|
|
let adminsAsData = group.groupAdminIds.map { Data(hex: $0) }
|
|
|
|
|
guard let encryptionKeyPair = Storage.shared.getLatestClosedGroupEncryptionKeyPair(for: groupPublicKey) else {
|
|
|
|
|
SNLog("Couldn't find encryption key pair for closed group: \(groupPublicKey).")
|
|
|
|
|
throw Error.noKeyPair
|
|
|
|
|
return Promise(error: Error.noKeyPair)
|
|
|
|
|
}
|
|
|
|
|
// Send the update to the group
|
|
|
|
|
let closedGroupControlMessage = ClosedGroupControlMessage(kind: .membersAdded(members: newMembers.map { Data(hex: $0) }))
|
|
|
|
@ -168,37 +175,38 @@ extension MessageSender {
|
|
|
|
|
let updateInfo = group.getInfoStringAboutUpdate(to: newGroupModel)
|
|
|
|
|
let infoMessage = TSInfoMessage(timestamp: NSDate.ows_millisecondTimeStamp(), in: thread, messageType: .groupUpdate, customMessage: updateInfo)
|
|
|
|
|
infoMessage.save(with: transaction)
|
|
|
|
|
// Return
|
|
|
|
|
return Promise.value(())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static func removeMembers(_ membersToRemove: Set<String>, to groupPublicKey: String, using transaction: YapDatabaseReadWriteTransaction) throws {
|
|
|
|
|
public static func removeMembers(_ membersToRemove: Set<String>, to groupPublicKey: String, using transaction: YapDatabaseReadWriteTransaction) -> Promise<Void> {
|
|
|
|
|
// Get the group, check preconditions & prepare
|
|
|
|
|
let userPublicKey = getUserHexEncodedPublicKey()
|
|
|
|
|
let groupID = LKGroupUtilities.getEncodedClosedGroupIDAsData(groupPublicKey)
|
|
|
|
|
let threadID = TSGroupThread.threadId(fromGroupId: groupID)
|
|
|
|
|
guard let thread = TSGroupThread.fetch(uniqueId: threadID, transaction: transaction) else {
|
|
|
|
|
SNLog("Can't remove members from nonexistent closed group.")
|
|
|
|
|
throw Error.noThread
|
|
|
|
|
return Promise(error: Error.noThread)
|
|
|
|
|
}
|
|
|
|
|
guard !membersToRemove.isEmpty else {
|
|
|
|
|
SNLog("Invalid closed group update.")
|
|
|
|
|
throw Error.invalidClosedGroupUpdate
|
|
|
|
|
return Promise(error: Error.invalidClosedGroupUpdate)
|
|
|
|
|
}
|
|
|
|
|
guard !membersToRemove.contains(userPublicKey) else {
|
|
|
|
|
SNLog("Invalid closed group update.")
|
|
|
|
|
throw Error.invalidClosedGroupUpdate
|
|
|
|
|
return Promise(error: Error.invalidClosedGroupUpdate)
|
|
|
|
|
}
|
|
|
|
|
let group = thread.groupModel
|
|
|
|
|
guard group.groupAdminIds.contains(userPublicKey) else {
|
|
|
|
|
SNLog("Only an admin can remove members from a group.")
|
|
|
|
|
return Promise(error: Error.invalidClosedGroupUpdate)
|
|
|
|
|
}
|
|
|
|
|
let members = Set(group.groupMemberIds).subtracting(membersToRemove)
|
|
|
|
|
let isCurrentUserAdmin = group.groupAdminIds.contains(userPublicKey)
|
|
|
|
|
// Send the update to the group and generate + distribute a new encryption key pair if needed
|
|
|
|
|
// Send the update to the group and generate + distribute a new encryption key pair
|
|
|
|
|
let closedGroupControlMessage = ClosedGroupControlMessage(kind: .membersRemoved(members: membersToRemove.map { Data(hex: $0) }))
|
|
|
|
|
if isCurrentUserAdmin {
|
|
|
|
|
let _ = MessageSender.sendNonDurably(closedGroupControlMessage, in: thread, using: transaction).done {
|
|
|
|
|
try generateAndSendNewEncryptionKeyPair(for: groupPublicKey, to: members, using: transaction)
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
MessageSender.send(closedGroupControlMessage, in: thread, using: transaction)
|
|
|
|
|
}
|
|
|
|
|
let promise = MessageSender.sendNonDurably(closedGroupControlMessage, in: thread, using: transaction).map {
|
|
|
|
|
generateAndSendNewEncryptionKeyPair(for: groupPublicKey, to: members, using: transaction)
|
|
|
|
|
}.map { _ in }
|
|
|
|
|
// Update the group
|
|
|
|
|
let newGroupModel = TSGroupModel(title: group.groupName, memberIds: [String](members), image: nil, groupId: groupID, groupType: .closedGroup, adminIds: group.groupAdminIds)
|
|
|
|
|
thread.setGroupModel(newGroupModel, with: transaction)
|
|
|
|
@ -206,16 +214,22 @@ extension MessageSender {
|
|
|
|
|
let updateInfo = group.getInfoStringAboutUpdate(to: newGroupModel)
|
|
|
|
|
let infoMessage = TSInfoMessage(timestamp: NSDate.ows_millisecondTimeStamp(), in: thread, messageType: .groupUpdate, customMessage: updateInfo)
|
|
|
|
|
infoMessage.save(with: transaction)
|
|
|
|
|
// Return
|
|
|
|
|
return promise
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@objc(leaveClosedGroupWithPublicKey:using:)
|
|
|
|
|
public static func objc_leave(_ groupPublicKey: String, using transaction: YapDatabaseReadWriteTransaction) -> AnyPromise {
|
|
|
|
|
return AnyPromise.from(leave(groupPublicKey, using: transaction))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@objc(leaveClosedGroupWithPublicKey:using:error:)
|
|
|
|
|
public static func leave(_ groupPublicKey: String, using transaction: YapDatabaseReadWriteTransaction) throws {
|
|
|
|
|
public static func leave(_ groupPublicKey: String, using transaction: YapDatabaseReadWriteTransaction) -> Promise<Void> {
|
|
|
|
|
// Get the group, check preconditions & prepare
|
|
|
|
|
let groupID = LKGroupUtilities.getEncodedClosedGroupIDAsData(groupPublicKey)
|
|
|
|
|
let threadID = TSGroupThread.threadId(fromGroupId: groupID)
|
|
|
|
|
guard let thread = TSGroupThread.fetch(uniqueId: threadID, transaction: transaction) else {
|
|
|
|
|
SNLog("Can't leave nonexistent closed group.")
|
|
|
|
|
throw Error.noThread
|
|
|
|
|
return Promise(error: Error.noThread)
|
|
|
|
|
}
|
|
|
|
|
let group = thread.groupModel
|
|
|
|
|
let userPublicKey = getUserHexEncodedPublicKey()
|
|
|
|
@ -224,14 +238,14 @@ extension MessageSender {
|
|
|
|
|
let admins: Set<String> = isCurrentUserAdmin ? [] : Set(group.groupAdminIds)
|
|
|
|
|
// Send the update to the group
|
|
|
|
|
let closedGroupControlMessage = ClosedGroupControlMessage(kind: .memberLeft)
|
|
|
|
|
let _ = MessageSender.sendNonDurably(closedGroupControlMessage, in: thread, using: transaction).done {
|
|
|
|
|
let promise = MessageSender.sendNonDurably(closedGroupControlMessage, in: thread, using: transaction).done {
|
|
|
|
|
SNMessagingKitConfiguration.shared.storage.write { transaction in
|
|
|
|
|
// Remove the group from the database and unsubscribe from PNs
|
|
|
|
|
Storage.shared.removeAllClosedGroupEncryptionKeyPairs(for: groupPublicKey, using: transaction)
|
|
|
|
|
Storage.shared.removeClosedGroupPublicKey(groupPublicKey, using: transaction)
|
|
|
|
|
let _ = PushNotificationAPI.performOperation(.unsubscribe, for: groupPublicKey, publicKey: userPublicKey)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}.map { _ in }
|
|
|
|
|
// Update the group
|
|
|
|
|
let newGroupModel = TSGroupModel(title: group.groupName, memberIds: [String](members), image: nil, groupId: groupID, groupType: .closedGroup, adminIds: [String](admins))
|
|
|
|
|
thread.setGroupModel(newGroupModel, with: transaction)
|
|
|
|
@ -239,8 +253,11 @@ extension MessageSender {
|
|
|
|
|
let updateInfo = group.getInfoStringAboutUpdate(to: newGroupModel)
|
|
|
|
|
let infoMessage = TSInfoMessage(timestamp: NSDate.ows_millisecondTimeStamp(), in: thread, messageType: .groupUpdate, customMessage: updateInfo)
|
|
|
|
|
infoMessage.save(with: transaction)
|
|
|
|
|
// Return
|
|
|
|
|
return promise
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
public static func requestEncryptionKeyPair(for groupPublicKey: String, using transaction: YapDatabaseReadWriteTransaction) throws {
|
|
|
|
|
#if DEBUG
|
|
|
|
|
preconditionFailure("Shouldn't currently be in use.")
|
|
|
|
@ -258,15 +275,16 @@ extension MessageSender {
|
|
|
|
|
let closedGroupControlMessage = ClosedGroupControlMessage(kind: .encryptionKeyPairRequest)
|
|
|
|
|
MessageSender.send(closedGroupControlMessage, in: thread, using: transaction)
|
|
|
|
|
}
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
public static func sendLatestEncryptionKeyPair(to publicKey: String, for groupPublicKey: String, using transaction: YapDatabaseReadWriteTransaction) {
|
|
|
|
|
// Check that the user in question is part of the closed group
|
|
|
|
|
let groupID = LKGroupUtilities.getEncodedClosedGroupIDAsData(groupPublicKey)
|
|
|
|
|
let threadID = TSGroupThread.threadId(fromGroupId: groupID)
|
|
|
|
|
guard let thread = TSGroupThread.fetch(uniqueId: threadID, transaction: transaction) else {
|
|
|
|
|
return SNLog("Couldn't find thread .")
|
|
|
|
|
guard let groupThread = TSGroupThread.fetch(uniqueId: threadID, transaction: transaction) else {
|
|
|
|
|
return SNLog("Couldn't send key pair for nonexistent closed group.")
|
|
|
|
|
}
|
|
|
|
|
let group = thread.groupModel
|
|
|
|
|
let group = groupThread.groupModel
|
|
|
|
|
guard group.groupMemberIds.contains(publicKey) else {
|
|
|
|
|
return SNLog("Refusing to send latest encryption key pair to non-member.")
|
|
|
|
|
}
|
|
|
|
|