Browse Source

Add controller error writer exception handling

pr-feature/enhance-api-responses
Roman Zipp 2 years ago
parent
commit
a0feeebff6
  1. 6
      controllers/controllers.go

6
controllers/controllers.go

@ -2,12 +2,16 @@ package controllers
import (
"encoding/json"
"github.com/sirupsen/logrus"
"net/http"
)
func writeError(w http.ResponseWriter, status int, errStr string) {
w.WriteHeader(status)
json.NewEncoder(w).Encode(struct {
err := json.NewEncoder(w).Encode(struct {
Error string `json:"error"`
}{errStr})
if err != nil {
logrus.Fatal("Could not write JSON response: ", err)
}
}
Loading…
Cancel
Save