Я хочу отправить журнал событий в firebase, когда приложения получают уведомление, используя NotificationServiceExtension, потому что, когда приложения закрываются (уничтожаются пользователем), NotificationServiceExtension может изменять содержимое, поэтому я думаю, что я могу поместить некоторый код для отправки журнала событий здесь
import Firebase
import UserNotifications
class NotificationService: UNNotificationServiceExtension {
var contentHandler: ((UNNotificationContent) -> Void)?
var bestAttemptContent: UNMutableNotificationContent?
override func didReceive(_ request: UNNotificationRequest, withContentHandler contentHandler: @escaping (UNNotificationContent) -> Void) {
self.contentHandler = contentHandler
bestAttemptContent = (request.content.mutableCopy() as? UNMutableNotificationContent)
if let bestAttemptContent = bestAttemptContent {
let data = bestAttemptContent.userInfo as! [String: Any]
Analytics.logEvent("notifications_\(data["id"] as? String ?? "")_received", parameters: nil)
bestAttemptContent.title = "\(bestAttemptContent.title) [modified]"
contentHandler(bestAttemptContent)
}
}
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.
if let contentHandler = contentHandler, let bestAttemptContent = bestAttemptContent {
contentHandler(bestAttemptContent)
}
}
}