0
0
Fork 0
mirror of https://github.com/crazy-max/diun.git synced 2025-04-04 19:45:20 +00:00

Authentication support for ntfy

This commit is contained in:
CrazyMax 2023-06-11 22:26:27 +02:00
parent ef09003a10
commit c7993f23b8
No known key found for this signature in database
GPG key ID: 3248E46B6BB8C7F7
3 changed files with 12 additions and 2 deletions
docs/notif
internal
model
notif/ntfy

View file

@ -20,10 +20,12 @@ Notifications can be sent using a [ntfy](https://ntfy.sh/) instance.
```
| Name | Default | Description |
| ------------------- | ----------------------------------- | -------------------------------------------------------------------------- |
|---------------------|-------------------------------------|----------------------------------------------------------------------------|
| `endpoint`[^1] | `https://ntfy.sh` | Ntfy base URL |
| `token` | | [Access token](https://docs.ntfy.sh/publish/#access-tokens) |
| `tokenFile` | | Use content of secret file as acess token if `token` not defined |
| `topic` | | Ntfy topic |
| `priority` | 3 | The priority of the message |
| `priority` | 3 | The priority of the message |
| `tags` | `["package"]` | Emoji to go in your notiication |
| `timeout` | `10s` | Timeout specifies a time limit for the request to be made |
| `templateTitle`[^1] | See [below](#default-templatetitle) | [Notification template](../faq.md#notification-template) for message title |
@ -31,6 +33,8 @@ Notifications can be sent using a [ntfy](https://ntfy.sh/) instance.
!!! abstract "Environment variables"
* `DIUN_NOTIF_NTFY_ENDPOINT`
* `DIUN_NOTIF_NTFY_TOKEN`
* `DIUN_NOTIF_NTFY_TOKENFILE`
* `DIUN_NOTIF_NTFY_TOPIC`
* `DIUN_NOTIF_NTFY_PRIORITY`
* `DIUN_NOTIF_NTFY_TAGS`

View file

@ -9,6 +9,8 @@ import (
// NotifNtfy holds ntfy notification configuration details
type NotifNtfy struct {
Endpoint string `yaml:"endpoint,omitempty" json:"endpoint,omitempty" validate:"required"`
Token string `yaml:"token,omitempty" json:"token,omitempty" validate:"omitempty"`
TokenFile string `yaml:"tokenFile,omitempty" json:"tokenFile,omitempty" validate:"omitempty,file"`
Topic string `yaml:"topic,omitempty" json:"topic,omitempty" validate:"required"`
Priority int `yaml:"priority,omitempty" json:"priority,omitempty" validate:"omitempty,min=0"`
Tags []string `yaml:"tags,omitempty" json:"tags,omitempty" validate:"required"`

View file

@ -10,6 +10,7 @@ import (
"github.com/crazy-max/diun/v4/internal/model"
"github.com/crazy-max/diun/v4/internal/msg"
"github.com/crazy-max/diun/v4/internal/notif/notifier"
"github.com/crazy-max/diun/v4/pkg/utl"
)
// Client represents an active ntfy notification object
@ -85,6 +86,9 @@ func (c *Client) Send(entry model.NotifEntry) error {
return err
}
if token, err := utl.GetSecret(c.cfg.Token, c.cfg.TokenFile); err == nil && token != "" {
req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", token))
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("User-Agent", c.meta.UserAgent)