blob: 3ad0d181e7113740d44de31520b1484f739377cc (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
#!rsc
# RouterOS script: global-functions
# Copyright (c) 2013-2018 Christian Hesse <mail@eworm.de>
#
# global functions
# url encoding
:global UrlEncode do={
:local return "";
:if ([ :len $1 ] > 0) do={
:local chars " %&";
:local subs { "%20"; "%25"; "%26" };
:for i from=0 to=([ :len $1 ] - 1) do={
:local char [ :pick $1 $i ];
:local replace [ :find $chars $char ];
:if ([ :len $replace ] > 0) do={
:set $char ($subs->$replace);
}
:set $return ($return . $char);
}
}
:return $return;
}
# send notification via e-mail and telegram
# Note that subject and attachment are ignored for telegram!
:global SendNotification do={
:local subject $1;
:local message $2;
:local attach $3;
:global "email-general-to";
:global "email-general-cc";
:global "telegram-tokenid";
:global "telegram-chatid";
:global UrlEncode;
:if ([ :len $"email-general-to" ] > 0) do={
:do {
/ tool e-mail send to=$"email-general-to" cc=$"email-general-cc" \
subject=$subject body=$message file=$attach;
} on-error={
:log warning "Failed sending notification mail!";
}
}
# You need to import the certificate chain for api.telegram.org!
# https://certs.godaddy.com/repository/gdroot-g2.crt
# https://certs.godaddy.com/repository/gdig2.crt.pem
:if ([ :len $"telegram-tokenid" ] > 0 && [ :len $"telegram-chatid" ] > 0) do={
do {
/ tool fetch check-certificate=yes-without-crl keep-result=no http-method=post \
("https://api.telegram.org/bot" . $"telegram-tokenid" . "/sendMessage") \
http-data=("chat_id=" . $"telegram-chatid" . "&text=" . [ $UrlEncode $message ]);
} on-error={
:log warning "Failed sending telegram notification!";
}
}
}
|