14
14
15
15
package com .espressif .provisioning ;
16
16
17
+ import static java .lang .Thread .sleep ;
18
+
17
19
import android .Manifest ;
18
20
import android .bluetooth .BluetoothDevice ;
19
21
import android .content .Context ;
41
43
import com .espressif .provisioning .security .Security ;
42
44
import com .espressif .provisioning .security .Security0 ;
43
45
import com .espressif .provisioning .security .Security1 ;
46
+ import com .espressif .provisioning .security .Security2 ;
44
47
import com .espressif .provisioning .transport .BLETransport ;
45
48
import com .espressif .provisioning .transport .SoftAPTransport ;
46
49
import com .espressif .provisioning .transport .Transport ;
62
65
import espressif .WifiConstants ;
63
66
import espressif .WifiScan ;
64
67
65
- import static java .lang .Thread .sleep ;
66
-
67
68
/**
68
69
* ESPDevice class to hold device information. This will give facility to connect device, send data to device and
69
70
* do provisioning of it.
@@ -82,10 +83,13 @@ public class ESPDevice {
82
83
private WiFiScanListener wifiScanListener ;
83
84
private ProvisionListener provisionListener ;
84
85
private ResponseListener responseListener ;
86
+
87
+ // Transport & security type must be set before session init.
85
88
private ESPConstants .TransportType transportType ;
86
89
private ESPConstants .SecurityType securityType ;
87
90
88
91
private String proofOfPossession = "" ;
92
+ private String userName = "" ;
89
93
private String versionInfo ;
90
94
private int totalCount ;
91
95
private int startIndex ;
@@ -343,6 +347,24 @@ public String getProofOfPossession() {
343
347
return proofOfPossession ;
344
348
}
345
349
350
+ /**
351
+ * This method is used to set username. It is used for Sec2 security type.
352
+ *
353
+ * @param username Username.
354
+ */
355
+ public void setUserName (String username ) {
356
+ this .userName = username ;
357
+ }
358
+
359
+ /**
360
+ * This method is used to get username. It is used for Sec2 security type.
361
+ *
362
+ * @return Returns Username.
363
+ */
364
+ public String getUserName () {
365
+ return userName ;
366
+ }
367
+
346
368
/**
347
369
* This method is used to get version information to determine what features are enabled in a device and act accordingly.
348
370
*
@@ -407,6 +429,16 @@ public ESPConstants.SecurityType getSecurityType() {
407
429
return securityType ;
408
430
}
409
431
432
+ /**
433
+ * This method is used to set / change security type.
434
+ * This should be call before session creation.
435
+ *
436
+ * @return Returns security type.
437
+ */
438
+ public void setSecurityType (ESPConstants .SecurityType secType ) {
439
+ securityType = secType ;
440
+ }
441
+
410
442
/**
411
443
* This method is used to get Wi-Fi access point.
412
444
*
@@ -557,26 +589,76 @@ public void onFailure(Exception e) {
557
589
558
590
public void initSession (final ResponseListener listener ) {
559
591
560
- if (securityType .equals (ESPConstants .SecurityType .SECURITY_0 )) {
561
- security = new Security0 ();
562
- } else {
563
- security = new Security1 (proofOfPossession );
564
- }
592
+ try {
593
+ JSONObject jsonObject = new JSONObject (getVersionInfo ());
594
+ JSONObject provInfo = jsonObject .getJSONObject ("prov" );
565
595
566
- session = new Session (transport , security );
596
+ String deviceVersion = provInfo .getString ("ver" );
597
+ Log .d (TAG , "Device Version : " + deviceVersion );
598
+ Log .d (TAG , "sec_ver value : " + provInfo .optInt ("sec_ver" ));
599
+ Log .d (TAG , "Has sec_ver key : " + provInfo .has ("sec_ver" ));
567
600
568
- session . init ( null , new Session . SessionListener ( ) {
601
+ if ( provInfo . has ( "sec_ver" ) ) {
569
602
570
- @ Override
571
- public void OnSessionEstablished () {
572
- listener .onSuccess (null );
603
+ int serVer = provInfo .optInt ("sec_ver" );
604
+ Log .d (TAG , "Security Version : " + serVer );
605
+
606
+ switch (serVer ) {
607
+ case 0 :
608
+ securityType = ESPConstants .SecurityType .SECURITY_0 ;
609
+ break ;
610
+ case 1 :
611
+ securityType = ESPConstants .SecurityType .SECURITY_1 ;
612
+ break ;
613
+ case 2 :
614
+ default :
615
+ securityType = ESPConstants .SecurityType .SECURITY_2 ;
616
+ break ;
617
+ }
618
+ } else {
619
+ Log .e (TAG , "Older firmware as Sec version not found." );
620
+ if (securityType == ESPConstants .SecurityType .SECURITY_2 ) {
621
+ securityType = ESPConstants .SecurityType .SECURITY_1 ;
622
+ }
573
623
}
624
+ } catch (JSONException e ) {
625
+ e .printStackTrace ();
626
+ Log .d (TAG , "Capabilities JSON not available." );
627
+ }
574
628
575
- @ Override
576
- public void OnSessionEstablishFailed (Exception e ) {
577
- listener .onFailure (e );
629
+ try {
630
+ Log .d (TAG , "Init session with : " + securityType );
631
+
632
+ switch (securityType ) {
633
+ case SECURITY_0 :
634
+ security = new Security0 ();
635
+ break ;
636
+ case SECURITY_1 :
637
+ security = new Security1 (proofOfPossession );
638
+ break ;
639
+ case SECURITY_2 :
640
+ security = new Security2 (userName , proofOfPossession );
641
+ break ;
578
642
}
579
- });
643
+
644
+ session = new Session (transport , security );
645
+
646
+ session .init (null , new Session .SessionListener () {
647
+
648
+ @ Override
649
+ public void OnSessionEstablished () {
650
+ listener .onSuccess (null );
651
+ }
652
+
653
+ @ Override
654
+ public void OnSessionEstablishFailed (Exception e ) {
655
+ listener .onFailure (e );
656
+ }
657
+ });
658
+ } catch (Exception e ) {
659
+ e .printStackTrace ();
660
+ listener .onFailure (e );
661
+ }
580
662
}
581
663
582
664
private void sendData (final String path , byte [] data , final ResponseListener listener ) {
0 commit comments