mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-21 23:20:22 +00:00
49 lines
1.7 KiB
PHP
49 lines
1.7 KiB
PHP
<?php
|
|
|
|
require '../../includes/csrf.php';
|
|
require_once '../../includes/config.php';
|
|
require_once '../../src/RaspAP/Auth/HTTPAuth.php';
|
|
require_once '../../includes/authenticate.php';
|
|
require_once '../../includes/locale.php';
|
|
|
|
if (isset($_POST['interface'])) {
|
|
|
|
define( 'NL80211_BAND_24GHZ', 0x1 );
|
|
define( 'NL80211_BAND_5GHZ', 0x2 );
|
|
|
|
if(!preg_match('/^[a-zA-Z0-9]+$/', $_POST['interface'])) {
|
|
exit('Invalid interface name.');
|
|
}
|
|
|
|
$iface = escapeshellcmd($_POST['interface']);
|
|
$flags = 0;
|
|
|
|
// get physical device for selected interface
|
|
exec("iw dev | awk -v iface=".$iface." '/^phy#/ { phy = $0 } $1 == \"Interface\" { interface = $2 } interface == iface { print phy }'", $return);
|
|
$phy = $return[0];
|
|
|
|
// get frequencies supported by device
|
|
exec('iw '.$phy.' info | sed -rn "s/^.*\*\s([0-9]{4})\sMHz.*/\1/p"', $frequencies);
|
|
|
|
if (count(preg_grep('/^24[0-9]{2}/i', $frequencies)) >0) {
|
|
$flags += NL80211_BAND_24GHZ;
|
|
}
|
|
if (count(preg_grep('/^5[0-9]{3}/i', $frequencies)) >0) {
|
|
$flags += NL80211_BAND_5GHZ;
|
|
}
|
|
|
|
switch ($flags) {
|
|
case NL80211_BAND_24GHZ:
|
|
$msg = sprintf(_("The selected interface (%s) has support for the 2.4 GHz wireless band only."), $iface);
|
|
break;
|
|
case NL80211_BAND_5GHZ:
|
|
$msg = sprintf(_("The selected interface (%s) has support for the 5 GHz wireless band only."), $iface);
|
|
break;
|
|
case NL80211_BAND_24GHZ | NL80211_BAND_5GHZ:
|
|
$msg = sprintf(_("The selected interface (%s) has support for both the 2.4 and 5 GHz wireless bands."), $iface);
|
|
break;
|
|
default:
|
|
$msg = sprintf(_("The selected interface (%s) does not support wireless mode operation."), $iface);
|
|
}
|
|
echo json_encode($msg);
|
|
}
|