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