-
Notifications
You must be signed in to change notification settings - Fork 389
/
Copy pathVPNSettingsDataSource.swift
679 lines (572 loc) · 23.9 KB
/
VPNSettingsDataSource.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
//
// VPNSettingsDataSource.swift
// MullvadVPN
//
// Created by pronebird on 05/10/2021.
// Copyright © 2021 Mullvad VPN AB. All rights reserved.
//
import MullvadSettings
import UIKit
final class VPNSettingsDataSource: UITableViewDiffableDataSource<
VPNSettingsDataSource.Section,
VPNSettingsDataSource.Item
>, UITableViewDelegate {
typealias InfoButtonHandler = (Item) -> Void
enum CellReuseIdentifiers: String, CaseIterable {
case dnsSettings
case ipOverrides
case wireGuardPort
case wireGuardCustomPort
case wireGuardObfuscation
case wireGuardObfuscationOption
case wireGuardObfuscationPort
case quantumResistance
case multihop
case daita
var reusableViewClass: AnyClass {
switch self {
case .dnsSettings:
return SettingsCell.self
case .ipOverrides:
return SettingsCell.self
case .wireGuardPort:
return SelectableSettingsCell.self
case .wireGuardCustomPort:
return SettingsInputCell.self
case .wireGuardObfuscationOption:
return SelectableSettingsDetailsCell.self
case .wireGuardObfuscation:
return SelectableSettingsCell.self
case .wireGuardObfuscationPort:
return SelectableSettingsCell.self
case .quantumResistance:
return SelectableSettingsCell.self
case .multihop:
return SettingsSwitchCell.self
case .daita:
return SettingsSwitchCell.self
}
}
}
private enum HeaderFooterReuseIdentifiers: String, CaseIterable {
case settingsHeaderView
var reusableViewClass: AnyClass {
return SettingsHeaderView.self
}
}
enum Section: String, Hashable, CaseIterable {
case dnsSettings
case ipOverrides
case wireGuardPorts
case wireGuardObfuscation
case wireGuardObfuscationPort
case quantumResistance
case privacyAndSecurity
}
enum Item: Hashable {
case dnsSettings
case ipOverrides
case wireGuardPort(_ port: UInt16?)
case wireGuardCustomPort
case wireGuardObfuscationAutomatic
case wireGuardObfuscationUdpOverTcp
case wireGuardObfuscationShadowsocks
case wireGuardObfuscationOff
case wireGuardObfuscationPort(_ port: WireGuardObfuscationUdpOverTcpPort)
case quantumResistanceAutomatic
case quantumResistanceOn
case quantumResistanceOff
case multihopSwitch
static var wireGuardPorts: [Item] {
let defaultPorts = VPNSettingsViewModel.defaultWireGuardPorts.map {
Item.wireGuardPort($0)
}
return [.wireGuardPort(nil)] + defaultPorts + [.wireGuardCustomPort]
}
static var wireGuardObfuscation: [Item] {
var items: [Item] = [
.wireGuardObfuscationAutomatic,
.wireGuardObfuscationUdpOverTcp,
.wireGuardObfuscationOff,
]
#if DEBUG
items.insert(.wireGuardObfuscationShadowsocks, at: 1)
#endif
return items
}
static var wireGuardObfuscationPort: [Item] {
[
.wireGuardObfuscationPort(.automatic),
.wireGuardObfuscationPort(.port80),
.wireGuardObfuscationPort(.port5001),
]
}
static var quantumResistance: [Item] {
[.quantumResistanceAutomatic, .quantumResistanceOn, .quantumResistanceOff]
}
var accessibilityIdentifier: AccessibilityIdentifier {
switch self {
case .dnsSettings:
return .dnsSettings
case .ipOverrides:
return .ipOverrides
case .wireGuardPort:
return .wireGuardPort
case .wireGuardCustomPort:
return .wireGuardCustomPort
case .wireGuardObfuscationAutomatic:
return .wireGuardObfuscationAutomatic
case .wireGuardObfuscationUdpOverTcp:
return .wireGuardObfuscationUdpOverTcp
case .wireGuardObfuscationShadowsocks:
return .wireGuardObfuscationShadowsocks
case .wireGuardObfuscationOff:
return .wireGuardObfuscationOff
case .wireGuardObfuscationPort:
return .wireGuardObfuscationPort
case .quantumResistanceAutomatic:
return .quantumResistanceAutomatic
case .quantumResistanceOn:
return .quantumResistanceOn
case .quantumResistanceOff:
return .quantumResistanceOff
case .multihopSwitch:
return .multihopSwitch
}
}
var reuseIdentifier: CellReuseIdentifiers {
switch self {
case .dnsSettings:
return .dnsSettings
case .ipOverrides:
return .ipOverrides
case .wireGuardPort:
return .wireGuardPort
case .wireGuardCustomPort:
return .wireGuardCustomPort
case .wireGuardObfuscationAutomatic, .wireGuardObfuscationOff:
return .wireGuardObfuscation
case .wireGuardObfuscationUdpOverTcp, .wireGuardObfuscationShadowsocks:
return .wireGuardObfuscationOption
case .wireGuardObfuscationPort:
return .wireGuardObfuscationPort
case .quantumResistanceAutomatic, .quantumResistanceOn, .quantumResistanceOff:
return .quantumResistance
case .multihopSwitch:
return .multihop
}
}
}
private(set) var viewModel = VPNSettingsViewModel() { didSet {
vpnSettingsCellFactory.viewModel = viewModel
}}
private let vpnSettingsCellFactory: VPNSettingsCellFactory
private weak var tableView: UITableView?
private var obfuscationSettings: WireGuardObfuscationSettings {
WireGuardObfuscationSettings(
state: viewModel.obfuscationState,
udpOverTcpPort: viewModel.obfuscationUpdOverTcpPort,
shadowsocksPort: viewModel.obfuscationShadowsocksPort
)
}
weak var delegate: VPNSettingsDataSourceDelegate?
var selectedIndexPaths: [IndexPath] {
let wireGuardPortItem: Item = viewModel.customWireGuardPort == nil
? .wireGuardPort(viewModel.wireGuardPort)
: .wireGuardCustomPort
let obfuscationStateItem: Item = switch viewModel.obfuscationState {
case .automatic: .wireGuardObfuscationAutomatic
case .off: .wireGuardObfuscationOff
case .on, .udpOverTcp: .wireGuardObfuscationUdpOverTcp
case .shadowsocks: .wireGuardObfuscationShadowsocks
}
let quantumResistanceItem: Item = switch viewModel.quantumResistance {
case .automatic: .quantumResistanceAutomatic
case .off: .quantumResistanceOff
case .on: .quantumResistanceOn
}
let obfuscationPortItem: Item = .wireGuardObfuscationPort(viewModel.obfuscationUpdOverTcpPort)
return [
wireGuardPortItem,
obfuscationStateItem,
obfuscationPortItem,
quantumResistanceItem,
].compactMap { indexPath(for: $0) }
}
init(tableView: UITableView) {
self.tableView = tableView
let vpnSettingsCellFactory = VPNSettingsCellFactory(
tableView: tableView,
viewModel: viewModel
)
self.vpnSettingsCellFactory = vpnSettingsCellFactory
super.init(tableView: tableView) { _, indexPath, itemIdentifier in
vpnSettingsCellFactory.makeCell(for: itemIdentifier, indexPath: indexPath)
}
tableView.delegate = self
vpnSettingsCellFactory.delegate = self
registerClasses()
}
func setAvailablePortRanges(_ ranges: [[UInt16]]) {
viewModel.availableWireGuardPortRanges = ranges
}
func revertWireGuardPortCellToLastSelection() {
guard let customPortCell = getCustomPortCell(), customPortCell.textField.isEditing else {
return
}
customPortCell.textField.resignFirstResponder()
if customPortCell.isValidInput {
customPortCell.confirmInput()
} else if let port = viewModel.customWireGuardPort {
customPortCell.setInput(String(port))
customPortCell.confirmInput()
} else {
customPortCell.reset()
Item.wireGuardPorts.forEach { item in
if case let .wireGuardPort(port) = item, port == viewModel.wireGuardPort {
selectRow(at: item)
return
}
}
}
}
func update(from tunnelSettings: LatestTunnelSettings) {
let newViewModel = VPNSettingsViewModel(from: tunnelSettings)
let mergedViewModel = viewModel.merged(newViewModel)
if viewModel != mergedViewModel {
viewModel = mergedViewModel
}
updateSnapshot()
}
// MARK: - UITableViewDelegate
func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath) {
if selectedIndexPaths.contains(indexPath) {
cell.setSelected(true, animated: false)
}
}
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
let item = itemIdentifier(for: indexPath)
deselectAllRowsInSectionExceptRowAt(indexPath)
switch item {
case .dnsSettings:
tableView.deselectRow(at: indexPath, animated: false)
delegate?.showDNSSettings()
case .ipOverrides:
tableView.deselectRow(at: indexPath, animated: false)
delegate?.showIPOverrides()
case let .wireGuardPort(port):
viewModel.setWireGuardPort(port)
if let cell = getCustomPortCell() {
cell.reset()
cell.textField.resignFirstResponder()
}
delegate?.didSelectWireGuardPort(port)
case .wireGuardCustomPort:
getCustomPortCell()?.textField.becomeFirstResponder()
case .wireGuardObfuscationAutomatic:
selectObfuscationState(.automatic)
delegate?.didUpdateTunnelSettings(TunnelSettingsUpdate.obfuscation(obfuscationSettings))
case .wireGuardObfuscationUdpOverTcp:
selectObfuscationState(.udpOverTcp)
delegate?.didUpdateTunnelSettings(TunnelSettingsUpdate.obfuscation(obfuscationSettings))
// TODO: When ready, add implementation for selected obfuscation (navigate to new view etc).
case .wireGuardObfuscationShadowsocks:
selectObfuscationState(.shadowsocks)
delegate?.didUpdateTunnelSettings(TunnelSettingsUpdate.obfuscation(obfuscationSettings))
// TODO: When ready, add implementation for selected obfuscation (navigate to new view etc).
case .wireGuardObfuscationOff:
selectObfuscationState(.off)
delegate?.didUpdateTunnelSettings(TunnelSettingsUpdate.obfuscation(obfuscationSettings))
case let .wireGuardObfuscationPort(port):
selectObfuscationPort(port)
delegate?.didUpdateTunnelSettings(TunnelSettingsUpdate.obfuscation(obfuscationSettings))
case .quantumResistanceAutomatic:
selectQuantumResistance(.automatic)
delegate?.didUpdateTunnelSettings(TunnelSettingsUpdate.quantumResistance(viewModel.quantumResistance))
case .quantumResistanceOn:
selectQuantumResistance(.on)
delegate?.didUpdateTunnelSettings(TunnelSettingsUpdate.quantumResistance(viewModel.quantumResistance))
case .quantumResistanceOff:
selectQuantumResistance(.off)
delegate?.didUpdateTunnelSettings(TunnelSettingsUpdate.quantumResistance(viewModel.quantumResistance))
default:
break
}
}
// Disallow selection for tapping on a selectable setting.
func tableView(_ tableView: UITableView, willDeselectRowAt indexPath: IndexPath) -> IndexPath? {
let item = itemIdentifier(for: indexPath)
switch item {
case .dnsSettings, .ipOverrides:
return indexPath
default:
return nil
}
}
func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
let sectionIdentifier = snapshot().sectionIdentifiers[section]
guard let view = tableView
.dequeueReusableHeaderFooterView(
withIdentifier: HeaderFooterReuseIdentifiers.settingsHeaderView.rawValue
) as? SettingsHeaderView else { return nil }
switch sectionIdentifier {
case .wireGuardPorts:
configureWireguardPortsHeader(view)
return view
case .wireGuardObfuscation:
configureObfuscationHeader(view)
return view
case .wireGuardObfuscationPort:
configureObfuscationPortHeader(view)
return view
case .quantumResistance:
configureQuantumResistanceHeader(view)
return view
default:
return nil
}
}
func tableView(_ tableView: UITableView, viewForFooterInSection section: Int) -> UIView? {
let view = UIView()
view.backgroundColor = tableView.backgroundColor
return view
}
func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
let sectionIdentifier = snapshot().sectionIdentifiers[section]
switch sectionIdentifier {
case .dnsSettings, .ipOverrides, .privacyAndSecurity:
return .leastNonzeroMagnitude
default:
return tableView.estimatedRowHeight
}
}
func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
let sectionIdentifier = snapshot().sectionIdentifiers[section]
return switch sectionIdentifier {
// 0 due to there already being a separator between .dnsSettings and .ipOverrides.
case .dnsSettings: 0
case .ipOverrides, .quantumResistance: UITableView.automaticDimension
default: 0.5
}
}
func tableView(_ tableView: UITableView, shouldHighlightRowAt indexPath: IndexPath) -> Bool {
let sectionIdentifier = snapshot().sectionIdentifiers[indexPath.section]
return switch sectionIdentifier {
case .privacyAndSecurity: false
default: true
}
}
// MARK: - Private
private func registerClasses() {
CellReuseIdentifiers.allCases.forEach { enumCase in
tableView?.register(
enumCase.reusableViewClass,
forCellReuseIdentifier: enumCase.rawValue
)
}
tableView?.register(
SettingsHeaderView.self,
forHeaderFooterViewReuseIdentifier: HeaderFooterReuseIdentifiers.settingsHeaderView.rawValue
)
}
private func deselectAllRowsInSectionExceptRowAt(_ indexPath: IndexPath) {
guard let indexPaths = tableView?.indexPathsForSelectedRows else { return }
let rowsToDeselect = indexPaths.filter { $0.section == indexPath.section && $0.row != indexPath.row }
rowsToDeselect.forEach {
tableView?.deselectRow(at: $0, animated: false)
}
}
private func updateSnapshot(animated: Bool = false, completion: (() -> Void)? = nil) {
var snapshot = NSDiffableDataSourceSnapshot<Section, Item>()
snapshot.appendSections(Section.allCases)
snapshot.appendItems([.dnsSettings], toSection: .dnsSettings)
snapshot.appendItems([.ipOverrides], toSection: .ipOverrides)
snapshot.appendItems([.multihopSwitch], toSection: .privacyAndSecurity)
applySnapshot(snapshot, animated: animated, completion: completion)
}
private func applySnapshot(
_ snapshot: NSDiffableDataSourceSnapshot<Section, Item>,
animated: Bool,
completion: (() -> Void)? = nil
) {
apply(snapshot, animatingDifferences: animated) { [weak self] in
self?.selectedIndexPaths.forEach { self?.selectRow(at: $0) }
completion?()
}
}
private func reload(item: Item) {
if let indexPath = indexPath(for: item),
let cell = tableView?.cellForRow(at: indexPath) {
vpnSettingsCellFactory.configureCell(cell, item: item, indexPath: indexPath)
}
}
private func configureWireguardPortsHeader(_ header: SettingsHeaderView) {
let title = NSLocalizedString(
"WIREGUARD_PORTS_HEADER_LABEL",
tableName: "VPNSettings",
value: "WireGuard ports",
comment: ""
)
header.accessibilityIdentifier = .wireGuardPortsCell
header.titleLabel.text = title
header.accessibilityCustomActionName = title
header.isExpanded = isExpanded(.wireGuardPorts)
header.infoButtonHandler = { [weak self] in
if let self, let humanReadablePortRepresentation = delegate?.humanReadablePortRepresentation() {
self.delegate?.showInfo(for: .wireGuardPorts(humanReadablePortRepresentation))
}
}
header.didCollapseHandler = { [weak self] headerView in
guard let self else { return }
var snapshot = self.snapshot()
var updateTimeDelay = 0.0
if headerView.isExpanded {
if let customPortCell = getCustomPortCell(), customPortCell.textField.isEditing {
revertWireGuardPortCellToLastSelection()
updateTimeDelay = 0.5
}
snapshot.deleteItems(Item.wireGuardPorts)
} else {
snapshot.appendItems(Item.wireGuardPorts, toSection: .wireGuardPorts)
}
// The update should be delayed when we're reverting an ongoing change, to give the
// user just enough time to notice it.
DispatchQueue.main.asyncAfter(deadline: .now() + updateTimeDelay) { [weak self] in
headerView.isExpanded.toggle()
self?.applySnapshot(snapshot, animated: true)
}
}
}
private func configureObfuscationHeader(_ header: SettingsHeaderView) {
let title = NSLocalizedString(
"OBFUSCATION_HEADER_LABEL",
tableName: "VPNSettings",
value: "WireGuard Obfuscation",
comment: ""
)
header.accessibilityIdentifier = .wireGuardObfuscationCell
header.titleLabel.text = title
header.accessibilityCustomActionName = title
header.isExpanded = isExpanded(.wireGuardObfuscation)
header.didCollapseHandler = { [weak self] header in
guard let self else { return }
var snapshot = snapshot()
if header.isExpanded {
snapshot.deleteItems(Item.wireGuardObfuscation)
} else {
snapshot.appendItems(Item.wireGuardObfuscation, toSection: .wireGuardObfuscation)
}
header.isExpanded.toggle()
applySnapshot(snapshot, animated: true)
}
header.infoButtonHandler = { [weak self] in
self.map { $0.delegate?.showInfo(for: .wireGuardObfuscation) }
}
}
private func configureObfuscationPortHeader(_ header: SettingsHeaderView) {
let title = NSLocalizedString(
"OBFUSCATION_PORT_HEADER_LABEL",
tableName: "VPNSettings",
value: "UDP-over-TCP Port",
comment: ""
)
header.accessibilityIdentifier = .udpOverTCPPortCell
header.titleLabel.text = title
header.accessibilityCustomActionName = title
header.isExpanded = isExpanded(.wireGuardObfuscationPort)
header.didCollapseHandler = { [weak self] header in
guard let self else { return }
var snapshot = snapshot()
if header.isExpanded {
snapshot.deleteItems(Item.wireGuardObfuscationPort)
} else {
snapshot.appendItems(Item.wireGuardObfuscationPort, toSection: .wireGuardObfuscationPort)
}
header.isExpanded.toggle()
applySnapshot(snapshot, animated: true)
}
header.infoButtonHandler = { [weak self] in
self.map { $0.delegate?.showInfo(for: .wireGuardObfuscationPort) }
}
}
private func configureQuantumResistanceHeader(_ header: SettingsHeaderView) {
let title = NSLocalizedString(
"QUANTUM_RESISTANCE_HEADER_LABEL",
tableName: "VPNSettings",
value: "Quantum-resistant tunnel",
comment: ""
)
header.accessibilityIdentifier = .quantumResistantTunnelCell
header.titleLabel.text = title
header.accessibilityCustomActionName = title
header.isExpanded = isExpanded(.quantumResistance)
header.didCollapseHandler = { [weak self] header in
guard let self else { return }
var snapshot = snapshot()
if header.isExpanded {
snapshot.deleteItems(Item.quantumResistance)
} else {
snapshot.appendItems(Item.quantumResistance, toSection: .quantumResistance)
}
header.isExpanded.toggle()
applySnapshot(snapshot, animated: true)
}
header.infoButtonHandler = { [weak self] in
self.map { $0.delegate?.showInfo(for: .quantumResistance) }
}
}
private func selectRow(at indexPath: IndexPath?, animated: Bool = false) {
tableView?.selectRow(at: indexPath, animated: animated, scrollPosition: .none)
}
private func selectRow(at item: Item?, animated: Bool = false) {
guard let item else { return }
tableView?.selectRow(at: indexPath(for: item), animated: false, scrollPosition: .none)
}
private func getCustomPortCell() -> SettingsInputCell? {
if let customPortIndexPath = indexPath(for: .wireGuardCustomPort) {
return tableView?.cellForRow(at: customPortIndexPath) as? SettingsInputCell
}
return nil
}
/*
Since we are dequeuing headers, it's crucial to maintain the state of expansion.
Using screenshots as a single source of truth to capture the state allows us to determine whether headers are expanded or not.
*/
private func isExpanded(_ section: Section) -> Bool {
let snapshot = snapshot()
return snapshot.numberOfItems(inSection: section) != 0
}
}
extension VPNSettingsDataSource: VPNSettingsCellEventHandler {
func showInfo(for button: VPNSettingsInfoButtonItem) {
delegate?.showInfo(for: button)
}
func showDetails(for button: VPNSettingsDetailsButtonItem) {
delegate?.showDetails(for: button)
}
func addCustomPort(_ port: UInt16) {
viewModel.setWireGuardPort(port)
delegate?.didSelectWireGuardPort(port)
}
func selectCustomPortEntry(_ port: UInt16) -> Bool {
if let indexPath = indexPath(for: .wireGuardCustomPort), !selectedIndexPaths.contains(indexPath) {
deselectAllRowsInSectionExceptRowAt(indexPath)
selectRow(at: indexPath)
}
return viewModel.isPortWithinValidWireGuardRanges(port)
}
func selectObfuscationState(_ state: WireGuardObfuscationState) {
viewModel.setWireGuardObfuscationState(state)
}
func selectObfuscationPort(_ port: WireGuardObfuscationUdpOverTcpPort) {
viewModel.setWireGuardObfuscationUdpOverTcpPort(port)
}
func selectQuantumResistance(_ state: TunnelQuantumResistance) {
viewModel.setQuantumResistance(state)
}
func switchMultihop(_ state: MultihopState) {
viewModel.setMultihop(state)
delegate?.didUpdateTunnelSettings(.multihop(viewModel.multihopState))
}
}
// swiftlint:disable:this file_length