Files
eworm-de-routeros-scripts/script-updates
T

129 lines
4.9 KiB
Plaintext
Raw Permalink Normal View History

2018-09-27 00:18:43 +02:00
#!rsc
2018-07-05 15:29:26 +02:00
# RouterOS script: script-updates
2020-01-01 17:00:39 +01:00
# Copyright (c) 2013-2020 Christian Hesse <[email protected]>
2018-07-05 15:29:26 +02:00
#
2018-07-09 16:05:04 +02:00
# update installed scripts from file or url
:global ExpectedConfigVersion;
:global GlobalConfigVersion;
2019-01-03 17:45:43 +01:00
:global Identity;
:global IDonate;
:global SentConfigChangesNotification;
2019-01-03 17:45:43 +01:00
:global ScriptUpdatesFetch;
:global ScriptUpdatesBaseUrl;
:global ScriptUpdatesUrlSuffix;
:global ScriptUpdatesIgnore;
2018-07-05 15:29:26 +02:00
:global SendNotification;
:foreach Script in=[ / system script find where source~"^#!rsc" ] do={
2019-01-03 17:45:43 +01:00
:local Ignore 0;
2019-07-25 13:12:17 +02:00
:local ScriptVal [ / system script get $Script ];
:local ScriptFile [ / file find where name=("script-updates/" . $ScriptVal->"name") ];
2019-01-03 17:45:43 +01:00
:local SourceNew;
:if ([ :len $ScriptFile ] > 0) do={
:set SourceNew [ / file get $ScriptFile content ];
/ file remove $ScriptFile;
2018-08-24 16:14:38 +02:00
}
2018-07-09 16:05:04 +02:00
2019-08-29 09:13:11 +02:00
:foreach Scheduler in=[ / system scheduler find where on-event~("\\b" . $ScriptVal->"name" . "\\b") ] do={
2019-07-25 13:12:17 +02:00
:local SchedulerVal [ / system scheduler get $Scheduler ];
:if ($ScriptVal->"policy" != $SchedulerVal->"policy") do={
:log warning ("Policies differ for script " . $ScriptVal->"name" . \
" and its scheduler " . $SchedulerVal->"name" . "!");
}
}
2019-01-03 17:45:43 +01:00
:if ([ :len $SourceNew ] = 0 && $ScriptUpdatesFetch = true) do={
:foreach IgnoreLoop in=$ScriptUpdatesIgnore do={
2019-07-25 13:12:17 +02:00
:if ($IgnoreLoop = $ScriptVal->"name") do={ :set Ignore 1; }
}
2018-07-09 16:05:04 +02:00
2019-01-03 17:45:43 +01:00
:if ($Ignore = 0) do={
2019-07-25 13:12:17 +02:00
:log debug ("Fetching script from url: " . $ScriptVal->"name");
2018-09-14 11:10:03 +02:00
:do {
2019-01-03 17:45:43 +01:00
:local Result [ / tool fetch check-certificate=yes-without-crl \
2019-07-25 13:12:17 +02:00
($ScriptUpdatesBaseUrl . $ScriptVal->"name" . $ScriptUpdatesUrlSuffix) \
2018-09-14 11:10:03 +02:00
output=user as-value ];
2019-01-03 17:45:43 +01:00
:if ($Result->"status" = "finished") do={
:set SourceNew ($Result->"data");
2018-09-14 11:10:03 +02:00
}
} on-error={
2019-07-25 13:12:17 +02:00
:log info ("Failed fetching " . $ScriptVal->"name");
2018-07-09 16:05:04 +02:00
}
}
}
2018-07-09 16:05:04 +02:00
2019-01-03 17:45:43 +01:00
:if ([ :len $SourceNew ] > 0) do={
:if ([ :pick $SourceNew 0 5 ] = "#!rsc") do={
2019-07-25 21:19:10 +02:00
:if ($SourceNew != $ScriptVal->"source") do={
2019-01-03 17:45:43 +01:00
:local DontRequirePermissions \
($SourceNew~"\n# requires: dont-require-permissions=yes\n");
2019-07-25 13:12:17 +02:00
:log info ("Updating script: " . $ScriptVal->"name");
/ system script set owner=($ScriptVal->"name") source=$SourceNew \
2019-01-03 17:45:43 +01:00
dont-require-permissions=$DontRequirePermissions $Script;
2019-09-03 20:59:00 +02:00
:if ($ScriptVal->"name" = "global-config" && \
[ / system script print count-only where name="global-config-overlay" ] > 0) do={
/ system script { run global-config; run global-config-overlay; }
}
2019-07-25 13:12:17 +02:00
:if ($ScriptVal->"name" = "global-functions") do={
/ system script run global-functions;
}
} else={
2019-07-25 13:12:17 +02:00
:log debug ("Script " . $ScriptVal->"name" . " did not change.");
}
2018-07-09 16:05:04 +02:00
} else={
2019-07-25 13:12:17 +02:00
:log warning ("Looks like new script " . $ScriptVal->"name" . " is not valid. Ignoring!");
2018-07-09 16:05:04 +02:00
}
} else={
2019-07-25 13:12:17 +02:00
:log debug ("No update for script " . $ScriptVal->"name" . ".");
2018-07-05 15:29:26 +02:00
}
}
:if ($SentConfigChangesNotification!=$ExpectedConfigVersion && \
$GlobalConfigVersion < $ExpectedConfigVersion) do={
:global GlobalConfigChanges;
:local ChangeLogCode;
2019-09-03 20:59:00 +02:00
:local ConfigScript "global-config";
:if ([ /system script print count-only where name="global-config-overlay" ] > 0) do={
:set ConfigScript "global-config-overlay";
}
:local NotificationMessage ("Current configuration on " . $Identity . \
2019-09-03 20:59:00 +02:00
" is out of date. Please update " . $ConfigScript . ", then increase " . \
"variable GlobalConfigVersion (currently " . $GlobalConfigVersion . \
2019-09-03 20:59:00 +02:00
") to " . $ExpectedConfigVersion . " and re-run " . $ConfigScript . ".");
:log debug ("Fetching changelog.");
:do {
:local Result [ / tool fetch check-certificate=yes-without-crl \
($ScriptUpdatesBaseUrl . "global-config.changes" . $ScriptUpdatesUrlSuffix) \
output=user as-value ];
:if ($Result->"status" = "finished") do={
:set ChangeLogCode ($Result->"data");
}
:set NotificationMessage ($NotificationMessage . "\n\nChanges:");
[ :parse $ChangeLogCode ];
:for I from=($GlobalConfigVersion + 1) to=$ExpectedConfigVersion do={
:set NotificationMessage ($NotificationMessage . \
"\n * " . $GlobalConfigChanges->[ :tostr $I ]);
}
:set GlobalConfigChanges;
} on-error={
:log info ("Failed fetching changes!");
:set NotificationMessage ($NotificationMessage . \
"\n\nChanges are not available.");
}
:if ($IDonate != true) do={
:set NotificationMessage ($NotificationMessage . \
"\n\n==== donation hint ====\n" . \
"This project is developed in private spare time and usage is " . \
"free of charge for you. If you like the scripts and think this is " . \
"of value for you or your business please consider a donation:\n" . \
"https://git.eworm.de/cgit/routeros-scripts/about/#donate");
}
$SendNotification "Configuration warning!" $NotificationMessage;
:set SentConfigChangesNotification $ExpectedConfigVersion;
}