mirror of https://github.com/fluxcd/flagger.git
104 lines
2.0 KiB
Go
104 lines
2.0 KiB
Go
package controller
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"encoding/json"
|
|
"errors"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"net/http"
|
|
"net/url"
|
|
"strconv"
|
|
"time"
|
|
|
|
"k8s.io/utils/clock"
|
|
|
|
flaggerv1 "github.com/weaveworks/flagger/pkg/apis/flagger/v1beta1"
|
|
)
|
|
|
|
func callWebhook(webhook string, payload interface{}, timeout string) error {
|
|
payloadBin, err := json.Marshal(payload)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
hook, err := url.Parse(webhook)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
req, err := http.NewRequest("POST", hook.String(), bytes.NewBuffer(payloadBin))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
req.Header.Set("Content-Type", "application/json")
|
|
|
|
if timeout == "" {
|
|
timeout = "10s"
|
|
}
|
|
|
|
t, err := time.ParseDuration(timeout)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
ctx, cancel := context.WithTimeout(req.Context(), t)
|
|
defer cancel()
|
|
|
|
r, err := http.DefaultClient.Do(req.WithContext(ctx))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer r.Body.Close()
|
|
|
|
b, err := ioutil.ReadAll(r.Body)
|
|
if err != nil {
|
|
return fmt.Errorf("error reading body: %s", err.Error())
|
|
}
|
|
|
|
if r.StatusCode > 202 {
|
|
return errors.New(string(b))
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// CallWebhook does a HTTP POST to an external service and
|
|
// returns an error if the response status code is non-2xx
|
|
func CallWebhook(name string, namespace string, phase flaggerv1.CanaryPhase, w flaggerv1.CanaryWebhook) error {
|
|
payload := flaggerv1.CanaryWebhookPayload{
|
|
Name: name,
|
|
Namespace: namespace,
|
|
Phase: phase,
|
|
}
|
|
|
|
if w.Metadata != nil {
|
|
payload.Metadata = *w.Metadata
|
|
}
|
|
|
|
if len(w.Timeout) < 2 {
|
|
w.Timeout = "10s"
|
|
}
|
|
|
|
return callWebhook(w.URL, payload, w.Timeout)
|
|
}
|
|
|
|
func CallEventWebhook(r *flaggerv1.Canary, webhook, message, eventtype string) error {
|
|
t := clock.RealClock{}.Now()
|
|
|
|
payload := flaggerv1.CanaryWebhookPayload{
|
|
Name: r.Name,
|
|
Namespace: r.Namespace,
|
|
Phase: r.Status.Phase,
|
|
Metadata: map[string]string{
|
|
"eventMessage": message,
|
|
"eventType": eventtype,
|
|
"timestamp": strconv.FormatInt(t.UnixNano()/1000000, 10),
|
|
},
|
|
}
|
|
|
|
return callWebhook(webhook, payload, "5s")
|
|
}
|