mirror of
https://git.eworm.de/cgit/routeros-scripts
synced 2025-07-16 04:54:28 +02:00
mod/notification-ntfy: support authentication with bearer token
Closes: https://github.com/eworm-de/routeros-scripts/issues/86
This commit is contained in:
parent
a7878d664f
commit
d1b9b1b410
3 changed files with 9 additions and 0 deletions
|
@ -52,6 +52,8 @@ basic authentication. Configure `NtfyServerUser` and `NtfyServerPass` for this.
|
|||
Even authentication via access token is possible, adding it as password with
|
||||
a blank username.
|
||||
|
||||
Also available is `NtfyServerToken` to add a bearer token for authentication.
|
||||
|
||||
For a custom service installing an additional certificate may be required.
|
||||
You may want to install that certificate manually, after finding the
|
||||
[certificate name from browser](../../CERTIFICATES.md).
|
||||
|
|
|
@ -58,6 +58,7 @@
|
|||
:global NtfyServer "ntfy.sh";
|
||||
:global NtfyServerUser [];
|
||||
:global NtfyServerPass [];
|
||||
:global NtfyServerToken [];
|
||||
:global NtfyTopic "";
|
||||
|
||||
# It is possible to override e-mail, Telegram, Matrix and Ntfy setting
|
||||
|
|
|
@ -67,6 +67,8 @@
|
|||
:global NtfyServerOverride;
|
||||
:global NtfyServerPass;
|
||||
:global NtfyServerPassOverride;
|
||||
:global NtfyServerToken;
|
||||
:global NtfyServerTokenOverride;
|
||||
:global NtfyServerUser;
|
||||
:global NtfyServerUserOverride;
|
||||
:global NtfyTopic;
|
||||
|
@ -83,6 +85,7 @@
|
|||
:local Server [ $EitherOr ($NtfyServerOverride->($Notification->"origin")) $NtfyServer ];
|
||||
:local User [ $EitherOr ($NtfyServerUserOverride->($Notification->"origin")) $NtfyServerUser ];
|
||||
:local Pass [ $EitherOr ($NtfyServerPassOverride->($Notification->"origin")) $NtfyServerPass ];
|
||||
:local Token [ $EitherOr ($NtfyServerTokenOverride->($Notification->"origin")) $NtfyServerToken ];
|
||||
:local Topic [ $EitherOr ($NtfyTopicOverride->($Notification->"origin")) $NtfyTopic ];
|
||||
|
||||
:if ([ :len $Topic ] = 0) do={
|
||||
|
@ -93,6 +96,9 @@
|
|||
:local Headers ({ [ $FetchUserAgentStr ($Notification->"origin") ]; \
|
||||
("Priority: " . [ $IfThenElse ($Notification->"silent") "low" "default" ]); \
|
||||
("Title: " . "[" . $IdentityExtra . $Identity . "] " . ($Notification->"subject")) });
|
||||
:if ([ :len $Token ] > 0) do={
|
||||
:set Headers ($Headers, ("Authorization: Bearer " . $Token));
|
||||
}
|
||||
:local Text (($Notification->"message") . "\n");
|
||||
:if ([ :len ($Notification->"link") ] > 0) do={
|
||||
:set Text ($Text . "\n" . [ $SymbolForNotification "link" ] . ($Notification->"link"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue