forked from mirrors/linphone-iphone
232 lines
9.3 KiB
Swift
232 lines
9.3 KiB
Swift
/*
|
|
* Copyright (c) 2010-2023 Belledonne Communications SARL.
|
|
*
|
|
* This file is part of linphone-iphone
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import SwiftUI
|
|
import linphonesw
|
|
import UserNotifications
|
|
|
|
let accountTokenNotification = Notification.Name("AccountCreationTokenReceived")
|
|
var displayedChatroomPeerAddr: String?
|
|
|
|
class AppDelegate: NSObject, UIApplicationDelegate, UNUserNotificationCenterDelegate {
|
|
|
|
var launchNotificationCallId: String?
|
|
var launchNotificationPeerAddr: String?
|
|
var launchNotificationLocalAddr: String?
|
|
|
|
var navigationManager: NavigationManager?
|
|
|
|
func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
|
|
let tokenStr = deviceToken.map { String(format: "%02.2hhx", $0) }.joined()
|
|
Log.info("Received remote push token : \(tokenStr)")
|
|
CoreContext.shared.doOnCoreQueue { core in
|
|
Log.warn("Push are disabled for this version, do not forward push token to the core")
|
|
Log.info("Forwarding remote push token to core")
|
|
core.didRegisterForRemotePushWithStringifiedToken(deviceTokenStr: tokenStr + ":remote")
|
|
}
|
|
}
|
|
|
|
func application(_ application: UIApplication, didFailToRegisterForRemoteNotificationsWithError error: Error) {
|
|
Log.error("Failed to register for push notifications : \(error.localizedDescription)")
|
|
}
|
|
|
|
func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable: Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
|
|
Log.info("Received background push notification, payload = \(userInfo.description)")
|
|
let creationToken = (userInfo["customPayload"] as? NSDictionary)?["token"] as? String
|
|
if let creationToken = creationToken {
|
|
NotificationCenter.default.post(name: accountTokenNotification, object: nil, userInfo: ["token": creationToken])
|
|
}
|
|
|
|
completionHandler(UIBackgroundFetchResult.newData)
|
|
}
|
|
|
|
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
|
|
// Set up notifications
|
|
UNUserNotificationCenter.current().delegate = self
|
|
|
|
return true
|
|
}
|
|
|
|
// Called when the user interacts with the notification
|
|
func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
|
|
let userInfo = response.notification.request.content.userInfo
|
|
|
|
if let callId = userInfo["CallId"] as? String, let peerAddr = userInfo["peer_addr"] as? String, let localAddr = userInfo["local_addr"] as? String {
|
|
if self.navigationManager != nil {
|
|
self.navigationManager!.selectedCallId = callId
|
|
self.navigationManager!.peerAddr = peerAddr
|
|
self.navigationManager!.localAddr = localAddr
|
|
} else {
|
|
launchNotificationCallId = callId
|
|
launchNotificationPeerAddr = peerAddr
|
|
launchNotificationLocalAddr = localAddr
|
|
}
|
|
}
|
|
|
|
completionHandler()
|
|
}
|
|
|
|
// Display notifications on foreground
|
|
func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
|
|
let userInfo = notification.request.content.userInfo
|
|
Log.info("Received push notification in foreground, payload= \(userInfo)")
|
|
|
|
if let callId = userInfo["CallId"] as? String, let peerAddr = userInfo["peer_addr"] as? String, let localAddr = userInfo["local_addr"] as? String {
|
|
// Only display notification if we're not in the chatroom they come from
|
|
if displayedChatroomPeerAddr != peerAddr {
|
|
completionHandler([.banner, .sound])
|
|
}
|
|
}
|
|
}
|
|
|
|
func applicationWillTerminate(_ application: UIApplication) {
|
|
Log.info("IOS applicationWillTerminate")
|
|
CoreContext.shared.doOnCoreQueue(synchronous: true) { core in
|
|
Log.info("applicationWillTerminate - Stopping linphone core")
|
|
MagicSearchSingleton.shared.destroyMagicSearch()
|
|
if core.globalState != GlobalState.Off {
|
|
core.stop()
|
|
} else {
|
|
Log.info("applicationWillTerminate - Core already stopped")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@main
|
|
struct LinphoneApp: App {
|
|
|
|
@Environment(\.scenePhase) var scenePhase
|
|
@UIApplicationDelegateAdaptor(AppDelegate.self) var delegate
|
|
@StateObject var navigationManager = NavigationManager()
|
|
|
|
@ObservedObject private var coreContext = CoreContext.shared
|
|
@ObservedObject private var sharedMainViewModel = SharedMainViewModel.shared
|
|
|
|
@State private var contactViewModel: ContactViewModel?
|
|
@State private var editContactViewModel: EditContactViewModel?
|
|
@State private var historyViewModel: HistoryViewModel?
|
|
@State private var historyListViewModel: HistoryListViewModel?
|
|
@State private var startCallViewModel: StartCallViewModel?
|
|
@State private var startConversationViewModel: StartConversationViewModel?
|
|
@State private var callViewModel: CallViewModel?
|
|
@State private var meetingWaitingRoomViewModel: MeetingWaitingRoomViewModel?
|
|
@State private var conversationsListViewModel: ConversationsListViewModel?
|
|
@State private var conversationViewModel: ConversationViewModel?
|
|
@State private var meetingsListViewModel: MeetingsListViewModel?
|
|
@State private var meetingViewModel: MeetingViewModel?
|
|
@State private var conversationForwardMessageViewModel: ConversationForwardMessageViewModel?
|
|
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
if coreContext.coreIsStarted {
|
|
if !sharedMainViewModel.welcomeViewDisplayed {
|
|
ZStack {
|
|
WelcomeView()
|
|
|
|
ToastView()
|
|
.zIndex(3)
|
|
}
|
|
} else if coreContext.accounts.isEmpty || sharedMainViewModel.displayProfileMode {
|
|
ZStack {
|
|
AssistantView()
|
|
|
|
ToastView()
|
|
.zIndex(3)
|
|
}
|
|
} else if !coreContext.accounts.isEmpty
|
|
&& contactViewModel != nil
|
|
&& editContactViewModel != nil
|
|
&& historyViewModel != nil
|
|
&& historyListViewModel != nil
|
|
&& startCallViewModel != nil
|
|
&& startConversationViewModel != nil
|
|
&& callViewModel != nil
|
|
&& meetingWaitingRoomViewModel != nil
|
|
&& conversationsListViewModel != nil
|
|
&& conversationViewModel != nil
|
|
&& meetingsListViewModel != nil
|
|
&& meetingViewModel != nil
|
|
&& conversationForwardMessageViewModel != nil {
|
|
ContentView(
|
|
contactViewModel: contactViewModel!,
|
|
editContactViewModel: editContactViewModel!,
|
|
historyViewModel: historyViewModel!,
|
|
historyListViewModel: historyListViewModel!,
|
|
startCallViewModel: startCallViewModel!,
|
|
startConversationViewModel: startConversationViewModel!,
|
|
callViewModel: callViewModel!,
|
|
meetingWaitingRoomViewModel: meetingWaitingRoomViewModel!,
|
|
conversationsListViewModel: conversationsListViewModel!,
|
|
conversationViewModel: conversationViewModel!,
|
|
meetingsListViewModel: meetingsListViewModel!,
|
|
meetingViewModel: meetingViewModel!,
|
|
conversationForwardMessageViewModel: conversationForwardMessageViewModel!
|
|
)
|
|
.environmentObject(navigationManager)
|
|
.onAppear {
|
|
// Link the navigation manager to the AppDelegate
|
|
delegate.navigationManager = navigationManager
|
|
|
|
// Check if the app was launched with a notification payload
|
|
if let callId = delegate.launchNotificationCallId, let peerAddr = delegate.launchNotificationPeerAddr, let localAddr = delegate.launchNotificationLocalAddr {
|
|
// Notify the app to navigate to the chat room
|
|
navigationManager.openChatRoom(callId: callId, peerAddr: peerAddr, localAddr: localAddr)
|
|
}
|
|
}
|
|
.onOpenURL { url in
|
|
URIHandler.handleURL(url: url)
|
|
}
|
|
} else {
|
|
SplashScreen().onOpenURL { url in
|
|
URIHandler.handleURL(url: url)
|
|
}
|
|
}
|
|
} else {
|
|
SplashScreen()
|
|
.onDisappear {
|
|
contactViewModel = ContactViewModel()
|
|
editContactViewModel = EditContactViewModel()
|
|
historyViewModel = HistoryViewModel()
|
|
historyListViewModel = HistoryListViewModel()
|
|
startCallViewModel = StartCallViewModel()
|
|
startConversationViewModel = StartConversationViewModel()
|
|
callViewModel = CallViewModel()
|
|
meetingWaitingRoomViewModel = MeetingWaitingRoomViewModel()
|
|
conversationsListViewModel = ConversationsListViewModel()
|
|
conversationViewModel = ConversationViewModel()
|
|
meetingsListViewModel = MeetingsListViewModel()
|
|
meetingViewModel = MeetingViewModel()
|
|
conversationForwardMessageViewModel = ConversationForwardMessageViewModel()
|
|
}.onOpenURL { url in
|
|
URIHandler.handleURL(url: url)
|
|
}
|
|
}
|
|
}.onChange(of: scenePhase) { newPhase in
|
|
if newPhase == .active {
|
|
Log.info("Entering foreground")
|
|
coreContext.onEnterForeground()
|
|
} else if newPhase == .inactive {
|
|
} else if newPhase == .background {
|
|
Log.info("Entering background")
|
|
coreContext.onEnterBackground()
|
|
}
|
|
}
|
|
}
|
|
}
|