1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
|
//
// AppDelegate.swift
// MullvadVPN
//
// Created by pronebird on 19/03/2019.
// Copyright © 2019 Mullvad VPN AB. All rights reserved.
//
import UIKit
import StoreKit
import UserNotifications
import Logging
import BackgroundTasks
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
private var logger: Logger?
#if targetEnvironment(simulator)
private let simulatorTunnelProvider = SimulatorTunnelProviderHost()
#endif
private lazy var occlusionWindow: UIWindow = {
let window = UIWindow(frame: UIScreen.main.bounds)
window.rootViewController = LaunchViewController()
window.windowLevel = .alert + 1
return window
}()
private var rootContainer: RootContainerViewController?
private var splitViewController: CustomSplitViewController?
private var selectLocationViewController: SelectLocationViewController?
private var connectController: ConnectViewController?
private weak var settingsNavController: SettingsNavigationController?
private lazy var addressCacheTracker: AddressCache.Tracker = {
return AddressCache.Tracker(
restClient: REST.Client.shared,
store: AddressCache.Store.shared
)
}()
private var cachedRelays: RelayCache.CachedRelays? {
didSet {
if let cachedRelays = cachedRelays {
self.selectLocationViewController?.setCachedRelays(cachedRelays)
}
}
}
private var relayConstraints: RelayConstraints?
private let notificationManager = NotificationManager()
// MARK: - Application lifecycle
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// Setup logging
initLoggingSystem(bundleIdentifier: Bundle.main.bundleIdentifier!)
self.logger = Logger(label: "AppDelegate")
#if targetEnvironment(simulator)
// Configure mock tunnel provider on simulator
SimulatorTunnelProvider.shared.delegate = simulatorTunnelProvider
#endif
if #available(iOS 13.0, *) {
// Register background tasks on iOS 13
RelayCache.Tracker.shared.registerAppRefreshTask()
TunnelManager.shared.registerBackgroundTask()
addressCacheTracker.registerBackgroundTask()
} else {
// Set background refresh interval on iOS 12
application.setMinimumBackgroundFetchInterval(ApplicationConfiguration.minimumBackgroundFetchInterval)
}
// Assign user notification center delegate
UNUserNotificationCenter.current().delegate = self
// Create an app window
self.window = UIWindow(frame: UIScreen.main.bounds)
// Set an empty view controller while loading tunnels
self.window?.rootViewController = LaunchViewController()
// Add relay cache observer
RelayCache.Tracker.shared.addObserver(self)
// Load initial relays
RelayCache.Tracker.shared.read()
.receive(on: .main)
.observe { completion in
guard let result = completion.unwrappedValue else { return }
switch result {
case .success(let cachedRelays):
self.cachedRelays = cachedRelays
case .failure(let error):
self.logger?.error(chainedError: error, message: "Failed to load initial relays")
}
}
// Load tunnels
TunnelManager.shared.loadTunnel(accountToken: Account.shared.token)
.receive(on: .main)
.onSuccess { _ in
self.relayConstraints = TunnelManager.shared.tunnelInfo?.tunnelSettings.relayConstraints
self.didFinishInitialization()
}
.onFailure { error in
self.logger?.error(chainedError: error, message: "Failed to load tunnels")
switch error {
case .loadAllVPNConfigurations(_), .removeInconsistentVPNConfiguration(_):
// TODO: avoid throwing fatal error and show the problem report UI instead.
fatalError(error.displayChain(message: "Failed to load tunnels"))
case .migrateTunnelSettings(_), .readTunnelSettings(_):
// Forget that user was logged in since tunnel settings are likely corrupt
// or missing.
Account.shared.forget()
.observe { _ in
self.didFinishInitialization()
}
default:
fatalError("Unexpected error coming from loadTunnel()")
}
}
.observe { _ in }
// Show the window
self.window?.makeKeyAndVisible()
return true
}
func applicationDidBecomeActive(_ application: UIApplication) {
// Start periodic relays updates
RelayCache.Tracker.shared.startPeriodicUpdates()
// Start periodic private key rotation
TunnelManager.shared.startPeriodicPrivateKeyRotation()
// Start periodic API address list updates
addressCacheTracker.startPeriodicUpdates()
// Reveal application content
occlusionWindow.isHidden = true
window?.makeKeyAndVisible()
}
func applicationWillResignActive(_ application: UIApplication) {
// Stop periodic relays updates
RelayCache.Tracker.shared.stopPeriodicUpdates()
// Stop periodic private key rotation
TunnelManager.shared.stopPeriodicPrivateKeyRotation()
// Stop periodic API address list updates
addressCacheTracker.stopPeriodicUpdates()
// Hide application content
occlusionWindow.makeKeyAndVisible()
}
func applicationDidEnterBackground(_ application: UIApplication) {
if #available(iOS 13, *) {
scheduleBackgroundTasks()
}
}
func application(_ application: UIApplication, performFetchWithCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
logger?.info("Start background refresh")
_ = addressCacheTracker.updateEndpoints { addressCacheUpdateResult in
RelayCache.Tracker.shared.updateRelays()
.then { fetchRelaysResult -> Promise<UIBackgroundFetchResult> in
switch fetchRelaysResult {
case .success(let result):
self.logger?.debug("Finished updating relays: \(result)")
case .failure(let error):
self.logger?.error(chainedError: error, message: "Failed to update relays")
}
return TunnelManager.shared.rotatePrivateKey()
.then { rotationResult -> UIBackgroundFetchResult in
switch rotationResult {
case .success(let result):
self.logger?.debug("Finished rotating the key: \(result)")
case .failure(let error):
self.logger?.error(chainedError: error, message: "Failed to rotate the key")
}
return addressCacheUpdateResult.backgroundFetchResult
.combine(with: [fetchRelaysResult.backgroundFetchResult, rotationResult.backgroundFetchResult])
}
}
.receive(on: .main)
.observe { completion in
switch completion {
case .finished(let backgroundFetchResult):
self.logger?.info("Finish background refresh with \(backgroundFetchResult)")
completionHandler(backgroundFetchResult)
case .cancelled:
self.logger?.info("Finish background refresh with cancelled promise")
completionHandler(.failed)
}
}
}
}
// MARK: - Private
@available(iOS 13.0, *)
private func scheduleBackgroundTasks() {
if case .finished(let result) = RelayCache.Tracker.shared.scheduleAppRefreshTask().await() {
switch result {
case .success:
self.logger?.debug("Scheduled app refresh task")
case .failure(let error):
self.logger?.error(chainedError: error, message: "Could not schedule app refresh task")
}
}
if case .finished(let result) = TunnelManager.shared.scheduleBackgroundTask().await() {
switch result {
case .success:
self.logger?.debug("Scheduled private key rotation task")
case .failure(let error):
self.logger?.error(chainedError: error, message: "Could not schedule private key rotation task")
}
}
do {
try addressCacheTracker.scheduleBackgroundTask()
self.logger?.debug("Scheduled address cache update task")
} catch {
self.logger?.error(chainedError: AnyChainedError(error), message: "Could not schedule address cache update task")
}
}
private func didFinishInitialization() {
self.logger?.debug("Finished initialization. Show user interface.")
self.rootContainer = RootContainerViewController()
self.rootContainer?.delegate = self
self.window?.rootViewController = self.rootContainer
switch UIDevice.current.userInterfaceIdiom {
case .pad:
self.setupPadUI()
case .phone:
self.setupPhoneUI()
default:
fatalError()
}
notificationManager.notificationProviders = [
AccountExpiryNotificationProvider(),
TunnelErrorNotificationProvider()
]
notificationManager.updateNotifications()
startPaymentQueueHandling()
}
private func startPaymentQueueHandling() {
let paymentManager = AppStorePaymentManager.shared
paymentManager.delegate = self
Account.shared.startPaymentMonitoring(with: paymentManager)
paymentManager.startPaymentQueueMonitoring()
}
private func setupPadUI() {
let selectLocationController = makeSelectLocationController()
let connectController = makeConnectViewController()
let splitViewController = CustomSplitViewController()
splitViewController.delegate = self
splitViewController.minimumPrimaryColumnWidth = UIMetrics.minimumSplitViewSidebarWidth
splitViewController.preferredPrimaryColumnWidthFraction = UIMetrics.maximumSplitViewSidebarWidthFraction
splitViewController.primaryEdge = .trailing
splitViewController.dividerColor = UIColor.MainSplitView.dividerColor
splitViewController.viewControllers = [selectLocationController, connectController]
self.selectLocationViewController = selectLocationController
self.splitViewController = splitViewController
self.connectController = connectController
self.rootContainer?.setViewControllers([splitViewController], animated: false)
showSplitViewMaster(Account.shared.isLoggedIn, animated: false)
let rootContainerWrapper = makeLoginContainerController()
if !Account.shared.isAgreedToTermsOfService {
let consentViewController = self.makeConsentController { [weak self] (viewController) in
guard let self = self else { return }
if Account.shared.isLoggedIn {
rootContainerWrapper.dismiss(animated: true) {
self.showAccountSettingsControllerIfAccountExpired()
}
} else {
rootContainerWrapper.pushViewController(self.makeLoginController(), animated: true)
}
}
rootContainerWrapper.setViewControllers([consentViewController], animated: false)
self.rootContainer?.present(rootContainerWrapper, animated: false)
} else if !Account.shared.isLoggedIn {
rootContainerWrapper.setViewControllers([makeLoginController()], animated: false)
self.rootContainer?.present(rootContainerWrapper, animated: false)
} else {
self.showAccountSettingsControllerIfAccountExpired()
}
}
private func setupPhoneUI() {
let showNextController = { [weak self] (_ animated: Bool) in
guard let self = self else { return }
let loginViewController = self.makeLoginController()
var viewControllers: [UIViewController] = [loginViewController]
if Account.shared.isLoggedIn {
let connectController = self.makeConnectViewController()
viewControllers.append(connectController)
self.connectController = connectController
}
self.rootContainer?.setViewControllers(viewControllers, animated: animated) {
self.showAccountSettingsControllerIfAccountExpired()
}
}
if Account.shared.isAgreedToTermsOfService {
showNextController(false)
} else {
let consentViewController = self.makeConsentController { (consentController) in
showNextController(true)
}
self.rootContainer?.setViewControllers([consentViewController], animated: false)
}
}
private func makeConnectViewController() -> ConnectViewController {
let connectController = ConnectViewController()
connectController.delegate = self
notificationManager.delegate = connectController.notificationController
return connectController
}
private func makeSelectLocationController() -> SelectLocationViewController {
let selectLocationController = SelectLocationViewController()
selectLocationController.delegate = self
if let cachedRelays = cachedRelays {
selectLocationController.setCachedRelays(cachedRelays)
}
if let relayLocation = relayConstraints?.location.value {
selectLocationController.setSelectedRelayLocation(relayLocation, animated: false, scrollPosition: .middle)
}
return selectLocationController
}
private func makeConsentController(completion: @escaping (UIViewController) -> Void) -> ConsentViewController {
let consentViewController = ConsentViewController()
if UIDevice.current.userInterfaceIdiom == .pad {
consentViewController.modalPresentationStyle = .formSheet
if #available(iOS 13.0, *) {
consentViewController.isModalInPresentation = true
}
}
consentViewController.completionHandler = { (consentViewController) in
Account.shared.agreeToTermsOfService()
completion(consentViewController)
}
return consentViewController
}
private func makeLoginContainerController() -> RootContainerViewController {
let rootContainerWrapper = RootContainerViewController()
rootContainerWrapper.delegate = self
rootContainerWrapper.preferredContentSize = CGSize(width: 480, height: 600)
if UIDevice.current.userInterfaceIdiom == .pad {
rootContainerWrapper.modalPresentationStyle = .formSheet
if #available(iOS 13.0, *) {
// Prevent swiping off the login or consent controllers
rootContainerWrapper.isModalInPresentation = true
}
}
rootContainerWrapper.presentationController?.delegate = self
return rootContainerWrapper
}
private func makeLoginController() -> LoginViewController {
let controller = LoginViewController()
controller.delegate = self
return controller
}
private func makeSettingsNavigationController(route: SettingsNavigationRoute?) -> SettingsNavigationController {
let navController = SettingsNavigationController()
navController.settingsDelegate = self
if UIDevice.current.userInterfaceIdiom == .pad {
navController.preferredContentSize = CGSize(width: 480, height: 568)
navController.modalPresentationStyle = .formSheet
}
navController.presentationController?.delegate = navController
if let route = route {
navController.navigate(to: route, animated: false)
}
return navController
}
private func showAccountSettingsControllerIfAccountExpired() {
guard let accountExpiry = Account.shared.expiry, AccountExpiry(date: accountExpiry).isExpired else { return }
rootContainer?.showSettings(navigateTo: .account, animated: true)
}
private func showSplitViewMaster(_ show: Bool, animated: Bool) {
if show {
splitViewController?.preferredDisplayMode = .allVisible
connectController?.setMainContentHidden(false, animated: animated)
} else {
splitViewController?.preferredDisplayMode = .primaryHidden
connectController?.setMainContentHidden(true, animated: animated)
}
}
}
// MARK: - RootContainerViewControllerDelegate
extension AppDelegate: RootContainerViewControllerDelegate {
func rootContainerViewControllerShouldShowSettings(_ controller: RootContainerViewController, navigateTo route: SettingsNavigationRoute?, animated: Bool) {
// Check if settings controller is already presented.
if let settingsNavController = self.settingsNavController {
if let route = route {
settingsNavController.navigate(to: route, animated: animated)
} else {
settingsNavController.popToRootViewController(animated: animated)
}
} else {
let navController = makeSettingsNavigationController(route: route)
// On iPad the login controller can be presented modally above the root container.
// in that case we have to use the presented controller to present the next modal.
if let presentedController = controller.presentedViewController {
presentedController.present(navController, animated: true)
} else {
controller.present(navController, animated: true)
}
// Save the reference for later.
self.settingsNavController = navController
}
}
func rootContainerViewSupportedInterfaceOrientations(_ controller: RootContainerViewController) -> UIInterfaceOrientationMask {
switch UIDevice.current.userInterfaceIdiom {
case .pad:
return [.landscape, .portrait]
case .phone:
return [.portrait]
default:
return controller.supportedInterfaceOrientations
}
}
func rootContainerViewAccessibilityPerformMagicTap(_ controller: RootContainerViewController) -> Bool {
guard Account.shared.isLoggedIn else { return false }
switch TunnelManager.shared.tunnelState {
case .connected, .connecting, .reconnecting:
TunnelManager.shared.reconnectTunnel()
case .disconnecting, .disconnected:
TunnelManager.shared.startTunnel()
case .pendingReconnect:
break
}
return true
}
}
// MARK: - LoginViewControllerDelegate
extension AppDelegate: LoginViewControllerDelegate {
func loginViewController(_ controller: LoginViewController, loginWithAccountToken accountToken: String, completion: @escaping (Result<REST.AccountResponse, Account.Error>) -> Void) {
self.rootContainer?.setEnableSettingsButton(false)
Account.shared.login(with: accountToken)
.onSuccess { _ in
self.logger?.debug("Logged in with existing token")
// RootContainer's settings button will be re-enabled in `loginViewControllerDidLogin`
}
.onFailure { error in
self.logger?.error(chainedError: error, message: "Failed to log in with existing account")
self.rootContainer?.setEnableSettingsButton(true)
}
.observe { promiseCompletion in
guard let result = promiseCompletion.unwrappedValue else { return }
completion(result)
}
}
func loginViewControllerLoginWithNewAccount(_ controller: LoginViewController, completion: @escaping (Result<REST.AccountResponse, Account.Error>) -> Void) {
self.rootContainer?.setEnableSettingsButton(false)
Account.shared.loginWithNewAccount()
.onSuccess { _ in
self.logger?.debug("Logged in with new account token")
// RootContainer's settings button will be re-enabled in `loginViewControllerDidLogin`
}
.onFailure { error in
self.logger?.error(chainedError: error, message: "Failed to log in with new account")
self.rootContainer?.setEnableSettingsButton(true)
}
.observe { promiseCompletion in
guard let result = promiseCompletion.unwrappedValue else { return }
completion(result)
}
}
func loginViewControllerDidLogin(_ controller: LoginViewController) {
self.window?.isUserInteractionEnabled = false
// Move the settings button back into header bar
self.rootContainer?.removeSettingsButtonFromPresentationContainer()
self.relayConstraints = TunnelManager.shared.tunnelInfo?.tunnelSettings.relayConstraints
self.selectLocationViewController?.setSelectedRelayLocation(relayConstraints?.location.value, animated: false, scrollPosition: .middle)
switch UIDevice.current.userInterfaceIdiom {
case .phone:
let connectController = self.makeConnectViewController()
self.rootContainer?.pushViewController(connectController, animated: true) {
self.showAccountSettingsControllerIfAccountExpired()
}
self.connectController = connectController
case .pad:
self.showSplitViewMaster(true, animated: true)
controller.dismiss(animated: true) {
self.showAccountSettingsControllerIfAccountExpired()
}
default:
fatalError()
}
self.window?.isUserInteractionEnabled = true
self.rootContainer?.setEnableSettingsButton(true)
}
}
// MARK: - SettingsNavigationControllerDelegate
extension AppDelegate: SettingsNavigationControllerDelegate {
func settingsNavigationController(_ controller: SettingsNavigationController, didFinishWithReason reason: SettingsDismissReason) {
switch UIDevice.current.userInterfaceIdiom {
case .phone:
if case .userLoggedOut = reason {
rootContainer?.popToRootViewController(animated: false)
let loginController = rootContainer?.topViewController as? LoginViewController
loginController?.reset()
}
controller.dismiss(animated: true)
case .pad:
if case .userLoggedOut = reason {
self.showSplitViewMaster(false, animated: true)
}
controller.dismiss(animated: true) {
if case .userLoggedOut = reason {
let rootContainerWrapper = self.makeLoginContainerController()
rootContainerWrapper.setViewControllers([self.makeLoginController()], animated: false)
self.rootContainer?.present(rootContainerWrapper, animated: true)
}
}
default:
fatalError()
}
}
}
// MARK: - ConnectViewControllerDelegate
extension AppDelegate: ConnectViewControllerDelegate {
func connectViewControllerShouldShowSelectLocationPicker(_ controller: ConnectViewController) {
let contentController = makeSelectLocationController()
contentController.navigationItem.largeTitleDisplayMode = .never
contentController.navigationItem.rightBarButtonItem = UIBarButtonItem(barButtonSystemItem: .done, target: self, action: #selector(handleDismissSelectLocationController(_:)))
let navController = SelectLocationNavigationController(contentController: contentController)
self.rootContainer?.present(navController, animated: true)
self.selectLocationViewController = contentController
}
@objc private func handleDismissSelectLocationController(_ sender: Any) {
self.selectLocationViewController?.dismiss(animated: true)
}
}
// MARK: - SelectLocationViewControllerDelegate
extension AppDelegate: SelectLocationViewControllerDelegate {
func selectLocationViewController(_ controller: SelectLocationViewController, didSelectRelayLocation relayLocation: RelayLocation) {
// Dismiss view controller in modal presentation
if controller.presentingViewController != nil {
self.window?.isUserInteractionEnabled = false
DispatchQueue.main.asyncAfter(deadline: .now() + .milliseconds(250)) {
self.window?.isUserInteractionEnabled = true
controller.dismiss(animated: true) {
self.selectLocationControllerDidSelectRelayLocation(relayLocation)
}
}
} else {
selectLocationControllerDidSelectRelayLocation(relayLocation)
}
}
private func selectLocationControllerDidSelectRelayLocation(_ relayLocation: RelayLocation) {
let relayConstraints = RelayConstraints(location: .only(relayLocation))
TunnelManager.shared.setRelayConstraints(relayConstraints)
.receive(on: .main)
.observe { completion in
guard let result = completion.unwrappedValue else { return }
self.relayConstraints = relayConstraints
switch result {
case .success:
self.logger?.debug("Updated relay constraints: \(relayConstraints)")
TunnelManager.shared.startTunnel()
case .failure(let error):
self.logger?.error(chainedError: error, message: "Failed to update relay constraints")
}
}
}
}
// MARK: - UIAdaptivePresentationControllerDelegate
extension AppDelegate: UIAdaptivePresentationControllerDelegate {
func adaptivePresentationStyle(for controller: UIPresentationController, traitCollection: UITraitCollection) -> UIModalPresentationStyle {
if controller.presentedViewController is RootContainerViewController {
// Use .formSheet presentation in regular horizontal environment and .fullScreen
// in compact environment.
if traitCollection.horizontalSizeClass == .regular {
return .formSheet
} else {
return .fullScreen
}
} else {
return .none
}
}
func presentationController(_ presentationController: UIPresentationController, willPresentWithAdaptiveStyle style: UIModalPresentationStyle, transitionCoordinator: UIViewControllerTransitionCoordinator?) {
let actualStyle: UIModalPresentationStyle
// When adaptive presentation is not changing, the `style` is set to `.none`
if case .none = style {
actualStyle = presentationController.presentedViewController.modalPresentationStyle
} else {
actualStyle = style
}
// Force hide header bar in .formSheet presentation and show it in .fullScreen presentation
if let wrapper = presentationController.presentedViewController as? RootContainerViewController {
wrapper.setOverrideHeaderBarHidden(actualStyle == .formSheet, animated: false)
}
guard actualStyle == .formSheet else {
// Move the settings button back into header bar
self.rootContainer?.removeSettingsButtonFromPresentationContainer()
return
}
// Add settings button into the modal container to make it accessible by user
if let transitionCoordinator = transitionCoordinator {
transitionCoordinator.animate(alongsideTransition: { (context) in
self.rootContainer?.addSettingsButtonToPresentationContainer(context.containerView)
}, completion: { (context) in
// no-op
})
} else {
if let containerView = presentationController.containerView {
self.rootContainer?.addSettingsButtonToPresentationContainer(containerView)
} else {
logger?.warning("Cannot obtain the containerView for presentation controller when presenting with adaptive style \(actualStyle.rawValue) and missing transition coordinator.")
}
}
}
}
// MARK: - RelayCacheObserver
extension AppDelegate: RelayCacheObserver {
func relayCache(_ relayCache: RelayCache.Tracker, didUpdateCachedRelays cachedRelays: RelayCache.CachedRelays) {
DispatchQueue.main.async {
self.cachedRelays = cachedRelays
}
}
}
// MARK: - AppStorePaymentManagerDelegate
extension AppDelegate: AppStorePaymentManagerDelegate {
func appStorePaymentManager(_ manager: AppStorePaymentManager,
didRequestAccountTokenFor payment: SKPayment) -> String?
{
// Since we do not persist the relation between the payment and account token between the
// app launches, we assume that all successful purchases belong to the active account token.
return Account.shared.token
}
}
// MARK: - UISplitViewControllerDelegate
extension AppDelegate: UISplitViewControllerDelegate {
func primaryViewController(forExpanding splitViewController: UISplitViewController) -> UIViewController? {
// Restore the select location controller as primary when expanding the split view
return selectLocationViewController
}
func primaryViewController(forCollapsing splitViewController: UISplitViewController) -> UIViewController? {
// Set the connect controller as primary when collapsing the split view
return connectController
}
func splitViewController(_ splitViewController: UISplitViewController, separateSecondaryFrom primaryViewController: UIViewController) -> UIViewController? {
// Dismiss the select location controller when expanding the split view
if self.selectLocationViewController?.presentingViewController != nil {
self.selectLocationViewController?.dismiss(animated: false)
}
return nil
}
}
// MARK: - UNUserNotificationCenterDelegate
extension AppDelegate: UNUserNotificationCenterDelegate {
func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
if response.notification.request.identifier == kAccountExpiryNotificationIdentifier,
response.actionIdentifier == UNNotificationDefaultActionIdentifier {
rootContainer?.showSettings(navigateTo: .account, animated: true)
}
completionHandler()
}
func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
if #available(iOS 14.0, *) {
completionHandler([.list])
} else {
completionHandler([])
}
}
}
|