mirror of
https://github.com/woodchen-ink/certimate.git
synced 2025-07-18 01:11:55 +08:00
77 lines
1.9 KiB
Go
77 lines
1.9 KiB
Go
package gotify
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"log/slog"
|
|
"strings"
|
|
|
|
"github.com/go-resty/resty/v2"
|
|
|
|
"github.com/certimate-go/certimate/pkg/core"
|
|
)
|
|
|
|
type NotifierProviderConfig struct {
|
|
// Gotify 服务地址。
|
|
ServerUrl string `json:"serverUrl"`
|
|
// Gotify Token。
|
|
Token string `json:"token"`
|
|
// Gotify 消息优先级。
|
|
Priority int64 `json:"priority,omitempty"`
|
|
}
|
|
|
|
type NotifierProvider struct {
|
|
config *NotifierProviderConfig
|
|
logger *slog.Logger
|
|
httpClient *resty.Client
|
|
}
|
|
|
|
var _ core.Notifier = (*NotifierProvider)(nil)
|
|
|
|
func NewNotifierProvider(config *NotifierProviderConfig) (*NotifierProvider, error) {
|
|
if config == nil {
|
|
return nil, errors.New("the configuration of the notifier provider is nil")
|
|
}
|
|
|
|
client := resty.New()
|
|
|
|
return &NotifierProvider{
|
|
config: config,
|
|
logger: slog.Default(),
|
|
httpClient: client,
|
|
}, nil
|
|
}
|
|
|
|
func (n *NotifierProvider) SetLogger(logger *slog.Logger) {
|
|
if logger == nil {
|
|
n.logger = slog.New(slog.DiscardHandler)
|
|
} else {
|
|
n.logger = logger
|
|
}
|
|
}
|
|
|
|
func (n *NotifierProvider) Notify(ctx context.Context, subject string, message string) (*core.NotifyResult, error) {
|
|
serverUrl := strings.TrimRight(n.config.ServerUrl, "/")
|
|
|
|
// REF: https://gotify.net/api-docs#/message/createMessage
|
|
req := n.httpClient.R().
|
|
SetContext(ctx).
|
|
SetHeader("Authorization", "Bearer "+n.config.Token).
|
|
SetHeader("Content-Type", "application/json").
|
|
SetHeader("User-Agent", "certimate").
|
|
SetBody(map[string]any{
|
|
"title": subject,
|
|
"message": message,
|
|
"priority": n.config.Priority,
|
|
})
|
|
resp, err := req.Post(fmt.Sprintf("%s/message", serverUrl))
|
|
if err != nil {
|
|
return nil, fmt.Errorf("gotify api error: failed to send request: %w", err)
|
|
} else if resp.IsError() {
|
|
return nil, fmt.Errorf("gotify api error: unexpected status code: %d, resp: %s", resp.StatusCode(), resp.String())
|
|
}
|
|
|
|
return &core.NotifyResult{}, nil
|
|
}
|