routeros-scripts/gps-track.rsc

51 lines
1.5 KiB
Plaintext
Raw Normal View History

#!rsc by RouterOS
# RouterOS script: gps-track
2024-01-01 15:25:25 +01:00
# Copyright (c) 2018-2024 Christian Hesse <mail@eworm.de>
# https://git.eworm.de/cgit/routeros-scripts/about/COPYING.md
#
# requires RouterOS, version=7.12
#
# track gps data by sending json data to http server
# https://git.eworm.de/cgit/routeros-scripts/about/doc/gps-track.md
:global GlobalFunctionsReady;
:while ($GlobalFunctionsReady != true) do={ :delay 500ms; }
:do {
:local ScriptName [ :jobname ];
2024-03-04 13:48:01 +01:00
:global GpsTrackUrl;
:global Identity;
2024-03-08 12:45:38 +01:00
:global LogPrint;
2024-03-04 13:48:01 +01:00
:global ScriptLock;
:global WaitFullyConnected;
:if ([ $ScriptLock $ScriptName ] = false) do={
:error false;
}
2024-03-04 13:48:01 +01:00
$WaitFullyConnected;
:local CoordinateFormat [ /system/gps/get coordinate-format ];
:local Gps [ /system/gps/monitor once as-value ];
:if ($Gps->"valid" = true) do={
:do {
/tool/fetch check-certificate=yes-without-crl $GpsTrackUrl output=none \
http-method=post http-header-field=({ "Content-Type: application/json" }) \
http-data=("{" . \
"\"lat\":\"" . ($Gps->"latitude") . "\"," . \
"\"lon\":\"" . ($Gps->"longitude") . "\"," . \
"\"identity\":\"" . $Identity . "\"" . \
"}") as-value;
2024-03-08 12:45:38 +01:00
$LogPrint debug $ScriptName ("Sending GPS data in " . $CoordinateFormat . " format: " . \
2024-03-04 13:48:01 +01:00
"lat: " . ($Gps->"latitude") . " " . \
2024-03-08 12:45:38 +01:00
"lon: " . ($Gps->"longitude"));
2024-03-04 13:48:01 +01:00
} on-error={
2024-03-08 12:45:38 +01:00
$LogPrint warning $ScriptName ("Failed sending GPS data!");
2024-03-04 13:48:01 +01:00
}
} else={
2024-03-08 12:45:38 +01:00
$LogPrint debug $ScriptName ("GPS data not valid.");
2023-06-13 09:28:32 +02:00
}
} on-error={ }