mirror of https://github.com/statping/statping
Merge branch 'webhook-improvements' of https://github.com/jonathanrbarney/statping-ng into webhook-improvements
commit
060a9f079c
|
@ -86,15 +86,30 @@ func (w *webhooker) Valid(values notifications.Values) error {
|
|||
}
|
||||
|
||||
func (w *webhooker) sendHttpWebhook(body string) (*http.Response, error) {
|
||||
utils.Log.Infoln(fmt.Sprintf("sending body: '%v' to %v as a %v request", body, w.Host.String, w.Var1.String))
|
||||
client := new(http.Client)
|
||||
client.Timeout = 10 * time.Second
|
||||
req, err := http.NewRequest(w.Var1.String, w.Host.String, bytes.NewBufferString(body))
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if w.ApiKey.String != "" {
|
||||
req.Header.Add("Content-Type", w.ApiKey.String)
|
||||
} else {
|
||||
req.Header.Add("Content-Type", "application/json")
|
||||
}
|
||||
req.Header.Set("User-Agent", "Statping")
|
||||
req.Header.Set("Statping-Version", utils.Params.GetString("VERSION"))
|
||||
|
||||
var customHeaders []string
|
||||
|
||||
if w.ApiSecret.String != "" {
|
||||
keyVal := strings.SplitN(w.ApiSecret.String, "=", 2)
|
||||
customHeaders = strings.Split(w.ApiSecret.String, ",")
|
||||
} else {
|
||||
customHeaders = nil
|
||||
}
|
||||
|
||||
for _, h := range customHeaders {
|
||||
keyVal := strings.SplitN(h, "=", 2)
|
||||
if len(keyVal) == 2 {
|
||||
if keyVal[0] != "" && keyVal[1] != "" {
|
||||
if strings.ToLower(keyVal[0]) == "host" {
|
||||
|
@ -105,13 +120,8 @@ func (w *webhooker) sendHttpWebhook(body string) (*http.Response, error) {
|
|||
}
|
||||
}
|
||||
}
|
||||
if w.ApiKey.String != "" {
|
||||
req.Header.Add("Content-Type", w.ApiKey.String)
|
||||
} else {
|
||||
req.Header.Add("Content-Type", "application/json")
|
||||
}
|
||||
req.Header.Set("User-Agent", "Statping")
|
||||
req.Header.Set("Statping-Version", utils.Params.GetString("VERSION"))
|
||||
|
||||
utils.Log.Infoln(fmt.Sprintf("sending body: '%v' to %v as a %v request with headers: '%v'", body, w.Host.String, w.Var1.String, req.Header))
|
||||
resp, err := client.Do(req)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
|
|
Loading…
Reference in New Issue