2021-03-24 02:37:33 +01:00
|
|
|
import PromiseKit
|
|
|
|
|
|
|
|
@objc(SNOpenGroupManagerV2)
|
|
|
|
public final class OpenGroupManagerV2 : NSObject {
|
|
|
|
private var pollers: [String:OpenGroupPollerV2] = [:]
|
|
|
|
private var isPolling = false
|
|
|
|
|
|
|
|
// MARK: Initialization
|
|
|
|
@objc public static let shared = OpenGroupManagerV2()
|
|
|
|
|
|
|
|
private override init() { }
|
|
|
|
|
|
|
|
// MARK: Polling
|
|
|
|
@objc public func startPolling() {
|
|
|
|
guard !isPolling else { return }
|
|
|
|
isPolling = true
|
|
|
|
let openGroups = Storage.shared.getAllV2OpenGroups()
|
|
|
|
for (_, openGroup) in openGroups {
|
|
|
|
if let poller = pollers[openGroup.id] { poller.stop() } // Should never occur
|
|
|
|
let poller = OpenGroupPollerV2(for: openGroup)
|
|
|
|
poller.startIfNeeded()
|
|
|
|
pollers[openGroup.id] = poller
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@objc public func stopPolling() {
|
|
|
|
pollers.forEach { (_, openGroupPoller) in openGroupPoller.stop() }
|
|
|
|
pollers.removeAll()
|
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: Adding & Removing
|
2021-03-25 04:17:49 +01:00
|
|
|
public func add(room: String, server: String, publicKey: String, using transaction: Any) -> Promise<Void> {
|
2021-03-24 02:37:33 +01:00
|
|
|
let storage = Storage.shared
|
|
|
|
storage.removeLastMessageServerID(for: room, on: server, using: transaction)
|
|
|
|
storage.removeLastDeletionServerID(for: room, on: server, using: transaction)
|
2021-03-26 03:28:40 +01:00
|
|
|
storage.removeAuthToken(for: room, on: server, using: transaction)
|
2021-03-29 02:33:52 +02:00
|
|
|
storage.setOpenGroupPublicKey(for: server, to: publicKey, using: transaction)
|
2021-03-25 04:17:49 +01:00
|
|
|
let (promise, seal) = Promise<Void>.pending()
|
2021-03-26 03:28:40 +01:00
|
|
|
let transaction = transaction as! YapDatabaseReadWriteTransaction
|
|
|
|
transaction.addCompletionQueue(DispatchQueue.global(qos: .default)) {
|
|
|
|
OpenGroupAPIV2.getInfo(for: room, on: server).done(on: DispatchQueue.global(qos: .default)) { info in
|
2021-03-29 02:49:59 +02:00
|
|
|
let openGroup = OpenGroupV2(server: server, room: room, name: info.name, publicKey: publicKey, imageID: info.imageID)
|
2021-03-26 03:28:40 +01:00
|
|
|
let groupID = LKGroupUtilities.getEncodedOpenGroupIDAsData(openGroup.id)
|
|
|
|
let model = TSGroupModel(title: openGroup.name, memberIds: [ getUserHexEncodedPublicKey() ], image: nil, groupId: groupID, groupType: .openGroup, adminIds: [])
|
|
|
|
storage.write(with: { transaction in
|
|
|
|
let transaction = transaction as! YapDatabaseReadWriteTransaction
|
|
|
|
let thread = TSGroupThread.getOrCreateThread(with: model, transaction: transaction)
|
|
|
|
thread.shouldThreadBeVisible = true
|
|
|
|
thread.save(with: transaction)
|
|
|
|
storage.setV2OpenGroup(openGroup, for: thread.uniqueId!, using: transaction)
|
|
|
|
}, completion: {
|
|
|
|
if let poller = OpenGroupManagerV2.shared.pollers[openGroup.id] {
|
|
|
|
poller.stop()
|
|
|
|
OpenGroupManagerV2.shared.pollers[openGroup.id] = nil
|
|
|
|
}
|
|
|
|
let poller = OpenGroupPollerV2(for: openGroup)
|
|
|
|
poller.startIfNeeded()
|
|
|
|
OpenGroupManagerV2.shared.pollers[openGroup.id] = poller
|
|
|
|
seal.fulfill(())
|
|
|
|
})
|
|
|
|
}.catch(on: DispatchQueue.global(qos: .default)) { error in
|
|
|
|
seal.reject(error)
|
|
|
|
}
|
2021-03-25 04:17:49 +01:00
|
|
|
}
|
|
|
|
return promise
|
2021-03-24 02:37:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public func delete(_ openGroup: OpenGroupV2, associatedWith thread: TSThread, using transaction: YapDatabaseReadWriteTransaction) {
|
|
|
|
if let poller = pollers[openGroup.id] {
|
|
|
|
poller.stop()
|
|
|
|
pollers[openGroup.id] = nil
|
|
|
|
}
|
|
|
|
var messageIDs: Set<String> = []
|
|
|
|
var messageTimestamps: Set<UInt64> = []
|
|
|
|
thread.enumerateInteractions(with: transaction) { interaction, _ in
|
|
|
|
messageIDs.insert(interaction.uniqueId!)
|
|
|
|
messageTimestamps.insert(interaction.timestamp)
|
|
|
|
}
|
|
|
|
SNMessagingKitConfiguration.shared.storage.updateMessageIDCollectionByPruningMessagesWithIDs(messageIDs, using: transaction)
|
|
|
|
Storage.shared.removeReceivedMessageTimestamps(messageTimestamps, using: transaction)
|
|
|
|
Storage.shared.removeLastMessageServerID(for: openGroup.room, on: openGroup.server, using: transaction)
|
|
|
|
Storage.shared.removeLastDeletionServerID(for: openGroup.room, on: openGroup.server, using: transaction)
|
|
|
|
let _ = OpenGroupAPIV2.deleteAuthToken(for: openGroup.room, on: openGroup.server)
|
|
|
|
Storage.shared.removeOpenGroupPublicKey(for: openGroup.server, using: transaction)
|
|
|
|
thread.removeAllThreadInteractions(with: transaction)
|
|
|
|
thread.remove(with: transaction)
|
|
|
|
Storage.shared.removeV2OpenGroup(for: thread.uniqueId!, using: transaction)
|
|
|
|
}
|
2021-03-29 02:49:59 +02:00
|
|
|
|
|
|
|
// MARK: Convenience
|
|
|
|
public static func parseV2OpenGroup(from string: String) -> (room: String, server: String, publicKey: String)? {
|
|
|
|
guard let url = URL(string: string), let host = url.host ?? given(string.split(separator: "/").first, { String($0) }), let query = url.query else { return nil }
|
|
|
|
// Inputs that should work:
|
|
|
|
// https://sessionopengroup.co/main?public_key=658d29b91892a2389505596b135e76a53db6e11d613a51dbd3d0816adffb231c
|
|
|
|
// http://sessionopengroup.co/main?public_key=658d29b91892a2389505596b135e76a53db6e11d613a51dbd3d0816adffb231c
|
|
|
|
// sessionopengroup.co/main?public_key=658d29b91892a2389505596b135e76a53db6e11d613a51dbd3d0816adffb231c (does NOT go to HTTPS)
|
|
|
|
// https://143.198.213.225:443/main?public_key=658d29b91892a2389505596b135e76a53db6e11d613a51dbd3d0816adffb231c
|
|
|
|
// 143.198.213.255:80/main?public_key=658d29b91892a2389505596b135e76a53db6e11d613a51dbd3d0816adffb231c
|
|
|
|
let useTLS = (url.scheme == "https")
|
|
|
|
let room = String(url.path.dropFirst()) // Drop the leading slash
|
|
|
|
let queryParts = query.split(separator: "=")
|
|
|
|
guard !room.isEmpty && !room.contains("/"), queryParts.count == 2, queryParts[0] == "public_key" else { return nil }
|
|
|
|
let publicKey = String(queryParts[1])
|
|
|
|
guard publicKey.count == 64 && Hex.isValid(publicKey) else { return nil }
|
|
|
|
var server = (useTLS ? "https://" : "http://") + host
|
|
|
|
if let port = url.port { server += ":\(port)" }
|
|
|
|
return (room: room, server: server, publicKey: publicKey)
|
|
|
|
}
|
2021-03-24 02:37:33 +01:00
|
|
|
}
|