-
Notifications
You must be signed in to change notification settings - Fork 387
/
Copy pathApplicationCoordinator.swift
823 lines (658 loc) · 26.6 KB
/
ApplicationCoordinator.swift
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
810
811
812
813
814
815
816
817
818
819
820
821
822
823
//
// ApplicationCoordinator.swift
// MullvadVPN
//
// Created by pronebird on 13/01/2023.
// Copyright © 2023 Mullvad VPN AB. All rights reserved.
//
import Combine
import MullvadREST
import MullvadSettings
import MullvadTypes
import Routing
import UIKit
/**
Application coordinator managing split view and two navigation contexts.
*/
final class ApplicationCoordinator: Coordinator, Presenting, RootContainerViewControllerDelegate,
UISplitViewControllerDelegate, ApplicationRouterDelegate, NotificationManagerDelegate {
typealias RouteType = AppRoute
/**
Application router.
*/
private(set) var router: ApplicationRouter<AppRoute>!
/**
Navigation container.
Used as a container for horizontal flows (TOS, Login, Revoked, Out-of-time).
*/
private let navigationContainer = RootContainerViewController()
/// Posts `preferredAccountNumber` notification when user inputs the account number instead of voucher code
private let preferredAccountNumberSubject = PassthroughSubject<String, Never>()
private let notificationController = NotificationController()
private var splitTunnelCoordinator: TunnelCoordinator?
private var splitLocationCoordinator: LocationCoordinator?
private let tunnelManager: TunnelManager
private let storePaymentManager: StorePaymentManager
private let relayCacheTracker: RelayCacheTracker
private let apiProxy: APIQuerying
private let devicesProxy: DeviceHandling
private let accountsProxy: RESTAccountHandling
private var tunnelObserver: TunnelObserver?
private var appPreferences: AppPreferencesDataSource
private var outgoingConnectionService: OutgoingConnectionServiceHandling
private var accessMethodRepository: AccessMethodRepositoryProtocol
private let configuredTransportProvider: ProxyConfigurationTransportProvider
private let ipOverrideRepository: IPOverrideRepository
private var outOfTimeTimer: Timer?
var rootViewController: UIViewController {
navigationContainer
}
init(
tunnelManager: TunnelManager,
storePaymentManager: StorePaymentManager,
relayCacheTracker: RelayCacheTracker,
apiProxy: APIQuerying,
devicesProxy: DeviceHandling,
accountsProxy: RESTAccountHandling,
outgoingConnectionService: OutgoingConnectionServiceHandling,
appPreferences: AppPreferencesDataSource,
accessMethodRepository: AccessMethodRepositoryProtocol,
transportProvider: ProxyConfigurationTransportProvider,
ipOverrideRepository: IPOverrideRepository
) {
self.tunnelManager = tunnelManager
self.storePaymentManager = storePaymentManager
self.relayCacheTracker = relayCacheTracker
self.apiProxy = apiProxy
self.devicesProxy = devicesProxy
self.accountsProxy = accountsProxy
self.appPreferences = appPreferences
self.outgoingConnectionService = outgoingConnectionService
self.accessMethodRepository = accessMethodRepository
self.configuredTransportProvider = transportProvider
self.ipOverrideRepository = ipOverrideRepository
super.init()
navigationContainer.delegate = self
router = ApplicationRouter(self)
addTunnelObserver()
NotificationManager.shared.delegate = self
}
func start() {
navigationContainer.notificationController = notificationController
continueFlow(animated: false)
}
// MARK: - ApplicationRouterDelegate
func applicationRouter(
_ router: ApplicationRouter<RouteType>,
presentWithContext context: RoutePresentationContext<RouteType>,
animated: Bool,
completion: @escaping (Coordinator) -> Void
) {
switch context.route {
case .account:
presentAccount(animated: animated, completion: completion)
case let .settings(subRoute):
presentSettings(route: subRoute, animated: animated, completion: completion)
case .selectLocation:
presentSelectLocation(animated: animated, completion: completion)
case .outOfTime:
presentOutOfTime(animated: animated, completion: completion)
case .revoked:
presentRevoked(animated: animated, completion: completion)
case .login:
presentLogin(animated: animated, completion: completion)
case .changelog:
presentChangeLog(animated: animated, completion: completion)
case .tos:
presentTOS(animated: animated, completion: completion)
case .main:
presentMain(animated: animated, completion: completion)
case .welcome:
presentWelcome(animated: animated, completion: completion)
case .alert:
presentAlert(animated: animated, context: context, completion: completion)
}
}
func applicationRouter(
_ router: ApplicationRouter<RouteType>,
dismissWithContext context: RouteDismissalContext<RouteType>,
completion: @escaping () -> Void
) {
let dismissedRoute = context.dismissedRoutes.first!
if context.isClosing {
switch dismissedRoute.route.routeGroup {
case .primary:
completion()
context.dismissedRoutes.forEach { $0.coordinator.removeFromParent() }
case .selectLocation, .account, .settings, .changelog, .alert:
guard let coordinator = dismissedRoute.coordinator as? Presentable else {
completion()
return assertionFailure("Expected presentable coordinator for \(dismissedRoute.route)")
}
coordinator.dismiss(animated: context.isAnimated, completion: completion)
}
} else {
assert(context.dismissedRoutes.count == 1)
switch dismissedRoute.route {
case .outOfTime, .welcome:
guard let coordinator = dismissedRoute.coordinator as? Poppable else {
completion()
return assertionFailure("Expected presentable coordinator for \(dismissedRoute.route)")
}
coordinator.popFromNavigationStack(
animated: context.isAnimated,
completion: completion
)
coordinator.removeFromParent()
default:
assertionFailure("Unhandled dismissal for \(dismissedRoute.route)")
completion()
}
}
}
func applicationRouter(_ router: ApplicationRouter<RouteType>, shouldPresent route: RouteType) -> Bool {
switch route {
case .revoked:
// Check if device is still revoked.
return tunnelManager.deviceState == .revoked
case .outOfTime:
// Check if device is still out of time.
return tunnelManager.deviceState.accountData?.isExpired ?? false
default:
return true
}
}
func applicationRouter(
_ router: ApplicationRouter<RouteType>,
shouldDismissWithContext context: RouteDismissalContext<RouteType>
) -> Bool {
context.dismissedRoutes.allSatisfy { dismissedRoute in
/*
Prevent dismissal of "out of time" route in response to device state change when
making payment. It will dismiss itself once done.
*/
if dismissedRoute.route == .outOfTime {
guard let coordinator = dismissedRoute.coordinator as? OutOfTimeCoordinator else {
return false
}
return !coordinator.isMakingPayment
}
return true
}
}
func applicationRouter(
_ router: ApplicationRouter<RouteType>,
handleSubNavigationWithContext context: RouteSubnavigationContext<RouteType>,
completion: @escaping () -> Void
) {
switch context.route {
case let .settings(subRoute):
guard let coordinator = context.presentedRoute.coordinator as? SettingsCoordinator else { return }
if let subRoute {
coordinator.navigate(
to: subRoute,
animated: context.isAnimated,
completion: completion
)
} else {
completion()
}
default:
completion()
}
}
// MARK: - Private
private var isPresentingAccountExpiryBanner = false
/**
Continues application flow by evaluating what route to present next.
*/
private func continueFlow(animated: Bool) {
let nextRoutes = evaluateNextRoutes()
for nextRoute in nextRoutes {
router.present(nextRoute, animated: animated)
}
}
/**
Evaluates conditions and returns the routes that need to be presented next.
*/
private func evaluateNextRoutes() -> [AppRoute] {
// Show TOS alone blocking all other routes.
guard appPreferences.isAgreedToTermsOfService else {
return [.tos]
}
var routes = [AppRoute]()
// Pick the primary route to present
switch tunnelManager.deviceState {
case .revoked:
routes.append(.revoked)
case .loggedOut:
routes.append(.login)
case let .loggedIn(accountData, _):
if !appPreferences.isShownOnboarding {
routes.append(.welcome)
} else {
routes.append(accountData.isExpired ? .outOfTime : .main)
}
}
// Change log can be presented simultaneously with other routes.
if !appPreferences.hasSeenLastChanges {
routes.append(.changelog)
}
return routes
}
private func logoutRevokedDevice() {
Task { [weak self] in
guard let self else { return }
await tunnelManager.unsetAccount()
continueFlow(animated: true)
}
}
private func didDismissAccount(_ reason: AccountDismissReason) {
if reason == .userLoggedOut {
router.dismissAll(.primary, animated: false)
continueFlow(animated: false)
}
router.dismiss(.account, animated: true)
}
private func presentTOS(animated: Bool, completion: @escaping (Coordinator) -> Void) {
let coordinator = TermsOfServiceCoordinator(navigationController: navigationContainer)
coordinator.didFinish = { [weak self] _ in
self?.appPreferences.isAgreedToTermsOfService = true
self?.continueFlow(animated: true)
}
addChild(coordinator)
coordinator.start()
completion(coordinator)
}
private func presentChangeLog(animated: Bool, completion: @escaping (Coordinator) -> Void) {
let coordinator = ChangeLogCoordinator(interactor: ChangeLogInteractor())
coordinator.didFinish = { [weak self] _ in
self?.appPreferences.markChangeLogSeen()
self?.router.dismiss(.changelog)
}
coordinator.start()
presentChild(coordinator, animated: animated) {
completion(coordinator)
}
}
private func presentMain(animated: Bool, completion: @escaping (Coordinator) -> Void) {
let tunnelCoordinator = makeTunnelCoordinator()
navigationContainer.pushViewController(
tunnelCoordinator.rootViewController,
animated: animated
)
addChild(tunnelCoordinator)
tunnelCoordinator.start()
completion(tunnelCoordinator)
}
private func presentRevoked(animated: Bool, completion: @escaping (Coordinator) -> Void) {
let coordinator = RevokedCoordinator(
navigationController: navigationContainer,
tunnelManager: tunnelManager
)
coordinator.didFinish = { [weak self] _ in
self?.logoutRevokedDevice()
}
addChild(coordinator)
coordinator.start(animated: animated)
completion(coordinator)
}
private func presentOutOfTime(animated: Bool, completion: @escaping (Coordinator) -> Void) {
let coordinator = OutOfTimeCoordinator(
navigationController: navigationContainer,
storePaymentManager: storePaymentManager,
tunnelManager: tunnelManager
)
coordinator.didFinishPayment = { [weak self] _ in
guard let self = self else { return }
if shouldDismissOutOfTime() {
router.dismiss(.outOfTime, animated: true)
continueFlow(animated: true)
}
}
addChild(coordinator)
coordinator.start(animated: animated)
completion(coordinator)
}
private func presentWelcome(animated: Bool, completion: @escaping (Coordinator) -> Void) {
let coordinator = WelcomeCoordinator(
navigationController: navigationContainer,
storePaymentManager: storePaymentManager,
tunnelManager: tunnelManager,
accountsProxy: accountsProxy
)
coordinator.didFinish = { [weak self] in
guard let self else { return }
appPreferences.isShownOnboarding = true
router.dismiss(.welcome, animated: false)
continueFlow(animated: false)
}
coordinator.didLogout = { [weak self] preferredAccountNumber in
guard let self else { return }
router.dismissAll(.primary, animated: true)
DispatchQueue.main.async {
self.continueFlow(animated: true)
}
preferredAccountNumberSubject.send(preferredAccountNumber)
}
addChild(coordinator)
coordinator.start(animated: animated)
completion(coordinator)
}
private func shouldDismissOutOfTime() -> Bool {
!(tunnelManager.deviceState.accountData?.isExpired ?? false)
}
private func presentSelectLocation(animated: Bool, completion: @escaping (Coordinator) -> Void) {
let coordinator = makeLocationCoordinator(forModalPresentation: true)
coordinator.start()
presentChild(coordinator, animated: animated) {
completion(coordinator)
}
}
private func presentLogin(animated: Bool, completion: @escaping (Coordinator) -> Void) {
let coordinator = LoginCoordinator(
navigationController: navigationContainer,
tunnelManager: tunnelManager,
devicesProxy: devicesProxy
)
coordinator.preferredAccountNumberPublisher = preferredAccountNumberSubject.eraseToAnyPublisher()
coordinator.didFinish = { [weak self] _ in
self?.continueFlow(animated: true)
}
coordinator.didCreateAccount = { [weak self] in
self?.appPreferences.isShownOnboarding = false
}
addChild(coordinator)
coordinator.start(animated: animated)
completion(coordinator)
}
private func presentAlert(
animated: Bool,
context: RoutePresentationContext<RouteType>,
completion: @escaping (Coordinator) -> Void
) {
guard let metadata = context.metadata as? AlertMetadata else {
assertionFailure("Could not get AlertMetadata from RoutePresentationContext.")
return
}
let coordinator = AlertCoordinator(presentation: metadata.presentation)
coordinator.didFinish = { [weak self] in
self?.router.dismiss(context.route)
}
coordinator.start()
metadata.context.presentChild(coordinator, animated: animated) {
completion(coordinator)
}
}
private func makeTunnelCoordinator() -> TunnelCoordinator {
let tunnelCoordinator = TunnelCoordinator(
tunnelManager: tunnelManager,
outgoingConnectionService: outgoingConnectionService,
ipOverrideRepository: ipOverrideRepository
)
tunnelCoordinator.showSelectLocationPicker = { [weak self] in
self?.router.present(.selectLocation, animated: true)
}
return tunnelCoordinator
}
private func makeLocationCoordinator(forModalPresentation isModalPresentation: Bool)
-> LocationCoordinator {
let navigationController = CustomNavigationController()
navigationController.isNavigationBarHidden = !isModalPresentation
let locationCoordinator = LocationCoordinator(
navigationController: navigationController,
tunnelManager: tunnelManager,
relayCacheTracker: relayCacheTracker,
customListRepository: CustomListRepository()
)
locationCoordinator.didFinish = { [weak self] _ in
if isModalPresentation {
self?.router.dismiss(.selectLocation, animated: true)
}
}
return locationCoordinator
}
private func presentAccount(animated: Bool, completion: @escaping (Coordinator) -> Void) {
let accountInteractor = AccountInteractor(
storePaymentManager: storePaymentManager,
tunnelManager: tunnelManager,
accountsProxy: accountsProxy,
apiProxy: apiProxy
)
let coordinator = AccountCoordinator(
navigationController: CustomNavigationController(),
interactor: accountInteractor
)
coordinator.didFinish = { [weak self] _, reason in
self?.didDismissAccount(reason)
}
coordinator.start(animated: animated)
presentChild(
coordinator,
animated: animated
) { [weak self] in
completion(coordinator)
self?.onShowAccount?()
}
}
private func presentSettings(
route: SettingsNavigationRoute?,
animated: Bool,
completion: @escaping (Coordinator) -> Void
) {
let interactorFactory = SettingsInteractorFactory(
storePaymentManager: storePaymentManager,
tunnelManager: tunnelManager,
apiProxy: apiProxy,
relayCacheTracker: relayCacheTracker,
ipOverrideRepository: ipOverrideRepository
)
let navigationController = CustomNavigationController()
navigationController.view.setAccessibilityIdentifier(.settingsContainerView)
let configurationTester = ProxyConfigurationTester(transportProvider: configuredTransportProvider)
let coordinator = SettingsCoordinator(
navigationController: navigationController,
interactorFactory: interactorFactory,
accessMethodRepository: accessMethodRepository,
proxyConfigurationTester: configurationTester,
ipOverrideRepository: ipOverrideRepository
)
coordinator.didFinish = { [weak self] _ in
self?.router.dismissAll(.settings, animated: true)
}
coordinator.willNavigate = { [weak self] _, _, to in
if to == .root {
self?.onShowSettings?()
}
}
coordinator.start(initialRoute: route)
presentChild(
coordinator,
animated: animated
) {
completion(coordinator)
}
}
private func addTunnelObserver() {
let tunnelObserver =
TunnelBlockObserver(
didUpdateTunnelStatus: { [weak self] _, tunnelStatus in
if case let .error(observedState) = tunnelStatus.observedState,
observedState.reason == .accountExpired {
self?.router.present(.outOfTime)
}
},
didUpdateDeviceState: { [weak self] _, deviceState, previousDeviceState in
self?.deviceStateDidChange(deviceState, previousDeviceState: previousDeviceState)
}
)
tunnelManager.addObserver(tunnelObserver)
self.tunnelObserver = tunnelObserver
updateDeviceInfo(deviceState: tunnelManager.deviceState)
}
private func deviceStateDidChange(_ deviceState: DeviceState, previousDeviceState: DeviceState) {
updateDeviceInfo(deviceState: deviceState)
switch deviceState {
case let .loggedIn(accountData, _):
// Account creation is being shown
guard !isPresentingWelcome && !appPreferences.isShownOnboarding else { return }
// Handle transition to and from expired state.
switch (previousDeviceState.accountData?.isExpired ?? false, accountData.isExpired) {
// add more credit
case (true, false):
updateOutOfTimeTimer(accountData: accountData)
continueFlow(animated: true)
router.dismiss(.outOfTime, animated: true)
// account was expired
case (false, true):
router.present(.outOfTime, animated: true)
default:
break
}
case .revoked:
appPreferences.isShownOnboarding = true
cancelOutOfTimeTimer()
router.present(.revoked, animated: true)
case .loggedOut:
appPreferences.isShownOnboarding = true
cancelOutOfTimeTimer()
}
}
private func updateDeviceInfo(deviceState: DeviceState) {
let rootDeviceInfoViewModel = RootDeviceInfoViewModel(
isPresentingAccountExpiryBanner: isPresentingAccountExpiryBanner,
deviceState: deviceState
)
self.navigationContainer.update(configuration: rootDeviceInfoViewModel.configuration)
}
// MARK: - Out of time
private func updateOutOfTimeTimer(accountData: StoredAccountData) {
cancelOutOfTimeTimer()
guard !accountData.isExpired else { return }
let timer = Timer(fire: accountData.expiry, interval: 0, repeats: false, block: { [weak self] _ in
self?.router.present(.outOfTime, animated: true)
})
RunLoop.main.add(timer, forMode: .common)
outOfTimeTimer = timer
}
private func cancelOutOfTimeTimer() {
outOfTimeTimer?.invalidate()
outOfTimeTimer = nil
}
// MARK: - Settings
/**
This closure is called each time when settings are presented or when navigating from any of sub-routes within
settings back to root.
*/
var onShowSettings: (() -> Void)?
/// This closure is called each time when account controller is being presented.
var onShowAccount: (() -> Void)?
/// Returns `true` if settings are being presented.
var isPresentingSettings: Bool {
router.isPresenting(group: .settings)
}
/// Returns `true` if account controller is being presented.
var isPresentingAccount: Bool {
router.isPresenting(group: .account)
}
/// Returns `true` if welcome controller is being presented.
private var isPresentingWelcome: Bool {
router.isPresenting(route: .welcome)
}
// MARK: - UISplitViewControllerDelegate
func primaryViewController(forExpanding splitViewController: UISplitViewController)
-> UIViewController? {
splitLocationCoordinator?.navigationController
}
func primaryViewController(forCollapsing splitViewController: UISplitViewController)
-> UIViewController? {
splitTunnelCoordinator?.rootViewController
}
func splitViewController(
_ splitViewController: UISplitViewController,
collapseSecondary secondaryViewController: UIViewController,
onto primaryViewController: UIViewController
) -> Bool {
true
}
func splitViewController(
_ splitViewController: UISplitViewController,
separateSecondaryFrom primaryViewController: UIViewController
) -> UIViewController? {
nil
}
func splitViewControllerDidExpand(_ svc: UISplitViewController) {
router.dismissAll(.selectLocation, animated: false)
}
// MARK: - RootContainerViewControllerDelegate
func rootContainerViewControllerShouldShowAccount(
_ controller: RootContainerViewController,
animated: Bool
) {
router.present(.account, animated: animated)
}
func rootContainerViewControllerShouldShowSettings(
_ controller: RootContainerViewController,
navigateTo route: SettingsNavigationRoute?,
animated: Bool
) {
router.present(.settings(route), animated: animated)
}
func rootContainerViewSupportedInterfaceOrientations(_ controller: RootContainerViewController)
-> UIInterfaceOrientationMask {
return [.portrait]
}
func rootContainerViewAccessibilityPerformMagicTap(_ controller: RootContainerViewController)
-> Bool {
guard tunnelManager.deviceState.isLoggedIn else { return false }
switch tunnelManager.tunnelStatus.state {
case .connected, .connecting, .reconnecting, .waitingForConnectivity(.noConnection), .error,
.negotiatingEphemeralPeer:
tunnelManager.reconnectTunnel(selectNewRelay: true)
case .disconnecting, .disconnected:
tunnelManager.startTunnel()
case .pendingReconnect, .waitingForConnectivity(.noNetwork):
break
}
return true
}
// MARK: - NotificationManagerDelegate
func notificationManagerDidUpdateInAppNotifications(
_ manager: NotificationManager,
notifications: [InAppNotificationDescriptor]
) {
isPresentingAccountExpiryBanner = notifications
.contains(where: { $0.identifier == .accountExpiryInAppNotification })
updateDeviceInfo(deviceState: tunnelManager.deviceState)
notificationController.setNotifications(notifications, animated: true)
}
func notificationManager(_ manager: NotificationManager, didReceiveResponse response: NotificationResponse) {
switch response.providerIdentifier {
case .accountExpirySystemNotification:
router.present(.account)
case .accountExpiryInAppNotification:
isPresentingAccountExpiryBanner = false
updateDeviceInfo(deviceState: tunnelManager.deviceState)
default: return
}
}
// MARK: - Presenting
var presentationContext: UIViewController {
navigationContainer.presentedViewController ?? navigationContainer
}
}
extension DeviceState {
var splitViewMode: UISplitViewController.DisplayMode {
isLoggedIn ? UISplitViewController.DisplayMode.oneBesideSecondary : .secondaryOnly
}
}
fileprivate extension AppPreferencesDataSource {
var hasSeenLastChanges: Bool {
!ChangeLogInteractor().hasNewChanges ||
(lastSeenChangeLogVersion == Bundle.main.shortVersion)
}
mutating func markChangeLogSeen() {
lastSeenChangeLogVersion = Bundle.main.shortVersion
}
// swiftlint:disable:next file_length
}