mirror of
https://github.com/eworm-de/routeros-scripts
synced 2024-05-14 08:04:19 +00:00
sms-action: move code into function
This commit is contained in:
parent
d6077025b2
commit
721b6c783b
1 changed files with 19 additions and 15 deletions
|
@ -8,26 +8,30 @@
|
||||||
# run action on received SMS
|
# run action on received SMS
|
||||||
# https://git.eworm.de/cgit/routeros-scripts/about/doc/sms-action.md
|
# https://git.eworm.de/cgit/routeros-scripts/about/doc/sms-action.md
|
||||||
|
|
||||||
:local 0 [ :jobname ];
|
|
||||||
:global GlobalFunctionsReady;
|
:global GlobalFunctionsReady;
|
||||||
:while ($GlobalFunctionsReady != true) do={ :delay 500ms; }
|
:while ($GlobalFunctionsReady != true) do={ :delay 500ms; }
|
||||||
|
|
||||||
:global SmsAction;
|
:local Main do={
|
||||||
|
:local ScriptName [ :tostr $1 ];
|
||||||
|
:local Action [ :tostr $2 ];
|
||||||
|
|
||||||
:global LogPrintExit2;
|
:global SmsAction;
|
||||||
:global ValidateSyntax;
|
|
||||||
|
|
||||||
:local Action $action;
|
:global LogPrintExit2;
|
||||||
|
:global ValidateSyntax;
|
||||||
|
|
||||||
:if ([ :typeof $Action ] = "nothing") do={
|
:if ([ :len $Action ] = 0) do={
|
||||||
$LogPrintExit2 error $0 ("This script is supposed to run from SMS hook with action=...") true;
|
$LogPrintExit2 error $ScriptName ("This script is supposed to run from SMS hook with action=...") true;
|
||||||
}
|
}
|
||||||
|
|
||||||
:local Code ($SmsAction->$Action);
|
:local Code ($SmsAction->$Action);
|
||||||
:if ([ $ValidateSyntax $Code ] = true) do={
|
:if ([ $ValidateSyntax $Code ] = true) do={
|
||||||
:log info ("Acting on SMS action '" . $Action . "': " . $Code);
|
:log info ("Acting on SMS action '" . $Action . "': " . $Code);
|
||||||
:delay 1s;
|
:delay 1s;
|
||||||
[ :parse $Code ];
|
[ :parse $Code ];
|
||||||
} else={
|
} else={
|
||||||
$LogPrintExit2 warning $0 ("The code for action '" . $Action . "' failed syntax validation!") false;
|
$LogPrintExit2 warning $ScriptName ("The code for action '" . $Action . "' failed syntax validation!") false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$Main [ :jobname ] $action;
|
||||||
|
|
Loading…
Reference in a new issue