2020-09-18 09:00:27 +00:00
|
|
|
#!rsc by RouterOS
|
2019-06-14 12:59:49 +00:00
|
|
|
# RouterOS script: cloud-backup
|
2022-01-01 20:38:15 +00:00
|
|
|
# Copyright (c) 2013-2022 Christian Hesse <mail@eworm.de>
|
2020-06-19 20:17:42 +00:00
|
|
|
# https://git.eworm.de/cgit/routeros-scripts/about/COPYING.md
|
2019-06-14 12:59:49 +00:00
|
|
|
#
|
2021-06-22 22:43:42 +00:00
|
|
|
# provides: backup-script
|
|
|
|
#
|
2019-06-14 12:59:49 +00:00
|
|
|
# upload backup to MikroTik cloud
|
2020-03-27 20:42:33 +00:00
|
|
|
# https://git.eworm.de/cgit/routeros-scripts/about/doc/cloud-backup.md
|
2019-06-14 12:59:49 +00:00
|
|
|
|
2021-02-22 14:14:10 +00:00
|
|
|
:local 0 "cloud-backup";
|
2021-02-18 13:52:47 +00:00
|
|
|
:global GlobalFunctionsReady;
|
|
|
|
:while ($GlobalFunctionsReady != true) do={ :delay 500ms; }
|
|
|
|
|
2019-06-14 12:59:49 +00:00
|
|
|
:global BackupPassword;
|
2021-02-23 08:55:14 +00:00
|
|
|
:global BackupRandomDelay;
|
2020-02-28 14:26:26 +00:00
|
|
|
:global Identity;
|
2019-06-14 12:59:49 +00:00
|
|
|
|
2019-09-12 11:45:44 +00:00
|
|
|
:global DeviceInfo;
|
2021-02-22 14:14:10 +00:00
|
|
|
:global LogPrintExit2;
|
2021-02-23 08:55:14 +00:00
|
|
|
:global RandomDelay;
|
|
|
|
:global ScriptFromTerminal;
|
2021-04-27 18:53:54 +00:00
|
|
|
:global SendNotification2;
|
2020-07-17 09:22:40 +00:00
|
|
|
:global SymbolForNotification;
|
2021-02-18 08:12:07 +00:00
|
|
|
:global WaitFullyConnected;
|
|
|
|
|
|
|
|
$WaitFullyConnected;
|
2019-06-14 12:59:49 +00:00
|
|
|
|
2021-02-23 08:55:14 +00:00
|
|
|
:if ([ $ScriptFromTerminal $0 ] = false && $BackupRandomDelay > 0) do={
|
|
|
|
$RandomDelay $BackupRandomDelay;
|
|
|
|
}
|
|
|
|
|
2019-06-14 12:59:49 +00:00
|
|
|
:do {
|
2020-08-26 07:23:56 +00:00
|
|
|
# we are not interested in output, but print is
|
2019-06-14 12:59:49 +00:00
|
|
|
# required to fetch information from cloud
|
|
|
|
/ system backup cloud print as-value;
|
2020-08-26 07:23:56 +00:00
|
|
|
:if ([ :len [ / system backup cloud find ] ] > 0) do={
|
2019-06-14 13:41:32 +00:00
|
|
|
/ system backup cloud upload-file action=create-and-upload \
|
|
|
|
password=$BackupPassword replace=[ get ([ find ]->0) name ];
|
|
|
|
} else={
|
|
|
|
/ system backup cloud upload-file action=create-and-upload \
|
|
|
|
password=$BackupPassword;
|
2019-06-14 12:59:49 +00:00
|
|
|
}
|
|
|
|
:local Cloud [ / system backup cloud get ([ find ]->0) ];
|
|
|
|
|
2021-04-27 19:55:31 +00:00
|
|
|
$SendNotification2 ({ origin=$0; \
|
2021-04-29 20:25:30 +00:00
|
|
|
subject=([ $SymbolForNotification "floppy-disk,cloud" ] . "Cloud backup"); \
|
2021-04-27 18:53:54 +00:00
|
|
|
message=("Uploaded backup for " . $Identity . " to cloud.\n\n" . \
|
2019-09-12 11:45:44 +00:00
|
|
|
[ $DeviceInfo ] . "\n\n" . \
|
2019-06-14 12:59:49 +00:00
|
|
|
"Name: " . $Cloud->"name" . "\n" . \
|
2020-10-13 18:46:30 +00:00
|
|
|
"Size: " . $Cloud->"size" . " B (" . ($Cloud->"size" / 1024) . " KiB)\n" . \
|
2021-04-27 18:53:54 +00:00
|
|
|
"Download key: " . $Cloud->"secret-download-key"); silent=true });
|
2019-06-14 12:59:49 +00:00
|
|
|
} on-error={
|
2021-04-27 19:55:31 +00:00
|
|
|
$SendNotification2 ({ origin=$0; \
|
|
|
|
subject=([ $SymbolForNotification "warning-sign" ] . "Cloud backup failed"); \
|
2021-04-27 18:53:54 +00:00
|
|
|
message=("Failed uploading backup for " . $Identity . " to cloud!\n\n" . [ $DeviceInfo ]) });
|
2021-02-22 14:14:10 +00:00
|
|
|
$LogPrintExit2 error $0 ("Failed uploading backup for " . $Identity . " to cloud!") true;
|
2019-06-14 12:59:49 +00:00
|
|
|
}
|