-
Notifications
You must be signed in to change notification settings - Fork 387
/
Copy pathTunnelCoordinator.swift
121 lines (100 loc) · 3.49 KB
/
TunnelCoordinator.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
//
// TunnelCoordinator.swift
// MullvadVPN
//
// Created by pronebird on 01/02/2023.
// Copyright © 2023 Mullvad VPN AB. All rights reserved.
//
import MullvadSettings
import Routing
import UIKit
class TunnelCoordinator: Coordinator, Presenting {
private let tunnelManager: TunnelManager
#if DEBUG
private let controller: FI_TunnelViewController
#else
private let controller: TunnelViewController
#endif
private var tunnelObserver: TunnelObserver?
var presentationContext: UIViewController {
controller
}
var rootViewController: UIViewController {
controller
}
var showSelectLocationPicker: (() -> Void)?
init(
tunnelManager: TunnelManager,
outgoingConnectionService: OutgoingConnectionServiceHandling,
ipOverrideRepository: IPOverrideRepositoryProtocol
) {
self.tunnelManager = tunnelManager
let interactor = TunnelViewControllerInteractor(
tunnelManager: tunnelManager,
outgoingConnectionService: outgoingConnectionService,
ipOverrideRepository: ipOverrideRepository
)
#if DEBUG
controller = FI_TunnelViewController(interactor: interactor)
#else
controller = TunnelViewController(interactor: interactor)
#endif
super.init()
controller.shouldShowSelectLocationPicker = { [weak self] in
self?.showSelectLocationPicker?()
}
controller.shouldShowCancelTunnelAlert = { [weak self] in
self?.showCancelTunnelAlert()
}
}
func start() {
let tunnelObserver =
TunnelBlockObserver(didUpdateDeviceState: { [weak self] _, _, _ in
self?.updateVisibility(animated: true)
})
self.tunnelObserver = tunnelObserver
tunnelManager.addObserver(tunnelObserver)
updateVisibility(animated: false)
}
private func updateVisibility(animated: Bool) {
let deviceState = tunnelManager.deviceState
controller.setMainContentHidden(!deviceState.isLoggedIn, animated: animated)
}
private func showCancelTunnelAlert() {
let presentation = AlertPresentation(
id: "main-cancel-tunnel-alert",
icon: .alert,
message: NSLocalizedString(
"CANCEL_TUNNEL_ALERT_MESSAGE",
tableName: "Main",
value: "If you disconnect now, you won’t be able to secure your connection until the device is online.",
comment: ""
),
buttons: [
AlertAction(
title: NSLocalizedString(
"CANCEL_TUNNEL_ALERT_DISCONNECT_ACTION",
tableName: "Main",
value: "Disconnect",
comment: ""
),
style: .destructive,
handler: { [weak self] in
self?.tunnelManager.stopTunnel()
}
),
AlertAction(
title: NSLocalizedString(
"CANCEL_TUNNEL_ALERT_CANCEL_ACTION",
tableName: "Main",
value: "Cancel",
comment: ""
),
style: .default
),
]
)
let presenter = AlertPresenter(context: self)
presenter.showAlert(presentation: presentation, animated: true)
}
}