aboutsummaryrefslogtreecommitdiffstats
path: root/sms-action.rsc
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2024-03-04 13:48:01 +0100
committerGravatar Christian Hesse <mail@eworm.de>2024-03-04 21:40:34 +0100
commit721b6c783bb492cf850874d5608214293275b4fc (patch)
treedacaa65a65b4066a5044286b9c888dc8dfda662d /sms-action.rsc
parentd6077025b22a30854e3fb8eec9f1f050e86e45a2 (diff)
sms-action: move code into function
Diffstat (limited to 'sms-action.rsc')
-rw-r--r--sms-action.rsc34
1 files changed, 19 insertions, 15 deletions
diff --git a/sms-action.rsc b/sms-action.rsc
index 49b6cd5..b78a2b2 100644
--- a/sms-action.rsc
+++ b/sms-action.rsc
@@ -8,26 +8,30 @@
# run action on received SMS
# https://git.eworm.de/cgit/routeros-scripts/about/doc/sms-action.md
-:local 0 [ :jobname ];
:global GlobalFunctionsReady;
:while ($GlobalFunctionsReady != true) do={ :delay 500ms; }
-:global SmsAction;
+:local Main do={
+ :local ScriptName [ :tostr $1 ];
+ :local Action [ :tostr $2 ];
-:global LogPrintExit2;
-:global ValidateSyntax;
+ :global SmsAction;
-:local Action $action;
+ :global LogPrintExit2;
+ :global ValidateSyntax;
-:if ([ :typeof $Action ] = "nothing") do={
- $LogPrintExit2 error $0 ("This script is supposed to run from SMS hook with action=...") true;
-}
+ :if ([ :len $Action ] = 0) do={
+ $LogPrintExit2 error $ScriptName ("This script is supposed to run from SMS hook with action=...") true;
+ }
-:local Code ($SmsAction->$Action);
-:if ([ $ValidateSyntax $Code ] = true) do={
- :log info ("Acting on SMS action '" . $Action . "': " . $Code);
- :delay 1s;
- [ :parse $Code ];
-} else={
- $LogPrintExit2 warning $0 ("The code for action '" . $Action . "' failed syntax validation!") false;
+ :local Code ($SmsAction->$Action);
+ :if ([ $ValidateSyntax $Code ] = true) do={
+ :log info ("Acting on SMS action '" . $Action . "': " . $Code);
+ :delay 1s;
+ [ :parse $Code ];
+ } else={
+ $LogPrintExit2 warning $ScriptName ("The code for action '" . $Action . "' failed syntax validation!") false;
+ }
}
+
+$Main [ :jobname ] $action;