gps-track: move code into function

This commit is contained in:
Christian Hesse 2024-03-04 13:48:01 +01:00
parent 480ad0c196
commit a0fc6c30ef

View file

@ -8,38 +8,43 @@
# track gps data by sending json data to http server # track gps data by sending json data to http server
# https://git.eworm.de/cgit/routeros-scripts/about/doc/gps-track.md # https://git.eworm.de/cgit/routeros-scripts/about/doc/gps-track.md
:local 0 [ :jobname ];
:global GlobalFunctionsReady; :global GlobalFunctionsReady;
:while ($GlobalFunctionsReady != true) do={ :delay 500ms; } :while ($GlobalFunctionsReady != true) do={ :delay 500ms; }
:global GpsTrackUrl; :local Main do={
:global Identity; :local ScriptName [ :tostr $1 ];
:global LogPrintExit2; :global GpsTrackUrl;
:global ScriptLock; :global Identity;
:global WaitFullyConnected;
$ScriptLock $0; :global LogPrintExit2;
$WaitFullyConnected; :global ScriptLock;
:global WaitFullyConnected;
:local CoordinateFormat [ /system/gps/get coordinate-format ]; $ScriptLock $ScriptName;
:local Gps [ /system/gps/monitor once as-value ]; $WaitFullyConnected;
:if ($Gps->"valid" = true) do={ :local CoordinateFormat [ /system/gps/get coordinate-format ];
:do { :local Gps [ /system/gps/monitor once as-value ];
/tool/fetch check-certificate=yes-without-crl $GpsTrackUrl output=none \
http-method=post http-header-field=({ "Content-Type: application/json" }) \ :if ($Gps->"valid" = true) do={
http-data=("{" . \ :do {
"\"lat\":\"" . ($Gps->"latitude") . "\"," . \ /tool/fetch check-certificate=yes-without-crl $GpsTrackUrl output=none \
"\"lon\":\"" . ($Gps->"longitude") . "\"," . \ http-method=post http-header-field=({ "Content-Type: application/json" }) \
"\"identity\":\"" . $Identity . "\"" . \ http-data=("{" . \
"}") as-value; "\"lat\":\"" . ($Gps->"latitude") . "\"," . \
$LogPrintExit2 debug $0 ("Sending GPS data in " . $CoordinateFormat . " format: " . \ "\"lon\":\"" . ($Gps->"longitude") . "\"," . \
"lat: " . ($Gps->"latitude") . " " . \ "\"identity\":\"" . $Identity . "\"" . \
"lon: " . ($Gps->"longitude")) false; "}") as-value;
} on-error={ $LogPrintExit2 debug $ScriptName ("Sending GPS data in " . $CoordinateFormat . " format: " . \
$LogPrintExit2 warning $0 ("Failed sending GPS data!") false; "lat: " . ($Gps->"latitude") . " " . \
"lon: " . ($Gps->"longitude")) false;
} on-error={
$LogPrintExit2 warning $ScriptName ("Failed sending GPS data!") false;
}
} else={
$LogPrintExit2 debug $ScriptName ("GPS data not valid.") false;
} }
} else={
$LogPrintExit2 debug $0 ("GPS data not valid.") false;
} }
$Main [ :jobname ];