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
|
//
// TunnelViewController.swift
// MullvadVPN
//
// Created by Jon Petersson on 2024-12-10.
// Copyright © 2025 Mullvad VPN AB. All rights reserved.
//
import Combine
import MapKit
import MullvadLogging
import MullvadREST
import MullvadSettings
import MullvadTypes
import SwiftUI
class TunnelViewController: UIViewController, RootContainment {
private let logger = Logger(label: "TunnelViewController")
private let interactor: TunnelViewControllerInteractor
private var tunnelState: TunnelState = .disconnected
private var connectionViewViewModel: ConnectionViewViewModel
private var indicatorsViewViewModel: FeatureIndicatorsViewModel
private var connectionView: ConnectionView
private var connectionController: UIHostingController<ConnectionView>?
var shouldShowSelectLocationPicker: (() -> Void)?
var shouldShowCancelTunnelAlert: (() -> Void)?
var shouldShowSettingsForFeature: ((FeatureType) -> Void)?
let activityIndicator: SpinnerActivityIndicatorView = {
let activityIndicator = SpinnerActivityIndicatorView(style: .large)
activityIndicator.translatesAutoresizingMaskIntoConstraints = false
activityIndicator.tintColor = .white
activityIndicator.setContentHuggingPriority(.defaultHigh, for: .horizontal)
activityIndicator.setContentCompressionResistancePriority(.defaultHigh, for: .horizontal)
return activityIndicator
}()
private let mapViewController = MapViewController()
override var preferredStatusBarStyle: UIStatusBarStyle {
.lightContent
}
var preferredHeaderBarPresentation: HeaderBarPresentation {
switch interactor.deviceState {
case .loggedIn, .revoked:
return HeaderBarPresentation(
style: tunnelState.isSecured ? .secured : .unsecured,
showsDivider: false
)
case .loggedOut:
return HeaderBarPresentation(style: .default, showsDivider: true)
}
}
var prefersHeaderBarHidden: Bool {
false
}
var prefersNotificationBarHidden: Bool {
false
}
init(interactor: TunnelViewControllerInteractor) {
self.interactor = interactor
tunnelState = interactor.tunnelStatus.state
connectionViewViewModel = ConnectionViewViewModel(
tunnelStatus: interactor.tunnelStatus,
relayConstraints: interactor.tunnelSettings.relayConstraints,
relayCache: RelayCache(cacheDirectory: ApplicationConfiguration.containerURL),
customListRepository: CustomListRepository()
)
indicatorsViewViewModel = FeatureIndicatorsViewModel(
tunnelSettings: interactor.tunnelSettings,
ipOverrides: interactor.ipOverrides,
tunnelStatus: interactor.tunnelStatus
)
connectionView = ConnectionView(
connectionViewModel: connectionViewViewModel,
indicatorsViewModel: indicatorsViewViewModel
)
super.init(nibName: nil, bundle: nil)
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
override func viewDidLoad() {
super.viewDidLoad()
indicatorsViewViewModel.onFeaturePressed = { [weak self] feature in
self?.shouldShowSettingsForFeature?(feature)
}
interactor.didUpdateDeviceState = { [weak self] _, _ in
self?.setNeedsHeaderBarStyleAppearanceUpdate()
}
interactor.didUpdateTunnelStatus = { [weak self] tunnelStatus in
self?.connectionViewViewModel.update(tunnelStatus: tunnelStatus)
self?.setTunnelState(tunnelStatus.state, animated: true)
self?.indicatorsViewViewModel.tunnelState = tunnelStatus.state
self?.indicatorsViewViewModel.observedState = tunnelStatus.observedState
self?.view.setNeedsLayout()
}
interactor.didGetOutgoingAddress = { [weak self] outgoingConnectionInfo in
self?.connectionViewViewModel.outgoingConnectionInfo = outgoingConnectionInfo
}
interactor.didUpdateTunnelSettings = { [weak self] tunnelSettings in
self?.indicatorsViewViewModel.tunnelSettings = tunnelSettings
self?.connectionViewViewModel.relayConstraints = tunnelSettings.relayConstraints
}
interactor.didUpdateIpOverrides = { [weak self] overrides in
self?.indicatorsViewViewModel.ipOverrides = overrides
}
connectionView.action = { [weak self] action in
switch action {
case .connect:
self?.interactor.startTunnel()
case .cancel:
if case .waitingForConnectivity(.noConnection) = self?.interactor.tunnelStatus.state {
self?.shouldShowCancelTunnelAlert?()
} else {
self?.interactor.stopTunnel()
}
case .disconnect:
self?.interactor.stopTunnel()
case .reconnect:
self?.interactor.reconnectTunnel(selectNewRelay: true)
case .selectLocation:
self?.shouldShowSelectLocationPicker?()
}
}
addMapController()
addActivityIndicator()
addConnectionView()
updateMap(animated: false)
}
func setMainContentHidden(_ isHidden: Bool, animated: Bool) {
let actions = {
_ = self.connectionView.opacity(isHidden ? 0 : 1)
}
if animated {
UIView.animate(withDuration: 0.25, animations: actions)
} else {
actions()
}
}
// MARK: - Private
private func setTunnelState(_ tunnelState: TunnelState, animated: Bool) {
self.tunnelState = tunnelState
setNeedsHeaderBarStyleAppearanceUpdate()
guard isViewLoaded else { return }
updateMap(animated: animated)
}
private func updateMap(animated: Bool) {
switch tunnelState {
case let .connecting(tunnelRelays, _, _):
mapViewController.removeLocationMarker()
mapViewController.setCenter(tunnelRelays?.exit.location.geoCoordinate, animated: animated)
activityIndicator.startAnimating()
case let .reconnecting(tunnelRelays, _, _), let .negotiatingEphemeralPeer(tunnelRelays, _, _, _):
activityIndicator.startAnimating()
mapViewController.removeLocationMarker()
mapViewController.setCenter(tunnelRelays.exit.location.geoCoordinate, animated: animated)
case let .connected(tunnelRelays, _, _):
let center = tunnelRelays.exit.location.geoCoordinate
mapViewController.setCenter(center, animated: animated)
activityIndicator.stopAnimating()
mapViewController.addLocationMarker(coordinate: center)
case .pendingReconnect:
activityIndicator.startAnimating()
mapViewController.removeLocationMarker()
case .waitingForConnectivity, .error:
activityIndicator.stopAnimating()
mapViewController.removeLocationMarker()
case .disconnected, .disconnecting:
activityIndicator.stopAnimating()
mapViewController.removeLocationMarker()
mapViewController.setCenter(nil, animated: animated)
}
}
private func addMapController() {
let mapView = mapViewController.view!
addChild(mapViewController)
mapViewController.alignmentView = activityIndicator
mapViewController.didMove(toParent: self)
view.addConstrainedSubviews([mapView]) {
mapView.pinEdgesToSuperview()
}
}
/// Computes a constraint multiplier based on the screen size
private func computeHeightBreakpointMultiplier() -> CGFloat {
let screenBounds = UIWindow().screen.coordinateSpace.bounds
return screenBounds.height < 700 ? 2.0 : 1.5
}
private func addActivityIndicator() {
// If the device doesn't have a lot of vertical screen estate, center the progress view higher on the map
// so the connection view details do not shadow it unless fully expanded if possible
let heightConstraintMultiplier = computeHeightBreakpointMultiplier()
let verticalCenteredAnchor = activityIndicator.centerYAnchor.anchorWithOffset(to: view.centerYAnchor)
view.addConstrainedSubviews([activityIndicator]) {
activityIndicator.centerXAnchor.constraint(equalTo: view.centerXAnchor)
verticalCenteredAnchor.constraint(
equalTo: activityIndicator.heightAnchor,
multiplier: heightConstraintMultiplier
)
}
}
private func addConnectionView() {
let connectionController = UIHostingController(rootView: connectionView)
self.connectionController = connectionController
let connectionViewProxy = connectionController.view!
connectionViewProxy.backgroundColor = .clear
addChild(connectionController)
connectionController.didMove(toParent: self)
view.addConstrainedSubviews([activityIndicator, connectionViewProxy]) {
connectionViewProxy.pinEdgesToSuperview(.all())
}
}
}
|