2022-11-21 19:37:13 +03:00
|
|
|
//
|
|
|
|
// Copyright 2022 New Vector Ltd
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Intents
|
|
|
|
import MatrixRustSDK
|
|
|
|
import UserNotifications
|
|
|
|
|
|
|
|
class NotificationServiceExtension: UNNotificationServiceExtension {
|
2023-05-03 16:28:07 +02:00
|
|
|
private let settings = NSESettings()
|
2022-11-21 19:37:13 +03:00
|
|
|
private lazy var keychainController = KeychainController(service: .sessions,
|
2023-01-31 17:48:24 +00:00
|
|
|
accessGroup: InfoPlistReader.main.keychainAccessGroupIdentifier)
|
2023-05-05 17:29:46 +02:00
|
|
|
private var handler: ((UNNotificationContent) -> Void)?
|
|
|
|
private var modifiedContent: UNMutableNotificationContent?
|
2023-06-22 19:23:33 +02:00
|
|
|
private var userSession: NSEUserSession?
|
2022-11-21 19:37:13 +03:00
|
|
|
|
|
|
|
override func didReceive(_ request: UNNotificationRequest,
|
|
|
|
withContentHandler contentHandler: @escaping (UNNotificationContent) -> Void) {
|
|
|
|
guard !DataProtectionManager.isDeviceLockedAfterReboot(containerURL: URL.appGroupContainerDirectory),
|
|
|
|
let roomId = request.roomId,
|
|
|
|
let eventId = request.eventId,
|
2023-05-03 16:28:07 +02:00
|
|
|
let clientID = request.pusherNotificationClientIdentifier,
|
|
|
|
let credentials = keychainController.restorationTokens().first(where: { $0.restorationToken.pusherNotificationClientIdentifier == clientID }) else {
|
2022-11-21 19:37:13 +03:00
|
|
|
// We cannot process this notification, it might be due to one of these:
|
|
|
|
// - Device rebooted and locked
|
|
|
|
// - Not a Matrix notification
|
|
|
|
// - User is not signed in
|
2023-04-05 20:16:30 +02:00
|
|
|
// - NotificationID could not be resolved
|
2022-11-21 19:37:13 +03:00
|
|
|
return contentHandler(request.content)
|
|
|
|
}
|
|
|
|
|
|
|
|
handler = contentHandler
|
|
|
|
modifiedContent = request.content.mutableCopy() as? UNMutableNotificationContent
|
|
|
|
|
|
|
|
NSELogger.configure()
|
|
|
|
|
|
|
|
NSELogger.logMemory(with: tag)
|
|
|
|
|
2023-01-17 09:28:01 +00:00
|
|
|
MXLog.info("\(tag) #########################################")
|
|
|
|
MXLog.info("\(tag) Payload came: \(request.content.userInfo)")
|
2022-11-21 19:37:13 +03:00
|
|
|
|
|
|
|
Task {
|
2023-05-05 17:29:46 +02:00
|
|
|
await run(with: credentials,
|
|
|
|
roomId: roomId,
|
|
|
|
eventId: eventId)
|
2022-11-21 19:37:13 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
override func serviceExtensionTimeWillExpire() {
|
|
|
|
// Called just before the extension will be terminated by the system.
|
|
|
|
// Use this as an opportunity to deliver your "best attempt" at modified content, otherwise the original push payload will be used.
|
2023-01-17 09:28:01 +00:00
|
|
|
MXLog.warning("\(tag) serviceExtensionTimeWillExpire")
|
2022-11-21 19:37:13 +03:00
|
|
|
notify()
|
|
|
|
}
|
|
|
|
|
|
|
|
private func run(with credentials: KeychainCredentials,
|
|
|
|
roomId: String,
|
2023-05-05 17:29:46 +02:00
|
|
|
eventId: String) async {
|
2023-01-17 09:28:01 +00:00
|
|
|
MXLog.info("\(tag) run with roomId: \(roomId), eventId: \(eventId)")
|
2022-11-21 19:37:13 +03:00
|
|
|
|
2023-05-05 17:29:46 +02:00
|
|
|
do {
|
2023-07-27 16:12:52 +02:00
|
|
|
let userSession = try NSEUserSession(credentials: credentials, filterByPushRulesEnabled: settings.filterNotificationsByPushRulesEnabled)
|
2023-06-22 19:23:33 +02:00
|
|
|
self.userSession = userSession
|
2023-07-12 12:28:41 +02:00
|
|
|
guard let itemProxy = await userSession.notificationItemProxy(roomID: roomId, eventID: eventId) else {
|
2023-06-22 19:23:33 +02:00
|
|
|
MXLog.info("\(tag) no notification for the event, discard")
|
2023-06-22 13:24:37 +02:00
|
|
|
return discard()
|
|
|
|
}
|
2022-11-21 19:37:13 +03:00
|
|
|
|
2023-05-05 17:29:46 +02:00
|
|
|
// After the first processing, update the modified content
|
|
|
|
modifiedContent = try await itemProxy.process(mediaProvider: nil)
|
2022-11-21 19:37:13 +03:00
|
|
|
|
2023-07-05 14:28:45 +02:00
|
|
|
guard itemProxy.hasMedia else {
|
2023-05-05 17:29:46 +02:00
|
|
|
MXLog.info("\(tag) no media needed")
|
2022-11-21 19:37:13 +03:00
|
|
|
|
2023-05-05 17:29:46 +02:00
|
|
|
// We've processed the item and no media operations needed, so no need to go further
|
|
|
|
return notify()
|
|
|
|
}
|
2022-11-21 19:37:13 +03:00
|
|
|
|
2023-05-05 17:29:46 +02:00
|
|
|
MXLog.info("\(tag) process with media")
|
2022-11-21 19:37:13 +03:00
|
|
|
|
2023-05-05 17:29:46 +02:00
|
|
|
// There is some media to load, process it again
|
|
|
|
if let latestContent = try? await itemProxy.process(mediaProvider: userSession.mediaProvider) {
|
|
|
|
// Processing finished, hopefully with some media
|
|
|
|
modifiedContent = latestContent
|
|
|
|
}
|
|
|
|
// We still notify, but without the media attachment if it fails to load
|
2022-11-21 19:37:13 +03:00
|
|
|
return notify()
|
2023-05-05 17:29:46 +02:00
|
|
|
} catch {
|
|
|
|
MXLog.error("NSE run error: \(error)")
|
2022-11-21 19:37:13 +03:00
|
|
|
return discard()
|
|
|
|
}
|
|
|
|
}
|
2023-01-25 19:45:01 +02:00
|
|
|
|
2022-11-21 19:37:13 +03:00
|
|
|
private func notify() {
|
2023-01-17 09:28:01 +00:00
|
|
|
MXLog.info("\(tag) notify")
|
2022-11-21 19:37:13 +03:00
|
|
|
|
|
|
|
guard let modifiedContent else {
|
2023-01-17 09:28:01 +00:00
|
|
|
MXLog.info("\(tag) notify: no modified content")
|
2023-05-05 17:29:46 +02:00
|
|
|
return discard()
|
2022-11-21 19:37:13 +03:00
|
|
|
}
|
2023-05-03 16:28:07 +02:00
|
|
|
|
2022-11-21 19:37:13 +03:00
|
|
|
handler?(modifiedContent)
|
2023-06-22 19:23:33 +02:00
|
|
|
cleanUp()
|
2022-11-21 19:37:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
private func discard() {
|
2023-01-17 09:28:01 +00:00
|
|
|
MXLog.info("\(tag) discard")
|
2022-11-21 19:37:13 +03:00
|
|
|
|
|
|
|
handler?(UNMutableNotificationContent())
|
2023-06-22 19:23:33 +02:00
|
|
|
cleanUp()
|
2022-11-21 19:37:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
private var tag: String {
|
|
|
|
"[NSE][\(Unmanaged.passUnretained(self).toOpaque())][\(Unmanaged.passUnretained(Thread.current).toOpaque())]"
|
|
|
|
}
|
|
|
|
|
2023-06-22 19:23:33 +02:00
|
|
|
private func cleanUp() {
|
|
|
|
handler = nil
|
|
|
|
modifiedContent = nil
|
|
|
|
}
|
|
|
|
|
2022-11-21 19:37:13 +03:00
|
|
|
deinit {
|
2023-06-22 19:23:33 +02:00
|
|
|
cleanUp()
|
2022-11-21 19:37:13 +03:00
|
|
|
NSELogger.logMemory(with: tag)
|
2023-01-17 09:28:01 +00:00
|
|
|
MXLog.info("\(tag) deinit")
|
2022-11-21 19:37:13 +03:00
|
|
|
}
|
|
|
|
}
|