mutating-webhook/cmd/webhook/httpServerTemplates.go
2023-03-19 17:19:09 -05:00

88 lines
2.0 KiB
Go

package main
import (
"log"
"strings"
"encoding/json"
"net/http"
"net/url"
"mutating-webhook/internal/config"
)
const cT string = "Content-Type"
const cTjson string = "application/json"
const marshalErrorMsg string = "[TRACE] Unable to marshal error message: %v."
func tmpltError(w http.ResponseWriter, s int, m string) {
var (
output []byte
o = struct {
Error int `json:"error" yaml:"error"`
ErrorMsg string `json:"errorMessage" yaml:"errorMessage"`
}{
Error: s,
ErrorMsg: m,
}
err error
)
w.Header().Add(cT, cTjson)
output, err = json.MarshalIndent(o, "", " ")
if err != nil {
log.Printf(marshalErrorMsg, err)
}
w.WriteHeader(s)
w.Write(output) //nolint:errcheck
}
func tmpltHealthCheck(w http.ResponseWriter) {
o := struct {
WebServer bool `json:"webServerActive" yaml:"webServerActive"`
Status string `json:"status" yaml:"status"`
}{
WebServer: true,
Status: "healthy",
}
output, err := json.MarshalIndent(o, "", " ")
if err != nil {
log.Printf(marshalErrorMsg, err)
}
w.Header().Add(cT, cTjson)
w.Write(output) //nolint:errcheck
}
func tmpltWebRoot(w http.ResponseWriter, urlPrams url.Values, cfg config.Config) {
o := struct {
Application string `json:"application" yaml:"application"`
Description string `json:"description" yaml:"description"`
Version string `json:"version" yaml:"version"`
}{
Application: "Mutating-Webhook API",
Description: "Mutating Webhook for Simple Sidecar Injection",
Version: "v1.0.0",
}
w.Header().Add(cT, cTjson)
for k, v := range urlPrams {
if k == "admin" && strings.ToLower(v[0]) == strings.ToLower(cfg.AllowAdminNoMutateToggle) {
if cfg.AllowAdminNoMutate {
cfg.AllowAdminNoMutate = false
} else {
cfg.AllowAdminNoMutate = true
}
log.Printf("[INFO] Admin allow no mutate accepted current value: %v", cfg.AllowAdminNoMutate)
}
}
output, err := json.MarshalIndent(o, "", " ")
if err != nil {
log.Printf(marshalErrorMsg, err)
}
w.Write(output) //nolint:errcheck
}