ios: pq support (#3870)

* ios: pq support

* fix

* fix

* update

* text

* rename

---------

Co-authored-by: Evgeny Poberezkin <evgeny@poberezkin.com>
This commit is contained in:
spaced4ndy
2024-03-07 16:43:10 +04:00
committed by GitHub
parent f1c22a3308
commit ce9b909495
7 changed files with 174 additions and 3 deletions
+19
View File
@@ -258,6 +258,18 @@ func apiSetEncryptLocalFiles(_ enable: Bool) throws {
throw r
}
func apiSetPQEnabled(_ enable: Bool) throws {
let r = chatSendCmdSync(.apiSetPQEnabled(enable: enable))
if case .cmdOk = r { return }
throw r
}
func apiAllowContactPQ(_ contactId: Int64) async throws -> Contact {
let r = await chatSendCmd(.apiAllowContactPQ(contactId: contactId))
if case let .contactPQAllowed(_, contact) = r { return contact }
throw r
}
func apiExportArchive(config: ArchiveConfig) async throws {
try await sendCommandOkResp(.apiExportArchive(config: config))
}
@@ -1244,6 +1256,7 @@ func initializeChat(start: Bool, confirmStart: Bool = false, dbKey: String? = ni
try apiSetTempFolder(tempFolder: getTempFilesDirectory().path)
try apiSetFilesFolder(filesFolder: getAppFilesDirectory().path)
try apiSetEncryptLocalFiles(privacyEncryptLocalFilesGroupDefault.get())
try apiSetPQEnabled(pqExperimentalEnabledDefault.get())
m.chatInitialized = true
m.currentUser = try apiGetActiveUser()
if m.currentUser == nil {
@@ -1818,6 +1831,12 @@ func processReceivedMsg(_ res: ChatResponse) async {
}
}
}
case let .contactPQEnabled(user, contact, _):
if active(user) {
await MainActor.run {
m.updateContact(contact) // or updateContactConnectionStats?
}
}
default:
logger.debug("unsupported event: \(res.responseType)")
}