mirror of
https://github.com/element-hq/element-x-ios.git
synced 2025-03-10 21:39:12 +00:00
Avoid creating multiple clients if the NSE is invoked more than once on the same process
This commit is contained in:
parent
6655833719
commit
f291f10f46
@ -50,6 +50,9 @@ class NotificationServiceExtension: UNNotificationServiceExtension {
|
||||
private var handler: ((UNNotificationContent) -> Void)?
|
||||
private var modifiedContent: UNMutableNotificationContent?
|
||||
|
||||
// Used to create one single UserSession across process/instances/runs
|
||||
private static var userSession: NSEUserSession?
|
||||
|
||||
override func didReceive(_ request: UNNotificationRequest,
|
||||
withContentHandler contentHandler: @escaping (UNNotificationContent) -> Void) {
|
||||
guard !DataProtectionManager.isDeviceLockedAfterReboot(containerURL: URL.appGroupContainerDirectory),
|
||||
@ -75,6 +78,17 @@ class NotificationServiceExtension: UNNotificationServiceExtension {
|
||||
MXLog.info("\(tag) Payload came: \(request.content.userInfo)")
|
||||
|
||||
Task {
|
||||
if Self.userSession == nil {
|
||||
// This function might be run concurrently and from different processes
|
||||
// It's imperative that we create **at most** one UserSession/Client per process
|
||||
do {
|
||||
Self.userSession = try await NSEUserSession(credentials: credentials, clientSessionDelegate: keychainController)
|
||||
} catch {
|
||||
MXLog.error("NSE run error: \(error)")
|
||||
return discard(unreadCount: request.unreadCount)
|
||||
}
|
||||
}
|
||||
|
||||
await run(with: credentials,
|
||||
roomId: roomId,
|
||||
eventId: eventId,
|
||||
@ -95,11 +109,12 @@ class NotificationServiceExtension: UNNotificationServiceExtension {
|
||||
unreadCount: Int?) async {
|
||||
MXLog.info("\(tag) run with roomId: \(roomId), eventId: \(eventId)")
|
||||
|
||||
do {
|
||||
// This function might be run concurrently and from different processes, let the SDK handle race conditions
|
||||
// on fetching user sessions
|
||||
let userSession = try await NSEUserSession(credentials: credentials, clientSessionDelegate: keychainController)
|
||||
guard let userSession = Self.userSession else {
|
||||
MXLog.error("Invalid NSE User Session, discarding.")
|
||||
return discard(unreadCount: unreadCount)
|
||||
}
|
||||
|
||||
do {
|
||||
guard let itemProxy = await userSession.notificationItemProxy(roomID: roomId, eventID: eventId) else {
|
||||
MXLog.info("\(tag) no notification for the event, discard")
|
||||
return discard(unreadCount: unreadCount)
|
||||
|
Loading…
x
Reference in New Issue
Block a user