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
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
|
pragma Singleton
pragma ComponentBehavior: Bound
import QtQuick
import Quickshell
import qs.Common
Singleton {
id: root
property bool networkAvailable: false
property string backend: ""
property string networkStatus: "disconnected"
property string primaryConnection: ""
property string ethernetIP: ""
property string ethernetInterface: ""
property bool ethernetConnected: false
property string ethernetConnectionUuid: ""
property var ethernetDevices: []
property var wiredConnections: []
property string wifiIP: ""
property string wifiInterface: ""
property bool wifiConnected: false
property bool wifiEnabled: true
property string wifiConnectionUuid: ""
property string wifiDevicePath: ""
property string activeAccessPointPath: ""
property var wifiDevices: []
property string wifiDeviceOverride: SessionData.wifiDeviceOverride || ""
property string connectingDevice: ""
property string currentWifiSSID: ""
property int wifiSignalStrength: 0
property var wifiNetworks: []
property var savedConnections: []
property var ssidToConnectionName: ({})
property var wifiSignalIcon: {
if (!wifiConnected) {
return "wifi_off";
}
if (wifiSignalStrength >= 50) {
return "wifi";
}
if (wifiSignalStrength >= 25) {
return "wifi_2_bar";
}
return "wifi_1_bar";
}
property string userPreference: "auto"
property bool isConnecting: false
property string connectingSSID: ""
property string connectionError: ""
property bool isScanning: false
property bool autoScan: false
property bool wifiAvailable: true
property bool wifiToggling: false
property bool changingPreference: false
property string targetPreference: ""
property var savedWifiNetworks: []
property string connectionStatus: ""
property string lastConnectionError: ""
property bool passwordDialogShouldReopen: false
property bool autoRefreshEnabled: false
property string wifiPassword: ""
property string forgetSSID: ""
property var vpnProfiles: []
property var vpnActive: []
property bool vpnAvailable: false
property bool vpnIsBusy: false
property string lastConnectedVpnUuid: ""
property string pendingVpnUuid: ""
property var vpnBusyStartTime: 0
property alias profiles: root.vpnProfiles
property alias activeConnections: root.vpnActive
property var activeUuids: vpnActive.map(v => v.uuid).filter(u => !!u)
property var activeNames: vpnActive.map(v => v.name).filter(n => !!n)
property string activeUuid: activeUuids.length > 0 ? activeUuids[0] : ""
property string activeName: activeNames.length > 0 ? activeNames[0] : ""
property string activeDevice: vpnActive.length > 0 ? (vpnActive[0].device || "") : ""
property string activeState: vpnActive.length > 0 ? (vpnActive[0].state || "") : ""
property bool vpnConnected: activeUuids.length > 0
property alias available: root.vpnAvailable
property alias isBusy: root.vpnIsBusy
property alias connected: root.vpnConnected
property string networkInfoSSID: ""
property string networkInfoDetails: ""
property bool networkInfoLoading: false
property string networkWiredInfoUUID: ""
property string networkWiredInfoDetails: ""
property bool networkWiredInfoLoading: false
property int refCount: 0
property bool stateInitialized: false
property string credentialsToken: ""
property string credentialsSSID: ""
property string credentialsSetting: ""
property var credentialsFields: []
property var credentialsHints: []
property string credentialsReason: ""
property bool credentialsRequested: false
property string pendingConnectionSSID: ""
property var pendingConnectionStartTime: 0
property bool wasConnecting: false
signal networksUpdated
signal connectionChanged
signal credentialsNeeded(string token, string ssid, string setting, var fields, var hints, string reason, string connType, string connName, string vpnService, var fieldsInfo)
readonly property string socketPath: Quickshell.env("DMS_SOCKET")
readonly property string effectiveWifiDevice: {
if (!wifiDeviceOverride)
return "";
const deviceExists = wifiDevices.some(d => d.name === wifiDeviceOverride);
return deviceExists ? wifiDeviceOverride : "";
}
Component.onCompleted: {
root.userPreference = SettingsData.networkPreference;
lastConnectedVpnUuid = SessionData.vpnLastConnected || "";
if (socketPath && socketPath.length > 0) {
checkDMSCapabilities();
}
}
Connections {
target: DMSService
function onNetworkStateUpdate(data) {
const networksCount = data.wifiNetworks?.length ?? "null";
console.log("DMSNetworkService: Subscription update received, networks:", networksCount);
updateState(data);
}
}
Connections {
target: DMSService
function onConnectionStateChanged() {
if (DMSService.isConnected) {
checkDMSCapabilities();
}
}
}
Connections {
target: DMSService
enabled: DMSService.isConnected
function onCapabilitiesChanged() {
checkDMSCapabilities();
}
function onCredentialsRequest(data) {
handleCredentialsRequest(data);
}
}
function checkDMSCapabilities() {
if (!DMSService.isConnected) {
return;
}
if (DMSService.capabilities.length === 0) {
return;
}
networkAvailable = DMSService.capabilities.includes("network");
if (networkAvailable && !stateInitialized) {
stateInitialized = true;
getState();
}
}
function handleCredentialsRequest(data) {
credentialsToken = data.token || "";
credentialsSSID = data.ssid || "";
credentialsSetting = data.setting || "802-11-wireless-security";
credentialsFields = data.fields || ["psk"];
credentialsHints = data.hints || [];
credentialsReason = data.reason || "Credentials required";
credentialsRequested = true;
const connType = data.connType || "";
const connName = data.name || data.connectionId || "";
const vpnService = data.vpnService || "";
const fInfo = data.fieldsInfo || [];
credentialsNeeded(credentialsToken, credentialsSSID, credentialsSetting, credentialsFields, credentialsHints, credentialsReason, connType, connName, vpnService, fInfo);
}
function addRef() {
refCount++;
if (refCount === 1 && networkAvailable) {
startAutoScan();
}
}
function removeRef() {
refCount = Math.max(0, refCount - 1);
if (refCount === 0) {
stopAutoScan();
}
}
property bool initialStateFetched: false
function getState() {
if (!networkAvailable)
return;
DMSService.sendRequest("network.getState", null, response => {
if (response.result) {
updateState(response.result);
if (!initialStateFetched && response.result.wifiEnabled && (!response.result.wifiNetworks || response.result.wifiNetworks.length === 0)) {
initialStateFetched = true;
Qt.callLater(() => scanWifi());
}
}
});
}
function updateState(state) {
const previousConnecting = isConnecting;
const previousConnectingSSID = connectingSSID;
backend = state.backend || "";
vpnAvailable = networkAvailable && backend === "networkmanager";
networkStatus = state.networkStatus || "disconnected";
primaryConnection = state.primaryConnection || "";
ethernetIP = state.ethernetIP || "";
ethernetInterface = state.ethernetDevice || "";
ethernetConnected = state.ethernetConnected || false;
ethernetConnectionUuid = state.ethernetConnectionUuid || "";
ethernetDevices = state.ethernetDevices || [];
wiredConnections = state.wiredConnections || [];
wifiIP = state.wifiIP || "";
wifiInterface = state.wifiDevice || "";
wifiConnected = state.wifiConnected || false;
wifiEnabled = state.wifiEnabled !== undefined ? state.wifiEnabled : true;
wifiConnectionUuid = state.wifiConnectionUuid || "";
wifiDevicePath = state.wifiDevicePath || "";
activeAccessPointPath = state.activeAccessPointPath || "";
wifiDevices = state.wifiDevices || [];
connectingDevice = state.connectingDevice || "";
currentWifiSSID = state.wifiSSID || "";
wifiSignalStrength = state.wifiSignal || 0;
if (state.wifiNetworks) {
wifiNetworks = state.wifiNetworks;
const saved = [];
const mapping = {};
for (const network of state.wifiNetworks) {
if (network.saved) {
saved.push({
ssid: network.ssid,
saved: true
});
mapping[network.ssid] = network.ssid;
}
}
savedConnections = saved;
savedWifiNetworks = saved;
ssidToConnectionName = mapping;
networksUpdated();
}
if (state.vpnProfiles) {
vpnProfiles = state.vpnProfiles;
}
const previousVpnActive = vpnActive;
vpnActive = state.vpnActive || [];
if (vpnConnected && activeUuid) {
lastConnectedVpnUuid = activeUuid;
SessionData.setVpnLastConnected(activeUuid);
}
if (vpnIsBusy) {
const busyDuration = Date.now() - vpnBusyStartTime;
const timeout = 30000;
if (busyDuration > timeout) {
console.warn("DMSNetworkService: VPN operation timed out after", timeout, "ms");
vpnIsBusy = false;
pendingVpnUuid = "";
vpnBusyStartTime = 0;
} else if (pendingVpnUuid) {
const isPendingVpnActive = activeUuids.includes(pendingVpnUuid);
if (isPendingVpnActive) {
vpnIsBusy = false;
pendingVpnUuid = "";
vpnBusyStartTime = 0;
}
} else {
const previousCount = previousVpnActive ? previousVpnActive.length : 0;
const currentCount = vpnActive ? vpnActive.length : 0;
if (previousCount !== currentCount) {
vpnIsBusy = false;
vpnBusyStartTime = 0;
}
}
}
isConnecting = state.isConnecting || false;
connectingSSID = state.connectingSSID || "";
connectionError = state.lastError || "";
lastConnectionError = state.lastError || "";
if (pendingConnectionSSID) {
if (wifiConnected && currentWifiSSID === pendingConnectionSSID && wifiIP) {
const elapsed = Date.now() - pendingConnectionStartTime;
console.info("DMSNetworkService: Successfully connected to", pendingConnectionSSID, "in", elapsed, "ms");
ToastService.showInfo(`Connected to ${pendingConnectionSSID}`);
if (userPreference === "wifi" || userPreference === "auto") {
setConnectionPriority("wifi");
}
pendingConnectionSSID = "";
connectionStatus = "connected";
} else if (previousConnecting && !isConnecting && !wifiConnected) {
const isCancellationError = connectionError === "user-canceled";
const isBadCredentials = connectionError === "bad-credentials";
if (isCancellationError) {
connectionStatus = "cancelled";
pendingConnectionSSID = "";
} else if (isBadCredentials) {
connectionStatus = "invalid_password";
pendingConnectionSSID = "";
} else {
if (connectionError) {
ToastService.showError(I18n.tr("Failed to connect to %1").arg(pendingConnectionSSID));
}
connectionStatus = "failed";
pendingConnectionSSID = "";
}
}
}
wasConnecting = isConnecting;
connectionChanged();
}
function connectToSpecificWiredConfig(uuid) {
if (!networkAvailable || isConnecting)
return;
isConnecting = true;
connectionError = "";
connectionStatus = "connecting";
const params = {
uuid: uuid
};
DMSService.sendRequest("network.ethernet.connect.config", params, response => {
if (response.error) {
connectionError = response.error;
lastConnectionError = response.error;
connectionStatus = "failed";
ToastService.showError(I18n.tr("Failed to activate configuration"), response.error);
} else {
connectionError = "";
connectionStatus = "connected";
ToastService.showInfo(I18n.tr("Configuration activated"));
}
isConnecting = false;
});
}
function scanWifi() {
if (!networkAvailable || isScanning || !wifiEnabled)
return;
isScanning = true;
const params = effectiveWifiDevice ? {
device: effectiveWifiDevice
} : null;
DMSService.sendRequest("network.wifi.scan", params, response => {
isScanning = false;
if (response.error) {
console.warn("DMSNetworkService: WiFi scan failed:", response.error);
} else {
Qt.callLater(() => getState());
}
});
}
function scanWifiNetworks() {
scanWifi();
}
function connectToWifi(ssid, password = "", username = "", anonymousIdentity = "", domainSuffixMatch = "", hidden = false) {
if (!networkAvailable || isConnecting)
return;
pendingConnectionSSID = ssid;
pendingConnectionStartTime = Date.now();
connectionError = "";
connectionStatus = "connecting";
credentialsRequested = false;
const params = {
ssid: ssid
};
if (effectiveWifiDevice)
params.device = effectiveWifiDevice;
if (hidden)
params.hidden = true;
if (DMSService.apiVersion >= 7) {
if (password || username) {
params.password = password;
if (username)
params.username = username;
if (anonymousIdentity)
params.anonymousIdentity = anonymousIdentity;
if (domainSuffixMatch)
params.domainSuffixMatch = domainSuffixMatch;
params.interactive = false;
} else {
params.interactive = true;
}
} else {
if (password)
params.password = password;
if (username)
params.username = username;
if (anonymousIdentity)
params.anonymousIdentity = anonymousIdentity;
if (domainSuffixMatch)
params.domainSuffixMatch = domainSuffixMatch;
}
DMSService.sendRequest("network.wifi.connect", params, response => {
if (response.error) {
if (connectionStatus === "cancelled")
return;
connectionError = response.error;
lastConnectionError = response.error;
pendingConnectionSSID = "";
connectionStatus = "failed";
ToastService.showError(I18n.tr("Failed to start connection to %1").arg(ssid));
}
});
}
function disconnectWifi() {
if (!networkAvailable || !wifiInterface)
return;
const params = effectiveWifiDevice ? {
device: effectiveWifiDevice
} : null;
DMSService.sendRequest("network.wifi.disconnect", params, response => {
if (response.error) {
ToastService.showError(I18n.tr("Failed to disconnect WiFi"), response.error);
} else {
ToastService.showInfo(I18n.tr("Disconnected from WiFi"));
currentWifiSSID = "";
connectionStatus = "";
}
});
}
function submitCredentials(token, secrets, save) {
console.log("submitCredentials: networkAvailable=" + networkAvailable + " apiVersion=" + DMSService.apiVersion);
if (!networkAvailable || DMSService.apiVersion < 7) {
console.warn("submitCredentials: Aborting - networkAvailable=" + networkAvailable + " apiVersion=" + DMSService.apiVersion);
return;
}
const params = {
token: token,
secrets: secrets,
save: save || false
};
credentialsRequested = false;
DMSService.sendRequest("network.credentials.submit", params, response => {
if (response.error) {
console.warn("DMSNetworkService: Failed to submit credentials:", response.error);
}
});
}
function cancelCredentials(token) {
if (!networkAvailable || DMSService.apiVersion < 7)
return;
const params = {
token: token
};
credentialsRequested = false;
pendingConnectionSSID = "";
connectionStatus = "cancelled";
DMSService.sendRequest("network.credentials.cancel", params, response => {
if (response.error) {
console.warn("DMSNetworkService: Failed to cancel credentials:", response.error);
}
});
}
function forgetWifiNetwork(ssid) {
if (!networkAvailable)
return;
forgetSSID = ssid;
DMSService.sendRequest("network.wifi.forget", {
ssid: ssid
}, response => {
if (response.error) {
console.warn("Failed to forget network:", response.error);
} else {
ToastService.showInfo(I18n.tr("Forgot network %1").arg(ssid));
savedConnections = savedConnections.filter(s => s.ssid !== ssid);
savedWifiNetworks = savedWifiNetworks.filter(s => s.ssid !== ssid);
const updated = [...wifiNetworks];
for (const network of updated) {
if (network.ssid === ssid) {
network.saved = false;
if (network.connected) {
network.connected = false;
currentWifiSSID = "";
}
}
}
wifiNetworks = updated;
networksUpdated();
}
forgetSSID = "";
});
}
function toggleWifiRadio() {
if (!networkAvailable || wifiToggling)
return;
wifiToggling = true;
DMSService.sendRequest("network.wifi.toggle", null, response => {
wifiToggling = false;
if (response.error) {
console.warn("Failed to toggle WiFi:", response.error);
} else if (response.result) {
wifiEnabled = response.result.enabled;
ToastService.showInfo(wifiEnabled ? I18n.tr("WiFi enabled") : I18n.tr("WiFi disabled"));
}
});
}
function enableWifiDevice() {
if (!networkAvailable)
return;
DMSService.sendRequest("network.wifi.enable", null, response => {
if (response.error) {
ToastService.showError(I18n.tr("Failed to enable WiFi"), response.error);
} else {
ToastService.showInfo(I18n.tr("WiFi enabled"));
}
});
}
function setNetworkPreference(preference) {
if (!networkAvailable)
return;
userPreference = preference;
changingPreference = true;
targetPreference = preference;
SettingsData.set("networkPreference", preference);
DMSService.sendRequest("network.preference.set", {
preference: preference
}, response => {
changingPreference = false;
targetPreference = "";
if (response.error) {
console.warn("Failed to set network preference:", response.error);
}
});
}
function setConnectionPriority(type) {
if (type === "wifi") {
setNetworkPreference("wifi");
} else if (type === "ethernet") {
setNetworkPreference("ethernet");
}
}
function connectToWifiAndSetPreference(ssid, password, username = "", anonymousIdentity = "", domainSuffixMatch = "", hidden = false) {
connectToWifi(ssid, password, username, anonymousIdentity, domainSuffixMatch, hidden);
setNetworkPreference("wifi");
}
function toggleNetworkConnection(type) {
if (!networkAvailable)
return;
if (type === "ethernet") {
if (ethernetConnected) {
DMSService.sendRequest("network.ethernet.disconnect", null, null);
} else {
DMSService.sendRequest("network.ethernet.connect", null, null);
}
}
}
function disconnectEthernetDevice(deviceName) {
if (!networkAvailable)
return;
DMSService.sendRequest("network.ethernet.disconnect", {
device: deviceName
}, null);
}
function startAutoScan() {
autoScan = true;
autoRefreshEnabled = true;
if (networkAvailable && wifiEnabled) {
scanWifi();
}
}
function stopAutoScan() {
autoScan = false;
autoRefreshEnabled = false;
}
function fetchWiredNetworkInfo(uuid) {
if (!networkAvailable)
return;
networkWiredInfoUUID = uuid;
networkWiredInfoLoading = true;
networkWiredInfoDetails = "Loading network information...";
DMSService.sendRequest("network.ethernet.info", {
uuid: uuid
}, response => {
networkWiredInfoLoading = false;
if (response.error) {
networkWiredInfoDetails = "Failed to fetch network information";
} else if (response.result) {
formatWiredNetworkInfo(response.result);
}
});
}
function formatWiredNetworkInfo(info) {
let details = "";
if (!info) {
details = "Network information not found or network not available.";
} else {
details += "Interface: " + info.iface + "\\n";
details += "Driver: " + info.driver + "\\n";
details += "MAC Addr: " + info.hwAddr + "\\n";
details += "Speed: " + info.speed + " Mb/s\\n\\n";
details += "IPv4 information:\\n";
for (const ip4 of info.IPv4s.ips) {
details += " IPv4 address: " + ip4 + "\\n";
}
details += " Gateway: " + info.IPv4s.gateway + "\\n";
details += " DNS: " + info.IPv4s.dns + "\\n";
if (info.IPv6s.ips) {
details += "\\nIPv6 information:\\n";
for (const ip6 of info.IPv6s.ips) {
details += " IPv6 address: " + ip6 + "\\n";
}
if (info.IPv6s.gateway.length > 0) {
details += " Gateway: " + info.IPv6s.gateway + "\\n";
}
if (info.IPv6s.dns.length > 0) {
details += " DNS: " + info.IPv6s.dns + "\\n";
}
}
}
networkWiredInfoDetails = details;
}
function fetchNetworkInfo(ssid) {
if (!networkAvailable)
return;
networkInfoSSID = ssid;
networkInfoLoading = true;
networkInfoDetails = "Loading network information...";
DMSService.sendRequest("network.info", {
ssid: ssid
}, response => {
networkInfoLoading = false;
if (response.error) {
networkInfoDetails = "Failed to fetch network information";
} else if (response.result) {
formatNetworkInfo(response.result);
}
});
}
function formatNetworkInfo(info) {
let details = "";
if (!info || !info.bands || info.bands.length === 0) {
details = "Network information not found or network not available.";
} else {
for (const band of info.bands) {
const freqGHz = band.frequency / 1000;
let bandName = "Unknown";
if (band.frequency >= 2400 && band.frequency <= 2500) {
bandName = "2.4 GHz";
} else if (band.frequency >= 5000 && band.frequency <= 6000) {
bandName = "5 GHz";
} else if (band.frequency >= 6000) {
bandName = "6 GHz";
}
const statusPrefix = band.connected ? "● " : " ";
const statusSuffix = band.connected ? " (Connected)" : "";
details += statusPrefix + bandName + statusSuffix + " - " + band.signal + "%\\n";
details += " Channel " + band.channel + " (" + freqGHz.toFixed(1) + " GHz) • " + band.rate + " Mbit/s\\n";
details += " BSSID: " + band.bssid + "\\n";
details += " Mode: " + band.mode + "\\n";
details += " Security: " + (band.secured ? "Secured" : "Open") + "\\n";
if (band.saved) {
details += " Status: Saved network\\n";
}
details += "\\n";
}
}
networkInfoDetails = details;
}
function getNetworkInfo(ssid) {
const network = wifiNetworks.find(n => n.ssid === ssid);
if (!network) {
return null;
}
return {
"ssid": network.ssid,
"signal": network.signal,
"secured": network.secured,
"saved": network.saved,
"connected": network.connected,
"bssid": network.bssid
};
}
function getWiredNetworkInfo(uuid) {
const network = wiredConnections.find(n => n.uuid === uuid);
if (!network) {
return null;
}
return {
"uuid": uuid
};
}
function refreshVpnProfiles() {
if (!vpnAvailable)
return;
DMSService.sendRequest("network.vpn.profiles", null, response => {
if (response.result) {
vpnProfiles = response.result;
}
});
}
function refreshVpnActive() {
if (!vpnAvailable)
return;
DMSService.sendRequest("network.vpn.active", null, response => {
if (response.result) {
vpnActive = response.result;
}
});
}
function connectVpn(uuidOrName, singleActive = false) {
if (!vpnAvailable || vpnIsBusy)
return;
vpnIsBusy = true;
pendingVpnUuid = uuidOrName;
vpnBusyStartTime = Date.now();
const params = {
uuidOrName: uuidOrName,
singleActive: singleActive
};
DMSService.sendRequest("network.vpn.connect", params, response => {
if (response.error) {
vpnIsBusy = false;
pendingVpnUuid = "";
vpnBusyStartTime = 0;
ToastService.showError(I18n.tr("Failed to connect VPN"), response.error);
}
});
}
function connect(uuidOrName, singleActive = false) {
connectVpn(uuidOrName, singleActive);
}
function disconnectVpn(uuidOrName) {
if (!vpnAvailable || vpnIsBusy)
return;
vpnIsBusy = true;
pendingVpnUuid = "";
vpnBusyStartTime = Date.now();
const params = {
uuidOrName: uuidOrName
};
DMSService.sendRequest("network.vpn.disconnect", params, response => {
if (response.error) {
vpnIsBusy = false;
vpnBusyStartTime = 0;
ToastService.showError(I18n.tr("Failed to disconnect VPN"), response.error);
}
});
}
function disconnect(uuidOrName) {
disconnectVpn(uuidOrName);
}
function disconnectAllVpns() {
if (!vpnAvailable || vpnIsBusy)
return;
vpnIsBusy = true;
pendingVpnUuid = "";
DMSService.sendRequest("network.vpn.disconnectAll", null, response => {
if (response.error) {
vpnIsBusy = false;
ToastService.showError(I18n.tr("Failed to disconnect VPNs"), response.error);
}
});
}
function disconnectAllActive() {
disconnectAllVpns();
}
function toggleVpn(uuid) {
if (uuid) {
if (isActiveVpnUuid(uuid)) {
disconnectVpn(uuid);
} else {
connectVpn(uuid);
}
return;
}
if (vpnConnected) {
disconnectAllVpns();
return;
}
const targetUuid = lastConnectedVpnUuid || (vpnProfiles.length > 0 ? vpnProfiles[0].uuid : "");
if (targetUuid) {
connectVpn(targetUuid);
}
}
function toggle(uuid) {
toggleVpn(uuid);
}
function isActiveVpnUuid(uuid) {
return activeUuids && activeUuids.indexOf(uuid) !== -1;
}
function isActiveUuid(uuid) {
return isActiveVpnUuid(uuid);
}
function refreshNetworkState() {
if (networkAvailable) {
getState();
}
}
function setWifiDeviceOverride(deviceName) {
SessionData.setWifiDeviceOverride(deviceName || "");
if (networkAvailable && wifiEnabled) {
scanWifi();
}
}
function setWifiAutoconnect(ssid, autoconnect) {
if (!networkAvailable || DMSService.apiVersion <= 13)
return;
const params = {
ssid: ssid,
autoconnect: autoconnect
};
DMSService.sendRequest("network.wifi.setAutoconnect", params, response => {
if (response.error) {
ToastService.showError(I18n.tr("Failed to update autoconnect"), response.error);
} else {
ToastService.showInfo(autoconnect ? I18n.tr("Autoconnect enabled") : I18n.tr("Autoconnect disabled"));
Qt.callLater(() => getState());
}
});
}
}
|