+
@@ -40,6 +40,7 @@
+
From 9aa94a4d228816f152bbf2c66387380eb284d285 Mon Sep 17 00:00:00 2001
From: zbchristian <33725910+zbchristian@users.noreply.github.com>
Date: Tue, 31 Aug 2021 17:00:08 +0200
Subject: [PATCH 2/3] Add network index to network array
---
includes/wifi_functions.php | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/includes/wifi_functions.php b/includes/wifi_functions.php
index b7b543df..0a24576d 100755
--- a/includes/wifi_functions.php
+++ b/includes/wifi_functions.php
@@ -6,9 +6,11 @@ function knownWifiStations(&$networks)
{
// Find currently configured networks
exec(' sudo cat ' . RASPI_WPA_SUPPLICANT_CONFIG, $known_return);
+ $index = 0;
foreach ($known_return as $line) {
if (preg_match('/network\s*=/', $line)) {
- $network = array('visible' => false, 'configured' => true, 'connected' => false);
+ $network = array('visible' => false, 'configured' => true, 'connected' => false, 'index' => $index);
+ ++$index;
} elseif (isset($network) && $network !== null) {
if (preg_match('/^\s*}\s*$/', $line)) {
$networks[$ssid] = $network;
@@ -98,7 +100,8 @@ function nearbyWifiStations(&$networks, $cached = true)
'channel' => ConvertToChannel($arrNetwork[1]),
'passphrase' => '',
'visible' => true,
- 'connected' => false
+ 'connected' => false,
+ 'index' => -1
);
}
From 98fe68e2d38758e15c124ecc5319e8ad302c26dd Mon Sep 17 00:00:00 2001
From: zbchristian <33725910+zbchristian@users.noreply.github.com>
Date: Thu, 2 Sep 2021 10:58:34 +0200
Subject: [PATCH 3/3] Fix numbering of nearby nextworks
---
includes/wifi_functions.php | 12 +++++++++---
1 file changed, 9 insertions(+), 3 deletions(-)
diff --git a/includes/wifi_functions.php b/includes/wifi_functions.php
index 0a24576d..7d5decd3 100755
--- a/includes/wifi_functions.php
+++ b/includes/wifi_functions.php
@@ -70,6 +70,12 @@ function nearbyWifiStations(&$networks, $cached = true)
exec('cat '.RASPI_HOSTAPD_CONFIG.' | sed -rn "s/ssid=(.*)\s*$/\1/p" ', $ap_ssid);
$ap_ssid = $ap_ssid[0];
+ $index = 0;
+ if ( !empty($networks) ) {
+ $lastnet = end($networks);
+ if ( isset($lastnet['index']) ) $index = $lastnet['index'] + 1;
+ }
+
foreach (explode("\n", $scan_results) as $network) {
$arrNetwork = preg_split("/[\t]+/", $network); // split result into array
@@ -86,8 +92,6 @@ function nearbyWifiStations(&$networks, $cached = true)
continue;
}
- $networks[$ssid]['ssid'] = $ssid;
-
// If network is saved
if (array_key_exists($ssid, $networks)) {
$networks[$ssid]['visible'] = true;
@@ -95,14 +99,16 @@ function nearbyWifiStations(&$networks, $cached = true)
// TODO What if the security has changed?
} else {
$networks[$ssid] = array(
+ 'ssid' => $ssid,
'configured' => false,
'protocol' => ConvertToSecurity($arrNetwork[3]),
'channel' => ConvertToChannel($arrNetwork[1]),
'passphrase' => '',
'visible' => true,
'connected' => false,
- 'index' => -1
+ 'index' => $index
);
+ ++$index;
}
// Save RSSI, if the current value is larger than the already stored