routeros-scripts/sms-action.rsc

38 lines
1,019 B
Plaintext
Raw Permalink Normal View History

#!rsc by RouterOS
# RouterOS script: sms-action
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.13
#
# run action on received SMS
# https://git.eworm.de/cgit/routeros-scripts/about/doc/sms-action.md
:global GlobalFunctionsReady;
:while ($GlobalFunctionsReady != true) do={ :delay 500ms; }
:do {
:local ScriptName [ :jobname ];
2024-03-04 13:48:01 +01:00
:global SmsAction;
2024-03-08 12:45:38 +01:00
:global LogPrint;
2024-03-04 13:48:01 +01:00
:global ValidateSyntax;
:local Action $action;
:if ([ :typeof $Action ] = "nothing") do={
2024-03-08 12:45:38 +01:00
$LogPrint error $ScriptName ("This script is supposed to run from SMS hook with action=...");
:error false;
2024-03-04 13:48:01 +01:00
}
2024-03-04 13:48:01 +01:00
:local Code ($SmsAction->$Action);
:if ([ $ValidateSyntax $Code ] = true) do={
:log info ("Acting on SMS action '" . $Action . "': " . $Code);
:delay 1s;
[ :parse $Code ];
} else={
2024-03-08 12:45:38 +01:00
$LogPrint warning $ScriptName ("The code for action '" . $Action . "' failed syntax validation!");
2024-03-04 13:48:01 +01:00
}
} on-error={ }