46 lines
1.4 KiB
Go
46 lines
1.4 KiB
Go
package handlers
|
|
|
|
import (
|
|
"encoding/json"
|
|
"log"
|
|
"net/http"
|
|
)
|
|
|
|
func Health(w http.ResponseWriter, r *http.Request) {
|
|
writeJSON(w, http.StatusOK, map[string]string{"status": "ok"})
|
|
}
|
|
|
|
// problemDetails is an error body in the RFC 9457 "Problem Details for HTTP
|
|
// APIs" format. Type stays "about:blank" — the value RFC 9457 defines for
|
|
// problems with no dedicated documentation URI. Title is a short summary that
|
|
// stays identical for every occurrence of the same problem, so clients can
|
|
// branch on it; Detail explains this particular occurrence and is the only
|
|
// member that varies with request data.
|
|
type problemDetails struct {
|
|
Type string `json:"type"`
|
|
Title string `json:"title"`
|
|
Status int `json:"status"`
|
|
Detail string `json:"detail,omitempty"`
|
|
}
|
|
|
|
func writeJSON(w http.ResponseWriter, status int, body any) {
|
|
writeJSONContent(w, "application/json", status, body)
|
|
}
|
|
|
|
func writeProblem(w http.ResponseWriter, status int, title, detail string) {
|
|
writeJSONContent(w, "application/problem+json", status, problemDetails{
|
|
Type: "about:blank",
|
|
Title: title,
|
|
Status: status,
|
|
Detail: detail,
|
|
})
|
|
}
|
|
|
|
func writeJSONContent(w http.ResponseWriter, contentType string, status int, body any) {
|
|
w.Header().Set("Content-Type", contentType)
|
|
w.WriteHeader(status)
|
|
if err := json.NewEncoder(w).Encode(body); err != nil {
|
|
log.Printf("Something Went Wrong Writing The Response: %s", err)
|
|
}
|
|
}
|