83 lines
3.4 KiB
Swift
83 lines
3.4 KiB
Swift
import UIKit
|
|
import SafariServices
|
|
import UserNotifications
|
|
import Firebase
|
|
import FirebaseCore
|
|
import CoreData
|
|
|
|
class AppDelegate: UIResponder, UIApplicationDelegate, ObservableObject {
|
|
let tag = "AppDelegate"
|
|
|
|
// Implements navigation from notifications, see https://stackoverflow.com/a/70731861/1440785
|
|
@Published var selectedBaseUrl: String? = nil
|
|
|
|
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
|
|
Log.d(tag, "Launching AppDelegate")
|
|
|
|
// Register app permissions for push notifications
|
|
UNUserNotificationCenter.current().delegate = self
|
|
UNUserNotificationCenter.current().requestAuthorization(options: [.alert, .badge, .sound]) { success, error in
|
|
guard success else {
|
|
Log.e(self.tag, "Failed to register for local push notifications", error)
|
|
return
|
|
}
|
|
Log.d(self.tag, "Successfully registered for local push notifications")
|
|
}
|
|
|
|
// Register too receive remote notifications
|
|
application.registerForRemoteNotifications()
|
|
|
|
// Set self as messaging delegate
|
|
Messaging.messaging().delegate = self
|
|
|
|
return true
|
|
}
|
|
|
|
func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
|
|
let token = deviceToken.map { data in String(format: "%02.2hhx", data) }.joined()
|
|
Messaging.messaging().apnsToken = deviceToken
|
|
Log.d(tag, "Registered for remote notifications. Passing APNs token to Firebase: \(token)")
|
|
}
|
|
|
|
func application(_ application: UIApplication, didFailToRegisterForRemoteNotificationsWithError error: Error) {
|
|
Log.e(tag, "Failed to register for remote notifications", error)
|
|
}
|
|
}
|
|
|
|
extension AppDelegate: UNUserNotificationCenterDelegate {
|
|
/// Executed when the app is in the foreground. Nothing has to be done here, except call the completionHandler.
|
|
func userNotificationCenter(
|
|
_ center: UNUserNotificationCenter,
|
|
willPresent notification: UNNotification,
|
|
withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void
|
|
) {
|
|
let userInfo = notification.request.content.userInfo
|
|
Log.d(tag, "Notification received via userNotificationCenter(willPresent)", userInfo)
|
|
completionHandler([[.banner, .sound]])
|
|
}
|
|
|
|
/// Executed when the user clicks on the notification.
|
|
func userNotificationCenter(
|
|
_ center: UNUserNotificationCenter,
|
|
didReceive response: UNNotificationResponse,
|
|
withCompletionHandler completionHandler: @escaping () -> Void
|
|
) {
|
|
let userInfo = response.notification.request.content.userInfo
|
|
Log.d(tag, "Notification received via userNotificationCenter(didReceive)", userInfo)
|
|
|
|
if let topic = userInfo["topic"] as? String {
|
|
selectedBaseUrl = topicUrl(baseUrl: Config.appBaseUrl, topic: topic)
|
|
}
|
|
|
|
completionHandler()
|
|
}
|
|
}
|
|
|
|
extension AppDelegate: MessagingDelegate {
|
|
func messaging(_ messaging: Messaging, didReceiveRegistrationToken fcmToken: String?) {
|
|
Log.d(tag, "Firebase token received: \(String(describing: fcmToken))")
|
|
|
|
// We don't actually need the FCM token, since we're just using topics.
|
|
// We still print it so we can see if things were successful.
|
|
}
|
|
}
|