aboutsummaryrefslogtreecommitdiffstats
path: root/qml/wifi-settings/wifi-settings-app.qml
blob: 77990f7459a52312c8f519e534161f0aa8fe78cb (plain)
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
/*  Copyright 2016 ALPS ELECTRIC CO., LTD.
*
*   Licensed under the Apache License, Version 2.0 (the "License");
*   you may not use this file except in compliance with the License.
*   You may obtain a copy of the License at
*
*   http://www.apache.org/licenses/LICENSE-2.0
*
*   Unless required by applicable law or agreed to in writing, software
*   distributed under the License is distributed on an "AS IS" BASIS,
*   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*   See the License for the specific language governing permissions and
*   limitations under the License.
*/

import QtQuick 2.0
import QtQuick.Layouts 1.1
import QtQuick.Dialogs 1.1
import QtQuick.Controls 1.0
import QtQuick.Controls.Styles 1.0
import system 1.0

import "../../doc/"
import "../../imports/system/"

ApplicationWindow {

    visible: true
    //width: 768
    //height: 1024
    width: 1080
    height: 1920
    property string protocol: 'http://'
    property string ipAddress: '127.0.0.1'
    property string portNumber: Qt.application.arguments[1]
    property string tokenString: Qt.application.arguments[2]
    property string wifiAPI: '/api/wifi-manager/'

    property string wifiAPIpath: protocol + ipAddress + ':' + portNumber + wifiAPI

    function showRequestInfo(text) {
        log.text = log.text + "\n" + text
        console.log(text)
    }

    Text {
        id: log
        anchors.fill: parent
        anchors.margins: 10
        horizontalAlignment: Text.AlignHCenter
        verticalAlignment: Text.AlignVCenter
        //text: "log"
    }

    GridLayout {
        ExclusiveGroup {
            id: wifiPowerGroup
        }
        visible: true

        id: seekDeviceType
        //x: 400
        //y: 105
        anchors.top: parent.top
        anchors.topMargin: 30

        //anchors.bottomMargin: -30 //-20
        anchors.horizontalCenter: parent.horizontalCenter
        //visible: !tuningMethodManualSwitchButton.checked

        //anchors.top:  functionalityCheckBoxGrid.bottom
        columns: 13
        rows: 1

        columnSpacing: 60

        Text {
            text: qsTr("WiFi power")
        }

        RadioButton {
            id: wifiPowerOFF
            exclusiveGroup: wifiPowerGroup
            checked: true
            onClicked: {

                console.log("OFF")

                request(wifiAPIpath + 'deactivate', function (o) {

                    // log the json response
                    //showRequestInfo(o.responseText)
                    console.log(o.responseText)
                })
            }
            Text {
                text: qsTr("OFF")
                anchors.left: parent.left
                anchors.leftMargin: 30
            }
        }

        RadioButton {
            id: wifiPowerON
            exclusiveGroup: wifiPowerGroup
            onClicked: {

                console.log("ON")

                request(wifiAPIpath + 'activate', function (o) {

                    // log the json response
                    //showRequestInfo(o.responseText)
                    console.log(o.responseText)
                })
                periodicRefresh.start()
            }

            Text {
                text: qsTr("ON")
                anchors.left: parent.left
                anchors.leftMargin: 30
                //color: checkBoxTextStyleBands.fontColor
                //font.pixelSize: checkBoxTextStyleBands.fontSize
            }
        }
    }


    //    onTechnologyEnabledChanged: {
    //        console.log("Wifi set to", technologyEnabled)

    //        if (technologyEnabled == true) {

    //            //start periodic refresh, only for now
    //            periodicRefresh.start()

    //            request(wifiAPIpath + 'activate', function (o) {

    //                // log the json response
    //                showRequestInfo(o.responseText)
    //                console.log(o.responseText)
    //            })
    //        } else {

    //            //console.log(networkPath)
    //            networkList.clear()

    //            request(wifiAPIpath + 'deactivate', function (o) {

    //                // log the json response
    //                showRequestInfo(o.responseText)
    //                console.log(o.responseText)
    //            })
    //        }
    //    }
    Text {
        anchors.centerIn: parent
        font.pixelSize: 40
        color: "white"
        visible: false
        text: "Wifi TB by ALCZ"
    }

    function listWifiNetworks() {
        console.log("test #4")
    }

    ListModel {
        id: networkList
    }

    Rectangle {
        id: buttonNetworkList
        anchors.horizontalCenter: parent.horizontalCenter
        anchors.bottom: parent.bottom

        anchors.margins: 10
        width: buttonNetworkListText.width + 10
        height: buttonScanText.height + 10
        border.width: buttonNetworkListMouseArea.pressed ? 2 : 1
        radius: 5
        antialiasing: true
        color: "#222"
        border.color: "white"

        Text {
            color: "white"
            id: buttonNetworkListText
            anchors.centerIn: parent
            text: "GET NETWORK LIST"
            font.pixelSize: 40
        }

        ListModel {
            id: listModel
        }

        MouseArea {
            id: buttonNetworkListMouseArea
            anchors.fill: parent

            onClicked: {
                log.text = ""
                console.log("\n")

                networkList.clear()

                request(wifiAPIpath + 'scan_result', function (o) {

                    // log the json response
                    console.log(o.responseText)

                    // translate response into object
                    var jsonObject = eval('(' + o.responseText + ')')

                    var jsonObjectNetworks = eval(
                                '(' + JSON.stringify(jsonObject.response) + ')')

                    //console.log(jsonObject.response)
                    for (var i = 0; i < jsonObjectNetworks.length; i++) {

                        networkList.append({
                                               number: jsonObjectNetworks[i].Number,
                                               name: jsonObjectNetworks[i].ESSID,
                                               strength: jsonObjectNetworks[i].Strength,
                                               serviceState: jsonObjectNetworks[i].State,
                                               security: jsonObjectNetworks[i].Security,
                                               address: jsonObjectNetworks[i].IPAddress
                                           })
                        console.log(jsonObjectNetworks[i].Number,
                                    jsonObjectNetworks[i].ESSID,
                                    jsonObjectNetworks[i].Strength,
                                    jsonObjectNetworks[i].State,
                                    jsonObjectNetworks[i].Security,
                                    jsonObjectNetworks[i].IPAddress)
                    }
                })
            }
        }
    }

    Rectangle {
        id: buttonScan
        anchors.horizontalCenter: parent.horizontalCenter
        anchors.bottom: parent.bottom
        anchors.margins: 80
        width: buttonScanText.width + 10
        height: buttonScanText.height + 10
        border.width: mouseArea.pressed ? 2 : 1
        //radius: 5
        //antialiasing: true
        //color: "black"
        color: "#222"
        border.color: "white"

        Text {
            id: buttonScanText
            anchors.centerIn: parent
            text: "SCAN"
            color: "white"
            font.pixelSize: 40
        }

        MouseArea {
            id: mouseArea
            anchors.fill: parent

            onClicked: {
                log.text = ""
                console.log("\n")

                request(wifiAPIpath + 'scan', function (o) {

                    // log the json response
                    //showRequestInfo(o.responseText)
                    console.log(o.responseText)
                })
            }
        }
    }

    function request(url, callback) {
        var xhr = new XMLHttpRequest()
        xhr.onreadystatechange = (function (myxhr) {

            return function () {

                if (xhr.readyState == 4 && xhr.status == 200)
                    callback(myxhr)
            }
        })(xhr)
        xhr.open('GET', url, false)
        xhr.send('')
    }

    /* function signalStrength(strength) {
     if (strength < 30)
          return "poor"
      else if (strength >= 30 && strength < 50)
          return "fair"
     else if (strength >= 50 && strength < 70)
          return "good"
     else
          return "excellent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }*/
    function securityType(security) {

        //        if ((security === "[ psk ]") || (security === "[ psk wps ]"))
        //            return "secured"
        //        else
        //            return "unsecured"
        if (security === "Open")
            return "unsecured"
        else
            return "secured"
    }

    Component {
        id: wifiDevice

        Rectangle {
            height: 150
            width: parent.width
            color: "#222"

            Image {
                anchors.top: parent.top
                anchors.topMargin: 7
                anchors.left: parent.left
                width: 70
                height: 50
                id: icon
                source: {
                    if (securityType(security) === "unsecured") {
                        if (strength < 30)
                            source = "components/images/wifi1.png"
                        else if (strength >= 30 && strength < 50)
                            source = "components/images/wifi2.png"
                        else if (strength >= 50 && strength < 70)
                            source = "components/images/wifi3.png"
                        else
                            source = "components/images/wifi4.png"
                    } else {
                        if (strength < 30)
                            source = "components/images/wifi1-lock.png"
                        else if (strength >= 30 && strength < 50)
                            source = "components/images/wifi2-lock.png"
                        else if (strength >= 50 && strength < 70)
                            source = "components/images/wifi3-lock.png"
                        else
                            source = "components/images/wifi4-lock.png"
                    }
                }
            }

            Column {
                anchors.left: icon.right
                anchors.leftMargin: 10
                Text {
                    text: name
                    font.pointSize: 20
                    font.bold: {
                        if ((serviceState === "ready")
                                || serviceState === "online")
                            font.bold = true
                        else
                            font.bold = false
                    }

                    color: {
                        if ((serviceState === "ready")
                                || serviceState === "online")
                            color = "#00ff00"
                        else
                            color = "#ffffff"
                    }
                }

                Text {
                    //text: serviceState + ", RSSI: " + strength + security
                    /* text: {
                      if ((serviceState === "ready") || serviceState === "online")
                         text = "signal " + signalStrength(strength) + ", " + "connected" + ", " + address
                      else
                      text = "signal " + signalStrength(strength) + ", " + securityType(security) + " network" + ", " + serviceState
                    }*/
                    visible: ((serviceState === "ready")
                              || serviceState === "online") ? true : false
                    text: "connected, " + address
                    font.pointSize: 18
                    color: "#ffffff"
                    font.italic: true
                }
            }

            Button {
                id: connectButton
                anchors.top: parent.top
                anchors.right: parent.right
                anchors.rightMargin: 5

                width: 250

                //text: ""

                //anchors.rightMargin: 40
                //buttonText: "Connect"
                //                style: ButtonStyle {
                //                label: Text {
                //                    text: control.text
                //                    color: "blue"
                //                    text: control.text
                //                }
                //}

                //                buttonText: {

                //                    if ((serviceState === "ready") || serviceState === "online")
                //                        buttonText = "Forget"
                //                    else
                //                        buttonText = "Connect"}
                MouseArea {
                    anchors.fill: parent

                    Text {
                        anchors.fill: parent
                        id: buttonTextLabel
                        font.pixelSize: 15
                        font.bold: true
                        color: "black"
                        verticalAlignment: Text.AlignVCenter
                        horizontalAlignment: Text.AlignHCenter
                        text: {
                            if ((serviceState === "ready")
                                    || serviceState === "online")
                                text = "Forget"
                            else
                                text = "Connect"
                        }
                    }

                    onClicked: {

                        //connectButton.border.color = "steelblue"
                        if ((serviceState === "ready")
                                || serviceState === "online") {

                            //means we are connected
                            console.log("Disconnecting from", index, " ,", name)
                            request(wifiAPIpath + 'disconnect?network=' + index,
                                    function (o) {

                                        //showRequestInfo(o.responseText)
                                        console.log(o.responseText)
                                    })
                        } else {
                            console.log("Conect to", index, " ,", name)

                            //passwordDialog.open()
                            request(wifiAPIpath + 'connect?network=' + index,
                                    function (o) {

                                        // log the json response
                                        //showRequestInfo(o.responseText)
                                        console.log(o.responseText)
                                    })
                        }
                    }
                }
            }

            Button {
                id: passwordButton
                anchors.top: parent.top
                anchors.right: parent.right
                width: 40
                visible: (securityType(security) === "unsecured") ? false : true

                //anchors.rightMargin: connectButton.width + 5
                //buttonText: "Connect"
                text: {
                    "Key" //or some icon?
                }

                MouseArea {
                    anchors.fill: parent

                    onClicked: {

                        //connectButton.border.color = "steelblue"
                        passwordInputText.visible = true
                        connectButton.visible = false
                        passwordValidateButton.visible = true

                        System.showKeyboard = visible

                        //passwordInputText.o
                        periodicRefresh.stop()

                        var passkey = passwordInputText.text.valueOf()

                        //var passkey = 'randompassword'
                        console.log("Disconnecting from", index, " ,", name)
                    }
                }
            }

            Button {
                id: passwordValidateButton
                anchors.top: parent.top
                anchors.right: parent.right
                anchors.rightMargin: connectButton.width + 5
                width: 40
                visible: false

                //anchors.rightMargin: connectButton.width + 5
                //buttonText: "Connect"
                text: {
                    "ok" //or some icon?
                }

                MouseArea {
                    anchors.fill: parent

                    onClicked: {
                        //passwordInputText = ""
                        var passkey = passwordInputText.text.valueOf()
                        console.log("Validating", passkey)
                        System.showKeyboard = false

                        console.log("Passkey is", passkey)
                        request(wifiAPIpath + 'security?passkey=' + passkey,
                                function (o) {

                                    //showRequestInfo(o.responseText)
                                    console.log(o.responseText)
                                })
                        passwordValidateButton.visible = false
                        passwordInputText.visible = false
                        connectButton.visible = true

                        keyboard.currentString = ""

                        periodicRefresh.start()
                    }
                }
            }

            TextInput {
                id: passwordInputText
                anchors.top: parent.top
                anchors.right: parent.right
                anchors.rightMargin: 5

                font.pointSize: 15
                color: "#ffffff"

                width: connectButton.width
                visible: false
                text: keyboard.currentString
            }
        }
    }

    ListView {
        width: parent.width
        anchors.top: parent.top
        anchors.topMargin: 70
        anchors.bottom: parent.bottom
        anchors.bottomMargin: 150
        model: networkList //WifiList {}
        delegate: wifiDevice
        clip: true
    }

    //Timer for periodic refresh; this is BAD solution, need to figure out how to subscribe for events
    Timer {
        id: periodicRefresh
        interval: 5000 // 5seconds
        onTriggered: {

            networkList.clear()

            request(wifiAPIpath + 'scan_result', function (o) {

                // log the json response
                console.log(o.responseText)

                // translate response into object
                var jsonObject = eval('(' + o.responseText + ')')

                var jsonObjectNetworks = eval('(' + JSON.stringify(
                                                  jsonObject.response) + ')')

                console.log("WiFi list refreshed")

                //console.log(jsonObject.response)
                for (var i = 0; i < jsonObjectNetworks.length; i++) {

                    networkList.append({
                                           number: jsonObjectNetworks[i].Number,
                                           name: jsonObjectNetworks[i].ESSID,
                                           strength: jsonObjectNetworks[i].Strength,
                                           serviceState: jsonObjectNetworks[i].State,
                                           security: jsonObjectNetworks[i].Security,
                                           address: jsonObjectNetworks[i].IPAddress
                                       })
                    //                    console.log(jsonObjectNetworks[i].Number,
                    //                                jsonObjectNetworks[i].ESSID,
                    //                                jsonObjectNetworks[i].Strength,
                    //                                jsonObjectNetworks[i].State,
                    //                                jsonObjectNetworks[i].Security)
                }
            })

            start()
        }
    }

    Keyboard {
        id: keyboard
        y: System.showKeyboard ? parent.height - height : parent.height
        width: parent.width
    }
}