~xenrox/ntfy-alertmanager

b58ce4acb35c46dd9d8744106f5cadedaf47ab60 — Thorben Günther 1 year, 1 month ago f1dfde6
Set default header for User-Agent
2 files changed, 16 insertions(+), 2 deletions(-)

A http.go
M main.go
A http.go => http.go +14 -0
@@ 0,0 1,14 @@
package main

import "net/http"

// httpClient is a wrapper around the default http.Client
// It is used to add default headers to the requests.
type httpClient struct {
	*http.Client
}

func (c *httpClient) Do(req *http.Request) (*http.Response, error) {
	req.Header.Set("User-Agent", "ntfy-alertmanger")
	return c.Client.Do(req)
}

M main.go => main.go +2 -2
@@ 25,7 25,7 @@ type receiver struct {
	cfg    *config
	logger *log.Logger
	cache  *cache
	client *http.Client
	client *httpClient
}

type payload struct {


@@ 391,7 391,7 @@ func main() {
		logger.Errorf("config: %v", err)
	}

	client := &http.Client{Timeout: time.Second * 3}
	client := &httpClient{&http.Client{Timeout: time.Second * 3}}

	receiver := &receiver{cfg: cfg, logger: logger, cache: newCache(cfg.cache.Duration), client: client}