check-lte-firmware-upgrade: rework code and its logic

This commit is contained in:
Christian Hesse 2022-03-28 13:36:11 +02:00
parent d952e7e6c7
commit 2aa93a0671

View file

@ -10,40 +10,63 @@
:global GlobalFunctionsReady; :global GlobalFunctionsReady;
:while ($GlobalFunctionsReady != true) do={ :delay 500ms; } :while ($GlobalFunctionsReady != true) do={ :delay 500ms; }
:global Identity;
:global SentLteFirmwareUpgradeNotification; :global SentLteFirmwareUpgradeNotification;
:global CharacterReplace; :if ([ :typeof $SentLteFirmwareUpgradeNotification ] != "array") do={
:global LogPrintExit2; :global SentLteFirmwareUpgradeNotification [ :toarray "" ];
:global ScriptFromTerminal; }
:global SendNotification2;
:global SymbolForNotification; :local CheckInterface do={
:local Interface $1;
:global Identity;
:global SentLteFirmwareUpgradeNotification;
:global CharacterReplace;
:global LogPrintExit2;
:global ScriptFromTerminal;
:global SendNotification2;
:global SymbolForNotification;
:foreach Interface in=[ / interface lte find ] do={
:local IntName [ / interface lte get $Interface name ]; :local IntName [ / interface lte get $Interface name ];
:local Firmware;
:local Info;
:do { :do {
:local Firmware [ / interface lte firmware-upgrade $Interface once as-value ]; :set Firmware [ / interface lte firmware-upgrade $Interface once as-value ];
:local Info [ / interface lte monitor $Interface once as-value ]; :set Info [ / interface lte monitor $Interface once as-value ];
} on-error={
$LogPrintExit2 debug $0 ("Could not get latest LTE firmware version for interface " . \
$IntName . ".") false;
:return false;
}
:if ($SentLteFirmwareUpgradeNotification = ($Firmware->"latest")) do={ :if (($Firmware->"installed") = ($Firmware->"latest")) do={
$LogPrintExit2 debug $0 ("Already sent the LTE firmware upgrade notification for version " . \ :if ([ $ScriptFromTerminal "check-lte-firmware-upgrade" ] = true) do={
($Firmware->"latest") . ".") false; $LogPrintExit2 info $0 ("No firmware upgrade available for LTE interface " . $IntName . ".") false;
} else={ }
:if (($Firmware->"installed") != ($Firmware->"latest")) do={ :return true;
$LogPrintExit2 info $0 ("A new firmware version " . ($Firmware->"latest") . " is available for " . \ }
"LTE interface " . $IntName . ".") false;
:if ([ $ScriptFromTerminal $0 ] = true && \ :if ([ $ScriptFromTerminal "check-lte-firmware-upgrade" ] = true && \
[ :len [ / system script find where name="unattended-lte-firmware-upgrade" ] ] > 0) do={ [ :len [ / system script find where name="unattended-lte-firmware-upgrade" ] ] > 0) do={
:put ("Do you want to start unattended lte firmware upgrade for interface " . $IntName . "? [y/N]"); :put ("Do you want to start unattended lte firmware upgrade for interface " . $IntName . "? [y/N]");
:if (([ / terminal inkey timeout=60 ] % 32) = 25) do={ :if (([ / terminal inkey timeout=60 ] % 32) = 25) do={
/ system script run unattended-lte-firmware-upgrade; / system script run unattended-lte-firmware-upgrade;
$LogPrintExit2 info $0 ("Scheduled lte firmware upgrade for interface " . $IntName . "...") true; $LogPrintExit2 info $0 ("Scheduled lte firmware upgrade for interface " . $IntName . "...") false;
:return true;
} else={ } else={
:put "Canceled..."; :put "Canceled...";
} }
} }
:if (($SentLteFirmwareUpgradeNotification->$IntName) = ($Firmware->"latest")) do={
$LogPrintExit2 debug $0 ("Already sent the LTE firmware upgrade notification for version " . \
($Firmware->"latest") . ".") false;
:return false;
}
$LogPrintExit2 info $0 ("A new firmware version " . ($Firmware->"latest") . " is available for " . \
"LTE interface " . $IntName . ".") false;
$SendNotification2 ({ origin=$0; \ $SendNotification2 ({ origin=$0; \
subject=([ $SymbolForNotification "sparkles" ] . "LTE firmware upgrade"); \ subject=([ $SymbolForNotification "sparkles" ] . "LTE firmware upgrade"); \
message=("A new firmware version " . ($Firmware->"latest") . " is available for " . \ message=("A new firmware version " . ($Firmware->"latest") . " is available for " . \
@ -51,15 +74,9 @@
"Interface: " . [ $CharacterReplace ($Info->"manufacturer" . " " . $Info->"model") ("\"") "" ] . "\n" . \ "Interface: " . [ $CharacterReplace ($Info->"manufacturer" . " " . $Info->"model") ("\"") "" ] . "\n" . \
"Installed: " . ($Firmware->"installed") . "\n" . \ "Installed: " . ($Firmware->"installed") . "\n" . \
"Available: " . ($Firmware->"latest")); silent=true }); "Available: " . ($Firmware->"latest")); silent=true });
:set SentLteFirmwareUpgradeNotification ($Firmware->"latest"); :set ($SentLteFirmwareUpgradeNotification->$IntName) ($Firmware->"latest");
} else={ }
:if ([ $ScriptFromTerminal $0 ] = true) do={
$LogPrintExit2 info $0 ("No firmware upgrade available for LTE interface " . $IntName . ".") false; :foreach Interface in=[ / interface lte find ] do={
} $CheckInterface $Interface;
}
}
} on-error={
$LogPrintExit2 debug $0 ("Could not get latest LTE firmware version for interface " . \
$IntName . ".") false;
}
} }