summaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorJose M. Guisado <jguisado@soleta.eu>2021-05-04 15:20:14 +0000
committerOpenGnSys Support Team <soporte-og@soleta.eu>2021-05-10 10:33:10 +0200
commit8634dd3ac37bc821afd0e7f321eb0064247074a2 (patch)
treed4ae1cc832bda46da1d5f458170185a7b5410ce8 /admin
parentd3da332d007872a32b4f9ccd66370d3f9acd9458 (diff)
#995 Show client link speed if available
If the clients API response included speed information, show it in the default room view. In case link speed is less than 1000 Mbit, highlight so.
Diffstat (limited to 'admin')
-rw-r--r--admin/WebConsole/includes/restfunctions.php17
-rw-r--r--admin/WebConsole/principal/aula.php14
2 files changed, 31 insertions, 0 deletions
diff --git a/admin/WebConsole/includes/restfunctions.php b/admin/WebConsole/includes/restfunctions.php
index e7b1e1e6..2141c3b1 100644
--- a/admin/WebConsole/includes/restfunctions.php
+++ b/admin/WebConsole/includes/restfunctions.php
@@ -77,6 +77,7 @@ define('OG_REST_PARAM_AM_PM', 'am_pm');
define('OG_REST_PARAM_MINUTES', 'minutes');
define('OG_REST_PARAM_MODE', 'mode');
define('OG_REST_PARAM_SCOPE_NAME', 'scope_name');
+define('OG_REST_PARAM_SPEED', 'speed');
define('TYPE_COMMAND', 1);
define('TYPE_PROCEDURE', 2);
@@ -188,6 +189,22 @@ function clients($case, $ips) {
return $trama_notificacion;
}
+function clients_v2($case, $ips) {
+
+ switch ($case) {
+ case 1:
+ $type = POST;
+ $data = array(OG_REST_PARAM_CLIENTS => $ips);
+ break;
+ case 2:
+ $type = GET;
+ $data = null;
+ break;
+ }
+
+ return common_request(OG_REST_CMD_CLIENTS, $type, $data);
+}
+
function wol($type_wol, $ips) {
switch ($type_wol) {
diff --git a/admin/WebConsole/principal/aula.php b/admin/WebConsole/principal/aula.php
index efc09178..81c7b676 100644
--- a/admin/WebConsole/principal/aula.php
+++ b/admin/WebConsole/principal/aula.php
@@ -15,6 +15,7 @@ include_once("../clases/MenuContextual.php");
include_once("../includes/constantes.php");
include_once("../includes/comunes.php");
include_once("../includes/CreaComando.php");
+include_once("../includes/restfunctions.php");
include_once("../idiomas/php/".$idioma."/aulas_".$idioma.".php");
include_once("../idiomas/php/".$idioma."/estados_".$idioma.".php");
include_once("../idiomas/php/".$idioma."/comandos/mensajes_".$idioma.".php");
@@ -286,6 +287,12 @@ function pintaordenadores(){
global $map;
global $max_col;
+ $clients = clients_v2(2, $Mip);
+ $get_speed = function($cli) {
+ return $cli['speed'] ? $cli['speed'] : '-1';
+ };
+ $speeds = array_map($get_speed, $clients['clients']);
+
$ntr=0; // Numero de ordenadores por fila
if ($nombreaula!=""){
echo '<div>';
@@ -313,6 +320,13 @@ function pintaordenadores(){
echo ' <strong><font color="#D0A126">'.$Mip[$i].'</font></strong>';
echo ' </br>';
echo ' <font color="#003300" size="1" face="Arial, Helvetica, sans-serif">'.$Mmac[$i].'</font>';
+ echo ' </br>';
+ if ($speeds[$i] > 0 && $speeds[$i] < 1000) {
+ echo ' <font style="background-color: red" size="1" face="Arial, Helvetica, sans-serif">'.$speeds[$i].' Mbit</font>';
+ }
+ if ($speeds[$i] > 0 && $speeds[$i] >= 1000) {
+ echo ' <font size="1" color="#007700" face="Arial, Helvetica, sans-serif">'.$speeds[$i].' Mbit</font>';
+ }
echo '</td>';
echo '</tr>';
echo '</table>';