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:
parent
ef09003a10
commit
c7993f23b8
3 changed files with 12 additions and 2 deletions
|
@ -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`
|
||||
|
|
|
@ -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"`
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue